/* IMOK marketing — matches app green palette */
:root {
  --primary: #079455;
  --primary-pressed: #067647;
  --primary-soft: #e8f8ef;
  --primary-border: #abefc6;
  --help: #d92d20;
  --help-soft: #feeceb;
  --bg: #fafaf7;
  --surface: #ffffff;
  --text: #171a1f;
  --muted: #667085;
  --border: #e4e7ec;
  --max: 68rem;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  background: var(--surface);
  padding: 0.5rem 0.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(100vh, 52rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.25rem 3.5rem;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(6, 118, 71, 0.92) 0%, rgba(7, 148, 85, 0.88) 42%, rgba(23, 26, 31, 0.75) 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, #12b76a 0%, transparent 55%),
    #067647;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.brand {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.tagline {
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 500;
  max-width: 22ch;
  margin: 0 0 1.75rem;
  line-height: 1.25;
  opacity: 0.96;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.store-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.store-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.1;
}

.hero-note {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 36ch;
  margin: 0;
}

/* —— Sections —— */
.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section .lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 40rem;
  margin: 0 0 2rem;
}

.features {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.feature {
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.feature.help .feature-icon {
  background: var(--help-soft);
  color: var(--help);
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Shots —— */
.shots-band {
  background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 100%);
  border-top: 1px solid var(--primary-border);
  border-bottom: 1px solid var(--border);
}

.shots {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .shots {
    grid-template-columns: 1fr 1fr;
  }
}

.shot {
  margin: 0;
}

.shot img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(23, 26, 31, 0.1);
  background: var(--surface);
}

.shot figcaption {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

/* —— Legal pages —— */
.legal-page {
  width: min(100%, 42rem);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.legal-page header {
  margin-bottom: 2rem;
}

.legal-page .brand-link {
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--primary);
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 1rem 0 0.5rem;
}

.legal-body h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 1.75rem 0 0.5rem;
}

.legal-body p,
.legal-body li {
  color: var(--text);
  font-size: 1rem;
}

.legal-body ul {
  padding-left: 1.25rem;
}

.legal-body strong {
  font-weight: 700;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
  .store-btn {
    transition: none;
  }
  .store-btn:hover {
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}
