/* ═══════════════════════════════════════════════════════════
   WINLIST — interest site
   Tokens mirror the app theme: #09090A / #F1A10D / #E8D7C1
   ═══════════════════════════════════════════════════════════ */

:root{
  /* surfaces */
  --bg:#09090A;
  --surface:#131215;
  --surface-2:#1A181D;
  --surface-3:#221F26;

  /* brand */
  --gold:#F1A10D;
  --gold-soft:#FFC759;
  --cream:#E8D7C1;

  /* text */
  --text:#E8D7C1;
  --text-strong:#FBF4EA;
  --text-muted:#9E968C;
  --text-onGold:#09090A;

  /* feedback */
  --danger:#FF8A6B;
  --success:#4FD69C;

  /* lines */
  --line:rgba(232,215,193,.13);
  --line-strong:rgba(232,215,193,.26);

  /* type */
  --f-display:"Playfair Display",Georgia,serif;
  --f-ui:"Raleway",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --f-label:"Bebas Neue","Raleway",sans-serif;

  /* radii — deliberately varied, not one value everywhere */
  --r-pill:999px;
  --r-card:22px;
  --r-input:12px;
  --r-phone:40px;

  /* spacing rhythm (4/8) */
  --s1:4px; --s2:8px; --s3:12px; --s4:16px; --s5:24px;
  --s6:32px; --s7:48px; --s8:64px; --s9:96px;

  /* elevation scale */
  --e1:0 1px 2px rgba(0,0,0,.4);
  --e2:0 8px 24px rgba(0,0,0,.45);
  --e3:0 28px 70px rgba(0,0,0,.6);

  /* motion */
  --ease-out:cubic-bezier(.22,.68,.36,1);
  --ease-in:cubic-bezier(.5,0,.75,0);
  --t-fast:150ms; --t-mid:240ms;

  /* layers */
  --z-header:100;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:88px}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--f-ui);
  font-size:17px;
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{display:block;max-width:100%}
/* author `display` on .btn/.step would otherwise beat the UA rule for [hidden] */
[hidden]{display:none !important}
h1,h2,h3,h4{margin:0;line-height:1.12;font-weight:700}
p{margin:0}
button{font:inherit;color:inherit}

.skip-link{
  position:absolute;left:var(--s4);top:-100px;z-index:1000;
  background:var(--gold);color:var(--text-onGold);
  padding:12px 20px;border-radius:var(--r-pill);
  font-weight:700;text-decoration:none;
  transition:top var(--t-fast) var(--ease-out);
}
.skip-link:focus{top:var(--s4)}

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  border-radius:4px;
}

.wrap{
  width:100%;
  max-width:1200px;
  margin-inline:auto;
  padding-inline:clamp(20px,5vw,48px);
}
.wrap-narrow{max-width:780px}

/* ── shared type ─────────────────────────────── */
.eyebrow{
  font-family:var(--f-label);
  font-size:clamp(15px,1.6vw,17px);
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  display:flex;align-items:center;gap:10px;
  margin-bottom:var(--s4);
}
.eyebrow .dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--gold);flex:none;
  box-shadow:0 0 0 4px rgba(241,161,13,.18);
}
.sec-title{
  font-family:var(--f-display);
  font-size:clamp(32px,5.2vw,54px);
  letter-spacing:-.015em;
  color:var(--text-strong);
}
.sec-title em{font-style:italic;color:var(--gold)}
.sec-lede{
  margin-top:var(--s5);
  max-width:60ch;
  color:var(--text-muted);
  font-size:clamp(16px,1.9vw,18px);
}
.sec-head{margin-bottom:var(--s8)}

.section{padding-block:clamp(72px,11vw,132px)}
.section-alt{
  background:
    linear-gradient(180deg,rgba(232,215,193,.035),rgba(232,215,193,0) 60%),
    var(--bg);
  border-block:1px solid var(--line);
}

/* ── buttons ─────────────────────────────────── */
.btn{
  --btn-py:15px;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:52px;
  padding:var(--btn-py) 28px;
  border-radius:var(--r-pill);
  border:1.5px solid transparent;
  font-family:var(--f-ui);
  font-weight:700;
  font-size:15px;
  letter-spacing:.02em;
  text-decoration:none;
  cursor:pointer;
  touch-action:manipulation;
  transition:background var(--t-fast) var(--ease-out),
             border-color var(--t-fast) var(--ease-out),
             color var(--t-fast) var(--ease-out),
             transform var(--t-fast) var(--ease-out),
             opacity var(--t-fast) var(--ease-out);
}
.btn-gold{background:var(--gold);color:var(--text-onGold);box-shadow:var(--e1)}
.btn-gold:hover{background:var(--gold-soft)}
.btn-gold:active{transform:scale(.975)}
.btn-ghost{background:transparent;color:var(--text);border-color:var(--line-strong)}
.btn-ghost:hover{border-color:var(--cream);background:rgba(232,215,193,.06)}
.btn-ghost:active{transform:scale(.975)}
.btn-sm{min-height:44px;padding:10px 20px;font-size:14px}
.btn[disabled],.btn[aria-disabled="true"]{opacity:.45;cursor:not-allowed;transform:none}

/* ── header ──────────────────────────────────── */
.site-header{
  position:sticky;top:0;z-index:var(--z-header);
  padding-block:14px;
  background:rgba(9,9,10,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color var(--t-mid) var(--ease-out),background var(--t-mid) var(--ease-out);
}
.site-header.stuck{border-bottom-color:var(--line);background:rgba(9,9,10,.92)}
.header-inner{display:flex;align-items:center;gap:var(--s5)}
.brand{display:flex;align-items:center;gap:11px;text-decoration:none;flex:none;min-height:44px}
.brand-mark{width:26px;height:26px}
.brand-word{width:128px;height:auto}
.site-nav{display:none;margin-left:auto;gap:var(--s6)}
.site-nav a{
  color:var(--text-muted);text-decoration:none;font-size:15px;font-weight:600;
  padding:10px 0;position:relative;
  transition:color var(--t-fast) var(--ease-out);
}
.site-nav a::after{
  content:"";position:absolute;left:0;right:0;bottom:2px;height:1.5px;
  background:var(--gold);transform:scaleX(0);transform-origin:left;
  transition:transform var(--t-mid) var(--ease-out);
}
.site-nav a:hover{color:var(--text-strong)}
.site-nav a:hover::after{transform:scaleX(1)}
.header-cta{margin-left:auto}
@media (min-width:900px){
  .site-nav{display:flex}
  .header-cta{margin-left:0}
}

/* ── hero ────────────────────────────────────── */
.hero{position:relative;padding-block:clamp(56px,9vw,104px) clamp(72px,10vw,120px);overflow:hidden}
.hero-glow{
  position:absolute;inset:auto 0 auto 0;top:-280px;height:760px;
  background:radial-gradient(48% 46% at 68% 44%,rgba(241,161,13,.20),rgba(241,161,13,0) 70%);
  pointer-events:none;
}
.hero-grid{position:relative;display:grid;gap:clamp(48px,6vw,72px);align-items:center}
@media (min-width:980px){
  .hero-grid{grid-template-columns:1.06fr .94fr}
}
.hero-title{
  font-family:var(--f-display);
  font-size:clamp(40px,7.4vw,74px);
  letter-spacing:-.025em;
  color:var(--text-strong);
}
.hero-title em{font-style:italic;color:var(--gold)}
.hero-sub{
  margin-top:var(--s5);
  max-width:54ch;
  color:var(--text-muted);
  font-size:clamp(16px,2vw,18.5px);
}
.hero-actions{display:flex;flex-wrap:wrap;gap:var(--s3);margin-top:var(--s6)}
.hero-actions .btn{flex:1 1 auto;min-width:200px}
@media (min-width:560px){.hero-actions .btn{flex:0 0 auto}}

.hero-points{
  list-style:none;margin:var(--s7) 0 0;padding:var(--s5) 0 0;
  border-top:1px solid var(--line);
  display:grid;gap:var(--s4);
}
.hero-points li{
  display:flex;gap:13px;align-items:flex-start;
  font-size:15.5px;color:var(--text-muted);line-height:1.5;
}
.hero-points .ico{
  width:20px;height:20px;flex:none;margin-top:2px;
  fill:none;stroke:var(--gold);stroke-width:1.5;
  stroke-linecap:round;stroke-linejoin:round;
}

/* ── phone mockups ───────────────────────────── */
.phone{
  width:100%;max-width:296px;margin-inline:auto;
  aspect-ratio:9/19;
  padding:9px;
  border-radius:var(--r-phone);
  background:linear-gradient(160deg,#2A272E,#111014 55%);
  border:1px solid var(--line-strong);
  box-shadow:var(--e3);
}
.phone-hero{max-width:320px}
@media (min-width:980px){
  .phone-hero{transform:rotate(-1.6deg)}
}
.phone-screen{
  width:100%;height:100%;
  border-radius:calc(var(--r-phone) - 9px);
  overflow:hidden;
  display:flex;flex-direction:column;
  font-size:11px;line-height:1.35;
}
.phone-screen.dark{background:var(--bg);color:var(--cream)}
.phone-screen.cream{background:var(--cream);color:#1A1410}

/* app header */
.app-header{display:flex;align-items:center;justify-content:space-between;padding:14px 13px 10px;flex:none}
.app-header img{width:78px;height:auto}
.app-header-actions{display:flex;align-items:center;gap:7px}
.circ-btn{
  position:relative;width:26px;height:26px;border-radius:50%;
  display:grid;place-items:center;flex:none;
}
.circ-btn svg{width:15px;height:15px;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.circ-btn.outline{border:1.2px solid var(--line-strong)}
.circ-btn.outline svg{stroke:var(--cream)}
.circ-btn.filled{background:var(--cream)}
.circ-btn.filled svg{stroke:#1A1410}
.circ-btn .count{
  position:absolute;top:-4px;right:-4px;
  background:var(--gold);color:#1A1410;
  font-style:normal;font-weight:800;font-size:8px;
  min-width:14px;height:14px;border-radius:var(--r-pill);
  display:grid;place-items:center;padding-inline:3px;
}

/* video panel */
.app-video{
  position:relative;flex:1 1 auto;min-height:0;
  border-radius:16px 16px 0 0;overflow:hidden;
  background:linear-gradient(158deg,#2C2620,#121013 60%);
}
.c-fill{flex:1 1 auto;min-height:0}
.seg{position:absolute;top:9px;left:11px;right:11px;display:flex;gap:4px;z-index:2}
.seg i{flex:1;height:2.5px;border-radius:var(--r-pill);background:rgba(232,215,193,.24)}
.seg i.on{background:var(--cream)}
.tag-video{
  position:absolute;top:20px;left:11px;z-index:2;
  display:inline-flex;align-items:center;gap:4px;
  background:rgba(9,9,10,.6);color:var(--cream);
  font-size:8.5px;font-weight:700;letter-spacing:.09em;
  padding:4px 8px;border-radius:var(--r-pill);
}
.tag-video svg{width:8px;height:8px;fill:var(--cream)}
.av-figure{
  position:absolute;inset:0;display:grid;place-items:center;
}
.av-figure span{
  width:66px;height:66px;border-radius:50%;
  display:grid;place-items:center;
  font-family:var(--f-ui);font-weight:800;font-size:20px;letter-spacing:.06em;
  background:linear-gradient(145deg,rgba(241,161,13,.9),rgba(241,161,13,.45));
  color:#1A1410;
  box-shadow:0 10px 30px rgba(0,0,0,.5);
}
.av-figure.alt span{background:linear-gradient(145deg,rgba(232,215,193,.95),rgba(232,215,193,.5))}
.app-video-meta{
  position:absolute;left:0;right:0;bottom:0;padding:26px 12px 11px;
  background:linear-gradient(180deg,rgba(9,9,10,0),rgba(9,9,10,.9));
}
.av-name{font-family:var(--f-display);font-size:17px;font-weight:700;color:#fff;line-height:1.15}
.av-role{font-size:10px;color:rgba(255,255,255,.86);margin-top:2px}

/* info panel */
.app-info{flex:none;background:var(--surface);padding:11px 12px 12px}
.app-info-row{display:flex;align-items:center;gap:7px}
.gem{
  width:20px;height:23px;flex:none;
  clip-path:polygon(50% 0,100% 26%,100% 74%,50% 100%,0 74%,0 26%);
  display:grid;place-items:center;
  font-weight:800;font-size:9px;color:#1A1410;
}
.gem-emerald{background:linear-gradient(180deg,#52DB95,#1EBE6E 55%,#15613B)}
.gem-gold{background:linear-gradient(180deg,#FFDF5A,#F7C70E 55%,#B0820C)}
.followers{font-size:10px;color:var(--text-muted)}
.followers b{color:var(--cream);font-weight:700}
.pill-outline{
  margin-left:auto;
  border:1.2px solid var(--line-strong);border-radius:var(--r-pill);
  padding:4px 12px;font-size:8.5px;font-weight:700;letter-spacing:.09em;color:var(--cream);
}
.chips{display:flex;flex-wrap:wrap;gap:5px;margin-top:9px}
.chip-o{
  border:1px solid var(--line-strong);border-radius:var(--r-pill);
  padding:3px 9px;font-size:8px;font-weight:600;letter-spacing:.07em;color:var(--cream);
}
.app-bio{margin-top:9px;font-size:10px;color:var(--text-muted);line-height:1.5}

.swipe-hint{
  flex:none;display:flex;justify-content:space-between;
  padding:10px 14px 12px;background:var(--surface);
  border-top:1px solid var(--line);
}
.sh{font-size:9px;font-weight:800;letter-spacing:.12em}
.sh-pass{color:var(--text-muted)}
.sh-conn{color:var(--gold)}

/* app bottom nav */
.app-nav{
  flex:none;display:flex;align-items:center;justify-content:space-around;
  padding:10px 8px 14px;background:var(--bg);border-top:1px solid var(--line);
}
.nav-i{width:26px;height:26px;display:grid;place-items:center;border-radius:50%}
.nav-i svg{width:17px;height:17px;fill:none;stroke:var(--text-muted);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.nav-i.active{background:var(--cream)}
.nav-i.active svg{stroke:#1A1410}
.app-nav.on-cream{border-top:0}

/* cream screens */
.c-head{display:flex;align-items:center;justify-content:space-between;padding:16px 13px 10px;flex:none}
.c-title{font-family:var(--f-display);font-size:20px;font-weight:700;line-height:1.12;color:#1A1410}
.c-ico svg{width:16px;height:16px;fill:none;stroke:#1A1410;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.c-tabs{display:flex;gap:20px;padding:0 13px;border-bottom:1px solid rgba(26,20,16,.14);flex:none}
.c-tabs span{font-size:11px;font-weight:600;color:rgba(26,20,16,.5);padding-bottom:8px}
.c-tabs .on{color:#1A1410;font-weight:700;box-shadow:inset 0 -2px 0 var(--gold)}
.c-search{
  margin:10px 13px 0;flex:none;
  display:flex;align-items:center;gap:7px;
  background:#fff;border-radius:var(--r-pill);padding:7px 12px;
  font-size:10px;color:rgba(26,20,16,.45);
}
.c-search svg{width:12px;height:12px;fill:none;stroke:rgba(26,20,16,.5);stroke-width:1.6;stroke-linecap:round}
.c-label{
  padding:12px 13px 6px;flex:none;
  font-size:8.5px;font-weight:700;letter-spacing:.13em;text-transform:uppercase;
  color:rgba(26,20,16,.55);
}
.c-new{display:flex;gap:9px;padding:0 13px 11px;flex:none;border-bottom:1px solid rgba(26,20,16,.12)}
.c-av{
  width:34px;height:34px;border-radius:50%;flex:none;
  display:grid;place-items:center;
  font-size:10px;font-weight:700;letter-spacing:.04em;
  background:linear-gradient(145deg,#3A342C,#1A1410);color:var(--cream);
}
.c-av.ring{box-shadow:0 0 0 2px var(--cream),0 0 0 3.6px var(--gold)}
.c-thread{display:flex;align-items:center;gap:10px;padding:10px 13px;border-bottom:1px solid rgba(26,20,16,.09);flex:none}
.c-body{min-width:0;flex:1}
.c-name{font-family:var(--f-display);font-size:13px;font-weight:700;color:#1A1410;display:flex;align-items:center;gap:5px}
.seal{
  font-style:normal;width:13px;height:13px;flex:none;border-radius:50%;
  background:#1A1410;color:var(--gold);
  font-family:var(--f-ui);font-size:7px;font-weight:800;
  display:grid;place-items:center;
}
.c-prev{font-size:10px;color:rgba(26,20,16,.6);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.c-time{font-size:9px;color:rgba(26,20,16,.5);flex:none}
.c-unread{width:7px;height:7px;border-radius:50%;background:var(--gold);flex:none}

.ev-card{
  margin:10px 13px 0;flex:none;
  background:#1A1410;border-radius:16px;padding:12px 13px;
}
.ev-kicker{font-size:8px;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--gold)}
.ev-title{font-family:var(--f-display);font-size:15px;font-weight:700;color:var(--cream);margin-top:4px}
.ev-meta{font-size:9.5px;color:rgba(232,215,193,.66);margin-top:2px}
.ev-pill{
  display:inline-block;margin-top:9px;
  background:var(--gold);color:#1A1410;
  font-size:8.5px;font-weight:800;letter-spacing:.06em;
  padding:5px 12px;border-radius:var(--r-pill);
}
.cm-row{display:flex;align-items:center;gap:10px;padding:9px 13px;border-bottom:1px solid rgba(26,20,16,.09);flex:none}
.cm-av{
  width:32px;height:32px;border-radius:11px;flex:none;
  display:grid;place-items:center;font-size:10px;font-weight:800;
  background:linear-gradient(145deg,#F1A10D,#B0820C);color:#1A1410;
}
.cm-av.alt{background:linear-gradient(145deg,#52DB95,#15613B);color:#fff}
.cm-av.alt2{background:linear-gradient(145deg,#3A342C,#1A1410);color:var(--cream)}
.vote-dot{width:7px;height:7px;border-radius:50%;background:var(--gold);flex:none}

/* ── concept cards ───────────────────────────── */
.cards-3{display:grid;gap:var(--s4)}
@media (min-width:760px){.cards-3{grid-template-columns:repeat(3,1fr);gap:var(--s5)}}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r-card);
  padding:var(--s6) var(--s5) var(--s5);
  transition:border-color var(--t-mid) var(--ease-out),transform var(--t-mid) var(--ease-out);
}
.card:hover{border-color:var(--line-strong);transform:translateY(-3px)}
.card-ico{
  display:grid;place-items:center;
  width:44px;height:44px;border-radius:13px;
  background:rgba(241,161,13,.11);
  border:1px solid rgba(241,161,13,.28);
  margin-bottom:var(--s5);
}
.card-ico svg{width:23px;height:23px;fill:none;stroke:var(--gold);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.card h3{font-size:20px;font-weight:700;color:var(--text-strong);letter-spacing:-.005em}
.card p{margin-top:var(--s3);font-size:15.5px;color:var(--text-muted);line-height:1.62}

/* ── steps ───────────────────────────────────── */
.steps{list-style:none;margin:0;padding:0;display:grid;gap:var(--s5)}
@media (min-width:720px){.steps{grid-template-columns:repeat(2,1fr);gap:var(--s6) var(--s7)}}
@media (min-width:1060px){.steps{grid-template-columns:repeat(4,1fr);gap:var(--s5)}}
.step-item{padding-top:var(--s5);border-top:1.5px solid var(--line-strong)}
.step-n{
  display:block;
  font-family:var(--f-label);
  font-size:34px;line-height:1;
  color:var(--gold);
  margin-bottom:var(--s3);
}
.step-item h3{font-size:18px;font-weight:700;color:var(--text-strong)}
.step-item p{margin-top:10px;font-size:15px;color:var(--text-muted);line-height:1.6}

/* ── roles ───────────────────────────────────── */
.roles{display:grid;gap:var(--s4)}
@media (min-width:820px){.roles{grid-template-columns:1fr 1fr;gap:var(--s5)}}
.role-card{
  text-align:left;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r-card);
  padding:var(--s6) var(--s5);
  cursor:pointer;
  touch-action:manipulation;
  transition:border-color var(--t-mid) var(--ease-out),
             background var(--t-mid) var(--ease-out),
             transform var(--t-fast) var(--ease-out);
}
.role-card:hover{border-color:var(--line-strong);background:var(--surface-2)}
.role-card:active{transform:scale(.99)}
.role-card-gold{
  background:linear-gradient(165deg,rgba(241,161,13,.12),rgba(241,161,13,.02) 60%),var(--surface);
  border-color:rgba(241,161,13,.32);
}
.role-card-gold:hover{border-color:rgba(241,161,13,.6)}
.role-tag{
  display:inline-block;
  font-family:var(--f-label);font-size:15px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold);
  border:1px solid rgba(241,161,13,.35);border-radius:var(--r-pill);
  padding:3px 14px;margin-bottom:var(--s5);
}
.role-card h3{font-family:var(--f-display);font-size:clamp(24px,3.2vw,30px);color:var(--text-strong)}
.role-card p{margin-top:var(--s3);font-size:15.5px;color:var(--text-muted);line-height:1.62}
.role-go{
  display:inline-flex;align-items:center;gap:9px;
  margin-top:var(--s5);
  font-weight:700;font-size:15px;color:var(--gold);
}
.role-go svg{width:19px;height:19px;fill:none;stroke:var(--gold);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;transition:transform var(--t-mid) var(--ease-out)}
.role-card:hover .role-go svg{transform:translateX(4px)}

/* ── rail (app shots) ────────────────────────── */
.rail{
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding-block:var(--s2) var(--s5);
}
.rail::-webkit-scrollbar{display:none}
.rail-track{
  display:flex;gap:var(--s5);
  padding-inline:clamp(20px,5vw,48px);
  width:max-content;
  margin-inline:auto;
}
.shot{margin:0;flex:0 0 auto;width:min(78vw,286px);scroll-snap-align:center}
.shot figcaption{
  margin-top:var(--s5);
  font-size:14.5px;color:var(--text-muted);line-height:1.55;
  max-width:34ch;
}
.shot figcaption b{
  display:block;color:var(--text-strong);
  font-size:16px;font-weight:700;margin-bottom:4px;
}
.rail-hint{
  text-align:center;font-size:13px;color:var(--text-muted);
  letter-spacing:.04em;margin-top:var(--s2);
}
@media (min-width:1060px){
  .rail{overflow:visible;scroll-snap-type:none}
  .rail-track{width:auto;max-width:1200px;justify-content:center}
  .shot{width:286px}
  .rail-hint{display:none}
}

/* ═══════════════  FORM  ═══════════════ */
.form-shell{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:26px;
  padding:clamp(24px,4.4vw,44px);
  box-shadow:var(--e2);
}
.progress{margin-bottom:var(--s6)}
.progress-head{display:flex;align-items:baseline;justify-content:space-between;gap:var(--s4);margin-bottom:11px}
.progress-step{
  font-family:var(--f-label);font-size:16px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--text-muted);
}
.progress-pct{font-size:13px;font-weight:700;color:var(--gold);font-variant-numeric:tabular-nums}
.progress-bar{height:4px;border-radius:var(--r-pill);background:rgba(232,215,193,.12);overflow:hidden}
.progress-bar span{
  display:block;height:100%;width:25%;
  background:linear-gradient(90deg,var(--gold),var(--gold-soft));
  border-radius:var(--r-pill);
  transform-origin:left;
  transition:width var(--t-mid) var(--ease-out);
}

.step{border:0;margin:0;padding:0;min-inline-size:0}
.q{
  font-family:var(--f-display);
  font-size:clamp(23px,3.4vw,29px);
  font-weight:700;color:var(--text-strong);
  padding:0;margin-bottom:var(--s2);
}
.q-help{color:var(--text-muted);font-size:15px;margin-bottom:var(--s5)}

/* honeypot */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* radio option cards */
.opt-grid{display:grid;gap:var(--s3)}
.opt{
  position:relative;display:block;cursor:pointer;
  border:1.5px solid var(--line);border-radius:16px;
  padding:var(--s4) var(--s5) var(--s4) 56px;
  background:var(--surface-2);
  min-height:44px;
  transition:border-color var(--t-fast) var(--ease-out),background var(--t-fast) var(--ease-out);
}
.opt:hover{border-color:var(--line-strong)}
.opt input{position:absolute;opacity:0;width:0;height:0}
.opt::before{
  content:"";position:absolute;left:20px;top:23px;
  width:20px;height:20px;border-radius:50%;
  border:1.8px solid var(--line-strong);
  transition:border-color var(--t-fast) var(--ease-out);
}
.opt::after{
  content:"";position:absolute;left:25px;top:28px;
  width:10px;height:10px;border-radius:50%;
  background:var(--gold);
  transform:scale(0);
  transition:transform var(--t-fast) var(--ease-out);
}
.opt:has(input:checked){border-color:var(--gold);background:rgba(241,161,13,.09)}
.opt:has(input:checked)::before{border-color:var(--gold)}
.opt:has(input:checked)::after{transform:scale(1)}
.opt:has(input:focus-visible){outline:2px solid var(--gold);outline-offset:3px}
.opt-title{display:block;font-weight:700;font-size:17px;color:var(--text-strong)}
.opt-desc{display:block;margin-top:3px;font-size:14.5px;color:var(--text-muted);line-height:1.5}

/* fields */
.field{margin-bottom:var(--s5)}
.field-row{display:grid;gap:var(--s5)}
@media (min-width:600px){.field-row{grid-template-columns:1fr 1fr;gap:var(--s4)}}
.field label,.consent{
  display:block;font-size:14.5px;font-weight:600;color:var(--text);
  margin-bottom:9px;
}
.req{color:var(--gold)}
.opt-lbl{color:var(--text-muted);font-weight:500}

.field input,.field textarea,.field select{
  width:100%;
  min-height:52px;
  padding:14px 16px;
  background:var(--bg);
  border:1.5px solid var(--line);
  border-radius:var(--r-input);
  color:var(--text-strong);
  font-family:var(--f-ui);
  font-size:16px;
  line-height:1.5;
  transition:border-color var(--t-fast) var(--ease-out),background var(--t-fast) var(--ease-out);
}
.field textarea{resize:vertical;min-height:104px}
.field input::placeholder,.field textarea::placeholder{color:rgba(158,150,140,.72)}
.field input:hover,.field textarea:hover,.field select:hover{border-color:var(--line-strong)}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none;border-color:var(--gold);background:var(--surface-2);
}
.field input:focus-visible,.field textarea:focus-visible,.field select:focus-visible{outline:none}

.select-wrap{position:relative}
.select-wrap select{appearance:none;-webkit-appearance:none;padding-right:46px;cursor:pointer}
.sel-caret{
  position:absolute;right:16px;top:50%;transform:translateY(-50%);
  width:18px;height:18px;pointer-events:none;
  fill:none;stroke:var(--text-muted);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}
.hint{margin-top:7px;font-size:13px;color:var(--text-muted)}

/* errors */
.err{
  margin-top:7px;font-size:13.5px;font-weight:600;color:var(--danger);
  display:none;align-items:flex-start;gap:7px;
}
.err.on{display:flex}
.err::before{
  content:"!";flex:none;
  width:16px;height:16px;border-radius:50%;
  border:1.5px solid var(--danger);
  display:grid;place-items:center;
  font-size:11px;font-weight:800;line-height:1;margin-top:1px;
}
.field.invalid input,.field.invalid textarea,.field.invalid select{border-color:var(--danger)}
.form-err{margin-top:var(--s4);justify-content:center}

/* goal chips */
.chip-set{display:flex;flex-wrap:wrap;gap:var(--s2)}
.chip{margin:0}
.chip input{position:absolute;opacity:0;width:0;height:0}
.chip span{
  display:inline-flex;align-items:center;
  min-height:44px;padding:10px 18px;
  border:1.5px solid var(--line);border-radius:var(--r-pill);
  background:var(--surface-2);
  font-size:14.5px;font-weight:600;color:var(--text);
  cursor:pointer;touch-action:manipulation;
  transition:border-color var(--t-fast) var(--ease-out),
             background var(--t-fast) var(--ease-out),
             color var(--t-fast) var(--ease-out);
}
.chip span:hover{border-color:var(--line-strong)}
.chip span::before{
  /* right+bottom borders rotated +45° — puts the long arm on the upper right.
     left+bottom at -45° draws a mirrored tick. */
  content:"";width:0;height:11px;margin-right:0;
  border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(45deg) scale(0);
  transition:transform var(--t-fast) var(--ease-out),width var(--t-fast) var(--ease-out),margin var(--t-fast) var(--ease-out);
}
.chip input:checked+span{background:var(--gold);border-color:var(--gold);color:var(--text-onGold)}
.chip input:checked+span::before{width:6px;margin-right:12px;transform:rotate(45deg) scale(1)}
.chip input:focus-visible+span{outline:2px solid var(--gold);outline-offset:3px}

/* consent */
.consent{
  display:flex;gap:12px;align-items:flex-start;
  margin-top:var(--s5);margin-bottom:0;
  font-weight:500;font-size:14.5px;color:var(--text-muted);line-height:1.55;
  cursor:pointer;
}
.consent input{
  appearance:none;-webkit-appearance:none;
  flex:none;width:22px;height:22px;margin:1px 0 0;
  border:1.8px solid var(--line-strong);border-radius:6px;
  background:var(--bg);cursor:pointer;
  display:grid;place-items:center;
  transition:background var(--t-fast) var(--ease-out),border-color var(--t-fast) var(--ease-out);
}
.consent input::after{
  content:"";width:6px;height:11px;
  border-right:2.2px solid var(--text-onGold);border-bottom:2.2px solid var(--text-onGold);
  transform:rotate(42deg) scale(0);
  margin-top:-2px;
  transition:transform var(--t-fast) var(--ease-out);
}
.consent input:checked{background:var(--gold);border-color:var(--gold)}
.consent input:checked::after{transform:rotate(42deg) scale(1)}

/* actions */
.form-actions{display:flex;gap:var(--s3);margin-top:var(--s6)}
.form-actions .btn{flex:1}
@media (min-width:600px){
  .form-actions{justify-content:flex-end}
  .form-actions .btn{flex:0 0 auto;min-width:150px}
  #submitBtn{min-width:220px}
}
.form-foot{margin-top:var(--s4);font-size:13px;color:var(--text-muted);text-align:center}

.spinner{
  display:none;width:17px;height:17px;flex:none;
  border:2px solid rgba(9,9,10,.28);
  border-top-color:var(--text-onGold);
  border-radius:50%;
  animation:spin .7s linear infinite;
}
.btn.loading .spinner{display:block}
@keyframes spin{to{transform:rotate(360deg)}}

/* success */
.done{text-align:center;padding-block:var(--s5)}
.done-mark{
  display:grid;place-items:center;
  width:64px;height:64px;margin:0 auto var(--s5);
  border-radius:50%;
  background:rgba(79,214,156,.12);
  border:1.5px solid rgba(79,214,156,.45);
}
.done-mark svg{width:34px;height:34px;fill:none;stroke:var(--success);stroke-width:2.6;stroke-linecap:round;stroke-linejoin:round}
.done h3{font-family:var(--f-display);font-size:clamp(26px,4vw,34px);color:var(--text-strong)}
.done p{margin-top:var(--s3);color:var(--text-muted);max-width:46ch;margin-inline:auto;font-size:16px}
.done .btn{margin-top:var(--s6)}

/* ── faq ─────────────────────────────────────── */
.faq{border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{
  list-style:none;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:var(--s4);
  padding:var(--s5) 0;min-height:44px;
  font-family:var(--f-ui);font-size:clamp(16.5px,2.2vw,19px);font-weight:600;
  color:var(--text-strong);
  transition:color var(--t-fast) var(--ease-out);
}
.faq summary::-webkit-details-marker{display:none}
.faq summary:hover{color:var(--gold)}
.chev{position:relative;width:15px;height:15px;flex:none}
.chev::before,.chev::after{
  content:"";position:absolute;top:50%;left:50%;
  background:var(--gold);border-radius:2px;
  transform:translate(-50%,-50%);
  transition:transform var(--t-mid) var(--ease-out),opacity var(--t-fast) var(--ease-out);
}
.chev::before{width:15px;height:2px}
.chev::after{width:2px;height:15px}
.faq details[open] .chev::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.faq-body{padding-bottom:var(--s5)}
.faq-body p{color:var(--text-muted);font-size:15.5px;max-width:66ch;line-height:1.68}

/* ── footer ──────────────────────────────────── */
.site-footer{
  border-top:1px solid var(--line);
  background:linear-gradient(180deg,rgba(232,215,193,.02),rgba(232,215,193,0) 55%),var(--bg);
  padding-block:clamp(40px,6vw,64px) var(--s5);
}
.footer-top{
  display:grid;
  gap:var(--s6);
  padding-bottom:clamp(32px,5vw,48px);
}
@media (min-width:680px){
  .footer-top{grid-template-columns:1.6fr 1fr 1.2fr;gap:var(--s7)}
}
.footer-brand img{width:132px;height:auto}
.footer-strap{
  margin-top:var(--s3);
  font-family:var(--f-label);font-size:15px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);
}
.footer-blurb{
  margin-top:var(--s4);
  max-width:34ch;
  font-size:14.5px;line-height:1.6;color:var(--text-muted);
}
.footer-links{display:flex;flex-direction:column;align-items:flex-start;gap:2px}
.footer-h{
  font-family:var(--f-label);font-size:14px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:var(--s2);
}
.footer-links a{
  display:inline-flex;align-items:center;min-height:38px;
  font-size:15px;font-weight:500;color:var(--text);
  text-decoration:none;
  transition:color var(--t-fast) var(--ease-out);
}
.footer-links a:hover{color:var(--gold)}
.footer-links a.footer-cta{
  margin-top:var(--s3);
  font-weight:700;color:var(--text-onGold);
}
.footer-links a.footer-cta:hover{color:var(--text-onGold)}

.footer-bottom{
  display:flex;flex-wrap:wrap;gap:var(--s2) var(--s5);
  align-items:center;justify-content:space-between;
  padding-top:var(--s5);
  border-top:1px solid var(--line);
}
.footer-legal{font-size:13px;color:var(--text-muted)}

/* ── reveal ──────────────────────────────────── */
.js .reveal{opacity:0;transform:translateY(22px)}
.reveal.in{
  opacity:1;transform:none;
  transition:opacity 520ms var(--ease-out),transform 520ms var(--ease-out);
}
.reveal[data-delay="1"].in{transition-delay:70ms}
.reveal[data-delay="2"].in{transition-delay:140ms}
.reveal[data-delay="3"].in{transition-delay:210ms}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  .js .reveal,.reveal{opacity:1;transform:none}
  .phone-hero{transform:none}
}
