/* ——— Tokens ——— */
:root {
  --brand-base:     #004225;
  --brand-light:    #4C7A66;
  --brand-ink:      #0C1F14;
  --cta-fill:       #00341D;
  --cta-pressed:    #002716;

  --bg:             #FAFAFA;
  --bg-elevated:    #FFFFFF;
  --surface-tint:   #F4F5F2;
  --border-soft:    #E6E8E4;
  --border-hair:    #EDEFEB;

  --text-primary:   #0E1410;
  --text-secondary: #5C766B;
  --text-tertiary:  #82938A;
  --text-on-dark:   #F4F1EC;
  --text-on-dark-muted: rgba(244,241,236,0.62);
  --brand-on-dark:  #B8D8C8;
  --badge-on-dark-hover: #ECECEC;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Refined type scale — more confident jumps */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1.0625rem;
  --text-lg:   1.25rem;
  --text-xl:   clamp(1.625rem, 1.3rem + 1.4vw, 2.25rem);
  --text-2xl:  clamp(2.25rem, 1.6rem + 2.8vw, 3.75rem);
  --text-3xl:  clamp(2.75rem, 1.5rem + 5vw, 5.5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5.5rem;
  --space-16: 7rem;
  --space-20: 9rem;
  --space-24: 11rem;

  /* Unified vertical rhythm */
  --section-y: clamp(3rem, 2rem + 3vw, 5rem);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-2xl: 48px;

  --shadow-sm: 0 1px 2px rgba(12,31,20,0.04), 0 2px 6px rgba(12,31,20,0.04);
  --shadow-md: 0 6px 18px rgba(12,31,20,0.06), 0 2px 6px rgba(12,31,20,0.05);
  --shadow-lg: 0 30px 70px rgba(12,31,20,0.14), 0 10px 25px rgba(12,31,20,0.08);
  --shadow-frame: 0 40px 90px rgba(12,31,20,0.20), 0 14px 30px rgba(12,31,20,0.10);

  --max-w: 1080px;
  --gutter: clamp(1.25rem, 1rem + 1.5vw, 2.5rem);

  /* Motion curves — multi-axis system */
  --ease-emphasized: cubic-bezier(0.22, 1, 0.36, 1);   /* reveals, decorative arrivals */
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);    /* UI snap: hovers, presses, small transitions */
  --ease-in-out:     cubic-bezier(0.65, 0, 0.35, 1);   /* symmetric: menu slide, accordions */
  --ease: var(--ease-emphasized);                      /* legacy alias */
}

/* ——— Reset ——— */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.028em;
  font-variation-settings: "opsz" 144;
  color: var(--text-primary);
  text-wrap: balance;
}
/* Scoped italic accent — only inside display headings + hero typography */
h1 em, h2 em, h3 em, h4 em,
.page-title em,
.hero-byline em,
.hero-subhead em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-base);
}

:focus-visible {
  outline: 2px solid var(--brand-base);
  outline-offset: 4px;
  border-radius: 4px;
}
::selection { background: var(--brand-base); color: var(--text-on-dark); }

/* ——— Layout ——— */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

/* ——— Navigation ——— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
  transition: background 0.3s var(--ease-out), backdrop-filter 0.3s var(--ease-out), border-color 0.3s var(--ease-out), padding 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,250,250,0.78);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  border-bottom-color: var(--border-soft);
  padding: 0.625rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.nav-logo img { width: 28px; height: 28px; object-fit: contain; }
.nav-links {
  display: none;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.72;
  transition: opacity 180ms var(--ease-out);
}
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 0.625rem; }
.nav-cta { display: none; }

/* App Store badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  background: var(--cta-fill);
  color: var(--text-on-dark);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  min-height: 48px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 16px rgba(0,52,29,0.18);
}
.badge:hover { background: var(--cta-pressed); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 10px 22px rgba(0,52,29,0.24); }
.badge:active {
  transform: translateY(0);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 2px 6px rgba(0,52,29,0.18);
  transition-duration: 80ms;
}
.badge:focus-visible {
  outline-color: #B8D8C8;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(0,0,0,0.4);
}
.badge.tight { padding: 0.5rem 0.875rem; min-height: 38px; box-shadow: none; }
.badge.on-dark { background: #FFFFFF; color: #0C1F14; box-shadow: 0 6px 16px rgba(0,0,0,0.20); }
.badge.on-dark:hover { background: var(--badge-on-dark-hover); }
.badge svg { flex-shrink: 0; }
.badge-small { font-size: 0.625rem; opacity: 0.85; display: block; line-height: 1; margin-bottom: 3px; letter-spacing: 0.04em; }
.badge-big { font-size: 1rem; font-weight: 600; display: block; line-height: 1; }
.badge.tight .badge-small { font-size: 0.5625rem; margin-bottom: 2px; }
.badge.tight .badge-big { font-size: 0.875rem; }

/* Hamburger — visible by default, hidden at desktop via media query at end of stylesheet */
.hamburger {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text-primary);
  transition: background 180ms var(--ease-out);
}
.hamburger:hover { background: rgba(0,0,0,0.04); }
.hamburger:active { background: rgba(0,0,0,0.08); }
.hamburger svg { width: 20px; height: 20px; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  padding: var(--space-6) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateX(100%);
  transition: transform 320ms var(--ease-in-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu ul { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-6); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.mobile-menu .badge { align-self: flex-start; margin-top: auto; }

/* ——— Ambient backdrop helper ——— */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: calc(var(--space-16) + 80px) 0 var(--space-16);
  overflow: hidden;
  isolation: isolate;
}
.hero .glow.g1 {
  top: -200px; left: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(0,66,37,0.10), transparent 70%);
}
.hero .glow.g2 {
  top: 30%; right: -250px;
  width: 800px; height: 800px;
  background: radial-gradient(closest-side, rgba(76,122,102,0.08), transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); }
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 0.96;
  margin-top: var(--space-4);
}
.hero h1 em { color: var(--brand-base); }

.hero-byline {
  margin-top: var(--space-5);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.5rem);
  line-height: 1.35;
  color: var(--text-primary);
  max-width: 36ch;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.hero-byline em { color: var(--brand-base); font-weight: 300; }

.hero-subhead {
  margin-top: var(--space-4);
  max-width: 46ch;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 400;
  text-wrap: pretty;
}

.hero-ctas {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}
.hero-ctas .meta-inline {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ——— Hero visual ——— */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.shot-tile {
  position: relative;
  width: min(343px, 100%);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--brand-ink);
  box-shadow: var(--shadow-frame);
  transition: transform 320ms var(--ease-out);
}
.shot-tile img { width: 100%; height: auto; display: block; }
.shot-tile.lift {
  transform: rotate(-1.2deg);
}
.shot-tile.lift:hover { transform: rotate(0deg) translateY(-4px); }

/* ——— Section heading shared ——— */
.section-head {
  display: grid;
  gap: var(--space-3);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}
.section-head h2 {
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.02;
}
.section-head p {
  color: var(--text-secondary);
  max-width: 48ch;
  font-size: var(--text-base);
  line-height: 1.55;
}
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }

/* ——— How It Works ——— */
.how {
  position: relative;
  padding-block: var(--section-y);
  border-top: 1px solid var(--border-hair);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 820px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}
.how-step {
  position: relative;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(76,122,102,0.30);
}
.how-step .num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--brand-base);
  margin-bottom: var(--space-4);
  display: block;
}
.how-step h3 {
  font-size: 1.625rem;
  font-weight: 400;
  margin-bottom: var(--space-3);
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.how-step p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: 36ch;
  text-wrap: pretty;
  line-height: 1.55;
}

/* ——— Feature Rows ——— */
.features {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;
  isolation: isolate;
}
.features .glow.g3 {
  top: 20%; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(0,66,37,0.06), transparent 70%);
}
.features .glow.g4 {
  bottom: 10%; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(76,122,102,0.06), transparent 70%);
}
.feature-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-10) 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--border-hair); }
@media (min-width: 980px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .feature-row.text-right .feature-text { order: 2; }
}

.feature-text .index {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
  display: block;
}
.feature-text .index .accent { color: var(--brand-base); }
.feature-text h3 {
  font-size: clamp(2rem, 1.4rem + 2vw, 2.875rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 16ch;
}
.feature-text h3 em { color: var(--brand-base); }
.feature-text p {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 44ch;
  line-height: 1.6;
  text-wrap: pretty;
}
.feature-bullets {
  margin-top: var(--space-5);
  display: grid;
  gap: 0.625rem;
}
.feature-bullets li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.55;
}
.feature-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-base);
  transform: translateY(-3px);
}

.feature-visual {
  display: flex;
  justify-content: center;
}
.feature-visual .shot-frame {
  position: relative;
  width: min(312px, 100%);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--brand-ink);
  box-shadow: var(--shadow-frame);
  transition: transform 180ms var(--ease-out);
}
.feature-visual .shot-frame:hover { transform: translateY(-6px); }
.feature-visual .shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* ——— Bento "also inside" — full-width dark rows ——— */
.bento {
  background: var(--brand-ink);
  color: var(--text-on-dark);
  padding-block: clamp(4rem, 3rem + 4vw, 7rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Ambient glow behind the whole section */
.bento::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(0,66,37,0.35), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.bento-section-head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(3rem, 2rem + 3vw, 5rem);
}
.bento-section-head .eyebrow.bento-eyebrow {
  color: var(--brand-on-dark);
}
.bento-section-head h2 {
  color: var(--text-on-dark);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.02;
  margin-top: var(--space-3);
  max-width: 28ch;
}
.bento-section-head h2 em {
  color: var(--brand-on-dark);
  font-weight: 300;
}

.bento-rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}

.bento-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  padding-block: clamp(3rem, 2.5rem + 2.5vw, 5rem);
}
.bento-row + .bento-row {
  border-top: 1px solid rgba(244,241,236,0.08);
}

@media (min-width: 980px) {
  .bento-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
  /* Flip: image left, text right */
  .bento-row.bento-row-flip .bento-row-visual { order: -1; }
}

.bento-row-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.bento-row-text .b-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.50);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.bento-row-text .b-eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: currentColor;
  opacity: 0.70;
}

.bento-row-text h4 {
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 16ch;
}
.bento-row-text h4 em {
  color: var(--brand-on-dark);
  font-weight: 300;
}

.bento-row-text p {
  color: var(--text-on-dark-muted);
  font-size: var(--text-base);
  line-height: 1.6;
  max-width: 40ch;
  text-wrap: pretty;
}

.bento-row-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.bento-row-visual img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.55),
    0 14px 32px rgba(0,0,0,0.30);
  transition: transform 280ms var(--ease-out);
}
.bento-row:hover .bento-row-visual img {
  transform: translateY(-5px);
}

/* ——— Promise / values block ——— */
.promise {
  padding-block: var(--section-y);
  background: var(--surface-tint);
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 820px) {
  .promise-grid { grid-template-columns: 1fr 2fr; gap: var(--space-12); align-items: start; }
}
.promise h2 {
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 14ch;
}
.promise h2 em { color: var(--brand-base); }
.promise-list {
  display: grid;
  gap: var(--space-6);
}
.promise-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: baseline;
}
.promise-item .ix {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brand-base);
  letter-spacing: 0.1em;
}
.promise-item h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin-bottom: 0.375rem;
  color: var(--text-primary);
}
.promise-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 48ch;
}

/* ——— Final CTA ——— */
.cta {
  position: relative;
  padding: clamp(6rem, 4rem + 6vw, 9rem) 0;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta .glow.g5 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(closest-side, rgba(0,66,37,0.07), transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-5);
  justify-items: center;
  max-width: 48rem;
  margin: 0 auto;
}
.cta h2 {
  font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 0.98;
}
.cta h2 em { color: var(--brand-base); }
.cta p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 36rem;
  text-wrap: pretty;
}
.cta-actions { margin-top: var(--space-4); display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }
.cta-meta {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ——— Footer ——— */
.footer {
  background: var(--brand-ink);
  color: var(--text-on-dark);
  padding: var(--space-16) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}
.footer-brand .nav-logo { color: var(--text-on-dark); }
.footer-tagline {
  margin-top: var(--space-3);
  font-size: 0.9375rem;
  color: rgba(240,237,232,0.7);
  max-width: 32ch;
  line-height: 1.55;
}
.footer-badge { margin-top: var(--space-4); }
.footer-col h6 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.55);
  margin-bottom: var(--space-4);
}
.footer-col ul { display: grid; gap: 0.625rem; }
.footer-col a {
  color: var(--text-on-dark);
  font-size: 0.9375rem;
  opacity: 0.8;
  transition: opacity 180ms var(--ease-out);
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(240,237,232,0.10);
  font-size: 0.8125rem;
  color: rgba(240,237,232,0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ——— Reveal animations ——— */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 450ms var(--ease-emphasized), transform 450ms var(--ease-emphasized);
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ——————————————————————————
   Responsive overrides (mobile-first → tablet → desktop)
   These come last so cascade order beats earlier defaults.
   —————————————————————————— */

/* ——— Small phones (<400px): tighten copy and padding ——— */
@media (max-width: 400px) {
  .hero h1 { font-size: clamp(2.25rem, 8vw, 3rem); }
  .feature-row { padding: var(--space-10) 0; }
  .bento-row { gap: var(--space-6); }
  .section-head { margin-bottom: var(--space-6); }
}

/* ——— Mid mobile (540–839): show tight App Store badge in nav ——— */
@media (min-width: 540px) and (max-width: 839.98px) {
  .nav-cta { display: inline-flex; }
  .nav-cta.badge.tight {
    padding: 0.4rem 0.7rem;
    min-height: 40px;
    font-size: 0.78rem;
  }
  .nav-cta.badge.tight .badge-small { display: none; }
  .nav-cta.badge.tight .badge-big { font-size: 0.8125rem; }
}

/* ——— iPad portrait & up (≥768px): roomier hero, bigger screenshot tile ——— */
@media (min-width: 768px) {
  .hero { padding: calc(var(--space-16) + 100px) 0 var(--space-16); }
  .shot-tile { width: min(296px, 47vw); }
  .feature-visual .shot-frame { width: min(281px, 47vw); }
}

/* ——— Show desktop nav, hide hamburger ——— */
@media (min-width: 840px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* ——— iPad landscape & desktop (≥980px): two-column hero & feature rows ——— */
@media (min-width: 980px) {
  .shot-tile { width: min(328px, 100%); }
  .feature-visual .shot-frame { width: min(312px, 100%); }
}

/* ——— Wide desktop (≥1280px): a touch more breathing room ——— */
@media (min-width: 1280px) {
  .hero h1 { letter-spacing: -0.04em; }
}
