/* ═══════════════════════════════════════════════════════════
   FitSync V2 — landing page styles
   ═══════════════════════════════════════════════════════════ */

:root{
  color-scheme: dark;

  /* Brand — both themes */
  --primary:        #22C55E;
  --primary-dark:   #16A34A;
  --primary-fill:   #22C55E;   /* solid emerald fills (buttons, badges) */
  --on-primary:     #08130C;   /* text/icons ON emerald — WCAG AA */
  --primary-soft:   rgba(34,197,94,.13);
  --primary-glow:   rgba(34,197,94,.22);

  /* Dark theme — neutral near-black, no green tint */
  --bg:             #0A0A0B;
  --bg-2:           #070708;
  --surface:        #1C1C1E;
  --surface-2:      #2C2C2E;
  --surface-3:      #3A3A3C;
  --fg:             #F5F5F7;
  --fg-2:           #E4E4E8;
  --muted:          #9B9BA0;
  --muted-2:        #6E6E74;
  --divider:        #303032;

  /* Secondary accents — cool family only */
  --teal:           #2DD4BF;
  --blue:           #5B9DE8;
  --sage:           #7FA28C;
  --error:          #FF453A;

  /* Legacy accent names → remapped to the cool family */
  --clay:           var(--teal);
  --lavender:       var(--blue);
  --peach:          var(--blue);
  --coach-blue:     var(--blue);

  --serif: "Newsreader", "PT Serif", Georgia, serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:  "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Light theme — bright, faint mint. Deeper emerald for text contrast (AA);
   solid fills stay bright emerald via --primary-fill + --on-primary. */
[data-theme="light"]{
  color-scheme: light;
  --primary:        #0E8A3D;
  --primary-dark:   #0B6E31;
  --primary-soft:   rgba(14,138,61,.10);
  --primary-glow:   rgba(34,197,94,.30);
  --bg:             #F4FBF6;
  --bg-2:           #ECF5EF;
  --surface:        #FFFFFF;
  --surface-2:      #EAF2EC;
  --surface-3:      #DFEAE3;
  --fg:             #0F1B14;
  --fg-2:           #26362C;
  --muted:          #5C6B62;
  --muted-2:        #93A198;
  --divider:        #E2EDE6;
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
img{ display:block; max-width:100%; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ─── Type primitives ─── */
.eyebrow{
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
}
h1,h2,h3,h4{ margin: 0; font-weight: 400; letter-spacing: -.015em; }
h1.display{
  font-family: var(--serif);
  font-size: clamp(54px, 8.4vw, 124px);
  line-height: .96; letter-spacing: -.025em; font-weight: 400;
}
h1.display .green{ color: var(--primary); font-style: italic; font-weight: 400; }
h2.section-title{
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.02; letter-spacing: -.022em; font-weight: 400;
}
h3.feat-title{
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.05; font-weight: 400;
}
.kicker{ color: var(--primary); font-style: italic; font-weight: 400; }
.lead{ font-size: clamp(16px, 1.15vw, 18px); line-height: 1.6; color: var(--muted); max-width: 56ch; }
.lead b{ color: var(--fg); }

/* ─── Layout ─── */
.wrap{ width: min(1280px, 92vw); margin: 0 auto; position: relative; }
section{ position: relative; padding: clamp(64px, 7vw, 110px) 0; }

/* ─── Nav ─── */
.nav{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--divider) 70%, transparent);
}
.nav-inner{
  width: min(1280px, 92vw); margin: 0 auto;
  display: flex; align-items: center; gap: 36px; padding: 14px 0;
}
.brand{
  font-family: var(--serif); font-size: 22px;
  letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 2px;
}
.brand b{ font-weight: 500; }
.brand i{ color: var(--primary); font-style: normal; font-weight: 500; }

.nav-links{ display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a{ position: relative; transition: color .18s ease; }
.nav-links a:hover{ color: var(--fg); }
.nav-links a:hover::after{
  content:""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--primary-fill);
}

.nav-cta{ margin-left: auto; display: flex; gap: 14px; align-items: center; }
.nav-link-sub{ font-size: 13px; color: var(--muted); transition: color .18s; }
.nav-link-sub:hover{ color: var(--primary); }
.nav-install .ico{ width: 14px; height: 14px; }

/* ─── Buttons ─── */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  letter-spacing: -.005em;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-lg{ padding: 17px 28px; font-size: 15px; }
.btn-sm{ padding: 9px 16px; font-size: 13px; }
.btn-block{ display: flex; width: 100%; padding: 16px 22px; }
.btn-block .btn-sub{ display: block; font-size: 11px; font-weight: 400; opacity: .7; margin-top: 2px; letter-spacing: 0; }

.btn-primary{
  background: var(--primary-fill); color: var(--on-primary);
  box-shadow:
    0 14px 32px -10px var(--primary-glow),
    0 0 0 1px rgba(0,0,0,.1),
    inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover{ background: #4ADE80; box-shadow: 0 18px 40px -10px var(--primary-glow), 0 0 0 1px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-primary .ico{ color: var(--on-primary); }
.btn-primary svg{ width: 14px; height: 14px; }

.btn-ghost{
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  border: 1px solid color-mix(in srgb, var(--fg) 13%, transparent);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{ background: color-mix(in srgb, var(--fg) 8%, transparent); border-color: color-mix(in srgb, var(--fg) 24%, transparent); }
.btn-ghost svg{ width: 14px; height: 14px; }

.btn-clay{
  background: var(--clay); color: #062A24;
  box-shadow: 0 14px 30px -10px rgba(45,212,191,.45), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-clay:hover{ background: #5EE3D2; }
.btn-clay svg{ width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════
   iPhone frame component — iPhone 15/16 Pro style
   Tuned for 1206×2436 screenshots (aspect ≈ 0.495)
   ═══════════════════════════════════════════════════════════ */
.iphone{
  --phone-w: 340px;
  --bezel: calc(var(--phone-w) * .0294);
  --status-h: calc(var(--phone-w) * .1176);
  --radius: calc(var(--phone-w) * .147);
  width: var(--phone-w);
  /* geometry tuned so the content area is EXACTLY 1206:2436 — screenshots fit with zero crop */
  aspect-ratio: 1000 / 2077;
  position: relative;
  transform-style: preserve-3d;
}
.iphone-sm{ --phone-w: 290px; }
.iphone-xs{ --phone-w: 240px; }
.iphone-md{ --phone-w: 320px; }
.iphone-mini{ --phone-w: 168px; }

/* Back plate — gives the device real thickness when rotated in 3D,
   and carries the ground shadow so it sits behind the whole body */
.iphone-back{
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #2E2E34, #131316 40%, #1D1D21 75%, #0C0C0E);
  transform: translateZ(calc(var(--phone-w) * -.034));
  box-shadow:
    0 60px 90px -20px rgba(0,0,0,.55),
    0 24px 40px -12px rgba(0,0,0,.38);
}

/* Side buttons (silver slivers on the bezel edge) */
.iphone::before, .iphone::after{
  content:""; position: absolute;
  background: linear-gradient(90deg, #202022, #4A4A4F 30%, #202022);
  border-radius: 2px;
  z-index: 0;
}
.iphone::before{
  /* Volume up + down + silent switch (left side) */
  left: -2px; top: 22%;
  width: 3px; height: 7%;
  box-shadow:
    0 calc(var(--phone-w) * 0.06) 0 -1px #202022,
    0 calc(var(--phone-w) * 0.18) 0 0 #2C2C2F,
    0 calc(var(--phone-w) * 0.18) 0 -1px transparent,
    0 calc(var(--phone-w) * 0.32) 0 -1px #202022;
}
.iphone::after{
  /* Power button (right side) */
  right: -2px; top: 26%;
  width: 3px; height: 12%;
}

.iphone-bezel{
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, #43434A 0%, #17171B 28%, #2A2A30 52%, #101013 78%, #33333A 100%);
  padding: var(--bezel);
  overflow: hidden;
  z-index: 1;
  /* chamfered titanium rail — bright lip, dark undercut, inner rail tone */
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,.09),
    inset 0 0 0 3px rgba(0,0,0,.5),
    inset 0 0 0 4.5px rgba(66,66,74,.55);
}
.iphone-bezel::before{
  /* specular highlights — hard key light top-left, soft fill bottom-right */
  content:""; position: absolute; inset: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 20%),
    linear-gradient(315deg, rgba(255,255,255,.09) 0%, transparent 26%);
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: screen;
}

/* The screen — has a status bar above the actual screenshot */
.iphone-screen{
  position: absolute;
  inset: var(--bezel);
  border-radius: calc(var(--radius) - var(--bezel));
  overflow: hidden;
  background: #000;
  z-index: 2;
  display: flex; flex-direction: column;
}
/* glass seat — thin black glass border seats the screenshot into the body */
.iphone-screen::after{
  content:""; position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.7), inset 0 1px 6px rgba(0,0,0,.35);
  pointer-events: none;
  z-index: 9;
}

/* iOS status bar — synthesized to match real phones.
   Sits ABOVE the screenshot so the FitSync app header lines up naturally. */
.iphone-statusbar{
  position: relative;
  flex: 0 0 var(--status-h);
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 0 calc(var(--phone-w) * 0.075);
  padding-top: calc(var(--status-h) * 0.32);
  color: #fff;
  font-family: -apple-system, "SF Pro Text", "Helvetica Neue", sans-serif;
  z-index: 4;
  background: #0a0a0b; /* matched to the app screenshot header tone — seamless join */
}
.iphone-statusbar .sb-time{
  font-size: calc(var(--phone-w) * 0.044);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  z-index: 5;
}
.iphone-statusbar .sb-indicators{
  display: inline-flex; align-items: center;
  gap: calc(var(--phone-w) * 0.012);
  height: calc(var(--phone-w) * 0.04);
}
.iphone-statusbar .sb-indicators svg{
  height: 100%; width: auto;
  fill: #fff;
}

/* Dynamic Island — sits OVER the status bar, centered horizontally */
.iphone-island{
  display: none; /* notchless — removed per design review */
  position: absolute;
  top: calc(var(--status-h) * 0.20);
  left: 50%; transform: translateX(-50%);
  width: calc(var(--phone-w) * 0.34);
  height: calc(var(--phone-w) * 0.085);
  background: #000;
  border-radius: 999px;
  z-index: 6;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 1px rgba(255,255,255,.06);
}
.iphone-island::after{
  /* camera lens — subtle dot on the right side */
  content:""; position: absolute;
  right: 12%; top: 50%; transform: translateY(-50%);
  width: 22%; aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #2a4555 0%, #0a1820 40%, #000 75%);
}

/* The actual app screenshot */
.iphone-content{
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #0a0a0b;
}
.iphone-content img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Reflective glare on the glass */
.iphone-glare{
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(105deg, transparent 36%, rgba(255,255,255,.045) 45%, rgba(255,255,255,.10) 50%, rgba(255,255,255,.035) 55%, transparent 64%),
    radial-gradient(130% 55% at 10% -8%, rgba(255,255,255,.09), transparent 46%);
  pointer-events: none;
  z-index: 7;
  mix-blend-mode: screen;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero{
  padding-top: clamp(48px, 5.5vw, 90px);
  padding-bottom: clamp(48px, 5.5vw, 90px);
  overflow: hidden;
}
.hero-bg{ position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero-bg::before{
  content:""; position: absolute; top: -25%; right: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(closest-side, rgba(34,197,94,.06), transparent 70%);
  filter: blur(20px);
}
.hero-bg::after{
  content:""; position: absolute; bottom: -40%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(closest-side, rgba(127,162,140,.05), transparent 70%);
  filter: blur(20px);
}

.hero-grid{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  column-gap: 80px;
  align-items: center;
}
.hero-copy{ align-self: center; }

.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 7px 14px;
  border: 1px solid rgba(34,197,94,.32);
  background: var(--primary-soft);
  border-radius: 999px;
  color: var(--primary);
  font-size: 11px; letter-spacing: .14em; font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary-fill);
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: pulse 2s ease-in-out infinite;
}
.hero-eyebrow .eyebrow-divider{
  width: 1px; height: 12px; background: rgba(34,197,94,.35);
}
.hero-eyebrow .eyebrow-pwa{ color: var(--fg-2); letter-spacing: .1em; }

@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
  50%{ box-shadow: 0 0 0 8px rgba(34,197,94,.05); }
}

.hero h1{ margin-bottom: 24px; }
.hero-lead{ font-size: clamp(17px, 1.25vw, 20px); max-width: 50ch; }

.hero-ctas{ margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-meta{
  margin-top: 28px;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.meta-item{ display: inline-flex; align-items: center; gap: 8px; }
.meta-item svg{ width: 14px; height: 14px; color: var(--primary); flex: 0 0 14px; }
.meta-item b{ color: var(--fg); font-weight: 600; }

.store-row{
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  max-width: 560px;
}
.store-coming{
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 14px;
  opacity: .65;
  position: relative;
}
.store-coming.live{ opacity: 1; border-color: rgba(34,197,94,.35); background: linear-gradient(135deg, rgba(34,197,94,.06), var(--surface)); }
.store-coming svg{ width: 22px; height: 22px; color: var(--fg); flex: 0 0 22px; }
.store-coming.live svg{ color: var(--primary); }
.store-coming-text{ display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.store-coming-text .lab{ font-size: 9px; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.store-coming-text .val{ font-size: 13px; font-weight: 600; color: var(--fg); margin-top: 2px; }
.live-lab{ color: var(--primary) !important; display: inline-flex; align-items: center; gap: 5px; }
.live-dot{
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary-fill);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot{ 0%,100%{ opacity: 1; transform: scale(1); } 50%{ opacity: .5; transform: scale(.8); } }

/* Hero phone — DUAL phone showcase (dashboard + MyCoach, Cal AI style) */
.hero-phone-wrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 0;
  min-height: 600px;
  perspective: 1500px;
}
.hp-glow{
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 30% 50%, rgba(34,197,94,.10), transparent 55%),
    radial-gradient(closest-side at 70% 50%, rgba(91,157,232,.06), transparent 55%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.hero-phone-wrap .iphone{
  position: relative;
  z-index: 1;
  --phone-w: clamp(170px, 19vw, 240px);
  width: var(--phone-w);
  transition: transform .4s cubic-bezier(.2,.8,.3,1), z-index 0s .3s;
}
.hero-phone-left{
  transform: rotateY(17deg) rotateX(3deg) rotateZ(-5deg) translate(20px, 30px);
  z-index: 1;
}
.hero-phone-right{
  transform: rotateY(-17deg) rotateX(3deg) rotateZ(5deg) translate(-20px, -30px);
  z-index: 2;
}
.hero-phone-wrap .iphone:hover{
  transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateY(-6px) scale(1.02);
  z-index: 4;
  transition: transform .4s cubic-bezier(.2,.8,.3,1);
}

.hp-label{
  position: absolute;
  bottom: -32px; left: 50%; transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.hp-label-coach{
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
}
.hp-label-coach .pulse-dot{
  width: 6px; height: 6px;
  box-shadow: 0 0 0 3px rgba(34,197,94,.18);
  flex: 0 0 6px;
}

/* Floating stickers — repositioned for the dual layout */
.sticker{
  position: absolute; z-index: 5;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 11px 16px;
  font-size: 12px; color: var(--fg);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.03);
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}
.sticker b{ font-weight: 600; font-size: 13px; line-height: 1.2; }
.sticker .sub{ color: var(--muted); font-size: 11px; }
.sticker-1{ top: 8px; left: 0; animation-delay: 0s; }
.sticker-3{ bottom: 8px; right: 0; animation-delay: -3s; }

.pulse-dot{
  width: 10px; height: 10px; border-radius: 50%; background: var(--primary-fill);
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: pulse 2s ease-in-out infinite;
  flex: 0 0 10px;
}

@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* ─── Mobile-only hero dual phone showcase (hidden by default) ─── */
.hero-mobile-phones{ display: none; }


/* ═══════════════════════════════════════════════════════════
   TRUST BAR / MARQUEE
   ═══════════════════════════════════════════════════════════ */
.trust{
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 0;
}
.marquee{
  overflow: hidden;
  padding: 22px 0;
  position: relative;
  border-bottom: 1px solid var(--divider);
}
.marquee::before, .marquee::after{
  content:""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee::before{ left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after{ right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track{
  display: flex; gap: 0;
  width: max-content;
  animation: scroll 50s linear infinite;
  align-items: center;
}
.marquee-track:hover{ animation-play-state: paused; }
.m-item{
  display: inline-flex; align-items: center; gap: 28px;
  padding-right: 28px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1;
  letter-spacing: -.015em;
  font-weight: 400;
  color: var(--fg);
  white-space: nowrap;
}
.m-item em{ font-style: italic; color: var(--primary); }
.m-star{ color: var(--primary); font-size: 18px; }
@keyframes scroll{ from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation: none; } }

.trust-row{
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr; gap: 22px;
  align-items: center;
  padding: 32px 0;
}
.trust-stat{ text-align: center; }
.trust-v{ font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); line-height: 1; letter-spacing: -.02em; color: var(--fg); font-weight: 400; }
.trust-l{ font-size: 12px; color: var(--muted); margin-top: 8px; max-width: 22ch; margin-left: auto; margin-right: auto; line-height: 1.4; }
.trust-sep{ width: 1px; height: 36px; background: var(--divider); justify-self: center; }

/* ═══════════════════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════════════════ */
.video-section{ background: var(--bg); }
.section-head{ max-width: 720px; margin-bottom: 56px; }
.section-head.center{ margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow{ display: inline-block; margin-bottom: 18px; }
.section-head .lead{ margin-top: 24px; }
.section-head.center .lead{ margin-left: auto; margin-right: auto; }

/* 9:16 portrait layout: copy on the left, phone-framed video on the right */
.video-section-grid{
  display: grid;
  grid-template-columns: 1fr 640px;
  gap: 56px;
  align-items: center;
}
.video-section-grid .section-head{
  margin: 0;
  max-width: none;
}

.video-copy{ display: flex; flex-direction: column; position: relative; }
.video-lead{ text-wrap: balance; }
.video-lead br{ display: block; }
/* Marketing mascots framing the demo
   Desktop: bigger, free-standing, a clear gap from the phone (touch nothing).
   Mobile: switch to overlapping the phone edges (kissing intently). */
.video-stage-wrap{ position: relative; width: 100%; max-width: 300px; justify-self: center; margin: 0 auto; }
.video-stage-wrap .video-stage{ position: relative; z-index: 2; }
.video-stage-wrap img.video-bud-cheer{
  position: absolute;
  left: -204px; bottom: -2px;
  width: clamp(154px, 16.2vw, 182px);
  height: auto;
  z-index: 1;
  transform: rotate(-5deg);
  transform-origin: bottom center;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.45));
  pointer-events: none;
}
.video-stage-wrap img.video-bud-guide{
  position: absolute;
  right: -204px; bottom: -2px;
  width: clamp(154px, 16.2vw, 182px);
  height: auto;
  z-index: 1;
  transform: scaleX(-1) rotate(5deg);
  transform-origin: bottom center;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.45));
  pointer-events: none;
}
/* Tablet / stacked: free-standing with a small gap (plenty of side room) */
@media (max-width: 1100px){
  .video-stage-wrap img.video-bud-cheer{
    left: -175px; bottom: -2px; width: clamp(139px, 18vw, 161px);
    transform: rotate(-5deg);
  }
  .video-stage-wrap img.video-bud-guide{
    right: -175px; bottom: -2px; width: clamp(139px, 18vw, 161px);
    transform: scaleX(-1) rotate(5deg);
  }
}
/* Mobile: kiss the phone edges with only a small overlap so ~90% of each
   mascot (incl. the face) stays visible; vw-sized so it never overflows. */
@media (max-width: 600px){
  .video-stage-wrap{ max-width: 280px; width: 56vw; }
  .video-stage-wrap img.video-bud-cheer{ left: -20vw; bottom: -2px; width: 26vw; }
  .video-stage-wrap img.video-bud-guide{ right: -20vw; bottom: -2px; width: 26vw; }
}
.video-side-meta{
  margin-top: 32px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.vsm-chips{ display: flex; flex-wrap: wrap; gap: 10px; }
.vsm-chip{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-2);
  background: var(--surface); border: 1px solid var(--divider);
  padding: 8px 14px; border-radius: 999px;
}
.vsm-chip svg{ width: 15px; height: 15px; color: var(--primary); flex: 0 0 15px; }
.video-side-meta .btn{ align-self: flex-start; }
.vsm-row{
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; color: var(--muted);
}
.vsm-row svg{ width: 16px; height: 16px; color: var(--primary); flex: 0 0 16px; }
.vsm-row b{ color: var(--fg); font-weight: 600; }
.vsm-dot{
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--primary-fill);
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: pulse 2s ease-in-out infinite;
  flex: 0 0 9px;
}

.video-stage{
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--divider);
  cursor: pointer;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.6), 0 30px 60px -25px rgba(0,0,0,.35);
}
/* Portrait variant — 9:16 with iPhone bezel framing */
.video-stage-portrait{
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 380px;
  justify-self: center;
  margin: 0 auto;
  border-radius: 48px;
  border: 8px solid transparent;
  background: linear-gradient(160deg, #43434A 0%, #17171B 30%, #2A2A30 55%, #101013 80%, #33333A 100%) padding-box;
  box-shadow:
    0 60px 90px -30px rgba(0,0,0,.65),
    0 30px 50px -20px rgba(0,0,0,.35),
    inset 0 0 0 1.5px rgba(255,255,255,.05);
}
.video-stage-portrait .video-bg{
  border-radius: 40px;
}
.video-phone-frame{
  position: absolute; inset: 0;
  border-radius: 40px;
  pointer-events: none;
  z-index: 4;
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,.4), inset 0 0 0 3px rgba(52,52,56,.4);
  background:
    linear-gradient(115deg, rgba(255,255,255,.05) 0%, transparent 25%, transparent 75%, rgba(255,255,255,.03) 100%);
  mix-blend-mode: screen;
}
.video-phone-island{
  display: none; /* notchless — removed per design review */
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #000;
  border-radius: 999px;
  z-index: 5;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 1px rgba(255,255,255,.06),
    0 0 0 4px rgba(0,0,0,.3);
}
.video-phone-island::after{
  content:""; position: absolute;
  right: 10px; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a4555 0%, #0a1820 40%, #000 75%);
}
.video-stage-portrait .video-corners{ display: none; }
.video-stage-portrait .video-overlay{
  border-radius: 40px;
}
.video-bg{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side, transparent 30%, rgba(0,0,0,.4) 75%),
    linear-gradient(to top, rgba(0,0,0,.6), transparent 40%);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.video-stage:hover .video-overlay{ background: radial-gradient(closest-side, transparent 30%, rgba(0,0,0,.55) 75%), linear-gradient(to top, rgba(0,0,0,.65), transparent 40%); }
.video-play{
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--primary-fill);
  color: var(--on-primary);
  display: grid; place-items: center;
  box-shadow:
    0 20px 50px -10px rgba(34,197,94,.55),
    inset 0 1px 0 rgba(255,255,255,.3),
    0 0 0 0 rgba(34,197,94,.4);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: pulse-play 2.4s ease-in-out infinite;
}
.video-play svg{ width: 32px; height: 32px; margin-left: 4px; }
.video-stage:hover .video-play{ transform: scale(1.08); }
@keyframes pulse-play{
  0%,100%{ box-shadow: 0 20px 50px -10px rgba(34,197,94,.55), inset 0 1px 0 rgba(255,255,255,.3), 0 0 0 0 rgba(34,197,94,.5); }
  50%{ box-shadow: 0 20px 50px -10px rgba(34,197,94,.55), inset 0 1px 0 rgba(255,255,255,.3), 0 0 0 24px rgba(34,197,94,0); }
}
.video-meta{
  position: absolute; bottom: 22px; left: 24px;
  display: flex; flex-direction: column; gap: 4px;
  pointer-events: none;
}
.vm-time{ font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.85); letter-spacing: .05em; }
.vm-cap{ font-size: 13px; color: rgba(255,255,255,.65); }

.video-corners .c{
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--primary);
}
.video-corners .tl{ top: 16px; left: 16px; border-right: 0; border-bottom: 0; border-top-left-radius: 6px; }
.video-corners .tr{ top: 16px; right: 16px; border-left: 0; border-bottom: 0; border-top-right-radius: 6px; }
.video-corners .bl{ bottom: 16px; left: 16px; border-right: 0; border-top: 0; border-bottom-left-radius: 6px; }
.video-corners .br{ bottom: 16px; right: 16px; border-left: 0; border-top: 0; border-bottom-right-radius: 6px; }

/* ═══════════════════════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════════════════════ */
.feat-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.feat-card{
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 24px;
  padding: 40px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 36px; align-items: center;
  position: relative; overflow: hidden;
  grid-column: span 6;
}
.feat-card.feat-large{ grid-column: span 12; padding: 56px; gap: 56px; }
.feat-card.feat-large.flip .feat-phone-wrap{ order: -1; }

.feat-card::before{
  content:""; position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 80%;
  background: radial-gradient(closest-side, rgba(34,197,94,.04), transparent 70%);
  pointer-events: none;
}

.feat-num{
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--primary);
  letter-spacing: -.005em;
}
.feat-title{ margin: 14px 0 18px; }
.feat-lead{ font-size: 15px; max-width: 36ch; line-height: 1.6; color: var(--muted); }

.feat-bullets{
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 12px;
}
.feat-bullets li{
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--fg-2);
  line-height: 1.5;
}
.feat-bullets li svg{
  flex: 0 0 18px; width: 18px; height: 18px;
  padding: 3px; border-radius: 6px;
  background: var(--primary-soft); color: var(--primary);
  margin-top: 1px;
}

.feat-phone-wrap{ display: grid; place-items: center; position: relative; }
.feat-phone-wrap::before{
  content:""; position: absolute;
  width: 100%; height: 100%;
  background: radial-gradient(closest-side, rgba(34,197,94,.06), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.feat-phone-wrap.small{ padding: 20px 0; }

/* ═══════════════════════════════════════════════════════════
   MYCOACH DEMO SECTION
   ═══════════════════════════════════════════════════════════ */
.coach-section{
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  overflow: hidden;
}
.coach-grid{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.coach-copy .section-title{ margin-top: 18px; max-width: 12ch; }
.coach-copy .lead{ margin-top: 24px; }
.coach-bullets{
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; gap: 18px;
}
.coach-bullets li{
  display: flex; gap: 16px; align-items: flex-start;
}
.cb-ico{
  flex: 0 0 40px; width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
}
.cb-ico svg{ width: 18px; height: 18px; }
.coach-bullets li b{ display: block; color: var(--fg); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.coach-bullets li span{ color: var(--muted); font-size: 13px; line-height: 1.55; }
.coach-cta-row{ margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.coach-cta-row .btn svg{ width: 12px; height: 12px; }

.coach-demo{ position: relative; display: grid; place-items: center; perspective: 1500px; }
.coach-demo .iphone-md{ transform: rotateY(-9deg) rotateX(2deg) rotateZ(1deg); }
.coach-demo::before{
  content:""; position: absolute;
  width: 110%; height: 110%;
  background: radial-gradient(closest-side, rgba(34,197,94,.08), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.chat-pop{
  position: absolute;
  z-index: 4;
  right: -40px; bottom: 80px;
  width: 380px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.03);
  font-size: 13px;
  backdrop-filter: blur(20px);
}
.chat-head{
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--divider);
}
.chat-spark{
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
  flex: 0 0 32px;
}
.chat-spark svg{ width: 16px; height: 16px; }
.chat-head b{ display: block; font-size: 13px; font-weight: 600; color: var(--fg); }
.chat-sub{ font-size: 11px; color: var(--muted); }
.chat-typing{ margin-left: auto; display: inline-flex; gap: 3px; }
.chat-typing i{
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary-fill);
  display: block;
  animation: typing 1.4s ease-in-out infinite;
}
.chat-typing i:nth-child(2){ animation-delay: .2s; }
.chat-typing i:nth-child(3){ animation-delay: .4s; }
@keyframes typing{
  0%,60%,100%{ opacity: .3; transform: translateY(0); }
  30%{ opacity: 1; transform: translateY(-3px); }
}

.chat-msg{ margin-bottom: 10px; display: flex; }
.chat-msg span{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px; line-height: 1.45;
  max-width: 88%;
}
.chat-msg.user{ justify-content: flex-end; }
.chat-msg.user span{
  background: var(--surface-2);
  border: 1px solid var(--divider);
  color: var(--fg-2);
  border-bottom-right-radius: 4px;
}
.chat-msg.ai span{
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.22);
  color: var(--fg);
  border-bottom-left-radius: 4px;
}
.chat-msg.ai b{ color: var(--primary); font-weight: 600; }

.chat-tags{ display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.tag-chip{
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  border: 1px solid var(--divider);
  color: var(--muted);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════
   INSTALL / A2HS SECTION
   ═══════════════════════════════════════════════════════════ */
.install-section{
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.install-bg{
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(34,197,94,.05), transparent 60%),
    radial-gradient(40% 50% at 90% 90%, rgba(127,162,140,.04), transparent 60%);
  pointer-events: none;
}
.install-section .wrap{ position: relative; z-index: 1; }

.install-tabs{
  display: flex; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 6px;
  width: max-content;
  margin: 0 auto 48px;
}
.install-tab{
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  transition: all .18s ease;
}
.install-tab svg{ width: 16px; height: 16px; }
.install-tab:hover{ color: var(--fg); }
.install-tab.active{
  background: var(--primary-fill);
  color: var(--on-primary);
  box-shadow: 0 8px 20px -8px var(--primary-glow);
}

.install-panel{ display: none; }
.install-panel.active{ display: block; }

/* Real-screenshot iOS walkthrough */
.ins-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: start;
}
.ins-step{ margin: 0; display: flex; flex-direction: column; gap: 18px; }
.ins-phone{
  position: relative;
  width: 100%;
  border-radius: 30px;
  padding: 11px 6px 6px;
  background: linear-gradient(160deg, #43434A 0%, #17171B 32%, #2A2A30 58%, #101013 82%, #33333A 100%);
  box-shadow:
    0 34px 60px -30px rgba(0,0,0,.7),
    0 14px 26px -16px rgba(0,0,0,.3),
    inset 0 0 0 1px rgba(255,255,255,.09),
    inset 0 0 0 2.5px rgba(0,0,0,.45);
}
.ins-phone img{ display: block; width: 100%; }
.ins-screen{ position: relative; border-radius: 22px; overflow: hidden; }
.ins-island{
  display: none; /* notchless — removed per design review */
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 26%; height: 4px; border-radius: 99px;
  background: rgba(255,255,255,.18);
}
.ins-tap{
  position: absolute; z-index: 4;
  border: 3px solid var(--primary);
  pointer-events: none;
  animation: ins-pulse 1.8s ease-in-out infinite;
}
.ins-tap.circle{ border-radius: 50%; aspect-ratio: 1; }
.ins-tap.pill{ border-radius: 99px; }
.ins-tap.rect{ border-radius: 9px; }
@keyframes ins-pulse{
  0%,100%{ box-shadow: 0 0 0 2px rgba(34,197,94,.30), 0 6px 16px rgba(34,197,94,.35); }
  50%{ box-shadow: 0 0 0 8px rgba(34,197,94,.06), 0 6px 16px rgba(34,197,94,.2); }
}
.ins-cap{ display: flex; flex-direction: column; gap: 5px; }
.ins-num{
  font-family: var(--serif); font-size: 13px; font-weight: 600;
  color: var(--primary); letter-spacing: .06em;
}
.ins-cap b{ font-size: 16px; color: var(--fg); font-weight: 600; }
.ins-cap p{ margin: 0; font-size: 13px; line-height: 1.5; color: var(--muted); }
.ins-cap p b{ font-size: inherit; color: var(--fg-2); }
.ins-loc{ color: var(--muted); opacity: .65; font-style: italic; }
@media (max-width: 900px){
  .ins-steps{ grid-template-columns: repeat(2, 1fr); gap: 28px 20px; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 380px){
  .ins-steps{ grid-template-columns: 1fr; max-width: 280px; }
}

.install-steps{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.install-steps-android{ grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }

.install-step{
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 22px;
  padding: 28px;
  position: relative;
  display: flex; flex-direction: column;
}
.step-num{
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--primary);
}

/* Step illustrations */
.step-illo{
  margin: 24px 0;
  background: var(--bg-2);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 24px;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Illustration 1: Safari with Share */
.step-phone-mini{
  background: linear-gradient(180deg, #202022, #0E0E10);
  border-radius: 18px;
  padding: 8px;
  margin: 0 auto;
  width: 100%; max-width: 200px;
  position: relative;
}
.step-phone-bar{
  height: 6px; width: 50px;
  background: #2B2B2E;
  border-radius: 3px;
  margin: 0 auto 10px;
}
.step-phone-content{
  background: #000;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  position: relative;
}
.step-url{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-2);
  background: var(--surface-2);
  border-radius: 7px;
  padding: 6px 10px;
  margin-bottom: 30px;
}
.step-tap-circle{
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 2px solid var(--primary);
  display: grid; place-items: center;
  margin: 0 auto 12px;
  color: var(--primary);
  position: relative;
  animation: tap-ripple 2s ease-out infinite;
}
.step-tap-circle svg{ width: 24px; height: 24px; }
.step-tap-label{
  font-size: 11px; color: var(--primary); font-weight: 600;
  letter-spacing: .04em;
}
@keyframes tap-ripple{
  0%{ box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  100%{ box-shadow: 0 0 0 14px rgba(34,197,94,0); }
}

/* Illustration 2: Share sheet */
.step-illo-sheet{ padding: 16px; }
.sheet-header{
  font-size: 12px; font-weight: 600;
  color: var(--muted); letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px 10px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 8px;
}
.sheet-row{
  display: flex; align-items: center; gap: 12px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 13px; color: var(--fg-2);
}
.sheet-row.highlight{
  background: var(--primary-soft);
  border: 1px solid rgba(34,197,94,.3);
  color: var(--fg);
  box-shadow: 0 0 0 4px rgba(34,197,94,.08);
}
.sheet-row.highlight b{ color: var(--primary); font-weight: 600; }
.sheet-dot{
  width: 26px; height: 26px; border-radius: 7px;
  flex: 0 0 26px;
  display: grid; place-items: center;
}
.sheet-dot.copy{ background: #3b4a6b; }
.sheet-dot.bookmark{ background: #1F6B60; }
.sheet-dot.a2hs{
  background: var(--primary-fill); color: var(--on-primary);
}
.sheet-dot.a2hs svg{ width: 14px; height: 14px; }
.sheet-dot.print{ background: #4a4a52; }
.sheet-arrow{ margin-left: auto; width: 14px; height: 14px; color: var(--primary); }
.sheet-name{ font-weight: 500; }

/* Illustration 3: Confirm dialog */
.step-illo-confirm{ padding: 16px; }
.confirm-row{
  display: flex; align-items: center;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--divider);
}
.confirm-row span{ color: var(--muted); }
.confirm-row b{ flex: 1; text-align: center; font-weight: 500; color: var(--fg); }
.confirm-row .add-btn{
  color: var(--primary); font-weight: 700;
  background: rgba(34,197,94,.12);
  padding: 4px 10px;
  border-radius: 7px;
  animation: glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse{
  0%,100%{ background: rgba(34,197,94,.12); box-shadow: 0 0 0 0 rgba(34,197,94,.3); }
  50%{ background: rgba(34,197,94,.22); box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.confirm-app{
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 12px;
  margin-bottom: 12px;
}
.confirm-icon{
  width: 44px; height: 44px;
  background: var(--primary-fill);
  border-radius: 11px;
  display: grid; place-items: center;
  box-shadow: 0 8px 16px -6px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,.3);
}
.confirm-icon svg{ width: 24px; height: 24px; }
.confirm-meta{ display: flex; flex-direction: column; }
.confirm-meta b{ font-size: 14px; font-weight: 600; color: var(--fg); }
.confirm-meta span{ font-size: 11px; color: var(--muted); font-family: var(--mono); }
.confirm-hint{ font-size: 11px; color: var(--muted); text-align: center; }

/* Android illustrations */
.step-illo-android, .step-illo-android-menu{ padding: 14px; }
.and-bar{
  display: flex; align-items: center; gap: 8px;
  background: var(--surface-2);
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.and-url{
  flex: 1; font-family: var(--mono);
  font-size: 12px; color: var(--fg-2);
}
.and-menu{ color: var(--muted); font-size: 18px; }
.and-banner{
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  background: var(--primary-soft);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 12px;
  font-size: 12px;
}
.and-banner svg{ width: 22px; height: 22px; color: var(--primary); flex: 0 0 22px; }
.and-banner span{ color: var(--fg-2); line-height: 1.4; flex: 1; }
.and-banner b{ color: var(--fg); }
.and-install-btn{
  flex: 0 0 auto !important;
  background: var(--primary-fill); color: var(--on-primary) !important;
  font-weight: 700 !important; font-size: 12px;
  padding: 7px 14px; border-radius: 999px;
}

.and-menu-list{
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 6px;
}
.and-menu-row{
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font-size: 13px; color: var(--fg-2);
  border-radius: 8px;
}
.and-menu-row.hl{
  background: var(--primary-soft);
  color: var(--fg);
}
.and-menu-row.hl svg{ width: 16px; height: 16px; color: var(--primary); }
.and-menu-row.hl b{ color: var(--primary); font-weight: 600; }

/* Step body */
.step-body h4{
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.step-body p{
  font-size: 14px; line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.step-body p b{ color: var(--fg); font-weight: 600; }

/* Result */
.install-result{
  margin-top: 28px;
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(34,197,94,.08), rgba(34,197,94,.02));
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 18px;
}
.result-icon{
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-fill);
  color: var(--on-primary);
  display: grid; place-items: center;
  flex: 0 0 44px;
  box-shadow: 0 8px 20px -6px var(--primary-glow);
}
.result-icon svg{ width: 22px; height: 22px; }
.install-result b{ display: block; color: var(--fg); font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.install-result span{ color: var(--muted); font-size: 13px; }

.install-cta{ text-align: center; margin-top: 56px; }
.install-cta .btn .ico{ width: 14px; height: 14px; }
.install-cta-sub{ font-size: 13px; color: var(--muted); margin-top: 14px; }
.install-cta-sub b{ color: var(--fg); }

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing-section{ background: var(--bg); }
.price-grid{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card{
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 24px;
  padding: 36px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.price-pro{
  background: linear-gradient(160deg, rgba(34,197,94,.08), var(--surface) 60%);
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 30px 60px -25px rgba(34,197,94,.12);
}
.price-coach{
  background: linear-gradient(160deg, rgba(45,212,191,.07), var(--surface) 60%);
  border-color: rgba(45,212,191,.25);
}
.price-flag{
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px;
  background: var(--primary-fill);
  color: var(--on-primary);
  border-radius: 999px;
  font-weight: 700;
}
.price-flag.clay-flag{ background: var(--clay); color: #062A24; }

.price-tag{
  padding-bottom: 18px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 18px;
}
.price-name{
  display: block;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  margin-bottom: 14px;
}
.price-amt{ display: inline-flex; align-items: baseline; gap: 6px; }
.price-amt b{
  font-family: var(--serif);
  font-size: 56px; line-height: 1; letter-spacing: -.02em;
  color: var(--fg); font-weight: 400;
}
.price-amt span{ font-size: 14px; color: var(--muted); }

.price-tag-line{
  font-size: 14px; color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.5;
}

.price-features{
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 12px;
  flex: 1;
}
.price-features li{
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 14px; color: var(--fg-2);
}
.price-features li svg{
  flex: 0 0 18px; width: 18px; height: 18px;
  color: var(--primary);
  margin-top: 1px;
}
.price-features li.dim{ color: var(--muted-2); }
.price-features li.dim svg{ color: var(--muted-2); }
.price-features li b{ color: var(--fg); font-weight: 600; }

/* ── Hormozi offer funnel ─────────────────────────────── */
/* Free gateway banner */
.price-free{
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.5fr) auto;
  gap: 34px; align-items: center;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 24px;
  padding: 28px 36px;
  margin-bottom: 22px;
}
.pf-head .price-name{ margin-bottom: 8px; }
.pf-amt{ display: inline-flex; align-items: baseline; gap: 6px; }
.pf-amt b{ font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--fg); font-weight: 400; letter-spacing: -.02em; }
.pf-amt span{ font-size: 13px; color: var(--muted); }
.pf-feats{ list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.pf-feats li{ display: flex; gap: 9px; align-items: center; font-size: 13.5px; color: var(--fg-2); }
.pf-feats li svg{ width: 16px; height: 16px; color: var(--primary); flex: 0 0 16px; }
.pf-feats.clay li svg{ color: var(--clay); }
/* Pro Coach features: even single-column stack, aligned icons */
.price-procoach .pf-feats{
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: stretch;
}
.price-procoach .pf-feats li{ align-items: flex-start; line-height: 1.4; }
.price-procoach .pf-feats li svg{ margin-top: 1px; }

/* à la carte flag tints */
.price-flag.snap-flag{ background: var(--lavender); color: #0B2038; }

/* anchored "was" price + save badge */
.price-amt .price-was{
  font-family: var(--serif); font-size: 26px; line-height: 1;
  color: var(--muted); text-decoration: line-through; margin-right: 4px; font-weight: 400;
}
.price-save{
  display: inline-block; margin-top: 12px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: var(--primary); background: var(--primary-soft);
  border: 1px solid rgba(34,197,94,.3);
  padding: 5px 11px; border-radius: 999px;
}

/* Hormozi value stack */
.value-stack{ list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; flex: 1; }
.value-stack li{ display: flex; justify-content: space-between; gap: 14px; align-items: baseline; font-size: 14px; color: var(--fg-2); }
.value-stack li span:first-child{ display: flex; gap: 10px; }
.value-stack li svg{ width: 17px; height: 17px; color: var(--primary); flex: 0 0 17px; margin-top: 1px; }
.value-stack li b{ color: var(--fg); font-weight: 600; }
.value-stack .vs-val{ color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.value-total{
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px dashed var(--divider);
  margin: 14px 0 24px; padding-top: 16px;
  font-size: 14px; color: var(--fg-2);
}
.value-total .vt-strike{ color: var(--muted); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.value-total .vt-now b{ font-family: var(--serif); color: var(--primary); font-size: 22px; font-weight: 400; }

/* Pro Coach — wide clay card */
.price-procoach{
  margin-top: 22px;
  display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.45fr) auto;
  gap: 34px; align-items: center;
  background: linear-gradient(135deg, rgba(45,212,191,.13), rgba(45,212,191,.02));
  border: 1px solid rgba(45,212,191,.32);
  border-radius: 24px;
  padding: 32px 38px;
  position: relative; overflow: hidden;
}
.price-procoach .price-name{ margin-bottom: 8px; }
.price-procoach .pf-amt b{ color: var(--clay); }
.price-procoach .price-tag-line{ margin: 12px 0 0; max-width: 30ch; }

/* funnel arrow rhythm between steps */
.funnel-step{ font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.funnel-step b{ color: var(--primary); }

/* Beta callout */
.beta-card{
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(34,197,94,.1), rgba(34,197,94,.02));
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 24px;
  padding: 36px 40px;
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 28px; align-items: center;
}
.beta-icon{
  width: 64px; height: 64px;
  background: var(--primary-soft);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--primary);
}
.beta-icon svg{ width: 28px; height: 28px; animation: spin 12s linear infinite; }
@keyframes spin{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }
.beta-body h3{
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500; letter-spacing: -.015em;
  line-height: 1.1;
  margin: 10px 0 8px;
  color: var(--fg);
}
.beta-body p{
  margin: 0;
  font-size: 14px; color: var(--muted); line-height: 1.55;
  max-width: 60ch;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — photo-rich cards
   ═══════════════════════════════════════════════════════════ */
.voices{
  background: var(--bg);
  border-top: 1px solid var(--divider);
}
.voice-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.voice-card{
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 24px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), border-color .25s ease, box-shadow .25s ease;
}
.voice-card:hover{
  transform: translateY(-4px);
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.55), 0 0 0 1px rgba(34,197,94,.12);
}

/* Photo block — top of card */
.voice-photo{
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #202022 0%, #0E0E10 100%);
  overflow: hidden;
}
.voice-photo img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05) brightness(.92);
  transition: transform .9s cubic-bezier(.2,.8,.3,1), filter .35s ease;
}
.voice-card:hover .voice-photo img{
  transform: scale(1.06);
  filter: saturate(1) contrast(1.05) brightness(1);
}
.voice-photo-grad{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 35%, rgba(10,10,11,.4) 65%, rgba(10,10,11,.95) 100%),
    linear-gradient(45deg, rgba(34,197,94,.07) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.voice-photo-stars{
  position: absolute; top: 18px; right: 18px;
  z-index: 2;
  font-size: 14px;
  color: var(--primary);
  letter-spacing: .12em;
  background: rgba(10,10,11,.75);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,.3);
}
.voice-photo-meta{
  position: absolute;
  left: 22px; right: 22px;
  bottom: 18px;
  z-index: 2;
}
.voice-photo-meta b{
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.01em;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.voice-photo-meta span{
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.78);
  margin-top: 4px;
  letter-spacing: .02em;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

/* Fallback (Unsplash blocked / image fails) — show big initial */
.voice-photo-fallback{
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 500;
  letter-spacing: -.02em;
  z-index: 0;
}
.voice-photo.photo-fallback .voice-photo-fallback{ display: flex; }
.voice-photo.photo-fallback{ background: linear-gradient(160deg, rgba(34,197,94,.25), rgba(34,197,94,.05) 60%); }
.voice-photo .voice-photo-fallback.avatar-m{ color: rgba(34,197,94,.4); }
.voice-photo .voice-photo-fallback.avatar-s{ color: rgba(91,157,232,.4); }
.voice-photo .voice-photo-fallback.avatar-j{ color: rgba(45,212,191,.4); }

/* Quote body */
.voice-card blockquote{
  margin: 0;
  font-family: var(--serif);
  font-size: 19px; line-height: 1.42;
  letter-spacing: -.01em;
  color: var(--fg-2);
  font-weight: 400;
  padding: 28px 28px 0;
  flex: 1;
}
.voice-card blockquote::before{
  content: "";
  display: block;
  width: 24px; height: 2px;
  background: var(--primary-fill);
  margin-bottom: 18px;
}

/* Bottom row — result + duration chips */
.voice-meta-row{
  display: flex; align-items: center;
  gap: 8px;
  padding: 22px 28px 26px;
  border-top: 0;
  margin-top: 22px;
}
.voice-result{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 12px;
  background: var(--primary-soft);
  border: 1px solid rgba(34,197,94,.28);
  border-radius: 999px;
}
.voice-time{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--divider);
  border-radius: 999px;
}

/* Aggregated stats row beneath cards */
.voice-stats{
  margin-top: 48px;
  padding: 28px 36px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 22px;
  align-items: center;
}
.vs-item{ text-align: center; }
.vs-stars{ color: var(--primary); letter-spacing: .14em; font-size: 13px; margin-bottom: 8px; }
.vs-v{
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1; letter-spacing: -.02em;
  color: var(--fg); font-weight: 400;
}
.vs-l{ font-size: 12px; color: var(--muted); margin-top: 8px; max-width: 30ch; margin-left: auto; margin-right: auto; line-height: 1.5; }
.vs-sep{ width: 1px; height: 42px; background: var(--divider); justify-self: center; }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section{ background: var(--bg-2); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.faq-grid{ display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-head{ position: sticky; top: 100px; }
.faq-head .section-title{ margin-top: 18px; }
.faq-head .lead{ margin-top: 24px; }

.faq-list{ display: grid; gap: 10px; }
.faq-item{
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 16px;
  transition: border-color .2s, background .2s;
}
.faq-item[open]{ border-color: rgba(34,197,94,.3); background: linear-gradient(160deg, rgba(34,197,94,.04), var(--surface) 60%); }
.faq-item summary{
  list-style: none;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px; font-weight: 400;
  letter-spacing: -.005em;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary > span{ flex: 1; }
.faq-item summary svg{
  width: 18px; height: 18px;
  color: var(--muted);
  transition: transform .25s ease, color .2s;
  flex: 0 0 18px;
}
.faq-item[open] summary svg{ transform: rotate(180deg); color: var(--primary); }
.faq-body{
  padding: 0 24px 22px 24px;
  font-size: 14px; line-height: 1.6;
  color: var(--muted);
}
.faq-body p{ margin: 0; }
.faq-body b{ color: var(--fg-2); }

/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */
.cta-section{ position: relative; overflow: visible; padding: clamp(150px,14vw,200px) 0 clamp(64px,7vw,110px); }
.cta-bg{
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(34,197,94,.08), transparent 60%),
    radial-gradient(60% 60% at 50% 100%, rgba(127,162,140,.05), transparent 60%);
}
.cta-card{
  position: relative; z-index: 1;
  border: 1px solid rgba(34,197,94,.3);
  background: linear-gradient(160deg, rgba(34,197,94,.05), color-mix(in srgb, var(--bg) 60%, transparent));
  border-radius: 32px;
  padding: clamp(48px, 6vw, 96px);
  text-align: center;
  backdrop-filter: blur(20px);
}
.cta-card .section-title{ max-width: 18ch; margin: 18px auto 0; }
.cta-card .lead{ margin: 24px auto 0; max-width: 56ch; }
.cta-buttons{ display: flex; gap: 12px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.cta-meta{
  margin-top: 28px;
  font-size: 13px; color: var(--muted);
}
.cta-meta b{ color: var(--primary); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer{ padding: 64px 0 32px; border-top: 1px solid var(--divider); }
.foot-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  grid-template-areas:
    "brand product company legal"
    "bud   product company legal";
}
.fc-brand{ grid-area: brand; }
.fc-product{ grid-area: product; }
.fc-company{ grid-area: company; }
.fc-legal{ grid-area: legal; }
.foot-bud-row{ grid-area: bud; }
.foot-col h5{ font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; font-weight: 600; }
.foot-col ul{ list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col li a{ color: var(--fg-2); font-size: 14px; transition: color .18s; }
.foot-col li a:hover{ color: var(--primary); }
.foot-tag{ color: var(--muted); font-size: 13px; max-width: 36ch; margin-top: 14px; line-height: 1.5; }
.foot-platforms{ display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.foot-platform{
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--divider);
  color: var(--muted);
  letter-spacing: .04em;
}
.foot-platform.live{ color: var(--primary); border-color: rgba(34,197,94,.3); display: inline-flex; align-items: center; gap: 6px; }
.foot-bottom{ margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--divider); display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; }
.tag-line{ font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   VIDEO MODAL
   ═══════════════════════════════════════════════════════════ */
.video-modal{
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: 5vh 5vw;
}
.video-modal[hidden]{ display: none; }
.video-modal-backdrop{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(20px);
  animation: fade-in .3s ease;
}
.video-modal-card{
  position: relative;
  width: min(1200px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: 0 60px 120px -20px rgba(0,0,0,.8);
  animation: zoom-in .35s cubic-bezier(.2,.8,.3,1.2);
}
.video-modal-card video{ width: 100%; height: 100%; }
.video-close{
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,.6); color: var(--fg);
  display: grid; place-items: center;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  transition: background .2s;
}
.video-close:hover{ background: var(--primary-fill); color: var(--on-primary); border-color: var(--primary); }
.video-close svg{ width: 18px; height: 18px; }

@keyframes fade-in{ from{ opacity: 0; } to{ opacity: 1; } }
@keyframes zoom-in{ from{ opacity: 0; transform: scale(.92); } to{ opacity: 1; transform: scale(1); } }

/* ═══════════════════════════════════════════════════════════
   CONTACT MODAL
   ═══════════════════════════════════════════════════════════ */
.contact-modal{
  position: fixed; inset: 0; z-index: 110;
  display: grid; place-items: center;
  padding: 5vh 5vw;
}
.contact-modal[hidden]{ display: none; }
.contact-modal-backdrop{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  animation: fade-in .3s ease;
}
.contact-modal-card{
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh; overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 24px;
  padding: 40px 38px 34px;
  animation: zoom-in .35s cubic-bezier(.2,.8,.3,1.2);
}
.contact-title{ font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--fg); margin: 8px 0 8px; line-height: 1.1; }
.contact-intro{ color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0 0 18px; }
.contact-inapp{
  display: flex; gap: 10px;
  font-size: 13.5px; line-height: 1.5; color: var(--fg-2);
  background: rgba(45,212,191,.12); border: 1px solid rgba(45,212,191,.3);
  border-radius: 14px; padding: 13px 15px; margin: 0 0 20px;
}
.contact-inapp[hidden]{ display: none; }
.contact-inapp b{ color: var(--clay); }
.contact-form{ display: grid; gap: 14px; }
.cf-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field{ display: flex; flex-direction: column; gap: 6px; }
.cf-field span{ font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cf-field input, .cf-field textarea{
  width: 100%; box-sizing: border-box;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--divider); border-radius: 12px;
  padding: 12px 14px; font: inherit; font-size: 15px;
  transition: border-color .18s, box-shadow .18s;
}
.cf-field input:focus, .cf-field textarea:focus{
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.cf-field textarea{ resize: vertical; min-height: 92px; }
.contact-form .btn{ margin-top: 4px; }
.cf-fallback{ text-align: center; font-size: 13px; color: var(--muted); margin: 4px 0 0; }
.cf-fallback a{ color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 480px){
  .contact-modal-card{ padding: 34px 22px 26px; }
  .cf-row{ grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   A2HS BOTTOM SHEET (mobile only)
   ═══════════════════════════════════════════════════════════ */
.a2hs-sheet{
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: none;
  align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 18px;
  box-shadow: 0 24px 50px -10px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.a2hs-sheet.show{ transform: translateY(0); }
.a2hs-icon{
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--primary-fill); color: var(--on-primary);
  display: grid; place-items: center;
  flex: 0 0 40px;
}
.a2hs-icon svg{ width: 20px; height: 20px; }
.a2hs-text{ flex: 1; display: flex; flex-direction: column; min-width: 0; }
.a2hs-text b{ font-size: 14px; color: var(--fg); font-weight: 600; }
.a2hs-text span{ font-size: 11px; color: var(--muted); }
.a2hs-dismiss{
  width: 26px; height: 26px; border-radius: 50%;
  color: var(--muted);
  display: grid; place-items: center;
  flex: 0 0 26px;
}
.a2hs-dismiss:hover{ background: var(--surface-2); color: var(--fg); }
.a2hs-dismiss svg{ width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════
   FADE-UP INTERSECTION ANIMATION
   ═══════════════════════════════════════════════════════════ */
/* Fade-up: opt-in via .js-fade-ready on <html>. Default state = visible
   so content always renders even if IntersectionObserver is unavailable. */
.fade-up{ transition: opacity .7s ease, transform .7s ease; }
html.js-fade-ready .fade-up{ opacity: 0; transform: translateY(20px); }
html.js-fade-ready .fade-up.in{ opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px){
  .hero-grid{ grid-template-columns: 1fr; gap: 64px; }
  .hero-copy{ order: 2; }
  .hero-phone-wrap{ order: 1; max-width: 720px; margin: 0 auto; }
  .feat-card{ grid-template-columns: 1fr; }
  .feat-card.feat-large{ grid-template-columns: 1fr; }
  .feat-card.feat-large.flip .feat-phone-wrap{ order: 0; }
  .coach-grid{ grid-template-columns: 1fr; gap: 64px; }
  .chat-pop{ right: -10px; }
  .faq-grid{ grid-template-columns: 1fr; gap: 48px; }
  .faq-head{ position: static; }
  .store-row{ max-width: 100%; }
  .install-steps{ grid-template-columns: 1fr; gap: 18px; max-width: 600px; margin: 0 auto; }
  .install-steps-android{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .price-free, .price-procoach{ grid-template-columns: 1fr; text-align: left; max-width: 520px; margin-left: auto; margin-right: auto; }
  .price-free .install-free-cta, .price-procoach .install-free-cta{ justify-self: start; }
  .beta-card{ grid-template-columns: 1fr; text-align: center; padding: 32px; }
  .beta-icon{ margin: 0 auto; }
  .voice-grid{ grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .voice-stats{ grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px; }
  .voice-stats .vs-sep{ display: none; }
  .trust-row{ grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 0; }
  .trust-sep{ display: none; }
  .video-section-grid{ display: flex; flex-direction: column; align-items: center; gap: 32px; }
  .video-copy{ display: contents; }
  .video-section-grid .section-head{ order: 1; text-align: center; margin: 0; }
  .video-lead{ font-size: clamp(14px, 3.6vw, 16px); line-height: 1.55; white-space: normal; text-wrap: balance; overflow-wrap: break-word; max-width: 34ch; margin-left: auto; margin-right: auto; }
  .video-stage-portrait{ order: 2; max-width: 300px; }
  .video-side-meta{ order: 3; margin-top: 0; align-items: center; }
  .vsm-chips{ justify-content: center; }
  .video-side-meta .btn{ align-self: stretch; }
}

@media (max-width: 720px){
  .nav-links{ display: none; }
  .nav-cta{ gap: 10px; }
  .nav-link-sub{ display: none; }
  .nav-install{ padding: 10px 16px; font-size: 13px; }
  .nav-inner{ gap: 12px; }

  section{ padding: 56px 0; }
  .section-head{ margin-bottom: 36px; }
  .section-head.center{ margin-bottom: 40px; }

  .hero{ padding-top: 24px; padding-bottom: 36px; }
  .hero-grid{ gap: 36px; }
  .hero-copy{ order: 2; }
  .hero-phone-wrap{
    order: 1;
    padding: 16px 0 28px;
    min-height: 0;
  }
  .hero-phone-wrap .iphone{
    --phone-w: min(160px, 40vw);
  }
  .hero-phone-left{
    transform: rotateY(11deg) rotateX(2deg) rotateZ(-5deg) translate(14px, 18px);
  }
  .hero-phone-right{
    transform: rotateY(-11deg) rotateX(2deg) rotateZ(5deg) translate(-14px, -18px);
  }
  .hp-label{ font-size: 9px; bottom: -22px; }
  .sticker-1, .sticker-3{ display: none; }

  h1.display{ font-size: clamp(40px, 11vw, 56px); letter-spacing: -.025em; }
  .hero-lead{ font-size: 16px; }
  .hero-eyebrow{ font-size: 10px; padding: 5px 10px; gap: 8px; flex-wrap: wrap; }
  .eyebrow-divider{ display: none; }

  .hero-ctas{ flex-direction: column; gap: 10px; width: 100%; margin-top: 8px; }
  .hero-ctas .btn{ width: 100%; }
  .hero-meta{ gap: 12px; }
  .store-row{ grid-template-columns: 1fr; margin-top: 24px; }

  .iphone{ --phone-w: min(280px, 75vw); }
  .iphone-sm{ --phone-w: min(240px, 70vw); }
  .iphone-xs{ --phone-w: min(200px, 60vw); }
  .iphone-md{ --phone-w: min(260px, 72vw); }
  .sticker-1, .sticker-2, .sticker-3{ display: none; }

  .marquee{ padding: 16px 0; }
  .m-item{ font-size: clamp(22px, 6vw, 30px); gap: 20px; padding-right: 20px; }
  .trust-row{ grid-template-columns: 1fr 1fr; gap: 18px; padding: 24px 0; }
  .trust-v{ font-size: 26px; }

  .video-stage{ aspect-ratio: 4 / 5; }
  .video-stage-portrait{ aspect-ratio: 9 / 16; max-width: 280px; border-radius: 38px; }
  .video-stage-portrait .video-bg{ border-radius: 30px; }
  .video-stage-portrait .video-overlay{ border-radius: 30px; }
  .video-phone-frame{ border-radius: 30px; }
  .video-phone-island{ width: 70px; height: 20px; top: 10px; }
  .video-section-grid{ grid-template-columns: 1fr; gap: 36px; }
  .video-side-meta{ align-items: center; text-align: center; }
  .video-side-meta .btn{ width: 100%; }
  .video-play{ width: 64px; height: 64px; }
  .video-play svg{ width: 24px; height: 24px; }
  .video-corners .c{ width: 18px; height: 18px; }
  .video-meta{ left: 16px; bottom: 16px; }

  h2.section-title{ font-size: clamp(30px, 9vw, 50px); }
  .feat-title{ font-size: clamp(22px, 7vw, 32px); }
  .feat-card{ padding: 28px 24px; }
  .feat-card.feat-large{ padding: 28px 24px; gap: 24px; }
  .feat-phone-wrap{ padding: 0; }

  .coach-grid{ gap: 36px; }
  .chat-pop{
    position: relative;
    right: auto; bottom: auto;
    width: 100%; margin-top: 24px;
  }
  .coach-cta-row{ flex-direction: column; }
  .coach-cta-row .btn{ width: 100%; }

  .install-tabs{ width: 100%; }
  .install-tab{ flex: 1; padding: 10px 14px; font-size: 13px; }
  .install-step{ padding: 22px; }
  .step-body h4{ font-size: 19px; }
  .install-result{ flex-direction: column; text-align: center; padding: 22px; gap: 14px; }

  .price-card{ padding: 28px 24px; }
  .price-amt b{ font-size: 44px; }
  .beta-card{ padding: 28px 22px; }
  .beta-body h3{ font-size: 22px; }

  .voice-card{ padding: 0; }
  .voice-card blockquote{ font-size: 17px; padding: 22px 22px 0; }
  .voice-meta-row{ padding: 18px 22px 24px; }
  .voice-photo-meta b{ font-size: 19px; }
  .voice-stats{ grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .voice-stats .vs-sep{ display: none; }

  .faq-item summary{ padding: 18px 20px; font-size: 16px; gap: 12px; }
  .faq-body{ padding: 0 20px 20px; font-size: 13px; }

  .cta-buttons{ flex-direction: column; }
  .cta-buttons .btn{ width: 100%; }
  .snap-copy .btn{ width: 100%; justify-content: center; }
  .beta-card .btn{ width: 100%; }
  .gymbud-cta .btn{ width: 100%; max-width: 360px; }

  .foot-grid{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    grid-template-areas:
      "brand   brand"
      "product company"
      "legal   bud";
  }
  .foot-bottom{ flex-direction: column; gap: 10px; text-align: center; }

  /* show A2HS bottom sheet on mobile */
  .a2hs-sheet{ display: flex; }
}

@media (max-width: 420px){
  .foot-grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "product"
      "company"
      "legal"
      "bud";
  }
  .trust-row{ grid-template-columns: 1fr; }
  .hero-eyebrow{ font-size: 9px; }
  h1.display{ font-size: clamp(36px, 10vw, 48px); }
}

/* ═══════════════════════════════════════════════════════════
   MASCOT — shared utility (the FitSync "Bud" character)
   ═══════════════════════════════════════════════════════════ */
.mascot{
  display: block;
  width: 100%; height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.5)) drop-shadow(0 8px 14px rgba(0,0,0,.25));
}
.mascot-float{ animation: mascot-bob 6s ease-in-out infinite; }
.mascot-float.delay{ animation-delay: -3s; }
@keyframes mascot-bob{ 0%,100%{ transform: translateY(0) rotate(0deg); } 50%{ transform: translateY(-12px) rotate(-1.2deg); } }
@media (prefers-reduced-motion: reduce){ .mascot-float{ animation: none; } }

/* Hero floating bud sticker */
.hero-bud{
  position: absolute;
  z-index: 4;
  bottom: 22px; left: -16px;
  width: clamp(115px, 13.2vw, 180px);
}
.hero-bud .mascot{ filter: drop-shadow(0 18px 26px rgba(0,0,0,.55)) drop-shadow(0 6px 12px rgba(0,0,0,.28)); }

/* ═══════════════════════════════════════════════════════════
   GYM BUD campaign section
   ═══════════════════════════════════════════════════════════ */
.gymbud-section{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.gymbud-section .gb-bg{
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(48% 55% at 22% 28%, rgba(34,197,94,.06), transparent 60%),
    radial-gradient(48% 55% at 78% 30%, rgba(91,157,232,.05), transparent 60%);
}
.gymbud-section .wrap{ position: relative; z-index: 1; }

.gb-eyebrow-new{
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.gb-eyebrow-new .new-tag{
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-primary); background: var(--primary-fill);
  padding: 4px 9px; border-radius: 6px;
}

/* ── Hero duo stage ── */
.gymbud-stage{
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 460px) 1fr;
  align-items: center;
  gap: 22px;
}
.gb-buddy{ position: relative; display: flex; justify-content: center; z-index: 2; }
.gb-buddy.left{ justify-content: flex-end; }
.gb-buddy.right{ justify-content: flex-start; }
.gb-buddy img{
  height: clamp(182px, 20.4vw, 254px);
  width: auto; max-width: 100%;
}
.gb-buddy.flip img{ transform: scaleX(-1); }

/* Buddy name tag under each mascot */
.gb-buddy .who-tag{
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  color: var(--muted); white-space: nowrap;
}
.gb-buddy .who-tag b{ color: var(--primary); }

/* Center activity card — the real feature */
.gb-card{
  position: relative;
  z-index: 3;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.03);
  position: relative;
}
.gb-card-head{
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}
.gb-link-icon{
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
}
.gb-link-icon svg{ width: 18px; height: 18px; }
.gb-card-head b{ display: block; font-size: 14px; font-weight: 600; color: var(--fg); }
.gb-card-head span{ font-size: 11px; color: var(--muted); }
.gb-card-head .gb-live{ margin-left: auto; }

/* Linked avatars row */
.gb-linked{
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 6px 0 18px;
}
.gb-av{
  width: 76px; height: 76px; border-radius: 18px;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--fg);
  background: var(--surface-2); border: 1px solid var(--divider);
}
.gb-av.you{ color: var(--primary); border-color: rgba(34,197,94,.4); background: var(--primary-soft); }
.gb-link-line{
  flex: 1; max-width: 80px; height: 2px; position: relative;
  background: repeating-linear-gradient(90deg, var(--primary) 0 6px, transparent 6px 12px);
  opacity: .8;
}
.gb-link-line::after{
  content:""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); border: 1px solid rgba(34,197,94,.4);
  background-image: radial-gradient(circle, var(--primary) 0 3px, transparent 3px);
}

/* Shared streak */
.gb-streak{
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-radius: 12px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(34,197,94,.1), rgba(34,197,94,.02));
  border: 1px solid rgba(34,197,94,.28);
}
.gb-streak .lab{ font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.gb-streak .val{ font-family: var(--serif); font-size: 28px; color: var(--fg); line-height: 1; white-space: nowrap; }
.gb-streak .val em{ color: var(--primary); font-style: italic; }
.gb-streak > div:first-child{ min-width: 0; }
.gb-streak .flame{ font-size: 22px; }

/* Activity feed */
.gb-feed{ display: grid; gap: 8px; }
.gb-event{
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--fg-2); line-height: 1.35;
}
.gb-event .ev-ic{
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--primary);
}
.gb-event .ev-ic svg{ width: 14px; height: 14px; }
.gb-event b{ color: var(--fg); font-weight: 600; }
.gb-event .ev-time{ margin-left: auto; font-size: 10px; color: var(--muted-2); font-family: var(--mono); white-space: nowrap; }

/* ── Pillars ── */
.gymbud-pillars{
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.gb-pillar{
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 22px;
  padding: 28px 28px 32px;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), border-color .25s ease, box-shadow .25s ease;
}
.gb-pillar:hover{
  transform: translateY(-4px);
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.55), 0 0 0 1px rgba(34,197,94,.12);
}
.gb-pillar::before{
  content:""; position: absolute; top: -20%; right: -15%;
  width: 55%; height: 70%;
  background: radial-gradient(closest-side, rgba(34,197,94,.1), transparent 70%);
  pointer-events: none;
}
.gb-pillar-art{
  height: 180px; margin: -4px 0 18px;
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.gb-pillar-art::after{
  content:""; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 64%; height: 16px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,0,0,.45), transparent 70%);
  filter: blur(2px);
}
.gb-pillar-art img{ height: 110%; width: auto; position: relative; z-index: 1; }
.gb-pillar .step-num,
.gb-pillar-num{
  font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--primary);
}
.gb-pillar h3{
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  letter-spacing: -.01em; margin: 8px 0 10px; color: var(--fg);
}
.gb-pillar p{ font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
.gb-pillar p b{ color: var(--fg-2); }

.gymbud-cta{ margin-top: 48px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.gymbud-note{ text-align: center; margin-top: 18px; font-size: 13px; color: var(--muted); }
.gymbud-note b{ color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 920px){
  .gymbud-stage{ grid-template-columns: 1fr; gap: 24px; max-width: 460px; margin: 8px auto 0; }
  .gb-buddy{ display: none; }
  .gymbud-pillars{ grid-template-columns: 1fr; max-width: 460px; margin: 48px auto 0; }
  .hero-bud{ width: 110px; bottom: 6px; left: 2px; }
}

/* CTA celebratory mascot */
.cta-card{ overflow: visible; }

/* MyCoach section mascots — anchored to the phone */
.iphone-md .coach-bud-mentor{
  position: absolute; z-index: 6;
  left: -64px; bottom: -28px;
  width: clamp(156px, 15.6vw, 202px);
}
.iphone-md .coach-bud-pr{
  position: absolute; z-index: 6;
  right: -52px; top: -22px;
  width: clamp(115px, 10.8vw, 144px);
}
@media (max-width: 520px){
  .iphone-md .coach-bud-pr{ display: none; }
  .iphone-md .coach-bud-mentor{ left: -30px; width: 132px; }
}

/* Install walkthrough — grounded in real app screens */
.step-illo-share .step-url{ display:flex; align-items:center; justify-content:center; gap:8px; margin-bottom:12px; }
.step-illo-share .step-url svg{ width:13px; height:13px; color:var(--muted); flex:0 0 13px; }
.step-shot{ border-radius:10px; overflow:hidden; border:1px solid rgba(255,255,255,.08); aspect-ratio:5/4.2; margin-bottom:14px; background:#0A0A0B; box-shadow:0 8px 18px -8px rgba(0,0,0,.6); }
.step-shot img{ width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.step-share-row{ display:flex; align-items:center; justify-content:center; gap:10px; }
.step-illo-share .step-tap-circle{ width:44px; height:44px; margin:0; flex:0 0 44px; }
.step-illo-share .step-tap-circle svg{ width:19px; height:19px; }
.step-illo-confirm .confirm-icon{ background:none; box-shadow:none; padding:0; overflow:hidden; }
.step-illo-confirm .confirm-icon img{ width:44px; height:44px; border-radius:11px; display:block; }

/* More buds, cosier feel */
.faq-bud{ width: clamp(158px, 18vw, 206px); margin-top: 30px; }
.result-bud{ margin-left: auto; flex: 0 0 auto; width: clamp(79px, 8.4vw, 110px); align-self: center; }
.foot-bud-row{ display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.foot-bud{ width: 125px; flex: 0 0 auto; }
.foot-bud-note{ font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--muted); line-height: 1.25; }
.beta-card{ position: relative; }
.beta-card .btn{ position: relative; z-index: 3; }
.beta-bud{ position: absolute; top: -46px; right: 36px; width: clamp(110px, 12vw, 144px); z-index: 1; }
@media (max-width: 720px){
  .result-bud{ display: none; }
  .beta-bud{ top: -36px; right: 14px; width: 98px; }
  .foot-bud-row{ justify-content: flex-start; align-items: center; text-align: left; margin-top: 0; gap: 12px; }
  .foot-bud{ width: 101px; }
  .foot-bud-note{ font-size: 16px; }
}
.cta-mascot{
  position: absolute;
  top: clamp(-150px, -10vw, -100px); left: 50%;
  width: clamp(156px, 16.8vw, 240px);
  z-index: 2;
  animation: cta-bob 6s ease-in-out infinite;
}
@keyframes cta-bob{
  0%,100%{ transform: translateX(-50%) translateY(0) rotate(-1deg); }
  50%{ transform: translateX(-50%) translateY(-10px) rotate(1deg); }
}
@media (max-width: 600px){
  .cta-mascot{ width: 139px; top: -92px; }
}

/* ═══════════════════════════════════════════════════════
   THEME TOGGLE + FOCUS + LIGHT-THEME OVERRIDES
   ═══════════════════════════════════════════════════════ */
.theme-toggle{
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--divider);
  display: grid; place-items: center;
  color: var(--muted);
  flex: 0 0 38px;
  transition: color .18s, border-color .18s, transform .18s;
}
.theme-toggle:hover{ color: var(--fg); border-color: var(--muted-2); }
.theme-toggle svg{ width: 16px; height: 16px; grid-area: 1 / 1; transition: opacity .25s ease, transform .35s ease; }
.theme-toggle .tt-moon{ opacity: 0; transform: rotate(40deg) scale(.5); }
[data-theme="light"] .theme-toggle .tt-moon{ opacity: 1; transform: none; }
[data-theme="light"] .theme-toggle .tt-sun{ opacity: 0; transform: rotate(-40deg) scale(.5); }

a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── Light-theme component adjustments (softer shadows, no white-tint rings) ── */
[data-theme="light"] .sticker{ box-shadow: 0 24px 50px -16px rgba(15,27,20,.16); }
[data-theme="light"] .chat-pop{ box-shadow: 0 30px 60px -20px rgba(15,27,20,.14); }
[data-theme="light"] .gb-card{ box-shadow: 0 40px 80px -30px rgba(15,27,20,.16); }
[data-theme="light"] .a2hs-sheet{ box-shadow: 0 24px 50px -10px rgba(15,27,20,.16); }
[data-theme="light"] .iphone-back{ box-shadow: 0 50px 80px -24px rgba(15,27,20,.32), 0 20px 34px -14px rgba(15,27,20,.18); }
[data-theme="light"] .mascot{ filter: drop-shadow(0 20px 26px rgba(15,27,20,.2)) drop-shadow(0 6px 12px rgba(15,27,20,.1)); }
[data-theme="light"] .hero-bud .mascot{ filter: drop-shadow(0 16px 24px rgba(15,27,20,.22)); }
[data-theme="light"] .video-stage{ box-shadow: 0 50px 100px -40px rgba(15,27,20,.28), 0 24px 48px -25px rgba(15,27,20,.14); }
[data-theme="light"] .video-stage-portrait{ box-shadow: 0 50px 80px -30px rgba(15,27,20,.26), inset 0 0 0 1.5px rgba(255,255,255,.05); }
[data-theme="light"] .ins-phone{ box-shadow: 0 30px 55px -30px rgba(15,27,20,.3), inset 0 0 0 1px rgba(255,255,255,.06); }
[data-theme="light"] .voice-card:hover{ box-shadow: 0 30px 60px -25px rgba(15,27,20,.14), 0 0 0 1px rgba(34,197,94,.1); }
[data-theme="light"] .gb-pillar:hover{ box-shadow: 0 30px 60px -25px rgba(15,27,20,.14), 0 0 0 1px rgba(34,197,94,.1); }
[data-theme="light"] .price-pro{ box-shadow: 0 30px 60px -25px rgba(34,197,94,.14); }
[data-theme="light"] .cta-card{ background: linear-gradient(160deg, rgba(34,197,94,.06), rgba(255,255,255,.82)); }
[data-theme="light"] .gb-pillar-art::after{ background: radial-gradient(closest-side, rgba(15,27,20,.18), transparent 70%); }
[data-theme="light"] .voice-photo img{ filter: saturate(.95) contrast(1.03); }
[data-theme="light"] .video-modal-backdrop,
[data-theme="light"] .contact-modal-backdrop{ background: rgba(10,14,11,.55); }


/* ═══ SNAPSYNC MOMENT — ad show-off + copy ═══ */
.snap-moment{ padding: clamp(72px, 9vw, 118px) 0; border-top: 1px solid var(--divider); }
.snap-grid{ display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: clamp(44px, 7vw, 110px); align-items: center; }
.snap-stage{ width: 100%; max-width: 360px; justify-self: center; }
.snap-copy{ display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.snap-copy .lead{ max-width: 58ch; }
.snap-copy .btn{ margin-top: 8px; }
.snap-bud{ width: clamp(88px, 9vw, 118px); }
/* SnapSync 3D phone (matches hero mockups — no notch) */
.snap-media{ perspective: 1400px; }
.snap-phone{ --phone-w: min(310px, 80vw); margin: 0 auto; cursor: pointer; transform: rotateY(-11deg) rotateX(2deg) rotateZ(2deg); transition: transform .45s ease; }
.snap-phone:hover{ transform: rotateY(-6deg) rotateX(1deg) rotateZ(1deg); }
.snap-phone .iphone-screen{ overflow: hidden; }
.snap-phone .snap-video{ flex: 1; width: 100%; height: 100%; min-height: 0; object-fit: cover; display: block; }
.snap-phone:hover .video-overlay{ background: radial-gradient(closest-side, transparent 30%, rgba(0,0,0,.55) 75%), linear-gradient(to top, rgba(0,0,0,.65), transparent 40%); }
.snap-phone:hover .video-play{ transform: scale(1.08); }
@media (max-width: 900px){
  .snap-grid{ grid-template-columns: 1fr; gap: 40px; }
  .snap-media{ order: 2; }
  .snap-stage{ max-width: 280px; margin: 0 auto; }
  .snap-phone{ --phone-w: min(260px, 72vw); transform: none; }
  .snap-copy{ order: 1; align-items: center; text-align: center; }
}
