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

:root {
  --cream: #F2EEDF;
  --ink: #0d0f0a;
  --ink-80: rgba(13,15,10,0.8);
  --ink-50: rgba(13,15,10,0.5);
  --ink-15: rgba(13,15,10,0.1);
  --gold: #E3A934;
  --gold-light: #F4CE83;
  --sage: #6FB07A;
  --sage-border: rgba(111,176,122,0.28);
  --sage-accent: #6FB07A;
  --white: #FFFFFF;
  --max: 1200px;
  --font-heading: "Space Grotesk", "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-number: "Fraunces", Georgia, "Times New Roman", serif;
}

html {
  min-height: 100%;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(13,15,10,.12);
  scroll-behavior: auto;
}
body {
  min-height: 100%;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  touch-action: pan-y;
  overscroll-behavior-y: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.marketingHome ~ .siteLegalFooter {
  display: none;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(8,9,6,.9);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9C6D14;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,15,10,0.85);
  border-bottom: 1px solid rgba(242,238,223,.08);
  backdrop-filter: blur(18px);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  height: 78px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading); font-size: 30px; font-weight: 800;
  letter-spacing: -1px; text-decoration: none; color: var(--cream);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { min-height:48px; display:inline-flex; align-items:center; font-size: 15px; font-weight: 650; text-decoration: none; color: rgba(242,238,223,.58); transition: color .2s; }
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: linear-gradient(135deg, #F4CE83, var(--gold)); color: #2a2008 !important;
  min-height: 50px !important;
  padding: 0 26px; border-radius: 16px; font-weight: 800 !important;
  box-shadow: 0 14px 34px rgba(227,169,52,.18);
}

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 78px;
  display: flex; align-items: center;
  position: relative; overflow: hidden; background: #0d0f0a;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 48px 40px 38px;
  display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: center;
  position: relative; z-index: 10;
}

.hero-rain-canvas,
.hero-polaroids,
.hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-rain-canvas { z-index: 1; }
.hero-polaroids { z-index: 2; overflow: hidden; }
.hero-vignette {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(13,15,10,.22), rgba(13,15,10,.08) 34%, rgba(13,15,10,.68)),
    radial-gradient(ellipse at 35% 50%, transparent 20%, rgba(13,15,10,0.65) 70%);
}

.hero-headline {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 800; line-height: 1.0; letter-spacing: -2.5px; margin-bottom: 22px;
}
.hero-headline .dim { color: rgba(242,238,223,.56); }

.hero-body {
  display: grid;
  gap: 6px;
  font-size: 18px;
  color: rgba(242,238,223,.76);
  line-height: 1.45;
  max-width: 520px;
  margin-bottom: 34px;
  font-weight: 500;
  text-shadow: 0 1px 20px rgba(0,0,0,.22);
}
.hero-body span:last-child { color: rgba(227,169,52,.9); font-weight: 700; }

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg,#F4CE83,var(--gold)); color: #2a2008; border: none;
  padding: 14px 28px; border-radius: 16px;
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: filter .2s, transform .2s;
  box-shadow: 0 14px 34px rgba(227,169,52,.18);
}
.btn-primary:hover { filter:brightness(1.04); transform:translateY(-1px); }
/* Disabled state — matches the Flick button design system (gold @28%, text @60%). */
.btn-primary:disabled,
.btn-primary[aria-disabled="true"],
.nav-cta:disabled,
.nav-cta[aria-disabled="true"] {
  background: rgba(227,169,52,.28);
  color: rgba(42,32,8,.6) !important;
  box-shadow: none;
  transform: none;
  filter: none;
  cursor: not-allowed;
}

.btn-ghost {
  min-height:44px; color: rgba(242,238,223,.5); font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; opacity: .55; transition: opacity .2s;
}
.btn-ghost:hover { color: var(--cream); opacity: 1; }

.app-downloads {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.store-badge {
  height: 52px;
  min-width: 206px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid rgba(242,238,223,0.1);
  background: #050505;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s, opacity .2s;
}
.store-badge::after { content: ''; position: absolute; inset: 0; background: rgba(5,5,5,.08); pointer-events: none; }
.store-badge:hover { transform: translateY(-1px); border-color: rgba(227,169,52,.28); }
.store-badge:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.store-icon { width: 24px; height: 24px; flex: 0 0 auto; }
.apple-icon { fill: #fff; }
.play-blue { fill: #6FB07A; }
.play-green { fill: #4E9560; }
.play-yellow { fill: #F4CE83; }
.play-gold { fill: #E3A934; }
.store-main,
.store-sub { display: block; line-height: 1.05; }
.store-main {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.1px;
}
.store-sub { margin-top: 5px; font-size: 11px; color: rgba(255,255,255,.58); }
.store-badge.mini { min-width: 0; width: 100%; height: 50px; padding: 0 14px; border-color: rgba(242,238,223,.14); }

.waitlist-card {
  width: min(100%, 520px);
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(111,176,122,.24);
  border-radius: 14px;
  background: rgba(22,26,16,.72);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.waitlist-label {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.waitlist-card p {
  margin: 0;
  color: rgba(242,238,223,.48);
  font-size: 13px;
  line-height: 1.45;
}
.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
}
.waitlist-form input,
.footer-waitlist input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(111,176,122,.28);
  border-radius: 10px;
  background: rgba(13,15,10,.52);
  color: var(--cream);
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
}
.waitlist-form input::placeholder,
.footer-waitlist input::placeholder {
  color: rgba(242,238,223,.28);
}
.waitlist-form button,
.footer-waitlist button {
  height: 44px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg,#F4CE83,var(--gold));
  color: #2a2008;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(227,169,52,.14);
}
.waitlist-form button:disabled,
.footer-waitlist button:disabled {
  opacity: .62;
  cursor: wait;
}
.waitlist-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: rgba(242,238,223,.44);
  font-size: 12px;
  line-height: 1.4;
}
.waitlist-status.is-success { color: rgba(111,176,122,.86); }
.waitlist-status.is-error { color: #C77B5B; }

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-top: 40px;
}
.avatars { display: flex; flex: 0 0 auto; }
.av {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--cream);
  margin-left: -7px; display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--cream); font-weight: 600;
}
.av:first-child { margin-left: 0; }
.av1{background:#2a1f15} .av2{background:#1a2025} .av3{background:#25181a} .av4{background:#1f2a20}
.proof-text {
  min-width: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(242,238,223,.4);
}
.proof-text strong { color: rgba(242,238,223,.78); font-weight: 500; }

/* ── HERO RIGHT — APP PREVIEW CARDS ── */
.hero-right { position: relative; }

.app-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  perspective: 900px;
}

.app-card {
  background: var(--white);
  border: 1px solid var(--ink-15);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  animation: preview-card-float 7s ease-in-out infinite;
}

.app-side-column .app-card:nth-child(1) { animation-delay: .45s; }
.app-side-column .app-card:nth-child(2) { animation-delay: .9s; }
.app-side-column .app-card:nth-child(3) { animation-delay: 1.35s; }

/* Card 1 — QR (tall, left col spanning 2 rows) */
.card-qr {
  grid-row: 1 / 3;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.card-qr::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(242,238,223,.08) 46%, rgba(227,169,52,.16) 50%, transparent 56%);
  transform: translateX(-130%);
  animation: card-sheen 5.8s ease-in-out infinite;
  pointer-events: none;
}

.card-qr-title {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  color: var(--cream); margin-bottom: 4px; letter-spacing: -0.3px;
}
.card-qr-sub { font-size: 12px; color: rgba(242,238,223,.45); margin-bottom: 20px; }

.mini-qr {
  width: 110px; height: 110px; background: var(--cream); border-radius: 12px;
  display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; padding: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(242,238,223,.05), 0 12px 24px rgba(0,0,0,.18);
}
.mini-qr::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  top: 9px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .7;
  animation: qr-scan 2.8s ease-in-out infinite;
}
.mqc { border-radius: 1px; background: var(--ink); }

.card-qr-stats { display: flex; gap: 12px; }
.qr-stat {
  background: rgba(242,238,223,.05); border: 1px solid rgba(242,238,223,.08);
  border-radius: 10px; padding: 10px 12px; flex: 1; text-align: center;
  animation: stat-breathe 3.4s ease-in-out infinite;
}
.qr-stat:nth-child(2) { animation-delay: .35s; }
.qr-stat:nth-child(3) { animation-delay: .7s; }
.qr-stat-num { font-family: var(--font-number); font-size:18px; font-weight:700; color:var(--cream); display:block; }
.qr-stat-num.is-counting { animation: number-pop .28s ease-out; }
.qr-stat-lbl { font-size:10px; color:rgba(242,238,223,.4); }

/* Card 2 — Shot counter */
.card-shot {
  background: var(--cream);
  border: 1px solid var(--ink-15);
  display: flex; flex-direction: column; gap: 12px;
  color: var(--ink);
}
.card-shot::after {
  content: '';
  position: absolute;
  inset: auto 20px 18px 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,169,52,.5), transparent);
  opacity: 0;
  transform: translateX(-18px);
  pointer-events: none;
}
.card-shot.is-capturing::after { animation: capture-flash .6s ease-out; }
.card-shot-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-50); }
.shot-counter-big { font-family: var(--font-number); font-size:40px; font-weight:700; letter-spacing:-1px; line-height:1; animation: shot-counter-breathe 3.2s ease-in-out infinite; }
.shot-counter-big span { color: var(--gold); }
.shot-dots-row { display: flex; gap: 4px; flex-wrap: wrap; }
.sdot { width:8px; height:8px; border-radius:50%; background:var(--ink-15); }
.sdot.used { background:var(--gold); animation: dot-wave 2.8s ease-in-out infinite; }
.sdot.active { background:var(--sage-accent); animation: active-shot 1.1s ease-in-out infinite; }
.sdot.is-live-dot { animation: active-shot .72s ease-out; background:var(--sage-accent); }
.phase-0 { animation-delay: 0s; }
.phase-1 { animation-delay: .12s; }
.phase-2 { animation-delay: .24s; }
.phase-3 { animation-delay: .36s; }
.phase-4 { animation-delay: .48s; }
.phase-5 { animation-delay: .6s; }
.phase-6 { animation-delay: .72s; }

/* Card 3 — Event type selector */
.card-event { border: 1px solid var(--ink-15); color: var(--ink); }
.card-event-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-50); margin-bottom: 12px; }
.event-pill-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.epill {
  min-height:36px;
  background: var(--cream); border: 1.5px solid var(--ink-15);
  border-radius: 8px; padding: 6px 10px; font-size: 12px; font-weight: 500; cursor: pointer;
  display: flex; align-items: center; gap: 5px; transition: all .15s;
}
.epill.sel { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.epill.sel { animation: selected-pill-glow 2.2s ease-in-out infinite; }
.ftag { background:var(--ink); color:var(--cream); border-radius:6px; padding:4px 9px; font-size:11px; font-weight:500; }
.ftag { animation: tag-rise .42s ease-out both; }
.ftag.muted { background:var(--ink-15); color:var(--ink-50); }

/* Card 4 — Reveal timer */
.card-reveal { background: var(--gold-light); border-color: var(--gold); color: var(--ink); }
.card-reveal { animation-name: preview-card-float, reveal-glow; animation-duration: 7s, 3.8s; animation-timing-function: ease-in-out, ease-in-out; animation-iteration-count: infinite, infinite; }
.card-reveal-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 8px; }
.reveal-icon-big { width: 28px; height: 28px; margin-bottom: 8px; display: block; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; animation: reveal-icon-float 2.4s ease-in-out infinite; }
.reveal-time { font-family: var(--font-number); font-size:22px; font-weight:700; letter-spacing:-0.5px; margin-bottom:4px; }
.reveal-time.is-ticking { animation: timer-tick .38s ease-out; }
.reveal-desc { font-size:12px; color:var(--ink-50); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--ink);
  border-top: 1px solid rgba(242,238,223,.06);
}
.stats-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(242,238,223,.08);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-number); font-size:40px; font-weight:700; color:var(--cream); letter-spacing:-1px; line-height:1; margin-bottom:6px; }
.stat-number span { color:var(--gold); }
.stat-star { display:inline-flex; width:.68em; height:.68em; vertical-align:.05em; }
.stat-star svg { width:100%; height:100%; display:block; fill:currentColor; stroke:none; }
.stat-desc { font-size:13px; color:rgba(242,238,223,.4); line-height:1.4; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-inner { max-width:var(--max); margin:0 auto; padding:0 40px; }

.section-label { font-size:12px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.section-title { font-family: var(--font-heading); font-size:clamp(32px,3.5vw,48px); font-weight:700; letter-spacing:-1.5px; line-height:1.1; max-width:560px; margin-bottom:14px; }
.section-sub { font-size:16px; color:rgba(242,238,223,.56); max-width:480px; line-height:1.65; font-weight:300; }

/* HOW IT WORKS */
.how-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:56px; background:transparent; }
.how-card { background:#161a10; border:1px solid var(--sage-border); border-radius:18px; padding:40px 32px; position:relative; overflow:hidden; box-shadow:0 18px 60px rgba(0,0,0,.16); }
.how-number { font-family: var(--font-number); font-size:72px; font-weight:700; color:rgba(111,176,122,.08); line-height:1; position:absolute; top:16px; right:20px; letter-spacing:-3px; }
.how-icon { width:28px; height:28px; margin-bottom:16px; display:block; color:var(--gold); fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.how-title { font-family: var(--font-heading); font-size:18px; font-weight:700; margin-bottom:8px; letter-spacing:-.3px; color:var(--cream); }
.how-desc { font-size:14px; color:rgba(242,238,223,.55); line-height:1.6; }

/* PRICING */
.pricing-section { background:var(--ink); padding:100px 0; color:var(--cream); }
.pricing-inner { max-width:var(--max); margin:0 auto; padding:0 40px; }
.pricing-label { color:var(--gold); }
.pricing-title { color:var(--cream); max-width:none; }
.pricing-sub { color:rgba(242,238,223,.45); }

.pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:48px; }
.price-card {
  background:#161a10; border:1px solid var(--sage-border);
  border-radius:18px; padding:24px 20px; position:relative; transition:border-color .2s;
}
.price-card:hover { border-color:rgba(227,169,52,.42); }
.price-card.featured { background:linear-gradient(180deg, rgba(227,169,52,.1), rgba(22,26,16,.98)); color:var(--cream); border-color:rgba(227,169,52,.6); box-shadow:0 24px 80px rgba(227,169,52,.12); }
.price-card.featured::before { content:''; position:absolute; inset:0 0 auto; height:2px; border-radius:18px 18px 0 0; background:linear-gradient(90deg,#F4CE83,var(--gold)); }
.price-card.featured .price-amount { color:var(--gold); }
.price-card.featured .price-features li { color:rgba(242,238,223,.72); }
.price-card.featured .price-features li::before { background:var(--gold); }
.price-card.featured .price-desc,.price-card.featured .price-period { color:rgba(242,238,223,.5); }

.price-badge {
  position:absolute; top:-10px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:var(--ink); font-family: var(--font-heading);
  font-size:10px; font-weight:700; padding:3px 12px; border-radius:6px;
  text-transform:uppercase; letter-spacing:.8px; white-space:nowrap;
}
.price-name { font-family: var(--font-heading); font-size:16px; font-weight:700; margin-bottom:18px; }
.price-amount { font-family: var(--font-number); font-size:36px; font-weight:700; color:var(--cream); letter-spacing:-1px; line-height:1; margin-bottom:4px; }
.price-period { font-size:12px; color:rgba(242,238,223,.3); margin-bottom:18px; }
.price-desc { font-size:12px; color:rgba(242,238,223,.45); margin-bottom:16px; line-height:1.5; }
.price-features { list-style:none; display:flex; flex-direction:column; gap:8px; }
.price-features li { font-size:12px; color:rgba(242,238,223,.6); padding-left:16px; position:relative; line-height:1.4; }
.price-features li::before { content:''; position:absolute; left:0; top:5px; width:5px; height:5px; border-radius:50%; background:rgba(227,169,52,.45); }
.price-cta { display:block; margin-top:24px; width:100%; padding:12px; border-radius:16px; font-family: var(--font-heading); font-size:13px; font-weight:700; cursor:pointer; background:linear-gradient(135deg,#F4CE83,var(--gold)); color:#2a2008; border:0; transition:filter .2s, transform .2s; text-align:center; text-decoration:none; box-shadow:0 12px 28px rgba(227,169,52,.16); }
.price-cta:hover { filter:brightness(1.04); transform:translateY(-1px); }
.price-card.featured .price-cta { background:linear-gradient(135deg,#F4CE83,var(--gold)); color:#2a2008; border:none; }

.upsells-row { margin-top:40px; padding:24px 28px; background:#161a10; border:1px solid var(--sage-border); border-radius:18px; }
.upsells-label { font-size:11px; color:var(--gold); font-weight:600; text-transform:uppercase; letter-spacing:1px; margin-bottom:14px; }
.upsells-flex { display:flex; flex-wrap:wrap; gap:8px; }
.utag { background:rgba(242,238,223,.06); border:1px solid rgba(242,238,223,.09); border-radius:7px; padding:7px 12px; font-size:12px; color:rgba(242,238,223,.65); }
.utag strong { color:var(--gold); font-weight:500; }

/* WHY */
.diff-section { padding:100px 0; background:var(--ink); color:var(--cream); }
.diff-inner { max-width:var(--max); margin:0 auto; padding:0 40px; display:grid; grid-template-columns:1fr 420px; gap:80px; align-items:center; }
.diff-list { list-style:none; display:flex; flex-direction:column; gap:24px; margin-top:36px; }
.diff-item { display:flex; gap:16px; align-items:flex-start; }
.diff-icon { width:40px; height:40px; flex-shrink:0; border-radius:14px; background:rgba(111,176,122,.1); border:1px solid var(--sage-border); color:var(--gold); display:flex; align-items:center; justify-content:center; }
.diff-icon svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.diff-t { font-family: var(--font-heading); font-size:15px; font-weight:700; margin-bottom:3px; color:var(--cream); }
.diff-d { font-size:13px; color:rgba(242,238,223,.55); line-height:1.5; }

.diff-visual { position:relative; display:flex; justify-content:center; }
.mock-phone { width:260px; background:#080906; border:1px solid var(--sage-border); border-radius:36px; padding:36px 20px 32px; box-shadow:0 28px 90px rgba(0,0,0,.32); }
.mock-screen { background:#161a10; border:1px solid rgba(111,176,122,.22); border-radius:18px; padding:20px; display:flex; flex-direction:column; align-items:center; min-height:320px; justify-content:center; color:var(--cream); }
.mock-qr-box { width:120px; height:120px; background:var(--white); border-radius:10px; display:grid; grid-template-columns:repeat(7,1fr); gap:2px; padding:9px; margin-bottom:14px; }
.mock-qr-c { border-radius:1px; background:var(--ink); }
.mock-ev { font-family: var(--font-heading); font-size:13px; font-weight:700; margin-bottom:3px; text-align:center; }
.mock-meta2 { font-size:11px; color:rgba(242,238,223,.48); text-align:center; margin-bottom:14px; line-height:1.4; }
.mock-btn { background:linear-gradient(135deg,#F4CE83,var(--gold)); color:#2a2008; border-radius:16px; padding:8px 18px; font-family: var(--font-heading); font-size:12px; font-weight:700; }
.float1,.float2 { position:absolute; background:#161a10; border:1px solid var(--sage-border); border-radius:14px; padding:10px 14px; box-shadow:0 14px 36px rgba(0,0,0,.2); color:var(--cream); }
.float1 { bottom:50px; right:-36px; }
.float2 { top:70px; left:-44px; }
.fn { font-family: var(--font-number); font-weight:700; font-size:17px; margin-bottom:2px; }
.fs { font-size:11px; color:rgba(242,238,223,.45); }

/* STORIES AND SEARCH CONTENT */
.stories-section {
  padding: 100px 0;
  background: var(--ink);
  color: var(--cream);
}
.stories-inner,
.guide-inner,
.faq-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.story-feature {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 48px;
  align-items: center;
}
.story-copy {
  max-width: 470px;
}
.story-kicker,
.case-type,
.guide-date {
  color: var(--sage-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.story-copy h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
}
.story-copy p,
.case-card p,
.guide-card p,
.faq-list p {
  color: rgba(242,238,223,.55);
  line-height: 1.65;
  font-size: 14px;
  font-weight: 300;
}
.story-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.story-metrics div {
  border-top: 1px solid rgba(111,176,122,.22);
  padding-top: 14px;
}
.story-metrics dt {
  font-family: var(--font-number);
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -1.2px;
}
.story-metrics dd {
  margin-top: 6px;
  color: rgba(242,238,223,.42);
  font-size: 11px;
  line-height: 1.35;
}
.story-photo-frame {
  margin: 0;
}
.story-photo-frame img,
.case-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--sage-border);
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
}
.story-photo-frame figcaption {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(242,238,223,.38);
  line-height: 1.4;
}
.case-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.case-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #161a10;
  border: 1px solid var(--sage-border);
  border-radius: 18px;
  padding: 14px;
  color: var(--cream);
}
.case-card h3,
.guide-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}
.guide-section {
  padding: 100px 0;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(111,176,122,.16);
  border-bottom: 1px solid rgba(111,176,122,.16);
}
.guide-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
}
.guide-card {
  background: #161a10;
  border: 1px solid var(--sage-border);
  border-radius: 18px;
  padding: 34px 28px;
  min-height: 250px;
}

.faq-section {
  padding: 100px 0;
  background: var(--ink);
  color: var(--cream);
}
.faq-inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 64px;
  align-items: start;
}
.faq-heading {
  position: sticky;
  top: 92px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(111,176,122,.18);
}
.faq-list details {
  border-bottom: 1px solid rgba(111,176,122,.18);
  padding: 22px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -.25px;
  padding-right: 32px;
  position: relative;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--sage-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--sage-accent);
}
.faq-list details[open] summary::after {
  content: '-';
}
.faq-list p {
  max-width: 650px;
  margin-top: 12px;
}

/* TESTIMONIALS */
.testi-section { background:var(--ink); padding:100px 0; }
.testi-inner { max-width:var(--max); margin:0 auto; padding:0 40px; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:48px; }
.tcard { background:rgba(242,238,223,.05); border:1px solid rgba(242,238,223,.08); border-radius:16px; padding:24px; }
.stars { display:flex; gap:3px; margin-bottom:12px; }
.star { width:12px; height:12px; background:var(--gold); clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.tquote { font-size:14px; color:rgba(242,238,223,.7); line-height:1.65; margin-bottom:18px; font-weight:300; font-style:italic; }
.tauthor { display:flex; align-items:center; gap:10px; }
.tav { width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; color:var(--cream); font-weight:600; }
.tname { font-family: var(--font-heading); font-size:13px; font-weight:600; color:var(--cream); }
.trole { font-size:11px; color:rgba(242,238,223,.35); }

/* CTA */
.cta-section { padding:120px 0; text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:'flick'; position:absolute; font-family: var(--font-heading); font-size:240px; font-weight:800; color:var(--ink-15); letter-spacing:-12px; top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; white-space:nowrap; }
.cta-inner2 { position:relative; z-index:2; }
.cta-title { font-family: var(--font-heading); font-size:clamp(40px,5vw,68px); font-weight:800; letter-spacing:-2.5px; line-height:1.05; margin-bottom:20px; }
.cta-sub { font-size:16px; color:rgba(242,238,223,.55); max-width:440px; margin:0 auto 36px; line-height:1.6; font-weight:300; }

/* FOOTER */
footer { background:var(--ink); border-top:1px solid rgba(242,238,223,.06); }
.footer-inner { max-width:var(--max); margin:0 auto; padding:48px 40px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.flogo { font-family: var(--font-heading); font-size:22px; font-weight:800; color:var(--cream); letter-spacing:-1px; }
.flogo span { color:var(--gold); }
.flinks { display:flex; gap:24px; }
.flinks a { min-height:44px; display:inline-flex; align-items:center; font-size:13px; color:rgba(242,238,223,.35); text-decoration:none; transition:color .2s; }
.flinks a:hover { color:rgba(242,238,223,.75); }
.fcopy { font-size:11px; color:rgba(242,238,223,.2); }
.footer-waitlist {
  min-width: 260px;
  max-width: 320px;
  display: grid;
  gap: 7px;
}
.footer-waitlist label {
  color: rgba(111,176,122,.65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.footer-waitlist-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.footer-waitlist .waitlist-status { margin: 0; }

.create-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.create-modal.is-open { opacity: 1; pointer-events: auto; }
.create-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13,15,10,.62);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.create-modal-panel {
  position: relative;
  width: min(100%, 720px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #161a10;
  color: var(--cream);
  border: 1px solid var(--sage-border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
  transform: translateY(14px) scale(.98);
  transition: transform .2s ease;
}
.create-modal.is-open .create-modal-panel { transform: translateY(0) scale(1); }
.modal-waitlist { margin-top: 16px; }
.modal-waitlist input {
  background: rgba(8,9,6,.45);
  border-color: var(--sage-border);
  color: var(--cream);
}
.modal-waitlist input::placeholder {
  color: rgba(242,238,223,.3);
}
.modal-waitlist + .waitlist-status {
  color: rgba(242,238,223,.48);
}
.modal-waitlist + .waitlist-status.is-success { color: #4A5436; }
.modal-waitlist + .waitlist-status.is-error { color: #C77B5B; }
.create-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(242,238,223,.12);
  background: rgba(13,15,10,.58);
  color: var(--cream);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.modal-kicker {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(227,169,52,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.create-modal h2 {
  max-width: 520px;
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.02;
  letter-spacing: -1.7px;
}
.create-modal-note {
  max-width: 560px;
  margin: -8px 0 22px;
  color: rgba(242,238,223,.55);
  font-size: 15px;
  line-height: 1.6;
}
.create-modal-small {
  width: 100%;
  margin: 14px 0 0;
  text-align: center;
  color: rgba(242,238,223,.45);
  font-size: 12px;
  line-height: 1.45;
}
.create-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.create-choice-grid.app-only { grid-template-columns: 1fr; }
.create-choice {
  min-height: 264px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--sage-border);
  border-radius: 18px;
  background: #131510;
  padding: 20px;
}
.create-choice.recommended {
  border-color: rgba(227,169,52,.72);
  box-shadow: inset 0 0 0 1px rgba(227,169,52,.2);
}
.create-choice.app-only { min-height: auto; }
.choice-topline { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.choice-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(13,15,10,.72);
  color: var(--gold);
}
.choice-icon svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.choice-badge {
  border-radius: 999px;
  background: rgba(227,169,52,.12);
  color: var(--gold);
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.create-choice h3 { margin: 18px 0 8px; font-size: 21px; line-height: 1.1; font-weight: 900; }
.create-choice p { margin: 0 0 18px; color: rgba(242,238,223,.55); font-size: 14px; line-height: 1.55; }
.choice-store-row { width: 100%; display: grid; gap: 10px; margin-top: auto; }
.choice-button {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg,#F4CE83,var(--gold));
  color: #2a2008;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(227,169,52,.14);
}

@media(max-width:960px){
  .hero-inner { grid-template-columns:1fr; }
  .hero-inner { padding-top:56px; padding-bottom:58px; }
  .app-card-stack { display:none; }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .how-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:repeat(2,1fr); }
  .diff-inner { grid-template-columns:1fr; }
  .diff-visual { display:none; }
  .story-feature { grid-template-columns:1fr; gap:28px; }
  .story-copy { max-width:none; }
  .case-grid,.guide-grid { grid-template-columns:1fr; }
  .faq-inner { grid-template-columns:1fr; gap:34px; }
  .faq-heading { position:static; }
  .testi-grid { grid-template-columns:1fr; }
  footer .footer-inner { flex-direction:column; gap:20px; text-align:center; }
  .footer-waitlist { width: 100%; max-width: 360px; }
  .nav-links li:not(:last-child) { display:none; }
  .nav-inner,.wrap,.section-inner,.pricing-inner,.testi-inner,.diff-inner,.stats-inner,.footer-inner,.hero-inner,.stories-inner,.guide-inner,.faq-inner { padding-left:20px; padding-right:20px; }
}

@media(max-width:520px){
  .nav-links { gap: 0; }
  .nav-inner { width: 100%; height: 64px; overflow: hidden; }
  .nav-logo { font-size: 24px; }
  .nav-links { display: none; }
  .nav-links a { min-height: 44px; font-size: 14px; }
  .nav-cta { max-width: 118px; justify-content: center; overflow: hidden; padding: 9px 14px; font-size: 13px !important; white-space: nowrap; }
  .hero { padding-top: 64px; }
  .hero-inner { width: 100%; max-width: 100vw; overflow: hidden; }
  .hero-left { min-width: 0; width: min(100%, calc(100vw - 104px)) !important; max-width: calc(100vw - 104px) !important; justify-self: start; box-sizing: border-box; }
  .hero-headline { font-size: clamp(42px, 14vw, 56px); letter-spacing: -1.8px; }
  .hero-body { font-size: 16px; line-height: 1.48; margin-bottom: 28px; }
  .hero-body span { overflow-wrap: anywhere; }
  .hero-actions { align-items: stretch; }
  .hero-actions,.app-downloads,.waitlist-card,.waitlist-form { width: min(100%, calc(100vw - 104px)); max-width: calc(100vw - 104px); }
  .btn-primary { justify-content: center; }
  .btn-primary, .btn-ghost { width: 100%; }
  .app-downloads { display: grid; grid-template-columns: 1fr; }
  .store-badge { width: 100%; justify-content: flex-start; }
  .waitlist-form,
  .footer-waitlist-row { grid-template-columns: 1fr; }
  .hero-proof {
    width: 100%;
    align-items: center;
    gap: 12px;
  }
  .proof-prefix { display: none; }
  .proof-text {
    flex: 1 1 auto;
    max-width: calc(100% - 106px);
  }
  .proof-text strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
  }
  .proof-suffix {
    display: block;
    margin-top: 3px;
  }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { padding: 24px 0; border-right: none; border-bottom: 1px solid rgba(242,238,223,.08); }
  .stat-item:last-child { border-bottom: none; }
  .stories-section,.guide-section,.faq-section { padding: 76px 0; }
  .story-metrics { grid-template-columns: 1fr; }
  .story-photo-frame img,.case-card img { border-radius: 14px; }
  .case-card,.guide-card { padding: 22px 18px; }
  .guide-card { min-height: auto; }
  .faq-list summary { font-size: 15px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .create-modal { align-items: end; padding: 0; }
  .create-modal-panel { width: 100%; max-height: 92vh; border-radius: 22px 22px 0 0; padding: 26px 20px 22px; }
  .create-choice-grid { grid-template-columns: 1fr; }
  .create-choice { min-height: auto; }
}


.app-side-column { display:flex; flex-direction:column; gap:12px; }
.function-tags { margin-top:10px; display:flex; flex-wrap:wrap; gap:5px; }
.currency-toggle { color:var(--gold); cursor:pointer; border-bottom:1px dashed var(--gold); }
.currency-switch { opacity:.5; font-size:14px; cursor:pointer; }
.testi-section .pricing-title { color:var(--cream); }
.tav-ps { background:#2a1f15; }
.tav-jm { background:#1a2025; }
.tav-mv { background:#25181a; }
.cta-primary { display:inline-flex; font-size:15px; }
.mini-qr .qr-cell,
.mock-qr-box .qr-cell { border-radius:1px; background:var(--ink); opacity:0; }
.mini-qr .qr-cell.is-on,
.mock-qr-box .qr-cell.is-on { opacity:1; }

@keyframes preview-card-float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-5px,0); }
}

@keyframes polaroidFloat {
  0% {
    transform: translateY(0) rotate(var(--rot, -8deg));
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  85% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(-320px) rotate(calc(var(--tot, -8deg) + 6deg));
    opacity: 0;
  }
}

@keyframes card-sheen {
  0%, 42% { transform: translateX(-130%); opacity: 0; }
  52% { opacity: 1; }
  72%, 100% { transform: translateX(130%); opacity: 0; }
}

@keyframes live-dot-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(227,169,52,.42); }
  50% { transform: scale(1.45); box-shadow: 0 0 0 6px rgba(227,169,52,0); }
}

@keyframes qr-scan {
  0%, 100% { transform: translateY(0); opacity: .1; }
  15% { opacity: .9; }
  50% { transform: translateY(90px); opacity: .75; }
  85% { opacity: .9; }
}

@keyframes stat-breathe {
  0%, 100% { border-color: rgba(242,238,223,.08); background: rgba(242,238,223,.05); }
  50% { border-color: rgba(227,169,52,.25); background: rgba(242,238,223,.075); }
}

@keyframes number-pop {
  0% { transform: translateY(2px) scale(.95); color: var(--gold); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes shot-counter-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes dot-wave {
  0%, 100% { transform: translateY(0); opacity: .72; }
  45% { transform: translateY(-2px); opacity: 1; }
}

@keyframes active-shot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(227,169,52,.3); }
  50% { transform: scale(1.45); box-shadow: 0 0 0 5px rgba(227,169,52,0); }
}

@keyframes capture-flash {
  0% { opacity: 0; transform: translateX(-18px); }
  38% { opacity: 1; }
  100% { opacity: 0; transform: translateX(18px); }
}

@keyframes selected-pill-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13,15,10,0); }
  50% { box-shadow: 0 0 0 4px rgba(13,15,10,.08); }
}

@keyframes tag-rise {
  from { transform: translateY(5px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes reveal-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(227,169,52,0); }
  50% { box-shadow: 0 18px 44px rgba(227,169,52,.22); }
}

@keyframes reveal-icon-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(-2deg); }
}

@keyframes timer-tick {
  0% { color: var(--sage-accent); transform: translateY(1px); }
  100% { color: var(--ink); transform: translateY(0); }
}

.mini-qr .qr-cell.is-live-cell,
.mock-qr-box .qr-cell.is-live-cell {
  opacity: 1;
  animation: qr-cell-live .75s ease-out;
}

@keyframes qr-cell-live {
  0% { transform: scale(.7); background: var(--gold); }
  100% { transform: scale(1); background: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* ════════════════════════════════════════════
   REDESIGN LAYER — scroll reveals, hero film,
   mobile nav, micro-interactions
   ════════════════════════════════════════════ */

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 120;
  background: linear-gradient(90deg, #F4CE83, var(--gold));
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* ── Scroll reveals ── */
[data-reveal],
.reveal-child {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
[data-reveal].is-in,
[data-reveal-group].is-in .reveal-child {
  opacity: 1;
  transform: none;
}
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="left"].is-in,
[data-reveal="right"].is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .reveal-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Hero polaroids: film that develops as it rises ── */
.hero-polaroid {
  position: absolute;
  background: #F0EBE0;
  padding: 5px 5px 18px;
  border-radius: 2px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
  pointer-events: none;
  will-change: transform, opacity;
  animation: polaroidRise 6s ease-in forwards;
}
.hero-polaroid-photo {
  width: 100%;
  height: 72%;
  border-radius: 1px;
  filter: brightness(.22) saturate(.15);
  animation: polaroidDevelop 4s ease-out forwards;
}
.scene-0 { background: linear-gradient(160deg, #2c2415 10%, #4d3a1c 45%, #E3A934 130%); }
.scene-1 { background: linear-gradient(195deg, #1d2417 12%, #3d4a26 60%, #4E9560 135%); }
.scene-2 { background: radial-gradient(circle at 30% 28%, #5a4a28 0%, #241d10 62%); }
.scene-3 { background: linear-gradient(180deg, #15181f 0%, #2a3040 55%, #E3A934 145%); }
.scene-4 { background: radial-gradient(circle at 68% 22%, #9C6D14 0%, #1c160d 58%); }
.scene-5 { background: linear-gradient(140deg, #241419 8%, #43232d 58%, #E3A934 150%); }

@keyframes polaroidRise {
  0% {
    transform: translate(0, 0) rotate(var(--rot, -8deg));
    opacity: 0;
  }
  8% { opacity: 1; }
  50% {
    transform: translate(calc(var(--drift, 0px) * .5), -160px) rotate(calc((var(--rot, -8deg) + var(--tot, -2deg)) / 2));
  }
  85% { opacity: .85; }
  100% {
    transform: translate(var(--drift, 0px), -320px) rotate(var(--tot, -8deg));
    opacity: 0;
  }
}

@keyframes polaroidDevelop {
  0% { filter: brightness(.22) saturate(.15); }
  62% { filter: brightness(.85) saturate(.88); }
  100% { filter: brightness(1.12) saturate(1.05); }
}

/* ── Hero camera flash ── */
.hero-flash {
  position: absolute;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,238,223,.16) 0%, rgba(227,169,52,.06) 38%, transparent 68%);
  pointer-events: none;
  animation: heroFlash 1.3s ease-out forwards;
}

@keyframes heroFlash {
  0% { opacity: 0; transform: scale(.4); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ── Hero entrance choreography (one-shot on load) ── */
.hero-headline,
.hero-body,
.hero-actions,
.app-downloads,
.hero-waitlist,
.hero-proof {
  animation: heroEnter .9s cubic-bezier(.16,1,.3,1) both;
}
.hero-body { animation-delay: .12s; }
.hero-actions { animation-delay: .22s; }
.app-downloads { animation-delay: .3s; }
.hero-waitlist { animation-delay: .38s; }
.hero-proof { animation-delay: .48s; }
.hero-right { animation: heroEnterRight 1s cubic-bezier(.16,1,.3,1) .25s both; }

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroEnterRight {
  from { opacity: 0; transform: translateY(34px) scale(.97); }
  to { opacity: 1; transform: none; }
}

.app-card-stack {
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  transform-style: preserve-3d;
}

/* ── Card hover micro-interactions ── */
.how-card,
.price-card,
.case-card,
.guide-card,
.tcard {
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s, box-shadow .35s;
}
.how-card:hover,
.case-card:hover,
.guide-card:hover,
.tcard:hover {
  transform: translateY(-5px);
  border-color: rgba(227,169,52,.4);
  box-shadow: 0 26px 70px rgba(0,0,0,.3);
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(0,0,0,.3);
}
.price-card.featured:hover {
  box-shadow: 0 30px 90px rgba(227,169,52,.18);
}

.btn-primary,
.price-cta {
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.price-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.32) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .6s ease;
  pointer-events: none;
}
.btn-primary:hover::after,
.price-cta:hover::after { transform: translateX(130%); }
.btn-primary:active,
.price-cta:active,
.nav-cta:active {
  transform: translateY(0) scale(.985);
  background: linear-gradient(135deg, #C68C1E, #C68C1E);
  box-shadow: 0 8px 24px rgba(227,169,52,.13);
}

/* ── FAQ open/close animation ── */
.faq-list details p {
  overflow: hidden;
}
.faq-list details[open] p {
  animation: faqOpen .4s cubic-bezier(.16,1,.3,1);
}
.faq-list summary::after {
  transition: transform .3s cubic-bezier(.16,1,.3,1), color .3s;
}
.faq-list details[open] summary::after {
  transform: rotate(180deg);
  color: var(--gold);
  border-color: rgba(227,169,52,.4);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ── Section label film-strip accent ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── Mobile nav menu ── */
.nav-cta-mobile { display: none; margin-left: auto; }
@media (max-width: 960px) {
  .nav-cta-mobile { display: inline-flex; align-items: center; }
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242,238,223,.12);
  border-radius: 12px;
  background: rgba(22,26,16,.6);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--cream);
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s;
}
nav.is-menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.is-menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.is-menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-inner { gap: 12px; }
  .nav-links {
    /* nav has backdrop-filter, which makes it the containing block for
       fixed/absolute children - position below the bar with an explicit
       height instead of fixed+bottom. */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 78px);
    z-index: 99;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 20px 32px;
    background: rgba(13,15,10,.97);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(242,238,223,.07);
    overflow-y: auto;
  }
  nav.is-menu-open .nav-links { display: flex; }
  nav.is-menu-open .nav-links li { display: block; }
  .nav-links li a {
    width: 100%;
    min-height: 54px;
    font-size: 18px;
    border-bottom: 1px solid rgba(242,238,223,.06);
  }
  .nav-links li:last-child a {
    margin-top: 14px;
    justify-content: center;
    border-bottom: none;
  }
}

@media (max-width: 520px) {
  .nav-inner { overflow: visible; }
  .nav-links { height: calc(100vh - 64px); display: none; }
  nav.is-menu-open .nav-links { display: flex; }
}

/* ── Mid-range hero polish (961-1180px) ── */
@media (min-width: 961px) and (max-width: 1180px) {
  .hero-inner { grid-template-columns: 1fr 420px; gap: 44px; }
}

/* ── Tablet: keep a slice of the app preview ── */
@media (max-width: 960px) and (min-width: 640px) {
  .app-card-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    max-width: 640px;
  }
  .card-qr { grid-row: auto; min-height: 280px; }
  .app-side-column { display: flex; }
  .app-side-column .card-event { display: none; }
}

/* ════════════════════════════════════════════
   AWARD LAYER — word reveals, marquees,
   parallax word, tilt, aura, unmasking
   ════════════════════════════════════════════ */

/* Anchor offsets so smooth-scrolled sections clear the fixed nav */
#how, #pricing, #why, #stories, #guides, #faq, #launch-waitlist {
  scroll-margin-top: 92px;
}

/* ── Hero headline: masked line rise ── */
.hero-headline .hl {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-headline .hli {
  display: inline-block;
  transform: translateY(112%);
  animation: hlRise 1.05s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-headline .hl.dim .hli { animation-delay: .16s; }
@keyframes hlRise {
  to { transform: none; }
}

/* ── Word-split section titles ── */
h2[data-reveal] { transform: none; }
.section-title .w,
.cta-title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: .08em;
  margin-bottom: -.08em;
}
.section-title .wi,
.cta-title .wi {
  display: inline-block;
  transform: translateY(115%);
  transition: transform .9s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.section-title.is-in .wi,
.cta-title.is-in .wi,
.is-in .cta-title .wi { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-headline .hli { transform: none; animation: none; }
  .section-title .wi, .cta-title .wi { transform: none !important; transition: none !important; }
}

/* ── How-section pinned scene (scrollfx.js) ── */
.how-grid { position: relative; }
.how-beam {
  position: absolute;
  top: -28px;
  left: 4px;
  right: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(227,169,52,.12));
  transform-origin: left center;
  pointer-events: none;
}
@media (max-width: 899px) {
  .how-beam { display: none; }
}

/* ── CTA giant word becomes a real parallax layer ── */
.cta-section::before { content: none; }
.cta-bg-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: clamp(140px, 22vw, 300px);
  font-weight: 800;
  letter-spacing: -12px;
  color: rgba(242,238,223,.045);
  -webkit-text-stroke: 1px rgba(227,169,52,.07);
  pointer-events: none;
  white-space: nowrap;
  will-change: transform;
}

/* ── Stats: numbers roll up when the bar reveals ── */
[data-reveal-group].is-in .stat-number {
  animation: statRise .85s cubic-bezier(.16,1,.3,1) both;
}
[data-reveal-group].is-in .stat-item:nth-child(2) .stat-number { animation-delay: .1s; }
[data-reveal-group].is-in .stat-item:nth-child(3) .stat-number { animation-delay: .2s; }
[data-reveal-group].is-in .stat-item:nth-child(4) .stat-number { animation-delay: .3s; }
@keyframes statRise {
  0% { opacity: 0; transform: translateY(60%); color: var(--gold); }
  60% { color: var(--gold); }
  100% { opacity: 1; transform: none; color: var(--cream); }
}

/* ── How icons pop when their cards land ── */
[data-reveal-group].is-in .how-icon {
  animation: iconPop .7s cubic-bezier(.34,1.56,.64,1) both;
}
[data-reveal-group].is-in .how-card:nth-child(2) .how-icon { animation-delay: .14s; }
[data-reveal-group].is-in .how-card:nth-child(3) .how-icon { animation-delay: .28s; }
@keyframes iconPop {
  0% { opacity: 0; transform: scale(.4) rotate(-8deg); }
  100% { opacity: 1; transform: none; }
}

/* ── Image unmasking on reveal ──
   Case images only start masked once scrollfx marks the grid gsap-own,
   so a missing GSAP never leaves them clipped. The story image is still
   driven by site.js via .story-feature[data-reveal]. */
.story-photo-frame img,
.case-grid.gsap-own .case-card img {
  clip-path: inset(10% 8% 10% 8% round 18px);
  transform: scale(1.07);
  transition: clip-path 1.15s cubic-bezier(.16,1,.3,1), transform 1.25s cubic-bezier(.16,1,.3,1);
  will-change: clip-path, transform;
}
.story-feature.is-in .story-photo-frame img,
.case-grid.is-in .case-card img {
  clip-path: inset(0 0 0 0 round 18px);
  transform: none;
}
.case-card { overflow: hidden; }
.case-grid.is-in .case-card:hover img { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  .story-photo-frame img,
  .case-card img { clip-path: none !important; transform: none !important; }
}

/* ── Tilt cards ── */
.tilt-card { transform-style: preserve-3d; }
.tilt-card:hover { transition: transform .12s ease-out; }

/* ── Cursor aura ── */
.cursor-aura {
  position: fixed;
  top: -300px;
  left: -300px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle, rgba(227,169,52,.055) 0%, rgba(227,169,52,.02) 38%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .5s ease;
  will-change: transform;
}
@media (pointer: coarse) {
  .cursor-aura { display: none; }
}

/* ── Footer reveal ── */
footer .footer-inner > * {
  transition: opacity .7s ease, transform .7s ease;
}
/* GSAP owns the footer entrance; CSS transitions would double-ease it. */
footer.gsap-own .footer-inner > * {
  transition: none;
}
