/* ============================================================
   TALLY — Marketing site (redesign)
   Builds on colors_and_type.css. Marketing token set is a touch
   warmer than the in-app greens, per the live site :root.
   ============================================================ */

:root {
  /* marketing surfaces (warmer than app) */
  --bg:        #0D3326;
  --bg-deep:   #081E13;
  --bg-deeper: #061509;
  --panel:     #103024;
  --panel-hi:  #15402f;
  --card:      #0f2d1d;
  --line:      rgba(245,243,237,.10);
  --line-2:    rgba(245,243,237,.16);

  /* text */
  --cream:     #F5F3ED;
  --c80: rgba(245,243,237,.80);
  --c60: rgba(245,243,237,.60);
  --c50: rgba(245,243,237,.50);
  --c35: rgba(245,243,237,.35);
  --c25: rgba(245,243,237,.25);
  --c10: rgba(245,243,237,.10);
  --c06: rgba(245,243,237,.06);

  /* accent (gold) — tweakable */
  --gold:      #E6B23C;
  --gold-deep: #B6841F;
  --gold-soft: #F1C766;
  --gold-text: #1A1207;
  --gold-glow: rgba(230,178,60,.22);
  --gold-12:   rgba(230,178,60,.12);
  --gold-25:   rgba(230,178,60,.26);

  --green:  #2ECC71;
  --teal:   #3CB39A;
  --orange: #E07A2D;
  --red:    #E74C3C;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1140px;

  /* floodlight glow strength multiplier (tweakable) */
  --glow: 1;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-deeper);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; border: none; outline: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(var(--max), 100% - 48px); margin: 0 auto; }

/* film grain — always on, very subtle */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .02; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== the floodlit pitch — layered background for the page ===== */
.pitch-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.pitch-bg .floor {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, #1F4D38 0%, #123626 36%, var(--bg) 60%, var(--bg-deeper) 100%);
}
.pitch-bg .stripes {
  position: absolute; inset: 0; opacity: calc(.05 * var(--glow));
  background: repeating-linear-gradient(180deg, transparent 0 64px, rgba(255,255,255,.4) 64px 128px);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 70%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 70%);
}
.pitch-bg .glow-a {
  position: absolute; top: -260px; left: -120px; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,178,60,.16) 0%, transparent 62%);
  opacity: var(--glow);
}
.pitch-bg .glow-b {
  position: absolute; top: -200px; right: -160px; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,179,154,.12) 0%, transparent 62%);
  opacity: var(--glow);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 200; height: 72px; display: flex; align-items: center;
  background: rgba(6,21,9,.72); backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { height: 32px; width: auto; }
.nav-mid { font-size: 11px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--c50); }
.nav-mid em { color: var(--gold); font-style: normal; }
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: var(--gold-text); font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 4px 14px var(--gold-glow);
  transition: transform .18s, box-shadow .18s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 10px 26px var(--gold-glow); }
@media(max-width:720px){ .nav-mid { display: none; } }

/* ============================================================
   shared buttons / chips / eyebrow
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 30px; border-radius: 16px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: var(--gold-text); font-weight: 700; font-size: 16px; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), inset 0 -2px 0 rgba(0,0,0,.18), 0 8px 22px var(--gold-glow);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: translateX(-120%); transition: transform .6s;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), inset 0 -2px 0 rgba(0,0,0,.18), 0 16px 38px var(--gold-glow); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.section-head { max-width: 640px; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; letter-spacing: -.04em; line-height: 1.02;
  margin: 14px 0 16px;
}
.section-head h2 em { color: var(--gold); font-style: normal; }
.section-head p { font-size: 17px; line-height: 1.6; color: var(--c60); max-width: 540px; }

section { position: relative; }
.divider-top { border-top: 1px solid var(--line); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 70px 0 78px; position: relative; }

.hero h1 {
  font-size: clamp(38px, 5vw, 60px); font-weight: 800; line-height: .96; letter-spacing: -.04em;
  margin-bottom: 22px; text-wrap: balance;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 18px; line-height: 1.62; color: var(--c80); margin-bottom: 30px; max-width: 520px; text-wrap: pretty; }
/* smaller screens: shrink the headline so the forced line-breaks don't overflow,
   and present the proof card on its own (the empty bare phone wastes space on mobile) */
@media(max-width:600px){
  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: clamp(27px, 8vw, 38px); line-height: 1.04; }
  .hero-sub { font-size: 16px; }
  .hero-phone .phone-bare { display: none; }
  /* stack the scrawl above the card (no overlap); card flows in-place, not absolute-centred */
  .hero-phone { height: auto; flex-direction: column; align-items: center; }
  .hero-phone .proofstack {
    position: relative; top: auto; left: auto; transform: none;
    width: min(330px, 86vw); margin: 6px auto 0;
  }
}

/* inline email capture */
.capture { display: flex; gap: 10px; max-width: 480px; margin-bottom: 16px; }
.capture .field {
  flex: 1; height: 56px; border-radius: 14px; border: 1px solid var(--line-2);
  background: rgba(6,21,9,.5); color: var(--cream); padding: 0 18px; font-size: 15.5px;
  transition: border-color .2s, box-shadow .2s;
}
.capture .field::placeholder { color: var(--c35); }
.capture .field:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(230,178,60,.12); }
.capture .btn-primary { height: 56px; padding: 0 26px; white-space: nowrap; }
@media(max-width:520px){ .capture { flex-direction: column; } .capture .field { flex: none; width: 100%; } .capture .btn-primary { width: 100%; } }

.cap-urgency {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em; color: var(--gold);
}
.hero-count { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.hero-count .flips { gap: 5px; }
.hero-count .flip { width: 38px; height: 52px; font-size: 32px; border-radius: 8px; }
.hero-count .counter-lab { margin-top: 0; font-size: 12px; }

/* hero phone column */
.hero-phone { display: flex; justify-content: center; position: relative; }
.hero-phone::before {
  content: ''; position: absolute; inset: -8% -4%; border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, rgba(230,178,60,.16) 0%, transparent 64%);
  opacity: var(--glow);
}

/* scrawled launch note over the phone */
.hero-scrawl {
  position: absolute; top: -18px; left: -64px; z-index: 26; pointer-events: none; white-space: nowrap;
  font-family: 'Caveat', cursive; font-weight: 700; color: var(--gold);
  font-size: 29px; line-height: 1.0; transform: rotate(-8deg);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero-scrawl .scrawl-arrow { position: absolute; right: -46px; bottom: -38px; width: 60px; height: 48px; color: var(--gold); transform: rotate(2deg); }
@media(max-width:900px){
  .hero-scrawl { position: static; transform: rotate(-3deg); text-align: center; margin: 0 auto 16px; left: 0; top: 0; }
  .hero-scrawl .scrawl-arrow { display: none; }
}

/* ============================================================
   PHONE MOCK (shared) — faithful in-HTML app screens
   ============================================================ */
.phone {
  position: relative; width: 312px; flex: none; background: #0c0c0d; border-radius: 46px; padding: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 0 0 2px #050505,
              0 40px 90px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.08);
}
.phone .screen {
  background: var(--bg); border-radius: 34px; overflow: hidden; height: 620px;
  border: 1px solid rgba(255,255,255,.05); position: relative; display: flex; flex-direction: column;
  background-image:
    radial-gradient(120% 70% at 50% -8%, #1F4D38 0%, #123626 38%, var(--bg) 64%);
}
.phone .island { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #000; border-radius: 999px; z-index: 30; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 86px 0; }
.how-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.how-head .eyebrow { justify-content: center; }
.how-head p { margin-left: auto; margin-right: auto; }

.how-layout { display: grid; grid-template-columns: 340px minmax(0, 440px); gap: 72px; align-items: center; justify-content: center; }
@media(max-width:860px){ .how-layout { grid-template-columns: 1fr; gap: 48px; justify-items: center; } }

.how-phone-col { display: flex; justify-content: center; position: relative; }
.how-phone-col::before { content: ''; position: absolute; inset: -8% -6%; border-radius: 50%; background: radial-gradient(ellipse at 50% 42%, rgba(230,178,60,.15), transparent 64%); opacity: var(--glow); }
.how-stage { position: relative; height: 100%; }
.how-screen {
  position: absolute; inset: 0; padding: 46px 16px 18px; display: flex; flex-direction: column; gap: 11px;
  opacity: 0; transform: translateY(14px); transition: opacity .5s, transform .5s; pointer-events: none;
}
.how-screen.active { opacity: 1; transform: none; }

/* shared screen header */
.hs-head { display: flex; align-items: center; justify-content: space-between; padding: 0 2px; margin-bottom: 2px; }
.hs-title { font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
.hs-add { width: 26px; height: 26px; border-radius: 8px; background: var(--gold-12); border: 1px solid var(--gold-25); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.hs-add svg { width: 15px; height: 15px; }
.hs-live { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }

/* step 1 — challenges */
.hs-chal { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 14px; border-radius: 13px; background: var(--c06); border: 1px solid var(--line); }
.hs-chal-name { font-size: 13px; font-weight: 600; line-height: 1.2; }
.hs-chal-pts { font-size: 15px; font-weight: 800; color: var(--gold); flex: none; }
.hs-chal.new { background: var(--gold-12); border-color: var(--gold-25); animation: hsPop .5s ease both; }
@keyframes hsPop { from { opacity: 0; transform: scale(.92); } }
.hs-chal.ghost { justify-content: center; gap: 7px; color: var(--c50); font-size: 12.5px; font-weight: 600; border-style: dashed; background: transparent; }
.hs-chal.ghost svg { width: 14px; height: 14px; }

/* step 2 — camera */
.hs-cam { flex: 1; border-radius: 18px; overflow: hidden; position: relative; border: 1px solid var(--line); }
.hs-cam-img { position: absolute; inset: 0; background: #0a2417 center/cover no-repeat; }
.hs-cam-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.3), transparent 30%, transparent 60%, rgba(0,0,0,.55)); }
.hs-cam-rule { position: absolute; top: 14px; left: 14px; right: 14px; z-index: 2; font-size: 18px; font-weight: 800; line-height: 1.1; letter-spacing: -.02em; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.hs-shutter { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); width: 54px; height: 54px; border-radius: 50%; border: 3px solid #fff; display: flex; align-items: center; justify-content: center; z-index: 2; }
.hs-shutter span { width: 40px; height: 40px; border-radius: 50%; background: #fff; animation: shutter 3.6s ease-in-out infinite; }
@keyframes shutter { 0%,70%,100% { transform: scale(1); } 80% { transform: scale(.82); } }
.hs-cap { text-align: center; font-size: 11.5px; color: var(--c50); }

/* step 3 — vote */
.hs-vote { flex: 1; position: relative; }
.hs-vote-card { position: absolute; inset: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--card); animation: hsSwipe 4.5s ease-in-out infinite; }
.hs-vote-img { position: absolute; inset: 0; background: #0a2417 center/cover no-repeat; }
.hs-vote-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(6,12,8,.9)); }
.hs-vote-rule { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; font-size: 13px; font-weight: 700; line-height: 1.25; }
.hs-vote-rule b { color: var(--gold); }
@keyframes hsSwipe { 0%,55% { transform: none; opacity: 1; } 72% { transform: translateX(46px) rotate(7deg); opacity: 1; } 80%,100% { transform: translateX(150px) rotate(12deg); opacity: 0; } }

/* reaction + comment bubbles over the vote card */
.hs-react { position: absolute; z-index: 4; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.4); opacity: 0; }
.hs-react svg { width: 17px; height: 17px; }
.hs-react.up { top: 16px; right: 12px; background: var(--green); color: #08160d; animation: hsReact 4.5s ease-in-out infinite; }
.hs-react.down { top: 58px; left: 12px; background: var(--red); color: #fff; animation: hsReact 4.5s ease-in-out infinite .5s; }
.hs-react.down svg { transform: rotate(180deg); }
@keyframes hsReact { 0%,18% { opacity: 0; transform: scale(.4); } 30%,62% { opacity: 1; transform: scale(1); } 74%,100% { opacity: 0; transform: scale(.6); } }
.hs-bubble { position: absolute; z-index: 4; padding: 7px 11px; border-radius: 13px; font-size: 11px; font-weight: 600; color: var(--cream); background: rgba(12,30,20,.92); border: 1px solid var(--line-2); box-shadow: 0 6px 16px rgba(0,0,0,.4); white-space: nowrap; opacity: 0; backdrop-filter: blur(6px); }
.hs-bubble.b1 { top: 86px; right: 8px; border-bottom-right-radius: 3px; animation: hsBub 4.5s ease-in-out infinite .35s; }
.hs-bubble.b2 { bottom: 64px; left: 6px; color: var(--green); border-bottom-left-radius: 3px; animation: hsBub 4.5s ease-in-out infinite .75s; }
@keyframes hsBub { 0%,22% { opacity: 0; transform: translateY(8px) scale(.9); } 34%,62% { opacity: 1; transform: none; } 74%,100% { opacity: 0; transform: translateY(-6px) scale(.95); } }
.hs-vbtns { display: flex; gap: 12px; justify-content: center; align-items: center; }
.hs-vtally { font-size: 11px; font-weight: 700; color: var(--c60); letter-spacing: .02em; }
.hs-vbtn { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid; }
.hs-vbtn svg { width: 19px; height: 19px; }
.hs-vbtn.deny { color: var(--red); border-color: rgba(231,76,60,.45); background: rgba(231,76,60,.12); }
.hs-vbtn.acc { color: var(--green); border-color: rgba(46,204,113,.5); background: rgba(46,204,113,.16); animation: hsAccPulse 4.5s ease-in-out infinite; }
@keyframes hsAccPulse { 0%,60%,100% { transform: scale(1); box-shadow: none; } 70% { transform: scale(1.16); box-shadow: 0 0 0 6px rgba(46,204,113,.2); } }

/* step 4 — table */
.hs-row { display: flex; align-items: center; gap: 9px; padding: 11px 12px; border-radius: 13px; background: var(--c06); border: 1px solid var(--line); }
.hs-row.up { background: linear-gradient(180deg, var(--gold-12), rgba(230,178,60,.04)); border-color: var(--gold-25); animation: hsRise .6s ease both; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
@keyframes hsRise { from { transform: translateY(16px); opacity: 0; } }
.hs-tr { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; flex: none; }
.hs-tr svg { width: 16px; height: 16px; }
.hs-tr.up { color: var(--green); }
.hs-tr.down { color: var(--red); }
.hs-tr.down svg { transform: scaleY(-1); }
.hs-tr.flat { color: var(--c35); }
.hs-rk { font-size: 13px; font-weight: 800; color: var(--c50); width: 12px; }
.hs-av { width: 30px; height: 30px; border-radius: 50%; color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; box-shadow: inset 0 -2px 0 rgba(0,0,0,.18); }
.hs-nm { flex: 1; font-size: 14px; font-weight: 700; }
.hs-pts { font-size: 11px; font-weight: 800; color: var(--green); background: rgba(46,204,113,.14); border: 1px solid rgba(46,204,113,.3); padding: 2px 7px; border-radius: 999px; animation: hsPtsPop .6s ease both .15s; }
@keyframes hsPtsPop { from { opacity: 0; transform: scale(.6); } }
.hs-tot { font-size: 18px; font-weight: 800; letter-spacing: -.02em; min-width: 26px; text-align: right; }

/* vertical steps */
.how-steps-v { list-style: none; display: flex; flex-direction: column; gap: 6px; max-width: 460px; }
.how-step {
  display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; border-radius: 18px;
  border: 1px solid transparent; cursor: default; transition: background .35s, border-color .35s, transform .35s;
}
.how-step.active { background: linear-gradient(180deg, rgba(245,243,237,.05), rgba(245,243,237,.015)); border-color: var(--gold-25); }
.hsv-n {
  flex: none; width: 42px; height: 42px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--c50); background: var(--c06); border: 1px solid var(--line);
  transition: color .35s, background .35s, border-color .35s;
}
.how-step.active .hsv-n { color: var(--gold-text); background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep)); border-color: transparent; box-shadow: 0 4px 14px var(--gold-glow); }
.hsv-body h4 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 5px; }
.hsv-body p { font-size: 14.5px; line-height: 1.5; color: var(--c60); }

/* ============================================================
   CUSTOM CHALLENGES
   ============================================================ */
.challenges { padding: 86px 0; }
.ch-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 64px; align-items: center; }
@media(max-width:880px){ .ch-grid { grid-template-columns: 1fr; gap: 44px; } .ch-copy { order: -1; } }

/* left panel */
.ch-panel { border-radius: 26px; padding: 24px; background: linear-gradient(180deg, rgba(245,243,237,.05), rgba(245,243,237,.015)); border: 1px solid var(--line); }
.ch-panel-head { padding: 4px 6px 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.ch-panel-head b { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.ch-panel-head span { font-size: 13px; color: var(--c50); }
.ch-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:420px){ .ch-tiles { grid-template-columns: 1fr; } }
.ch-tile { padding: 18px 16px 16px; border-radius: 17px; background: var(--c06); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .2s, border-color .2s, background .2s; }
.ch-tile:hover { transform: translateY(-3px); border-color: var(--gold-25); background: rgba(245,243,237,.05); }
.ch-ic { width: 34px; height: 34px; display: flex; align-items: center; color: var(--cream); margin-bottom: 16px; }
.ch-ic svg { width: 26px; height: 26px; }
.ch-tile h5 { font-size: 15px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 5px; }
.ch-tile p { font-size: 12.5px; line-height: 1.4; color: var(--c50); margin-bottom: 14px; flex: 1; }
.ch-pts { font-size: 14px; font-weight: 800; color: var(--gold); }
.ch-pts.custom { font-size: 12px; letter-spacing: .04em; }
.ch-tile.add { border-style: dashed; border-color: var(--gold-25); background: linear-gradient(165deg, rgba(230,178,60,.10), rgba(245,243,237,.015)); }
.ch-tile.add .ch-ic { color: var(--gold); }
.ch-tile.add h5 { color: var(--gold); }

/* right copy */
.ch-copy .eyebrow { margin-bottom: 18px; }
.ch-copy h2 { font-size: clamp(38px, 5.6vw, 64px); font-weight: 900; line-height: .96; letter-spacing: -.045em; margin-bottom: 24px; }
.ch-copy h2 em { color: var(--gold); font-style: normal; }
.ch-copy p { font-size: 16.5px; line-height: 1.62; color: var(--c80); margin-bottom: 18px; max-width: 540px; }
.ch-copy .ch-q { color: var(--cream); font-weight: 600; }
.ch-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.ch-pill { padding: 11px 20px; border-radius: 999px; border: 1px solid var(--gold-25); background: var(--gold-12); color: var(--gold); font-size: 14px; font-weight: 700; }

/* hero proof-card stack — overhangs the phone, auto-swipe */
.phone-bare .screen {
  background-image:
    radial-gradient(120% 70% at 50% -8%, #1F4D38 0%, #123626 38%, var(--bg) 64%);
}
.proofstack {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 360px; height: 432px; z-index: 25;
}
.pcard {
  position: absolute; top: 0; left: 50%; width: 100%; height: 100%;
  transform: translateX(-50%); transform-origin: 50% 100%;
  border-radius: 24px; overflow: hidden; background: #0c0c0d;
  border: 1px solid rgba(255,255,255,.10); will-change: transform, opacity;
  box-shadow: 0 30px 70px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.06);
}
.pc-photo { position: absolute; inset: 0; background: #0a2417 center/cover no-repeat; }
.pc-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,16,10,.18) 0%, transparent 26%, transparent 52%, rgba(6,12,8,.9) 100%); }

/* the rule, cut out big over the photo */
.pc-rule {
  position: absolute; top: 22px; left: 18px; right: 78px; z-index: 3;
  font-size: 27px; font-weight: 800; line-height: 1.06; letter-spacing: -.03em; color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.6); text-wrap: balance;
}
/* points value, circular, top-right */
.pc-pts {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; letter-spacing: -.03em;
  color: var(--gold-text); background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 6px 16px rgba(0,0,0,.4);
}
.pc-meta { position: absolute; left: 18px; bottom: 20px; z-index: 3; display: flex; align-items: center; gap: 10px; }
.pc-av { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--gold-text); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.pc-who { display: flex; flex-direction: column; line-height: 1.15; }
.pc-who b { font-size: 15px; font-weight: 700; color: #fff; }
.pc-who em { font-size: 11.5px; font-style: normal; color: rgba(255,255,255,.7); }
.pc-actions { position: absolute; right: 16px; bottom: 18px; z-index: 3; display: flex; gap: 10px; }
.pc-btn { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); border: 1.5px solid; transition: transform .2s, background .2s, box-shadow .2s; }
.pc-btn svg { width: 20px; height: 20px; }
.pc-deny { color: var(--red); border-color: rgba(231,76,60,.55); background: rgba(231,76,60,.18); }
.pc-acc  { color: #fff; border-color: rgba(46,204,113,.6); background: rgba(46,204,113,.24); }
.pc-btn.lit { transform: scale(1.18); }
.pc-deny.lit { background: var(--red); color: #fff; box-shadow: 0 0 0 6px rgba(231,76,60,.22); }
.pc-acc.lit  { background: var(--green); color: #08160d; box-shadow: 0 0 0 6px rgba(46,204,113,.22); }

.stamp {
  position: absolute; top: 96px; left: 24px; padding: 7px 16px; border: 4px solid; border-radius: 12px;
  font-size: 26px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
  transform: rotate(-13deg) scale(.6); opacity: 0; transition: opacity .25s, transform .25s; z-index: 6;
  background: rgba(8,18,12,.42); backdrop-filter: blur(2px);
}
.stamp.show { opacity: 1; transform: rotate(-13deg) scale(1); }
.stamp.approved { color: var(--green); border-color: var(--green); }
.stamp.rejected { color: var(--red); border-color: var(--red); right: 24px; left: auto; transform: rotate(13deg) scale(.6); }
.stamp.rejected.show { transform: rotate(13deg) scale(1); }
@media(max-width:380px){ .proofstack { width: 300px; } }

/* ============================================================
   TESTIMONIALS — straight from the group chat
   ============================================================ */
.voices { padding: 86px 0; }
.voices-head { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.voices-head .section-head { margin: 0 auto; }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media(max-width:860px){ .voices-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.voice {
  padding: 28px; border-radius: 20px; background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.voice .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.voice q { font-size: 16.5px; line-height: 1.55; color: var(--cream); font-weight: 500; quotes: none; flex: 1; }
.voice q::before, .voice q::after { content: none; }
.voice q em { color: var(--gold); font-style: normal; font-weight: 700; }
.voice .by { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; border-top: 1px solid var(--line); }
.voice .by b { font-size: 14px; font-weight: 700; }
.voice .by span { font-size: 12px; color: var(--c50); }

/* ============================================================
   WAITLIST
   ============================================================ */
.getapp { padding: 90px 0 100px; }
.getapp-box {
  max-width: 720px; margin: 0 auto; text-align: center; padding: clamp(34px, 5vw, 60px);
  border-radius: 32px; border: 1px solid var(--gold-25);
  background: linear-gradient(150deg, rgba(230,178,60,.10), rgba(245,243,237,.02));
  position: relative; overflow: hidden;
}
.getapp-box::before { content: ''; position: absolute; top: -90px; right: -60px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(230,178,60,.16), transparent 64%); opacity: var(--glow); }
.getapp-box .eyebrow { justify-content: center; margin-bottom: 14px; position: relative; }
.getapp-box h2 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; letter-spacing: -.045em; line-height: 1.02; margin-bottom: 14px; position: relative; }
.getapp-box h2 em { color: var(--gold); font-style: normal; }
.getapp-box p { font-size: 16.5px; color: var(--c80); line-height: 1.6; max-width: 480px; margin: 0 auto 30px; position: relative; }
.getapp-box .store-badges { justify-content: center; position: relative; }
.store-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 12px; padding: 11px 22px; border-radius: 14px; background: #0b0b0c; border: 1px solid var(--line-2); transition: transform .2s, border-color .2s; }
.store-badge:hover { transform: translateY(-2px); border-color: var(--c35); }
.store-badge svg { width: 26px; height: 26px; fill: var(--cream); flex: none; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge small { font-size: 10px; color: var(--c60); font-weight: 500; }
.store-badge b { font-size: 16px; font-weight: 700; color: var(--cream); letter-spacing: -.01em; }
/* analogue split-flap counter (social proof) */
.flips { display: inline-flex; gap: 6px; }
.flip {
  position: relative; width: 46px; height: 64px; border-radius: 9px;
  background: linear-gradient(180deg, #16161a 0 50%, #0a0a0c 50% 100%);
  color: #fff; font-family: var(--font); font-weight: 800; font-size: 40px;
  display: flex; align-items: center; justify-content: center; letter-spacing: -.02em;
  box-shadow: 0 6px 16px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08), inset 0 0 0 1px rgba(0,0,0,.6);
}
.flip::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-1px); background: rgba(0,0,0,.85); box-shadow: 0 1px 0 rgba(255,255,255,.05); }
.counter-lab { margin-top: 12px; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c50); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--line); padding: 34px 0 48px; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.foot img { height: 26px; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { font-size: 13px; color: var(--c50); transition: color .2s; }
.foot-links a:hover { color: var(--cream); }
.foot-text { font-size: 12px; color: var(--c50); width: 100%; }
.foot-text em { color: var(--gold); font-style: normal; font-weight: 700; }

::selection { background: rgba(230,178,60,.24); }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-deeper); }
::-webkit-scrollbar-thumb { background: rgba(230,178,60,.24); border-radius: 4px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   HERO — desktop: copy left (left-aligned) + media right; mobile: centered stack.
   Source order is download → strapline → sub → media → email (= the mobile order);
   on desktop a grid relocates the media to a right-hand column.
   ============================================================ */
.hero-stack {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: 52px; row-gap: 20px;
  align-items: start;
  grid-template-areas:
    "dl    media"
    "strap media"
    "sub   media"
    "email media";
}
.hero-stack .dl-cta { grid-area: dl; }
.hero-stack .hero-strap { grid-area: strap; margin: 0; }
.hero-stack .hero-sub { grid-area: sub; margin: 0; max-width: 560px; }
.hero-stack .hero-media { grid-area: media; align-self: center; }
.hero-stack .email-block { grid-area: email; margin: 0; }

/* off-brand (blue) download CTA — left-aligned on desktop */
.dl-cta { text-align: left; }
.dl-eyebrow { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.dl-buttons { display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; }
/* App-store-style black badges, larger than the old store pills */
.dl-btn { display: inline-flex; align-items: center; gap: 13px; padding: 16px 30px; border-radius: 16px;
  background: #0b0b0c; border: 1px solid rgba(245,243,237,.20);
  box-shadow: 0 14px 34px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .2s, border-color .2s; }
.dl-btn:hover { transform: translateY(-2px); border-color: rgba(245,243,237,.42); }
.dl-btn svg { width: 30px; height: 30px; fill: #fff; flex: none; }
.dl-btn span { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.dl-btn small { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.8); }
.dl-btn b { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -.01em; }

/* Google Play badge: matching black, but the triangle carries the iconic 4-colour mark. */
.dl-btn.gplay svg, .store-badge.gplay svg { fill: none; }

/* hero media (video or fallback animation) */
.hero-media { width: 100%; display: flex; justify-content: center; }
.hero-video { width: min(520px, 100%); aspect-ratio: 16 / 10; border-radius: 22px; object-fit: cover;
  background: #000; border: 1px solid var(--line-2); box-shadow: 0 30px 70px rgba(0,0,0,.5); }

/* email capture block — left-aligned on desktop */
.email-block { width: 100%; max-width: 480px; }
.email-block .cap-urgency { display: block; text-align: left; margin-bottom: 14px; }
.email-block .launch-chip { display: inline-block; background: var(--gold-12); border: 1px solid var(--gold-25);
  color: var(--gold); padding: 2px 10px; border-radius: 999px; font-size: 12px; font-weight: 800; margin-left: 6px; }
.email-block .capture { margin: 0 0 14px; }
.email-block .hero-count { justify-content: flex-start; }

/* repeated download band — centered */
.dl-band { padding: 64px 0; }
.dl-band .dl-cta { text-align: center; }
.dl-band .dl-buttons { justify-content: center; }

/* Mobile: single column, centered */
@media (max-width: 900px) {
  .hero-stack { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; max-width: 760px; }
  .dl-cta { text-align: center; }
  .dl-buttons { justify-content: center; }
  .hero-stack .hero-sub { max-width: 620px; }
  .hero-stack .email-block { margin: 0 auto; }
  .email-block .cap-urgency { text-align: center; }
  .email-block .capture { margin: 0 auto 14px; }
  .email-block .hero-count { justify-content: center; }
}
@media (max-width: 600px) {
  .hero-stack { gap: 20px; }
  .dl-band { padding: 44px 0; }
}
