/* =========================================================================
   corker — marketing site
   Built to match the real app: terracotta + warm cream, olive & gold accents,
   Hanken Grotesk (UI/display) + Newsreader (the sommelier's serif voice).
   Cinematic dark hero staged like the app's own "reading the room" screen,
   opening into corker's warm world.
   ========================================================================= */

:root {
  /* --- Canvas --- */
  --cream:      #F4ECDE;   /* page */
  --cream-2:    #EFE5D3;   /* alt inset band */
  --paper:      #FFFFFF;   /* cards */
  --paper-soft: #FDFBF6;

  /* --- Brand --- */
  --terra:        #C0592C; /* primary */
  --terra-deep:   #A5471F;
  --terra-bright: #D0673A;
  --terra-wild:   #D2764C; /* lighter terracotta — carries charcoal text (surprise-me section) */
  --terra-app:    #BC5426; /* saturated terracotta of the real wildcard screen (white chrome) */
  --wild-ink:     #2B2620; /* warm charcoal for text on the surprise-me band */

  /* --- Accents --- */
  --olive:      #6E7A48;
  --olive-deep: #59653A;
  --gold:       #C89A2C;
  --gold-bright:#E0B84A;
  --green-val:  #5F7A3C;
  --danger:     #BE3A2B;

  /* --- Ink / dark --- */
  --ink:    #1C1A16;       /* headings */
  --ink-2:  #2C2822;
  --noir:   #1A1714;       /* cinematic dark bg (matches pairing screen) */
  --noir-2: #23201A;
  --noir-card: #2A251F;

  /* --- Text --- */
  --muted:   #877F6D;      /* secondary on cream (decorative / in-phone) */
  --muted-d: #6B6454;      /* secondary body text — WCAG AA on cream */
  --on-dark:      #EDE4D3;
  --on-dark-mut:  rgba(237,228,211,0.64);

  --line:      rgba(28,26,22,0.12);
  --line-soft: rgba(28,26,22,0.07);
  --line-gold: rgba(200,154,44,0.32);
  --line-dark: rgba(237,228,211,0.14);

  /* --- Type --- */
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;

  /* --- Rhythm --- */
  --maxw: 1180px;
  --r-card: 26px;
  --r-el: 16px;
  --shadow-s: 0 2px 8px rgba(60,40,20,0.06);
  --shadow-m: 0 16px 38px -16px rgba(70,45,20,0.26);
  --shadow-l: 0 40px 90px -34px rgba(50,25,10,0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.serif { font-family: var(--serif); }

.kicker {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terra-deep);
}
.kicker.on-dark { color: var(--gold-bright); }
.kicker.olive { color: var(--olive-deep); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn-primary { background: var(--terra); color: #fff; box-shadow: var(--shadow-m); }
.btn-primary:hover { transform: translateY(-2px); background: var(--terra-deep); box-shadow: var(--shadow-l); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--terra); color: var(--terra-deep); }
.btn-ghost.on-dark { color: var(--on-dark); border-color: var(--line-dark); }
.btn-ghost.on-dark:hover { border-color: var(--gold); color: var(--gold-bright); }

.appstore {
  display: inline-flex; border-radius: 9px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: var(--shadow-m);
}
.appstore:hover { transform: translateY(-2px); box-shadow: var(--shadow-l); }
.appstore img { display: block; height: 47px; width: auto; }
/* compact badge for the nav bar; leaves room for a Play Store badge alongside */
.nav-badges { display: inline-flex; align-items: center; gap: 10px; }
.appstore.appstore-sm { border-radius: 7px; }
.appstore.appstore-sm img { height: 38px; }

/* --- Decoration --- */
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* =========================================================================
   Navigation
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .3s var(--ease);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
/* wordmark: "Find a Corker" — full name, with Corker featured (terracotta) */
.wordmark { font-family: var(--sans); display: inline-flex; align-items: baseline; gap: 0.32em; letter-spacing: -0.04em; line-height: 1; }
.wordmark .wm-pre { font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em; color: var(--muted-d); }
.wordmark .wm-main { font-size: 1.62rem; font-weight: 800; color: var(--terra); }
.nav.on-dark .wordmark .wm-pre { color: var(--on-dark-mut); }
.nav.on-dark .wordmark .wm-main { color: var(--terra-bright); }
.nav.scrolled {
  background: rgba(244,236,222,0.85); backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 var(--line); padding: 12px 0;
}
.nav.scrolled .wordmark .wm-pre { color: var(--muted-d); }
.nav.scrolled .wordmark .wm-main { color: var(--terra); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.96rem; font-weight: 600; color: var(--on-dark-mut); transition: color .2s; }
.nav.scrolled .nav-links a { color: var(--muted-d); }
.nav-links a:hover, .nav.scrolled .nav-links a:hover { color: var(--terra); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--on-dark); margin: 5px 0; border-radius: 2px; transition: .3s; }
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* =========================================================================
   HERO — cinematic dark, staged like the app's "reading the room" screen
   ========================================================================= */
.hero {
  position: relative; background: var(--noir); color: var(--on-dark);
  padding: 168px 0 110px; overflow: hidden;
}
/* candlelight */
.hero::before {
  content: ""; position: absolute; top: -18%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(224,184,74,0.20), rgba(192,89,44,0.10) 40%, transparent 68%);
}
/* cursor-follow warm glow */
.hero .spot {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 70%) var(--my, 30%), rgba(224,184,74,0.10), transparent 70%);
  transition: background .2s;
}
.hero .vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; box-shadow: inset 0 0 220px 60px rgba(0,0,0,0.55); }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.hero .eyebrow-live {
  display: inline-flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 600;
  color: var(--on-dark-mut); border: 1px solid var(--line-dark); padding: 7px 14px 7px 10px;
  border-radius: 100px; margin-bottom: 26px;
}
.hero .eyebrow-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 4px rgba(110,122,72,.25); }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.7rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.hero h1 .em { font-family: var(--serif); font-weight: 500; font-style: italic; color: var(--terra-bright); letter-spacing: -0.01em; }
.hero .lede { font-family: var(--serif); font-size: 1.32rem; line-height: 1.5; color: var(--on-dark-mut); margin: 26px 0 34px; max-width: 32ch; }
.hero .lede em { color: var(--on-dark); font-style: italic; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-size: 0.92rem; color: var(--on-dark-mut); }
.hero-note b { color: var(--gold-bright); font-weight: 600; }
.soon-note { white-space: nowrap; opacity: .82; }

.hero-stage { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-stage .halo {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,184,74,0.16), transparent 62%); z-index: 0;
}
.floaty { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }

/* =========================================================================
   Phone frame + faithful app-screen recreations
   ========================================================================= */
.ph {
  --pw: 300px;
  position: relative; z-index: 2; width: var(--pw); height: calc(var(--pw) * 2.07);
  background: #100d0b; border-radius: 46px; padding: 11px;
  box-shadow: var(--shadow-l), inset 0 0 0 2px rgba(255,255,255,0.05);
}
.ph::before { content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 26px; background: #100d0b; border-radius: 0 0 16px 16px; z-index: 6; }
.scr { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--cream); display: flex; flex-direction: column; font-size: 12px; color: var(--ink); }
.scr img { width: 100%; height: 100%; object-fit: cover; }

.sbar { display: flex; justify-content: space-between; align-items: center; padding: 34px 20px 4px; font-weight: 800; font-size: 12px; color: var(--ink); }
.sbar .r { letter-spacing: 1px; font-size: 10px; }
.scr.dark { background: var(--noir); color: var(--on-dark); }
.scr.dark .sbar { color: var(--on-dark); }
.scr.terra { background: var(--terra-app); color: #fff; }
.scr.terra .sbar { color: #fff; }

.topbar { display: flex; justify-content: space-between; align-items: center; padding: 4px 18px 8px; font-weight: 700; font-size: 12px; }
.topbar .brand { color: var(--terra); font-weight: 800; letter-spacing: -0.03em; font-size: 14px; }
.topbar .back { color: var(--terra); }
.scr.dark .topbar .brand, .scr.terra .topbar .brand { color: var(--terra-bright); }

.scr h3.title { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; padding: 4px 18px 2px; line-height: 1.05; }
.scr .sub { padding: 0 18px 10px; color: var(--muted); font-size: 12px; }
.scr.dark .sub { color: var(--on-dark-mut); }

.sbody { flex: 1; overflow: hidden; padding: 2px 14px 12px; }

/* soft info box */
.info { background: rgba(192,89,44,0.10); border-radius: 16px; padding: 12px 14px; margin: 0 4px 12px; color: var(--muted-d); font-size: 11.5px; line-height: 1.5; }
.info b { color: var(--ink); font-weight: 800; display: block; margin-bottom: 3px; font-size: 13px; }

/* status pill row */
.ready { display: flex; align-items: center; gap: 7px; margin: 2px 4px 10px; color: var(--muted-d); font-size: 11.5px; }
.ready .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--olive); }

.field { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 12px 14px; margin: 0 4px 12px; color: var(--muted); font-size: 13px; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-s); }
.field .q { color: var(--muted); }
.field .typed { color: var(--ink); font-weight: 600; }

.mini-label { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding: 4px 6px 8px; }

/* result-style card list */
.rcard { background: var(--paper); border-radius: 16px; padding: 12px 14px; margin: 0 4px 10px; box-shadow: var(--shadow-s); }
.rcard .row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.rcard .nm { font-weight: 800; font-size: 14px; color: var(--ink); line-height: 1.15; }
.rcard .rg { color: var(--muted); font-size: 11px; margin-top: 2px; }
.rcard .pr { font-weight: 800; font-size: 14px; color: var(--ink); white-space: nowrap; }
.rcard.sel { border: 1.5px solid var(--terra); }
.pill-btn { display: inline-block; background: var(--terra); color: #fff; font-weight: 700; font-size: 11px; padding: 6px 12px; border-radius: 100px; margin-top: 8px; }
.link-pair { color: var(--terra); font-weight: 700; font-size: 12px; margin-top: 8px; display: inline-block; }

/* tiles (cellar) */
.tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 4px 4px 12px; }
.tile { border-radius: 16px; padding: 12px 12px 10px; color: #fff; }
.tile .n { font-size: 24px; font-weight: 800; line-height: 1; }
.tile .l { font-size: 11px; margin-top: 4px; opacity: .92; }
.tile.d { background: var(--ink); }
.tile.o { background: var(--terra); }
.tile.w { background: var(--olive); }

.tabs { display: flex; gap: 4px; background: var(--cream-2); border-radius: 100px; padding: 4px; margin: 0 4px 12px; }
.tabs span { flex: 1; text-align: center; font-size: 11px; font-weight: 700; color: var(--muted); padding: 6px 4px; border-radius: 100px; }
.tabs span.on { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-s); }

/* cellar wine card with accent bar + rating dots */
.ccard { background: var(--paper); border-radius: 16px; padding: 12px 14px 12px 16px; margin: 0 4px 10px; position: relative; box-shadow: var(--shadow-s); overflow: hidden; }
.ccard::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 4px; border-radius: 4px; background: var(--gold); }
.ccard.olivebar::before { background: var(--olive); }
.ccard .nm { font-weight: 800; font-size: 13.5px; line-height: 1.15; padding-right: 46px; }
.ccard .meta { color: var(--muted); font-size: 11px; margin-top: 3px; }
.ccard .score { color: var(--gold); font-weight: 800; font-size: 11.5px; margin-top: 5px; }
.ccard .drink { color: var(--olive-deep); font-weight: 700; font-size: 11px; margin-top: 4px; }
.dots { position: absolute; top: 12px; right: 14px; display: flex; gap: 4px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); display: block; }
.dots i.off { background: transparent; border: 1.5px solid var(--line); }

/* somm explanation (serif voice) */
.somm { background: var(--cream-2); border-radius: 18px; padding: 14px 15px; margin: 0 4px 10px; }
.somm p { font-family: var(--serif); font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }
.somm .who { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.somm .who .av { width: 24px; height: 24px; border-radius: 50%; background: var(--olive); color: #fff; font-weight: 800; font-size: 11px; display: grid; place-items: center; }
.somm .who span { font-size: 11px; color: var(--muted); }
.badge-top { display: inline-flex; align-items: center; gap: 5px; background: var(--terra); color: #fff; font-weight: 800; font-size: 10px; letter-spacing: 0.06em; padding: 5px 10px; border-radius: 100px; }
.badge-gem { display: inline-flex; align-items: center; gap: 5px; background: var(--olive); color: #fff; font-weight: 800; font-size: 10px; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 100px; }
.val { color: var(--green-val); font-weight: 700; font-size: 11.5px; margin: 2px 4px 8px; line-height: 1.4; }

/* pairing-in-progress (dark) */
.glass { width: 66px; height: 82px; margin: 14px auto 8px; position: relative; }
.glass .cup { position: absolute; inset: 0; border: 3px solid var(--olive); border-top: none; border-radius: 6px 6px 34px 34px; overflow: hidden; }
.glass .wine { position: absolute; left: 0; right: 0; bottom: 0; height: 58%; background: var(--terra); animation: fill 3.4s var(--ease) infinite; }
@keyframes fill { 0%{height:20%} 50%{height:66%} 100%{height:20%} }
.reading { font-family: var(--serif); font-style: italic; text-align: center; color: var(--terra-bright); font-size: 13px; margin-bottom: 12px; }
.check-list { padding: 2px 6px; }
.check-list li { list-style: none; display: flex; gap: 9px; align-items: center; font-size: 12.5px; color: var(--on-dark-mut); padding: 5px 0; }
.check-list li .ck { color: var(--olive); font-weight: 800; }
.check-list li.now { color: #fff; font-weight: 700; }
.check-list li.now .ck { width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--terra); }
.verdict { background: var(--noir-card); border-radius: 16px; padding: 12px 14px; margin: 10px 6px 0; }
.verdict .h { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; color: var(--olive); text-transform: uppercase; margin-bottom: 8px; }
.verdict p { font-family: var(--serif); font-size: 12.5px; line-height: 1.5; color: var(--on-dark); }

/* wildcard (terra) */
.wildcard { position: relative; }
.wildcard .spk { position: absolute; color: rgba(255,255,255,.85); font-size: 16px; }
.wc-head { display: flex; justify-content: space-between; align-items: center; padding: 6px 4px 14px; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }
.wc-card { background: var(--cream); border-radius: 18px; padding: 15px 16px; margin: 0 4px; box-shadow: var(--shadow-l); color: var(--ink); }
.wc-card .lab { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #916E1D; }
.wc-card .pr { float: right; font-weight: 800; font-size: 14px; color: var(--ink); }
.wc-card .nm { font-weight: 800; font-size: 17px; margin-top: 2px; letter-spacing: -0.02em; color: var(--ink); }
.wc-card .mt { color: var(--muted-d); font-size: 11px; margin: 2px 0 10px; }
.wc-card hr { border: none; border-top: 1px solid var(--line); margin: 8px 0 10px; }
.wc-card p { font-family: var(--serif); font-size: 13px; line-height: 1.5; color: var(--ink-2); }
.wc-actions { display: flex; gap: 8px; margin: 12px 4px 0; }
.wc-actions .a { flex: 1; text-align: center; font-weight: 800; font-size: 12px; padding: 11px; border-radius: 14px; }
.wc-actions .a.pour { background: #6E2A15; color: #F6E1D6; }
.wc-actions .a.add { background: var(--cream); color: var(--ink); }
.wc-foot { text-align: center; color: #fff; font-size: 11px; margin-top: 12px; }

/* bottom action bar */
.actionbar { display: flex; gap: 8px; padding: 8px 14px 18px; }
.actionbar .a { flex: 1; text-align: center; font-weight: 800; font-size: 13px; padding: 12px; border-radius: 14px; }
.actionbar .a.terra { background: var(--terra); color: #fff; }
.actionbar .a.dark { background: var(--ink); color: var(--cream); }
.actionbar .a.ghost { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-s); }
.cta-strip { margin: 2px 18px 20px; background: var(--terra); color: #fff; text-align: center; padding: 13px; border-radius: 15px; font-weight: 800; font-size: 13px; }

/* =========================================================================
   Section shell
   ========================================================================= */
.section { position: relative; padding: 104px 0; z-index: 2; }
.section-head { max-width: 660px; margin-bottom: 54px; }
.section-head.center { margin: 0 auto 58px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 16px 0 18px; }
.section-head p { font-size: 1.14rem; color: var(--muted-d); }
.section-head p.serif { font-family: var(--serif); font-size: 1.3rem; color: var(--ink-2); }

/* tagline band */
.tagband { background: var(--ink); color: var(--cream); text-align: center; padding: 30px 24px; position: relative; z-index: 2; }
.tagband p { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 2rem); font-style: italic; }
.tagband p b { font-style: normal; font-weight: 800; color: var(--terra-bright); font-family: var(--sans); }

/* =========================================================================
   The night — numbered tasting sequence (menu leader dots)
   ========================================================================= */
.course { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; margin-bottom: 96px; }
.course:last-child { margin-bottom: 0; }
.course.flip .course-media { order: 2; }
.course-media { display: flex; justify-content: center; position: relative; }
.course-num { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--terra-deep); letter-spacing: 0.1em; }
.course h3 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 10px 0 16px; }
.course p { font-size: 1.08rem; color: var(--muted-d); margin-bottom: 18px; }
.course p.voice { font-family: var(--serif); font-style: italic; font-size: 1.16rem; color: var(--ink-2); }
.leader { list-style: none; display: grid; gap: 2px; margin-top: 8px; }
.leader li { display: flex; align-items: baseline; gap: 8px; font-size: 0.98rem; color: var(--ink); padding: 7px 0; border-bottom: 1px dashed var(--line); }
.leader li .dots-lead { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.leader li .v { color: var(--terra-deep); font-weight: 700; white-space: nowrap; }

/* =========================================================================
   POV / anti-snob band
   ========================================================================= */
.pov { background: var(--cream-2); }
.pov .split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.cellar-split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.pov .split.flip .pov-media { order: 2; }
.pov-media { display: flex; justify-content: center; }
.pov h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 18px; }
.pov .big { font-size: 1.14rem; color: var(--muted-d); margin-bottom: 22px; }
.checks { list-style: none; display: grid; gap: 14px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; min-width: 0; overflow-wrap: anywhere; }
.checks .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--olive); color: #fff; display: grid; place-items: center; font-size: 0.75rem; font-weight: 800; margin-top: 1px; }

/* =========================================================================
   Wildcard band (terra full-bleed)
   ========================================================================= */
.wild { background: var(--terra-wild); color: var(--wild-ink); position: relative; overflow: hidden; }
.wild::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px circle at 80% 20%, rgba(255,255,255,0.12), transparent 60%); pointer-events: none; }
.wild .split { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.wild .kicker { color: var(--wild-ink); }
.wild h2 { color: #241F19; font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin: 14px 0 18px; }
.wild p { font-size: 1.16rem; color: var(--wild-ink); max-width: 40ch; }
.wild .sig { font-family: var(--serif); font-style: italic; font-size: 1.3rem; margin-top: 22px; color: #241F19; }
.wild .spk { position: absolute; color: rgba(43,38,32,0.34); font-size: 22px; }

/* =========================================================================
   Feature grid
   ========================================================================= */
.grid-feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gcard { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.gcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.gcard .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--cream-2); color: var(--terra-deep); margin-bottom: 16px; }
.gcard .ic svg { width: 24px; height: 24px; }
.gcard h4 { font-size: 1.18rem; margin-bottom: 8px; font-weight: 800; }
.gcard p { font-size: 0.98rem; color: var(--muted-d); }

/* =========================================================================
   Pricing (real: Corker Plus + credits)
   ========================================================================= */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
.price {
  border-radius: var(--r-card); padding: 34px 30px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price.plus { background: var(--terra); color: #fff; box-shadow: var(--shadow-m); }
.price.payg { background: var(--paper); border: 1px solid var(--line); }
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }
.price .tag { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; opacity: .9; }
.price .amt { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; margin: 12px 0 2px; }
.price .amt small { font-size: 1rem; font-weight: 600; opacity: .8; }
.price .desc { font-size: 1rem; margin: 6px 0 22px; opacity: .92; }
.price.payg .desc { color: var(--muted-d); }
.price ul { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.price li { display: flex; gap: 10px; font-size: 0.98rem; }
.price li::before { content: "✓"; font-weight: 800; }
.price.plus li::before { color: #fff; }
.price.payg li::before { color: var(--olive); }
.price .buy { display: block; text-align: center; font-weight: 800; padding: 13px; border-radius: 100px; }
.price.plus .buy { background: var(--cream); color: var(--terra-deep); }
.price.payg .buy { background: var(--ink); color: var(--cream); }
.price-foot { text-align: center; color: var(--muted-d); font-size: 0.86rem; margin-top: 22px; }

/* =========================================================================
   Voice pull-quote
   ========================================================================= */
.quote { background: var(--noir); color: var(--on-dark); position: relative; overflow: hidden; text-align: center; }
.quote::before { content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(224,184,74,0.14), transparent 65%); }
.quote-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.quote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.3; color: #fff; }
.quote cite { display: block; margin-top: 22px; font-family: var(--sans); font-style: normal; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-bright); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { max-width: 780px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; width: 100%; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--sans); font-size: 1.2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.qa summary::-webkit-details-marker { display: none; }
.qa .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: .3s; color: var(--terra); font-size: 1.1rem; }
.qa[open] .plus { transform: rotate(45deg); background: var(--terra); color: #fff; border-color: var(--terra); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.qa[open] .ans { max-height: 360px; }
.qa .ans p { padding-bottom: 24px; color: var(--muted-d); font-size: 1.04rem; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.cta-final { text-align: center; position: relative; z-index: 2; }
.cta-card { background: var(--ink); color: var(--cream); border-radius: 34px; padding: 84px 24px; position: relative; overflow: hidden; }
.cta-card::before { content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(ellipse, rgba(192,89,44,0.35), transparent 62%); }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-card h2 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 16px; }
.cta-card p { font-family: var(--serif); font-style: italic; font-size: 1.24rem; color: var(--on-dark-mut); margin-bottom: 30px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 44px; }
.footer .wordmark { margin-bottom: 14px; display: inline-flex; }
.footer p.blurb { color: var(--muted-d); font-size: 0.96rem; max-width: 32ch; }
.footer h5 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-d); margin-bottom: 16px; font-weight: 800; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: var(--muted-d); font-size: 0.96rem; transition: color .2s; }
.footer ul a:hover { color: var(--terra); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted-d); font-size: 0.88rem; flex-wrap: wrap; gap: 12px; }

/* =========================================================================
   Reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-note { justify-content: center; }
  .course, .course.flip, .pov .split, .pov .split.flip, .wild .split, .cellar-split { grid-template-columns: 1fr; gap: 36px; }
  .course.flip .course-media, .pov .split.flip .pov-media { order: 0; }
  .grid-feat { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--cream); padding: 20px 24px; gap: 18px; box-shadow: var(--shadow-m); }
  .nav.open .nav-links a { color: var(--muted-d); }
}
@media (max-width: 560px) {
  .grid-feat { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .hero { padding: 132px 0 72px; }
  .wild, .pov { }
  .doc { padding: 104px 0 60px; }
  .ph { --pw: 280px; }
  .nav-cta { gap: 10px; }
  .appstore.appstore-sm img { height: 34px; }
}

/* =========================================================================
   Legal / support document pages (privacy.html, support.html)
   ========================================================================= */
/* sub-pages have no dark hero, so the nav is solid cream at all scroll positions */
body.subpage { background: var(--cream); }
body.subpage .nav {
  background: rgba(244,236,222,0.9); backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 var(--line);
}
body.subpage .nav .wordmark .wm-pre { color: var(--muted-d); }
body.subpage .nav .wordmark .wm-main { color: var(--terra); }
body.subpage .nav-links a { color: var(--muted-d); }
body.subpage .nav-links a:hover { color: var(--terra); }
body.subpage .nav-toggle span { background: var(--ink); }

.doc { padding: 128px 0 84px; }
.doc .wrap { max-width: 800px; }
.doc-head { padding-bottom: 26px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.doc-head .kicker { display: inline-block; margin-bottom: 12px; }
.doc-head h1 { font-size: clamp(2.1rem, 5vw, 3.1rem); color: var(--ink); letter-spacing: -0.02em; line-height: 1.05; }
.doc-head .updated { margin-top: 14px; color: var(--muted-d); font-size: 0.95rem; }
.doc .lede { font-family: var(--serif); font-size: 1.24rem; font-style: italic; color: var(--ink-2); line-height: 1.5; margin: 0 0 8px; }
.doc h2 { font-family: var(--sans); font-size: 1.38rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; margin: 42px 0 14px; }
.doc h3 { font-family: var(--sans); font-size: 1.06rem; font-weight: 700; color: var(--ink); margin: 26px 0 9px; }
.doc p, .doc li { color: var(--muted-d); font-size: 1.05rem; line-height: 1.72; }
.doc p { margin-bottom: 16px; }
.doc ul, .doc ol { margin: 0 0 18px; padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc li::marker { color: var(--terra); }
.doc a { color: var(--terra-deep); text-decoration: underline; text-underline-offset: 2px; }
.doc a:hover { color: var(--terra); }
.doc strong { color: var(--ink); font-weight: 700; }
.doc .card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-el);
  padding: 22px 24px; margin: 22px 0; box-shadow: var(--shadow-s);
}
.doc .card p:last-child { margin-bottom: 0; }
.doc .contact-row { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 6px; }
.doc .back { display: inline-flex; align-items: center; gap: 7px; margin-top: 40px; font-weight: 600; color: var(--terra-deep); text-decoration: none; }
.doc .back:hover { color: var(--terra); }

/* =========================================================================
   SEO content sections (category explainer + how-to guide)
   ========================================================================= */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 1.15rem; line-height: 1.75; color: var(--muted-d); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong, .prose b { color: var(--ink); font-weight: 700; }

.tips { max-width: 760px; margin: 0 auto; list-style: none; display: grid; gap: 20px; }
.tips li { display: flex; gap: 18px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-el); padding: 22px 24px; box-shadow: var(--shadow-s); }
.tips .tn { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--terra); color: #fff; font-weight: 800; font-size: 1rem; display: grid; place-items: center; }
.tips h4 { font-size: 1.12rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.tips p { color: var(--muted-d); font-size: 1.03rem; line-height: 1.62; }
.tips p em { font-family: var(--serif); font-style: italic; color: var(--terra-deep); }
.tips-foot { text-align: center; max-width: 640px; margin: 32px auto 0; font-family: var(--serif); font-style: italic; font-size: 1.24rem; color: var(--ink-2); }
