/* =========================================================
   AURA SOCIETY — Landing Page
   Design system: forest green + warm cream, bold grotesk,
   fresh green energy accent.
   ========================================================= */

:root {
  /* Greens */
  --green-900: #2c3719;   /* deepest forest */
  --green-800: #34431f;   /* hero bg */
  --green-700: #3e4f26;   /* raised green */
  --green-600: #4c5f30;
  --green-500: #5e7340;

  /* Creams / beige */
  --cream:     #f5efe2;   /* main light bg */
  --cream-2:   #efe7d5;
  --beige:     #e6dcc4;
  --beige-2:   #ddd1b4;
  --sand-line: #d8cbac;

  /* Accent — fresh energetic green */
  --lime:      #a8cf45;
  --lime-deep: #8bb733;
  --lime-soft: #c7e07e;

  /* Text */
  --ink:        #20281167;
  --ink-strong: #232c14;
  --ink-soft:   #5d6448;
  --on-green:   #f6f2e8;
  --on-green-dim:#c4cbb0;

  /* Utility */
  --white: #ffffff;
  --shadow-card: 0 1px 2px rgba(36,44,20,.04), 0 12px 30px rgba(36,44,20,.08);
  --shadow-float: 0 20px 60px rgba(20,26,10,.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --maxw: 1180px;
  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink-strong);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--lime); color: var(--green-900); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 9vw, 130px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--lime-deep); border-radius: 2px;
}
.eyebrow.on-dark { color: var(--lime); }
.eyebrow.on-dark::before { background: var(--lime); }

/* ---------- Type ---------- */
h1, h2, h3 { line-height: 1.02; letter-spacing: -.02em; font-weight: 800; }
.display {
  font-weight: 900;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.94;
  letter-spacing: -.035em;
}
.h2 { font-size: clamp(32px, 4.6vw, 60px); font-weight: 800; letter-spacing: -.03em; }
.h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; }
.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.45; color: var(--ink-soft); font-weight: 500; }
.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green-800); --fg: var(--on-green);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  font-family: inherit; font-weight: 800; font-size: 16px; letter-spacing: -.01em;
  padding: 16px 26px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lime { --bg: var(--lime); --fg: var(--green-900); box-shadow: 0 10px 26px rgba(139,183,51,.4); }
.btn--lime:hover { box-shadow: 0 16px 34px rgba(139,183,51,.5); }
.btn--cream { --bg: var(--cream); --fg: var(--green-900); }
.btn--ghost { --bg: transparent; --fg: var(--on-green); border: 1.5px solid rgba(246,242,232,.3); }
.btn--ghost:hover { background: rgba(246,242,232,.08); }
.btn--block { width: 100%; }
.btn--lg { padding: 19px 32px; font-size: 17px; }

.arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(52,67,31,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(246,242,232,.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--on-green); }
.brand__mark {
  width: 34px; height: 34px; border-radius: 10px;
  overflow: hidden; flex: 0 0 auto;
  box-shadow: 0 4px 14px rgba(20,26,10,.35), inset 0 0 0 1px rgba(246,242,232,.12);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand__name { font-weight: 900; letter-spacing: .02em; font-size: 16px; }
.brand__name small { display: block; font-size: 9.5px; letter-spacing: .34em; color: var(--lime); font-weight: 700; margin-top: -2px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--on-green-dim); font-weight: 600; font-size: 15px; transition: color .15s; }
.nav__links a:hover { color: var(--on-green); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 860px) { .nav__links { display: none; } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(168,207,69,.14), transparent 55%),
    radial-gradient(80% 70% at 0% 110%, rgba(168,207,69,.07), transparent 60%),
    var(--green-800);
  color: var(--on-green);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  padding: clamp(54px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
}
.hero__applisting { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.hero__applisting img { width: 60px; height: 60px; border-radius: 15px; box-shadow: 0 10px 28px rgba(20,26,10,.4), inset 0 0 0 1px rgba(246,242,232,.12); flex: 0 0 auto; }
.hero__applisting > div { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.hero__applisting strong { color: var(--white); font-weight: 900; font-size: 17px; letter-spacing: -.01em; white-space: nowrap; }
.hero__applisting .hero__badge { margin-bottom: 0; }
@media (max-width: 980px) { .hero__applisting { justify-content: center; } }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(168,207,69,.14); color: var(--lime);
  border: 1px solid rgba(168,207,69,.3);
  font-weight: 700; font-size: 13.5px; letter-spacing: .02em;
  padding: 8px 15px; border-radius: 999px; margin-bottom: 26px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(168,207,69,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(168,207,69,.5);} 70%{box-shadow:0 0 0 8px rgba(168,207,69,0);} 100%{box-shadow:0 0 0 0 rgba(168,207,69,0);} }

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero__sub { font-size: clamp(17px, 1.7vw, 20px); color: var(--on-green-dim); max-width: 30em; margin-bottom: 32px; font-weight: 500; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__proof { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--green-800);
  margin-left: -10px; background-size: cover; background-position: center;
  display: grid; place-items: center; font-size: 13px; font-weight: 800; color: var(--green-900);
}
.avatars span:first-child { margin-left: 0; }
.hero__proof small { color: var(--on-green-dim); font-size: 14px; line-height: 1.3; }
.hero__proof strong { color: var(--white); }

/* phone visual */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 540px; }
.hero__glow { position: absolute; width: 80%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,207,69,.22), transparent 65%); filter: blur(20px); }

/* floating stat chips around phone */
.chip {
  position: absolute; z-index: 5;
  background: var(--cream); color: var(--ink-strong);
  border-radius: 16px; padding: 12px 15px; box-shadow: var(--shadow-float);
  display: flex; align-items: center; gap: 11px; font-weight: 700;
  animation: floaty 5s ease-in-out infinite;
}
.chip small { display:block; font-size: 11px; color: var(--ink-soft); font-weight: 600; }
.chip b { font-size: 17px; }
.chip__ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: 0 0 auto; }
.chip--1 { top: 8%; left: -4%; animation-delay: 0s; }
.chip--2 { bottom: 16%; left: -8%; animation-delay: 1.4s; }
.chip--3 { top: 22%; right: -6%; animation-delay: .7s; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
@media (max-width: 980px) { .chip--1,.chip--2 { left: 2%; } .chip--3 { right: 2%; } }

/* marquee logos / trust */
.trust { background: var(--green-900); color: var(--on-green-dim); padding: 26px 0; }
.trust__row { display: flex; align-items: center; justify-content: center; gap: clamp(24px,5vw,64px); flex-wrap: wrap; }
.trust__row span { font-weight: 700; font-size: 15px; opacity: .8; display: inline-flex; gap: 9px; align-items: center; }

/* =========================================================
   PHONE MOCKUP (shared)
   ========================================================= */
.phone {
  position: relative; width: 300px; aspect-ratio: 300/620;
  background: #11160a; border-radius: 46px; padding: 11px;
  box-shadow: var(--shadow-float), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--cream);
}
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #11160a; border-radius: 999px; z-index: 20;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }

/* image-screenshot variant: size frame to the screenshot's ratio */
.phone--img { aspect-ratio: auto; height: auto; }
.phone--img .phone__screen { height: auto; aspect-ratio: 1320 / 2868; }
.phone--img .phone__screen img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* app status bar */
.app-status { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px 4px; font-size: 13px; font-weight: 700; color: var(--ink-strong); }
.app-status .sb-right { display: flex; gap: 5px; align-items: center; }

/* ---- App: dashboard ---- */
.app { padding: 0 16px 70px; font-size: 13px; }
.app__hello { padding: 8px 4px 14px; }
.app__hello small { color: var(--ink-soft); font-weight: 600; }
.app__hello h4 { font-size: 21px; font-weight: 900; letter-spacing: -.02em; }
.app-card { background: var(--white); border-radius: 20px; padding: 16px; box-shadow: 0 8px 22px rgba(36,44,20,.06); margin-bottom: 12px; }
.app-ring { display: flex; align-items: center; gap: 16px; }
.ring { width: 92px; height: 92px; flex: 0 0 auto; position: relative; }
.ring svg { transform: rotate(-90deg); }
.ring__c { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.ring__c b { font-size: 20px; font-weight: 900; line-height: 1; }
.ring__c small { font-size: 9.5px; color: var(--ink-soft); font-weight: 700; }
.macros { flex: 1; display: grid; gap: 10px; }
.macro small { display: flex; justify-content: space-between; font-weight: 700; font-size: 11px; margin-bottom: 4px; }
.macro small span:last-child { color: var(--ink-soft); }
.bar { height: 7px; background: var(--beige); border-radius: 99px; overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 99px; }
.app-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini { background: var(--white); border-radius: 18px; padding: 14px; box-shadow: 0 8px 22px rgba(36,44,20,.06); }
.mini__top { display: flex; align-items: center; justify-content: space-between; }
.mini__ic { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; }
.mini b { font-size: 22px; font-weight: 900; display: block; margin-top: 8px; letter-spacing: -.02em; }
.mini small { color: var(--ink-soft); font-weight: 700; font-size: 11px; }
.water-dots { display: flex; gap: 4px; margin-top: 9px; }
.water-dots i { flex: 1; height: 18px; border-radius: 5px; background: var(--beige); }
.water-dots i.on { background: #5fb0d6; }
.workout-row { display: flex; align-items: center; gap: 12px; }
.workout-row .wo-ic { width: 42px; height: 42px; border-radius: 13px; background: var(--green-800); color: var(--lime); display: grid; place-items: center; flex: 0 0 auto; }
.workout-row b { font-weight: 900; font-size: 14px; }
.workout-row small { color: var(--ink-soft); font-weight: 600; }
.workout-row .go { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--lime); color: var(--green-900); display: grid; place-items: center; }

.app-tab { position: absolute; bottom: 0; left: 0; right: 0; height: 58px; background: var(--white); border-top: 1px solid var(--sand-line); display: flex; align-items: center; justify-content: space-around; padding: 0 14px; }
.app-tab i { width: 22px; height: 22px; opacity: .42; }
.app-tab i.on { opacity: 1; color: var(--green-700); }

/* =========================================================
   STAGGER / FEATURES
   ========================================================= */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--sand-line); border-radius: 24px; overflow: hidden; border: 1px solid var(--sand-line); }
.stat-strip > div { background: var(--cream); padding: 30px 26px; }
.stat-strip b { display: block; font-size: clamp(30px, 4vw, 46px); font-weight: 900; letter-spacing: -.03em; color: var(--green-700); line-height: 1; }
.stat-strip small { color: var(--ink-soft); font-weight: 700; font-size: 14px; margin-top: 8px; display: block; }
@media (max-width: 760px) { .stat-strip { grid-template-columns: 1fr 1fr; } }

.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head .h2 { margin: 16px 0 18px; }

/* alternating feature blocks */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.feat + .feat { margin-top: clamp(80px, 9vw, 130px); }
.feat--rev .feat__media { order: 2; }
.feat__media { display: grid; place-items: center; position: relative; }
.feat__tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--lime-deep); margin-bottom: 16px; }
.feat h3 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 16px; letter-spacing: -.03em; }
.feat p { font-size: 18px; color: var(--ink-soft); max-width: 30em; }
.feat__list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.feat__list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink-strong); }
.feat__list .tick { width: 24px; height: 24px; flex: 0 0 auto; border-radius: 50%; background: var(--lime); color: var(--green-900); display: grid; place-items: center; margin-top: 1px; }
@media (max-width: 860px) {
  .feat { grid-template-columns: 1fr; gap: 36px; }
  .feat--rev .feat__media { order: 0; }
}

/* feature card grid (smaller) */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .fgrid { grid-template-columns: 1fr; } }
.fcard { background: var(--cream); border: 1px solid var(--sand-line); border-radius: 22px; padding: 26px; transition: transform .2s, box-shadow .2s; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.fcard__ic { width: 48px; height: 48px; border-radius: 14px; background: var(--green-800); color: var(--lime); display: grid; place-items: center; margin-bottom: 18px; }
.fcard h4 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.fcard p { color: var(--ink-soft); font-size: 15px; }

/* =========================================================
   App-screen mockups inside feature media (scanner / workout / chart)
   ========================================================= */
.screen-card {
  width: 300px; background: var(--white); border-radius: 28px; padding: 18px;
  box-shadow: var(--shadow-card); border: 1px solid var(--sand-line);
}
.sc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sc-head h5 { font-size: 17px; font-weight: 900; letter-spacing: -.02em; }
.sc-head .pill { font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 99px; background: var(--green-800); color: var(--lime); }

/* scanner */
.scanner { background: var(--green-900); border-radius: 20px; height: 170px; position: relative; overflow: hidden; display: grid; place-items: center; }
.scanner .frame { width: 180px; height: 110px; border-radius: 14px; border: 2px solid rgba(168,207,69,.6); position: relative; }
.scanner .frame::before, .scanner .frame::after { content:""; position:absolute; width:22px; height:22px; border:3px solid var(--lime); }
.scanner .frame::before { top:-2px; left:-2px; border-right:none; border-bottom:none; border-radius: 8px 0 0 0; }
.scanner .frame::after { bottom:-2px; right:-2px; border-left:none; border-top:none; border-radius: 0 0 8px 0; }
.scanner .laser { position: absolute; left: 18px; right: 18px; height: 2px; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: scan 2.2s ease-in-out infinite; }
@keyframes scan { 0%,100% { top: 30px; } 50% { top: 138px; } }
.scan-result { display: flex; align-items: center; gap: 12px; margin-top: 14px; background: var(--cream); border-radius: 16px; padding: 12px; }
.scan-result .ph { width: 44px; height: 44px; border-radius: 11px; background: var(--beige); flex: 0 0 auto; display:grid; place-items:center; }
.scan-result b { font-weight: 900; font-size: 14px; display: block; }
.scan-result small { color: var(--ink-soft); font-weight: 700; }
.scan-result .kcal { margin-left: auto; text-align: right; }
.scan-result .kcal b { color: var(--green-700); }

/* workout list */
.wo-item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 16px; background: var(--cream); margin-bottom: 9px; }
.wo-item .n { width: 28px; height: 28px; border-radius: 9px; background: var(--green-800); color: var(--lime); display: grid; place-items: center; font-weight: 900; font-size: 12px; flex: 0 0 auto; }
.wo-item b { font-weight: 800; font-size: 14px; display: block; }
.wo-item small { color: var(--ink-soft); font-weight: 700; }
.wo-item .done { margin-left: auto; color: var(--lime-deep); }
.timer { background: var(--green-800); color: var(--on-green); border-radius: 18px; padding: 16px; display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.timer .t { font-size: 30px; font-weight: 900; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.timer small { color: var(--lime); font-weight: 800; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.timer .ctrl { width: 42px; height: 42px; border-radius: 50%; background: var(--lime); color: var(--green-900); display: grid; place-items: center; }

/* weight chart */
.chart { height: 175px; position: relative; padding: 8px 4px 0; }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.chart .gl { stroke: var(--sand-line); stroke-width: 1; }
.chart-foot { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: var(--ink-soft); font-weight: 700; }
.kpi-row { display: flex; gap: 10px; margin-top: 14px; }
.kpi { flex: 1; background: var(--cream); border-radius: 14px; padding: 12px; }
.kpi b { font-size: 18px; font-weight: 900; color: var(--green-700); }
.kpi small { display: block; color: var(--ink-soft); font-weight: 700; font-size: 10.5px; }

/* =========================================================
   FOR WHOM
   ========================================================= */
.who { background: var(--green-800); color: var(--on-green); }
.who .h2 { color: var(--white); }
.who .lead { color: var(--on-green-dim); }
.chips-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.chips-cloud span {
  border: 1px solid rgba(246,242,232,.18); border-radius: 999px; padding: 12px 20px;
  font-weight: 700; font-size: 15.5px; color: var(--on-green); background: rgba(246,242,232,.04);
  transition: background .15s, border-color .15s;
}
.chips-cloud span:hover { background: rgba(168,207,69,.14); border-color: rgba(168,207,69,.4); }
.chips-cloud span.hot { background: var(--lime); color: var(--green-900); border-color: var(--lime); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 30px; }
.step__n { font-size: 15px; font-weight: 900; color: var(--lime-deep); letter-spacing: .1em; }
.step__bar { height: 4px; background: var(--beige); border-radius: 99px; margin: 16px 0 20px; overflow: hidden; }
.step__bar i { display: block; height: 100%; width: 36%; background: var(--lime-deep); border-radius: 99px; }
.step h4 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 16px; }

/* =========================================================
   WAITLIST
   ========================================================= */
.waitlist { background: var(--green-900); color: var(--on-green); position: relative; overflow: hidden; }
.waitlist::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 85% 0%, rgba(168,207,69,.16), transparent 60%);
}
.wl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center; position: relative; }
@media (max-width: 880px) { .wl-grid { grid-template-columns: 1fr; } }
.waitlist .h2 { color: var(--white); }
.waitlist .lead { color: var(--on-green-dim); }
.wl-points { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.wl-points li { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.wl-points .tick { width: 26px; height: 26px; border-radius: 50%; background: rgba(168,207,69,.18); color: var(--lime); display: grid; place-items: center; flex: 0 0 auto; }

.form-card { background: var(--cream); color: var(--ink-strong); border-radius: 28px; padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-float); }
.form-card h3 { font-size: 24px; font-weight: 900; letter-spacing: -.02em; }
.form-card .sub { color: var(--ink-soft); font-weight: 600; margin: 6px 0 22px; font-size: 15px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 800; font-size: 13px; margin-bottom: 7px; color: var(--ink-strong); }
.field label .opt { color: var(--ink-soft); font-weight: 600; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; font-weight: 500;
  background: var(--white); border: 1.5px solid var(--sand-line); border-radius: 13px;
  padding: 14px 15px; color: var(--ink-strong); transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input::placeholder, .field textarea::placeholder { color: #a7a78f; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lime-deep); box-shadow: 0 0 0 4px rgba(139,183,51,.16); }
.field input.invalid { border-color: #c0563c; box-shadow: 0 0 0 4px rgba(192,86,60,.12); }
.field .err { color: #b04a30; font-size: 12.5px; font-weight: 700; margin-top: 6px; display: none; }
.field.show-err .err { display: block; }
.form-foot { font-size: 12.5px; color: var(--ink-soft); text-align: center; margin-top: 14px; font-weight: 600; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .row-2 { grid-template-columns: 1fr; } }

/* success state */
.wl-success { display: none; text-align: center; padding: 14px 6px; }
.wl-success.show { display: block; animation: pop .4s ease; }
@keyframes pop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wl-success .check { width: 72px; height: 72px; border-radius: 50%; background: var(--lime); color: var(--green-900); display: grid; place-items: center; margin: 0 auto 18px; box-shadow: 0 12px 30px rgba(139,183,51,.4); }
.wl-success h3 { font-size: 26px; font-weight: 900; margin-bottom: 8px; }
.wl-success p { color: var(--ink-soft); font-weight: 600; }
.wl-pos { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--sand-line); border-radius: 99px; padding: 10px 18px; font-weight: 800; }
.wl-pos b { color: var(--green-700); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 800px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--sand-line); }
.qa__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-size: clamp(17px,2vw,20px); font-weight: 800; color: var(--ink-strong); }
.qa__ic { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; border: 1.5px solid var(--sand-line); display: grid; place-items: center; transition: transform .25s, background .2s; }
.qa.open .qa__ic { transform: rotate(45deg); background: var(--lime); border-color: var(--lime); }
.qa__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qa__a p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 16px; font-weight: 500; max-width: 60ch; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--green-900); color: var(--on-green-dim); padding: 60px 0 34px; }
.footer__top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; padding-bottom: 36px; border-bottom: 1px solid rgba(246,242,232,.1); }
.footer__cta h3 { color: var(--white); font-size: clamp(24px,3vw,34px); font-weight: 900; max-width: 14ch; letter-spacing: -.02em; }
.footer__links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer__col h6 { color: var(--on-green); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-weight: 800; }
.footer__col a { display: block; color: var(--on-green-dim); font-weight: 600; margin-bottom: 10px; font-size: 15px; transition: color .15s; }
.footer__col a:hover { color: var(--lime); }
.footer__bot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13.5px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__proof { justify-content: center; }
  .hero__visual { min-height: 600px; margin-top: 20px; }
  .eyebrow, .feat__tag { justify-content: center; }
  .sec-head { margin-left: auto; margin-right: auto; text-align: center; }
  .feat__tag { display: inline-flex; }
}

/* ---------- Phones (≤ 640px) ---------- */
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }

  /* nav */
  .nav__inner { height: 60px; }
  .brand__name { font-size: 15px; }
  .brand__mark { width: 30px; height: 30px; }
  .nav__cta .btn { padding: 11px 16px; font-size: 14px; }

  /* hero */
  .hero__grid { padding: 36px 0 30px; }
  .hero .display { font-size: clamp(40px, 12vw, 60px); line-height: .98; }
  .hero__sub { font-size: 16.5px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__actions .btn { width: 100%; }
  .hero__applisting { gap: 12px; margin-bottom: 24px; }
  .hero__applisting img { width: 50px; height: 50px; border-radius: 13px; }
  .hero__proof { flex-direction: column; gap: 10px; }
  .hero__proof small { text-align: center; }

  /* hero visual: smaller phone, chips tucked to edges */
  .hero__visual { min-height: 520px; margin-top: 26px; }
  .phone { width: min(250px, 74vw); }
  .chip { padding: 9px 12px; border-radius: 13px; }
  .chip b { font-size: 14px; }
  .chip small { font-size: 10px; }
  .chip__ic { width: 28px; height: 28px; }
  .chip--1 { top: 4%; left: 0; }
  .chip--2 { bottom: 18%; left: 0; }
  .chip--3 { top: 16%; right: 0; }

  /* trust strip wraps tighter */
  .trust__row { gap: 16px 22px; }
  .trust__row span { font-size: 13.5px; }

  /* feature app-cards never overflow */
  .screen-card { width: 100%; max-width: 320px; margin: 0 auto; }
  .feat p { font-size: 16.5px; }
  .feat h3 { font-size: clamp(26px, 7vw, 34px); }

  /* stats */
  .stat-strip > div { padding: 22px 18px; }

  /* who / chips cloud */
  .chips-cloud { gap: 9px; }
  .chips-cloud span { font-size: 14px; padding: 10px 15px; }

  /* waitlist form */
  .form-card { padding: 22px; border-radius: 22px; }
  .wl-points li { font-size: 15px; }

  /* footer */
  .footer { padding: 48px 0 28px; }
  .footer__top { gap: 26px; }
  .footer__links { gap: 32px; }
  .footer__bot { flex-direction: column; gap: 8px; }
}

/* ---------- Small phones (≤ 380px) ---------- */
@media (max-width: 380px) {
  .hero .display { font-size: 36px; }
  .brand__name small { letter-spacing: .26em; }
  .nav__cta .btn { padding: 10px 13px; font-size: 13px; }
  .phone { width: min(230px, 72vw); }
}
