/* ═══════════════════════════════════════════════════════════
   CASTLE OF IF — v0.1
   Palette: ink / bone / hazard. Type: grotesk + mono.
   ═══════════════════════════════════════════════════════════ */

:root{
  /* colour */
  --ink:      #0A0A0A;
  --ink-2:    #121212;
  --ink-3:    #1A1A1A;
  --bone:     #E9E6DF;
  --bone-2:   #D6D2C8;
  --concrete: #86827A;
  --hazard:   #FF3B15;
  --hazard-d: #D42D0C;

  --bg:   var(--bone);
  --fg:   var(--ink);
  --rule: rgba(10,10,10,.14);
  --dim:  rgba(10,10,10,.48);

  /* type */
  --grotesk: "Helvetica Neue", Helvetica, "Inter", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, "Roboto Mono", Menlo, Consolas, monospace;

  /* metrics */
  --gut: clamp(16px, 3.6vw, 46px);
  --rail: 148px;
  --head-h: 64px;

  --ease: cubic-bezier(.16,1,.3,1);
}

/* ── reset ─────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:var(--grotesk);
  font-size:16px;
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,p,dl,dd,ol,ul,figure{ margin:0; padding:0; }
ol,ul{ list-style:none; }
button,input,select,textarea{ font:inherit; color:inherit; }
::selection{ background:var(--hazard); color:#fff; }

/* ── primitives ────────────────────────────────────────── */
.mono{
  font-family:var(--mono);
  font-size:10.5px;
  letter-spacing:.11em;
  text-transform:uppercase;
  font-weight:500;
  line-height:1.5;
}
.dim{ color:var(--dim); }
.sect--dark .dim,.sect--signal .dim,.closer .dim,.foot .dim,.hero .dim{ color:rgba(233,230,223,.5); }

.display{
  font-weight:700;
  letter-spacing:-.035em;
  line-height:.92;
  font-size:clamp(38px,6.4vw,88px);
  text-wrap:balance;
}
.display--xl{
  font-size:clamp(56px,11vw,168px);
  line-height:.84;
  letter-spacing:-.045em;
  text-transform:uppercase;
}
.lede{
  font-size:clamp(17px,1.5vw,23px);
  line-height:1.36;
  letter-spacing:-.015em;
  max-width:46ch;
}

/* ── grain + scanline film ─────────────────────────────── */
.grain{
  position:fixed; inset:-50%;
  pointer-events:none; z-index:9998;
  opacity:.16; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  animation:grainshift 6s steps(6) infinite;
}
@keyframes grainshift{
  0%{transform:translate(0,0)}   20%{transform:translate(-3%,2%)}
  40%{transform:translate(2%,-3%)} 60%{transform:translate(-2%,-2%)}
  80%{transform:translate(3%,1%)} 100%{transform:translate(0,0)}
}
.progress-rail{
  position:fixed; top:0; left:0; right:0; height:2px; z-index:9999;
  background:transparent;
}
.progress-rail span{
  display:block; height:100%; width:0%;
  background:var(--hazard);
  box-shadow:0 0 12px rgba(255,59,21,.7);
}

/* ── masthead ──────────────────────────────────────────── */
.masthead{
  position:fixed; top:0; left:0; right:0; z-index:900;
  display:grid; grid-template-columns:1fr 1fr 1fr;
  align-items:start; gap:20px;
  padding:16px var(--gut);
  color:var(--bone);
  mix-blend-mode:difference;
  transition:padding .5s var(--ease);
}
.masthead__col{ display:flex; flex-direction:column; gap:3px; }
.masthead__col--center{ align-items:center; text-align:center; }
.masthead__col--right{ align-items:flex-end; text-align:right; }
.masthead .dim{ color:rgba(233,230,223,.45); }
.wordmark{
  font-family:var(--mono);
  font-size:11px; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
}
.nav-line{ color:var(--bone); }

.tag{
  display:inline-flex; align-items:center; gap:0;
  font-family:var(--mono); font-size:10.5px; letter-spacing:.11em;
  text-transform:uppercase;
}
.dot{
  width:6px; height:6px; border-radius:50%; margin-right:7px;
  background:var(--hazard); flex:none;
  animation:pulse 2.2s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.75)} }

body.scrolled .masthead{ padding-top:11px; padding-bottom:11px; }

/* ── HERO ──────────────────────────────────────────────── */
.hero{
  background:var(--ink); color:var(--bone);
  min-height:100svh;
  padding:calc(var(--head-h) + 24px) var(--gut) 30px;
  display:flex; flex-direction:column; justify-content:space-between;
  position:relative; overflow:hidden;
}
.hero::after{ /* corrugated wall */
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background:repeating-linear-gradient(90deg,
    rgba(255,255,255,.035) 0 1px, transparent 1px 84px);
}
.hero > *{ position:relative; z-index:1; }

.hero__type{
  margin:clamp(24px,5vh,60px) 0;
  font-weight:700; text-transform:uppercase;
  font-size:clamp(64px,22vw,280px);
  line-height:.8; letter-spacing:-.05em;
}
.hero__type .line{ display:block; overflow:hidden; }
.hero__type em{ display:block; font-style:normal; }
.hero__type .line--two em{ color:var(--hazard); }

.hero__foot{
  display:grid; grid-template-columns:1.35fr .65fr; gap:clamp(24px,5vw,80px);
  align-items:end; padding-top:22px;
}
.hero__lede .lede{ margin-bottom:14px; color:var(--bone-2); max-width:62ch; }
.hero__lede .lede b{
  color:var(--bone); font-weight:600;
  box-shadow:inset 0 -2px 0 rgba(255,59,21,.55);
}
.hero__cta{ display:flex; flex-direction:column; gap:18px; align-items:flex-end; }

/* ── buttons ───────────────────────────────────────────── */
.btn{
  --btn-bg:var(--hazard); --btn-fg:#fff;
  position:relative; overflow:hidden;
  display:inline-flex; align-items:center; justify-content:space-between; gap:24px;
  padding:17px 22px; min-width:290px;
  background:var(--btn-bg); color:var(--btn-fg);
  font-family:var(--mono); font-size:11.5px; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  border:1px solid var(--btn-bg); cursor:pointer;
  transition:color .35s var(--ease), border-color .35s var(--ease);
}
.btn > *{ position:relative; z-index:1; }
.btn:has(span:only-child){ min-width:0; justify-content:center; }
.btn::before{
  content:""; position:absolute; inset:0; background:var(--bone);
  transform:translateY(101%); transition:transform .5s var(--ease);
}
.btn:hover{ color:var(--ink); border-color:var(--bone); }
.btn:hover::before{ transform:translateY(0); }
.btn__price{ opacity:.75; letter-spacing:.1em; }
.btn--wide{ width:100%; }
.btn--ghost{
  --btn-bg:transparent; --btn-fg:var(--bone);
  border-color:rgba(233,230,223,.4);
}
.btn--ghost:hover{ color:var(--ink); }

/* ── meter ─────────────────────────────────────────────── */
.meter{ width:100%; max-width:420px; }
.meter__bar{
  height:6px; background:rgba(233,230,223,.16);
  position:relative; overflow:hidden;
}
.meter__bar i{
  position:absolute; inset:0 auto 0 0; width:0;
  background:var(--hazard);
  transition:width 1.6s var(--ease);
}
.meter__bar i::after{
  content:""; position:absolute; right:0; top:0; bottom:0; width:2px; background:#fff;
}
.meter__labels{
  display:flex; justify-content:space-between; gap:14px; margin-top:8px;
}
.meter__labels b{ font-weight:700; }
.meter--lg{ max-width:none; margin-top:32px; }
.meter--lg .meter__bar{ height:10px; background:rgba(10,10,10,.12); }

/* ── plates (image slots) ──────────────────────────────── */
.plate{ display:block; }
.plate__img{
  position:relative; width:100%; aspect-ratio:16/8;
  background:
    linear-gradient(135deg, #171717 0%, #202020 40%, #141414 100%);
  overflow:hidden;
}
.plate__img--tall{ aspect-ratio:4/5; }
.plate__img::before{ /* placeholder cross */
  content:""; position:absolute; inset:0; opacity:.5;
  background:
    linear-gradient(to top right, transparent calc(50% - .5px), rgba(233,230,223,.16) 50%, transparent calc(50% + .5px)),
    linear-gradient(to top left,  transparent calc(50% - .5px), rgba(233,230,223,.16) 50%, transparent calc(50% + .5px));
}
.plate__img::after{
  content:attr(data-slot);
  position:absolute; left:14px; bottom:12px;
  font-family:var(--mono); font-size:10px; letter-spacing:.12em;
  color:rgba(233,230,223,.45);
}
.plate figcaption{
  display:flex; justify-content:space-between; gap:16px;
  padding-top:9px; color:var(--dim);
}
.plate--bleed{ position:relative; }
.plate--bleed .plate__img{ aspect-ratio:16/7.2; }
/* caption rides on the image — a full-width strip under a bleed shot
   leaves two tiny mono bits stranded at opposite edges of the screen */
.plate--bleed::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:38%;
  background:linear-gradient(transparent, rgba(6,6,6,.72));
  pointer-events:none;
}
.plate--bleed figcaption{
  position:absolute; z-index:1;
  left:var(--gut); bottom:clamp(14px,2vw,22px);
  padding:0; justify-content:flex-start; gap:16px;
  color:rgba(233,230,223,.9);
}
.plate--bleed figcaption span:first-child{ color:var(--hazard); }

/* real photography — hides the placeholder cross + slot label */
.plate__img--photo::before,
.plate__img--photo::after{ display:none; }
.plate__img--photo img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.plate--bleed .plate__img--photo{ aspect-ratio:16/9; }
.plate--vest .plate__img--photo{ aspect-ratio:3/4; background:#EDECE9; }

/* ── section scaffolding ───────────────────────────────── */
.sect{
  padding:clamp(64px,10vw,140px) var(--gut);
  border-top:1px solid var(--rule);
}
.sect__rail{
  display:flex; gap:16px; align-items:baseline;
  margin-bottom:26px; color:var(--dim);
}
.sect__rail span:first-child{ color:var(--hazard); }
.sect--dark{
  background:var(--ink); color:var(--bone);
  border-top-color:var(--ink);
}
.sect--dark .sect__rail{ color:rgba(233,230,223,.5); }

.sect--split{ display:grid; grid-template-columns:var(--rail) 1fr; gap:clamp(16px,4vw,60px); }
.sect--split .sect__rail{ flex-direction:column; gap:4px; margin:0; position:sticky; top:90px; align-self:start; }
.lede--wide{
  margin-top:clamp(26px,3.4vw,40px);
  max-width:52ch; color:rgba(10,10,10,.72);
}

.sect__head{
  display:grid; grid-template-columns:1.15fr .85fr;
  gap:clamp(24px,5vw,80px); align-items:end;
  padding-bottom:clamp(40px,6vw,80px);
}
.sect__head .sect__rail{ grid-column:1/-1; margin-bottom:0; }
.sect__head--simple{ display:block; }
.sect__head--top{ align-items:start; padding-bottom:0; }
.sect__head--mid{ align-items:center; padding-bottom:clamp(28px,3.6vw,48px); }
.sect__head--top .lede{ margin-bottom:6px; }
.lede--right{ color:rgba(10,10,10,.72); padding-bottom:8px; }
.sect--dark .lede--right{ color:rgba(233,230,223,.66); }

/* ── spec table ────────────────────────────────────────── */
.specs{
  --sp-line:var(--rule); --sp-dt:var(--dim); --sp-hover:rgba(10,10,10,.04);
  display:grid; grid-template-columns:repeat(4,1fr);
  margin-top:clamp(26px,3.4vw,44px);
  border-top:1px solid var(--sp-line);
}
.sect--dark .specs{
  --sp-line:rgba(233,230,223,.2);
  --sp-dt:rgba(233,230,223,.45);
  --sp-hover:rgba(233,230,223,.05);
}
.spec{
  padding:22px 20px 26px;
  border-bottom:1px solid var(--sp-line);
  border-right:1px solid var(--sp-line);
  transition:background .4s var(--ease);
}
.spec:nth-child(4n){ border-right:0; }
.spec:hover{ background:var(--sp-hover); }
.spec dt{ color:var(--sp-dt); margin-bottom:16px; }
.spec dd{
  font-size:clamp(24px,2.9vw,42px); font-weight:700;
  letter-spacing:-.03em; line-height:1;
}
.spec dd.dd--text{ font-size:clamp(20px,2.1vw,31px); letter-spacing:-.02em; }
.spec dd em{
  font-style:normal; font-family:var(--mono); font-size:11px;
  letter-spacing:.1em; color:var(--hazard); display:inline-block;
  vertical-align:middle; margin-left:6px;
}

.duo{
  display:grid; grid-template-columns:1fr 1fr; gap:var(--gut);
  margin-top:clamp(40px,6vw,90px);
}
.duo figcaption{ color:rgba(233,230,223,.4); }

/* bring / leave — one cycle in three steps, not two facing lists */
.cycle{
  display:grid; grid-template-columns:repeat(3,1fr);
  margin-top:clamp(34px,4.6vw,64px);
  border-top:1px solid var(--rule);
}
.cycle__step{
  padding:28px clamp(18px,2vw,28px) 34px;
  border-right:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  transition:background .4s var(--ease);
}
.cycle__step:first-child{ padding-left:0; }
.cycle__step:last-child{ border-right:0; }
.cycle__step:hover{ background:var(--bone-2); }
.cycle__n{
  display:block; color:var(--hazard);
  font-size:clamp(46px,6.2vw,94px); font-weight:700;
  letter-spacing:-.055em; line-height:.86;
  margin-bottom:clamp(14px,1.8vw,24px);
}
.cycle__step h3{
  font-size:clamp(20px,2.1vw,30px); font-weight:700;
  letter-spacing:-.035em; line-height:1.04; margin-bottom:14px;
}
.cycle__step p{
  font-size:15.5px; line-height:1.55;
  color:rgba(10,10,10,.7); max-width:34ch;
}

@keyframes marquee{ to{ transform:translateX(-50%); } }

/* the starter kit — a scrolling strip of the actual stuff */
.strip{
  margin:clamp(24px,3.2vw,40px) calc(var(--gut) * -1) 0;
  overflow:hidden;
}
.strip__track{
  display:flex; width:max-content;
  will-change:transform;
  animation:marquee 46s linear infinite;   /* duration recomputed in main.js */
}
.strip__item{
  flex:none; width:clamp(180px,21vw,290px);
  padding-right:clamp(10px,1.1vw,16px);
}
.strip__shot{ position:relative; aspect-ratio:1; overflow:hidden; }
.strip__shot img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; display:block;
}
.strip__item figcaption{
  padding-top:10px;
  color:rgba(233,230,223,.5);
}

/* second heading inside a section */
.bandhead{ margin-top:clamp(46px,6vw,86px); }

/* band divider inside a merged section */
.band{ margin-top:clamp(34px,4.4vw,58px); }
.sect__head.band{ margin-bottom:0; padding-bottom:0; }
.manifest__note{ margin-top:26px; line-height:1.9; max-width:78ch; }
.specs__note{ margin-top:22px; line-height:1.9; max-width:78ch; }

/* ── vest (signal section) ─────────────────────────────── */
.sect--signal{
  background:var(--hazard); color:#fff; border-top-color:var(--hazard);
}
.sect--signal .sect__rail{ color:rgba(255,255,255,.6); }
.sect--signal .sect__rail span:first-child{ color:#fff; }
.sect--signal .lede{ color:rgba(255,255,255,.88); }
.sect--signal .lede--wide{ color:rgba(255,255,255,.9); }
.vest{
  display:grid; grid-template-columns:1.1fr .9fr;
  gap:clamp(28px,6vw,90px); align-items:center;
}
.vest__text .lede{ margin-top:clamp(14px,1.8vw,24px); }
.ticks{ --tick-line:var(--rule); margin-top:30px; display:grid; gap:0; }
.ticks li{
  padding:13px 0; border-top:1px solid var(--tick-line);
  display:flex; gap:12px; align-items:center;
}
.ticks li::before{ content:"◼"; font-size:8px; color:var(--hazard); }
.ticks li:last-child{ border-bottom:1px solid var(--tick-line); }
.sect--signal .ticks{ --tick-line:rgba(255,255,255,.28); }
.sect--dark .ticks{ --tick-line:rgba(233,230,223,.2); }
.sect--signal .ticks li::before{ color:inherit; opacity:.7; }
.plate--vest .plate__img{
  background:linear-gradient(140deg,#1a0a06,#2a0d05 60%,#120604);
}
.plate--vest figcaption{ color:rgba(255,255,255,.62); }

/* ── tonal section ─────────────────────────────────────── */
.sect--tone{ background:var(--bone-2); }

/* ── steps ─────────────────────────────────────────────── */
/* what you get — an indexed row list, not a fourth 4-up grid */
.deal{ border-top:1px solid rgba(233,230,223,.2); }
.deal__row{
  display:grid;
  grid-template-columns:56px minmax(240px,1.05fr) 1.15fr;
  gap:clamp(14px,3vw,44px); align-items:baseline;
  padding:24px 0 26px;
  border-bottom:1px solid rgba(233,230,223,.2);
  position:relative;
  transition:padding-left .5s var(--ease);
}
.deal__row::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:2px;
  background:var(--hazard);
  transform:scaleY(0); transform-origin:50% 0;
  transition:transform .5s var(--ease);
}
.deal__row:hover{ padding-left:18px; }
.deal__row:hover::before{ transform:scaleY(1); }
.deal__n{ color:var(--hazard); font-size:12px; font-weight:700; }
.deal__title{
  font-size:clamp(21px,2.5vw,36px); font-weight:700;
  letter-spacing:-.035em; line-height:1.02;
}
.deal__desc{
  font-size:15.5px; line-height:1.55;
  color:rgba(233,230,223,.62); max-width:48ch;
}
.pull{
  margin-top:clamp(30px,4vw,44px); padding-left:22px;
  border-left:2px solid var(--hazard);
  font-size:clamp(17px,1.6vw,23px); line-height:1.4;
  letter-spacing:-.015em; color:var(--ink); max-width:44ch;
}
.sect--dark .pull{ color:var(--bone); }
/* section tail — pull-quote and fine print share one ruled row */
.sect__foot{
  display:grid; grid-template-columns:1.15fr .85fr;
  gap:clamp(24px,5vw,80px); align-items:start;
  margin-top:clamp(26px,3.4vw,38px);
}
.sect__foot .pull{ margin-top:0; }
.sect__foot > .fineprint:only-child{ grid-column:2; }
.fineprint{
  color:rgba(233,230,223,.55);
  line-height:1.95; max-width:none;
}

/* ── reserve ───────────────────────────────────────────── */
.sect--reserve{
  background:var(--bone);
  border-top:1px solid var(--ink);
}
.reserve{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(32px,6vw,100px); align-items:start;
}
.reserve__left{ position:sticky; top:100px; }
/* why claim it now — four big reasons, no boxes */
.why{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:clamp(20px,3.4vw,52px);
  margin-top:clamp(22px,2.8vw,34px);
  padding-top:clamp(20px,2.6vw,32px);
  border-top:1px solid rgba(233,230,223,.2);
}
.why__k{
  display:block; color:var(--hazard);
  font-size:clamp(24px,3vw,46px); font-weight:700;
  letter-spacing:-.045em; line-height:.9;
  margin-bottom:clamp(12px,1.6vw,20px);
}
.why__v{
  font-size:clamp(14.5px,1.15vw,16.5px); line-height:1.5;
  color:rgba(233,230,223,.62); max-width:34ch;
}
.reserve__note b{ color:var(--hazard); font-weight:700; }

.form{ display:grid; grid-template-columns:1fr 1fr; gap:0 20px; }
.field{ grid-column:1/-1; display:flex; flex-direction:column; gap:8px; padding-bottom:22px; }
.field--half{ grid-column:span 1; }
.field label{ color:var(--dim); }
.field input,.select-wrap select{
  width:100%; background:transparent; border:0;
  border-bottom:1px solid var(--ink);
  padding:9px 0 11px;
  font-size:17px; letter-spacing:-.01em;
  border-radius:0; -webkit-appearance:none; appearance:none;
  transition:border-color .3s var(--ease);
}
.field input::placeholder{ color:rgba(10,10,10,.28); }
.field input:focus,.select-wrap select:focus{
  outline:0; border-bottom-color:var(--hazard);
}
.select-wrap{ position:relative; }
.select-wrap::after{
  content:"↓"; position:absolute; right:2px; top:9px; pointer-events:none;
  font-family:var(--mono); font-size:13px; color:var(--dim);
}

.check{
  grid-column:1/-1; display:flex; gap:12px; align-items:flex-start;
  padding:6px 0 26px; cursor:pointer;
}
.check input{ position:absolute; opacity:0; width:0; height:0; }
.check__box{
  width:16px; height:16px; flex:none; margin-top:1px;
  border:1px solid var(--ink); position:relative;
  transition:background .25s var(--ease);
}
.check input:checked + .check__box{ background:var(--hazard); border-color:var(--hazard); }
.check input:checked + .check__box::after{
  content:""; position:absolute; left:4px; top:1px;
  width:5px; height:9px; border:solid #fff; border-width:0 1.5px 1.5px 0;
  transform:rotate(45deg);
}
.check input:focus-visible + .check__box{ outline:2px solid var(--hazard); outline-offset:2px; }
.check__text{ line-height:1.6; color:rgba(10,10,10,.66); max-width:52ch; }

.form .btn{ grid-column:1/-1; }
.form__legal{ grid-column:1/-1; margin-top:12px; line-height:1.7; }

/* ── panel states ──────────────────────────────────────── */
.panel{ position:relative; }
.state[hidden]{ display:none; }
.state{ animation:statein .8s var(--ease) both; }
@keyframes statein{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }

/* ── waitlist fallback ─────────────────────────────────── */
.waitlist{ margin-top:30px; padding-top:22px; border-top:1px solid var(--rule); }
.waitlist__toggle{
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  width:100%; padding:0; background:none; border:0; cursor:pointer;
  text-align:left; color:var(--dim);
  transition:color .3s var(--ease);
}
.waitlist__toggle:hover{ color:rgba(10,10,10,.8); }
.waitlist__toggle b{
  color:var(--ink); font-weight:700; flex:none;
  display:inline-flex; align-items:center; gap:8px;
}
.waitlist__toggle i{ font-style:normal; transition:transform .4s var(--ease); }
.waitlist__toggle:hover i{ transform:translateX(5px); }
.waitlist__toggle[aria-expanded="true"] i{ transform:rotate(90deg); }

.waitlist__form{ margin-top:18px; animation:statein .5s var(--ease) both; }
.waitlist__form p{ line-height:1.75; margin-bottom:14px; max-width:52ch; }
.waitlist__row{ display:flex; gap:10px; }
.waitlist__row input{
  flex:1; min-width:0; background:transparent; border:0;
  border-bottom:1px solid var(--ink); border-radius:0;
  padding:8px 0 10px; font-size:16px; letter-spacing:-.01em;
  transition:border-color .3s var(--ease);
}
.waitlist__row input::placeholder{ color:rgba(10,10,10,.28); }
.waitlist__row input:focus{ outline:0; border-bottom-color:var(--hazard); }
.waitlist__row button{
  flex:none; padding:0 22px; cursor:pointer;
  background:var(--ink); color:var(--bone); border:1px solid var(--ink);
  letter-spacing:.13em; font-weight:600;
  transition:background .3s var(--ease), border-color .3s var(--ease);
}
.waitlist__row button:hover{ background:var(--hazard); border-color:var(--hazard); color:#fff; }
.waitlist__done{ margin-top:16px; color:var(--hazard); letter-spacing:.1em; }

/* ── confirmation stub ─────────────────────────────────── */
.stub{
  background:var(--ink); color:var(--bone);
  padding:22px 24px 18px; position:relative; overflow:hidden;
}
.stub::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(90% 120% at 88% -10%, rgba(255,59,21,.34), transparent 62%);
}
.stub::after{
  content:""; position:absolute; inset:0; opacity:.6;
  background:repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 46px);
}
.stub > *{ position:relative; z-index:1; }
.stub__row{ display:flex; justify-content:space-between; gap:14px; }
.stub__row span{ color:rgba(233,230,223,.55); }
.stub__row span:first-child{ color:var(--bone); }
.stub__num{ display:flex; align-items:flex-end; gap:16px; padding:30px 0 26px; }
.stub__num > .mono{ color:rgba(233,230,223,.45); padding-bottom:14px; }
.stub__num b{
  display:flex; align-items:flex-start; color:var(--hazard);
  font-size:clamp(66px,11.5vw,126px); font-weight:700;
  letter-spacing:-.055em; line-height:.78;
}
.stub__num b i{
  font-style:normal; font-size:.3em; letter-spacing:0;
  padding:.22em .12em 0 0; opacity:.75;
}
.stub__perf{
  border-top:2px dashed rgba(233,230,223,.26);
  margin:0 -24px 16px; position:relative;
}
.stub__perf::before,.stub__perf::after{
  content:""; position:absolute; top:-11px; width:20px; height:20px;
  border-radius:50%; background:var(--bone);
}
.stub__perf::before{ left:-10px; }
.stub__perf::after{ right:-10px; }
.stub__of{ text-align:right; }

.confirm__lede{
  margin-top:26px; font-size:16.5px; line-height:1.55;
  letter-spacing:-.01em; color:rgba(10,10,10,.74); max-width:50ch;
}

/* ── share / referral ──────────────────────────────────── */
.share{ margin-top:30px; padding-top:24px; border-top:1px solid var(--rule); }
.share p{ line-height:1.75; }
.share__row{ display:flex; flex-wrap:wrap; gap:8px; margin:18px 0 14px; }
.share__note{ line-height:1.75; }

.chip{
  position:relative; overflow:hidden; cursor:pointer;
  padding:13px 19px; background:transparent; color:var(--ink);
  border:1px solid var(--ink); border-radius:0;
  letter-spacing:.13em; font-weight:600;
  transition:color .35s var(--ease), border-color .35s var(--ease);
}
.chip span{ position:relative; z-index:1; }
.chip::before{
  content:""; position:absolute; inset:0; background:var(--ink);
  transform:translateY(101%); transition:transform .45s var(--ease);
}
.chip:hover{ color:var(--bone); }
.chip:hover::before{ transform:translateY(0); }
.chip--solid{ background:var(--ink); color:var(--bone); }
.chip--solid::before{ background:var(--hazard); }
.chip--solid:hover{ color:#fff; border-color:var(--hazard); }
.chip.is-done{ border-color:var(--hazard); color:var(--hazard); }
.chip.is-done::before{ transform:translateY(101%); }

/* ── post-deposit onboarding ───────────────────────────── */
.onboard{
  margin-top:30px; padding-top:24px; border-top:1px solid var(--rule);
  display:grid; grid-template-columns:1fr 1fr; gap:0 20px;
}
.onboard__head{ grid-column:1/-1; color:var(--hazard); margin-bottom:20px; }
.onboard .chip{ grid-column:1/-1; justify-self:start; }
.onboard__done{ grid-column:1/-1; margin-top:16px; color:var(--hazard); letter-spacing:.1em; }

/* ── faq ───────────────────────────────────────────────── */
.faq{ margin-top:clamp(28px,4vw,54px); border-top:1px solid var(--rule); }
.qa{ border-bottom:1px solid var(--rule); }
.qa summary{
  list-style:none; cursor:pointer; padding:22px 40px 24px 0;
  display:flex; gap:clamp(16px,3vw,44px); align-items:baseline;
  font-size:clamp(17px,1.8vw,26px); font-weight:600; letter-spacing:-.025em;
  position:relative; transition:color .3s var(--ease);
}
.qa summary::-webkit-details-marker{ display:none; }
.qa summary span{ color:var(--dim); flex:none; }
.qa summary::after{
  content:"+"; position:absolute; right:0; top:22px;
  font-family:var(--mono); font-size:20px; font-weight:400; color:var(--hazard);
  transition:transform .4s var(--ease);
}
.qa[open] summary::after{ transform:rotate(45deg); }
.qa summary:hover{ color:var(--hazard); }
.qa p{
  padding:0 clamp(40px,10vw,180px) 30px clamp(32px,6vw,90px);
  font-size:15.5px; line-height:1.6; color:rgba(10,10,10,.68); max-width:78ch;
}

/* ── closer ────────────────────────────────────────────── */
.closer{
  background:var(--ink); color:var(--bone);
  padding:clamp(70px,11vw,150px) var(--gut) clamp(60px,9vw,120px);
  text-align:center; position:relative; overflow:hidden;
}
.closer > *{ position:relative; }
.closer__type{
  font-size:clamp(56px,15vw,230px); font-weight:700;
  letter-spacing:-.05em; line-height:.86; text-transform:uppercase;
  margin:18px 0 40px;
}
.closer .btn{ min-width:320px; justify-content:center; }

/* ── footer ────────────────────────────────────────────── */
.foot{
  background:var(--ink); color:var(--bone);
  border-top:1px solid rgba(233,230,223,.16);
  padding:38px var(--gut) 42px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.foot__col{ display:flex; flex-direction:column; gap:6px; }
.foot__col--end{ align-items:flex-end; text-align:right; }
.foot__label{ margin-bottom:8px; }
.foot a{ transition:color .3s var(--ease); }
.foot a:hover{ color:var(--hazard); }
.foot .tag b{ font-weight:700; }

/* ── motion / reveal ───────────────────────────────────── */
[data-reveal]{
  opacity:0; transform:translateY(26px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in{ opacity:1; transform:none; }

[data-split] em,[data-split].closer__type{
  display:block;
  transform:translateY(110%);
  transition:transform 1.1s var(--ease);
}
.hero .line em{ transition-delay:.1s; }
.hero .line--two em{ transition-delay:.22s; }
body.loaded .hero [data-split] em{ transform:none; }
.closer__type{ overflow:hidden; }
.closer__type.in{ transform:none; }

/* ── responsive ────────────────────────────────────────── */
@media (max-width:1080px){
  .specs{ grid-template-columns:repeat(2,1fr); }
  .spec:nth-child(4n){ border-right:1px solid var(--sp-line); }
  .spec:nth-child(2n){ border-right:0; }
  .deal__row{ grid-template-columns:44px 1fr; }
  .deal__desc{ grid-column:2; padding-top:8px; }
}
@media (max-width:860px){
  :root{ --rail:0px; }
  .masthead{ grid-template-columns:1fr 1fr; }
  .masthead__col--center{ display:none; }
  .nav-line{ display:none; }
  .hero__foot{ grid-template-columns:1fr; align-items:start; gap:26px; }
  .hero__cta{ align-items:stretch; }
  .btn{ min-width:0; }
  .sect--split{ grid-template-columns:1fr; }
  .sect--split .sect__rail{ position:static; flex-direction:row; margin-bottom:22px; }
  .sect__head{ grid-template-columns:1fr; align-items:start; }
  .duo,.vest,.reserve,.sect__foot{ grid-template-columns:1fr; }
  .cycle{ grid-template-columns:1fr; }
  .cycle__step{ border-right:0; padding-left:0; padding-right:0; }

  .reserve__left{ position:static; }
  .foot{ grid-template-columns:1fr 1fr; gap:30px 20px; }
  .foot__col--end{ align-items:flex-start; text-align:left; }
}
@media (max-width:520px){
  .btn{ flex-direction:column; align-items:flex-start; gap:5px; }
  .btn__price{ opacity:.85; }
  .field--half{ grid-column:1/-1; }

  /* the hero was spreading itself thin over a full viewport height */
  .hero{ min-height:86svh; padding-top:calc(var(--head-h) + 12px); }
  .hero__type{ margin-top:clamp(16px,3vh,34px); }
  .hero__foot{ padding-top:16px; }
  .hero__lede .lede{ margin-bottom:12px; }

  /* these four lines are the offer — they were set as fine print */
  .why{ grid-template-columns:1fr 1fr; gap:24px 20px; }

  /* four stacked spec rows ate half a screen; two up halves it */
  .specs{ grid-template-columns:1fr 1fr; }
  .spec{ padding:15px 14px 19px; }
  .spec:nth-child(odd){ border-right:1px solid var(--sp-line); }
  .spec:nth-child(even){ border-right:0; }
  .spec dt{ margin-bottom:10px; }
  .spec dd{ font-size:clamp(18px,5.4vw,26px); white-space:nowrap; }
  .spec dd.dd--text{ font-size:clamp(16px,4.6vw,22px); }
}

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