/* ============================================================
   CEASELESS ($CEASELESS)
   Art direction: achromatic. Void black field, bone type.
   The ONLY colour on this site is the artwork's own, plus the
   cold steel of the water it came out of. No brand accent hue —
   the bar took the colour. Breakthrough is where light returns.
   ============================================================ */

:root{
  /* field + surfaces */
  --void:      #050608;   /* the page. the same black as the bar. */
  --slab:      #0b0d10;   /* a covering laid ON the page */
  --slab-hi:   #14181d;   /* raised card */
  --abyss:     #071119;   /* deep sea band */
  --deep:      #0b2130;   /* sea, lit from above */

  /* type */
  --bone:      #f2ece0;   /* the light that gets through */
  --bone-2:    #b6b0a4;
  --bone-3:    #8c877c;
  --dim:       #7d786e;   /* ≥4.5:1 on --void; warm-derived, never neutral grey */

  /* the one hue: water. never a UI accent. */
  --steel:     #7fa8c4;
  --steel-dim: rgba(127,168,196,.35);

  --hair:      rgba(242,236,224,.13);
  --hair-2:    rgba(242,236,224,.07);

  --ff-disp: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --ff-body: 'Be Vietnam Pro', ui-sans-serif, system-ui, sans-serif;
  --ff-mono: 'Overpass Mono', ui-monospace, 'SFMono-Regular', monospace;

  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-slab: cubic-bezier(.16,1,.3,1);
}
*,*::before,*::after{ box-sizing:border-box; }

/* A rounded corner anywhere collapses the register from "classified"
   to "startup landing page". Nothing on this site is rounded except
   the one telemetry dot, which opts back in explicitly. */
button,input,a.btn,.btn,.ca,.plate,.stat,.step,.rit,.gauge,.tele,.redact__bar,.seal::after{
  border-radius:0;
}

html{
  overflow-x:clip;
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}
html.no-motion{ scroll-behavior:auto; }

body{
  margin:0;
  background:var(--void);
  color:var(--bone);
  font-family:var(--ff-body);
  font-size:clamp(15px,1.02vw,17px);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
body.locked{ overflow:hidden; }

img,svg,canvas{ max-width:100%; display:block; }
a{ color:inherit; }

::selection{ background:var(--bone); color:var(--void); }

/* custom scrollbar — a thin bar, of course */
/* warm-derived, so it never reads dirty next to the bone */
*{ scrollbar-width:thin; scrollbar-color:#2e2b26 var(--void); }
*::-webkit-scrollbar{ width:10px;height:10px; }
*::-webkit-scrollbar-track{ background:var(--void); }
*::-webkit-scrollbar-thumb{ background:#2e2b26; border:3px solid var(--void); border-radius:0; }
*::-webkit-scrollbar-thumb:hover{ background:#454037; }

:where(a,button,[tabindex]):focus-visible{
  outline:2px solid var(--bone);
  outline-offset:3px;
}

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--pad); }

.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--bone); color:var(--void); padding:10px 16px; font-weight:600;
}
.skip:focus{ left:8px; top:8px; }

.mono{ font-family:var(--ff-mono); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; }

/* ── grain: the only texture on an achromatic page ───────── */
.grain{
  position:fixed; inset:-50%; z-index:90; pointer-events:none; opacity:.055;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation:grainShift 7s steps(6) infinite;
}
@keyframes grainShift{
  0%{transform:translate(0,0)} 16%{transform:translate(-3%,2%)} 33%{transform:translate(2%,-3%)}
  50%{transform:translate(-2%,-2%)} 66%{transform:translate(3%,1%)} 83%{transform:translate(-1%,3%)}
  100%{transform:translate(0,0)}
}
.no-motion .grain{ animation:none; }

/* ══ PRELOADER — one slab, split down the middle ══════════ */
.pre{ position:fixed; inset:0; z-index:180; pointer-events:none; }
.pre__half{ position:absolute; left:0; width:100%; height:50.5%; background:var(--void);
  transition:transform 1.05s var(--ease-slab); will-change:transform; }
.pre__half--t{ top:0; }
.pre__half--b{ bottom:0; }
.pre__seam{
  position:absolute; left:50%; top:50%; width:0; height:2px;
  transform:translate(-50%,-50%); background:var(--bone);
  box-shadow:0 0 26px 3px rgba(242,236,224,.5);
  transition:width .7s var(--ease), opacity .4s ease;
}
.pre__word{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  font-family:var(--ff-disp); font-weight:800; font-size:clamp(30px,7vw,74px);
  letter-spacing:.3em; text-indent:.3em; color:var(--bone);
  opacity:0; transition:opacity .5s ease;
}
.pre.is-armed .pre__seam{ width:min(74vw,620px); }
.pre.is-armed .pre__word{ opacity:1; }
.pre.is-done .pre__half--t{ transform:translateY(-100%); }
.pre.is-done .pre__half--b{ transform:translateY(100%); }
.pre.is-done .pre__seam,.pre.is-done .pre__word{ opacity:0; }
.pre.is-gone{ display:none; }

/* ══ SCROLL SPLIT — the top bar parts as you read ═════════ */
.split{ position:fixed; top:0; left:0; width:100%; height:3px; z-index:120; pointer-events:none;
  background:var(--bone); }
.split__half{ position:absolute; top:0; height:100%; width:50.2%; background:var(--void);
  border-bottom:1px solid rgba(242,236,224,.1); }
.split__half--l{ left:0; transform-origin:left center; }
.split__half--r{ right:0; transform-origin:right center; }

/* ══ NAV ══════════════════════════════════════════════════ */
.nav{
  position:sticky; top:0; z-index:110;
  background:rgba(5,6,8,.86);
  border-bottom:1px solid var(--hair-2);
  /* NOTE: no backdrop-filter — it would make this the containing
     block for the fixed burger panel. Panel is absolute instead. */
}
.nav__in{ display:flex; align-items:center; gap:22px; height:66px; }

.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; flex:0 0 auto; }
.brand__bar{ width:22px; height:11px; background:var(--bone); flex:0 0 auto;
  transition:width .35s var(--ease-slab); }
.brand:hover .brand__bar{ width:9px; }
.brand__word{ font-family:var(--ff-disp); font-weight:800; font-size:1.42rem;
  letter-spacing:.13em; line-height:1; }

.nav__links{ display:flex; gap:26px; margin-left:auto; }
.nav__links a{
  text-decoration:none; font-size:.83rem; font-weight:500; letter-spacing:.05em;
  color:var(--bone-2); position:relative; padding:6px 0;
}
.nav__links a::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--bone);
  transition:width .3s var(--ease);
}
.nav__links a:hover{ color:var(--bone); }
.nav__links a:hover::after{ width:100%; }

.nav__right{ display:flex; align-items:center; gap:12px; flex:0 0 auto; }
.nav__buy{ padding:9px 18px; font-size:.76rem; }

.burger{ display:none; width:40px; height:36px; background:none; border:1px solid var(--hair);
  cursor:pointer; padding:0; place-items:center; }
.burger span{ display:block; width:17px; height:2px; background:var(--bone); margin:2.5px auto;
  transition:transform .3s var(--ease), opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(4.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-4.5px) rotate(-45deg); }

/* ══ BUTTONS ══════════════════════════════════════════════ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:13px 26px; border:1px solid var(--bone); background:transparent; color:var(--bone);
  font-family:var(--ff-body); font-weight:600; font-size:.86rem; letter-spacing:.04em;
  text-decoration:none; cursor:pointer; position:relative; overflow:hidden;
  transition:color .32s var(--ease), border-color .32s var(--ease);
}
.btn::before{
  content:''; position:absolute; inset:0; background:var(--bone);
  transform:scaleY(0); transform-origin:bottom; transition:transform .34s var(--ease-slab);
}
.btn>*{ position:relative; z-index:1; }
.btn:hover{ color:var(--void); }
.btn:hover::before{ transform:scaleY(1); transform-origin:top; }

.btn--solid{ background:var(--bone); color:var(--void); border-color:var(--bone); }
.btn--solid::before{ background:var(--void); }
.btn--solid:hover{ color:var(--bone); }
.btn--lg{ padding:17px 38px; font-size:.95rem; }
.btn--sm{ padding:10px 18px; font-size:.76rem; }
.btn--ghost{ border-color:var(--hair); color:var(--bone-2); }
.btn--ghost:hover{ color:var(--void); }
.btn--icon{ padding:13px 15px; }
.btn--icon img{ filter:brightness(0) invert(1); transition:filter .32s; }
.btn--icon:hover img{ filter:brightness(0); }

/* ══ SHARED SECTION FURNITURE ═════════════════════════════ */
.sec{ padding:clamp(76px,10vw,138px) 0; position:relative; }
.sec--deep{ background:
    radial-gradient(120% 90% at 50% 0%, var(--deep) 0%, var(--abyss) 46%, var(--void) 100%);
  border-block:1px solid var(--hair-2); }

.sec__head{ margin-bottom:clamp(38px,5vw,64px); max-width:820px; }
.sec__head--center{ margin-inline:auto; text-align:center; }
.sec__h2{
  font-family:var(--ff-disp); font-weight:800; margin:0;
  font-size:clamp(38px,6.4vw,84px); line-height:.93; letter-spacing:-.005em;
  text-transform:uppercase;
}
.sec__lede{ color:var(--bone-2); max-width:62ch; margin:20px 0 0; font-size:1.03rem; }
.sec__head--center .sec__lede{ margin-inline:auto; }

.kicker{
  display:flex; align-items:center; gap:10px; margin:0 0 18px;
  font-family:var(--ff-mono); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--bone-3);
}
.sec__head--center .kicker{ justify-content:center; }
.kicker--sm{ margin-bottom:0; }
.kicker__dot{ width:18px; height:7px; background:var(--bone); flex:0 0 auto; }

.arrow{ color:var(--bone-3); }

/* reveal on scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease-slab); }
.reveal.in{ opacity:1; transform:none; }
.no-motion .reveal{ opacity:1; transform:none; transition:none; }

/* ══ HERO ═════════════════════════════════════════════════ */
.hero{ position:relative; padding:clamp(48px,7vw,86px) 0 clamp(60px,8vw,104px); overflow:hidden; }
.hero__deep{ position:absolute; inset:0; width:100%; height:100%; z-index:0; opacity:.85; }
.hero__in{ position:relative; z-index:1; display:grid; gap:clamp(36px,5vw,68px);
  grid-template-columns:minmax(0,1.06fr) minmax(0,.94fr); align-items:center; }

.hero__h1{
  font-family:var(--ff-disp); font-weight:900; margin:0 0 24px;
  font-size:clamp(50px,9.4vw,132px); line-height:.86; letter-spacing:-.01em;
  text-transform:uppercase;
}
.hero__h1 .line{ display:block; }
.hero__h1 .line--out{ color:var(--bone); }

/* the redaction device — a bar in two halves that part */
.redact{
  position:relative; display:inline-block; cursor:pointer; vertical-align:baseline;
  padding-inline:.04em;
}
.redact__text{ position:relative; z-index:0; }
/* the halves retract INSIDE this box, so they never stray onto the
   words either side of the one they were covering */
.redact__clip{
  position:absolute; left:-.04em; right:-.04em; top:-.05em; height:1em;
  overflow:hidden; z-index:1; pointer-events:none;
}
.redact__bar{
  position:absolute; top:0; height:100%; width:50.6%; background:var(--bone);
  transition:transform .62s var(--ease-slab);
}
.redact__bar--l{ left:0; }
.redact__bar--r{ right:0; }
.redact.is-open .redact__bar--l{ transform:translateX(-100.5%); }
.redact.is-open .redact__bar--r{ transform:translateX(100.5%); }
.redact.is-shaking .redact__bar{ animation:barShake .38s steps(2) 2; }
@keyframes barShake{ 0%{transform:translateX(0)} 50%{transform:translateX(-2px)} 100%{transform:translateX(1px)} }
/* the crack that never fully closes again */
.redact[data-broken="1"] .redact__bar{ clip-path:polygon(0 0,100% 0,100% 44%,0 56%); }
.redact[data-broken="2"] .redact__bar{ clip-path:polygon(0 0,100% 0,100% 26%,0 38%); }
.no-motion .redact__bar{ transition:none; }

.hero__sub{ color:var(--bone-2); font-size:1.09rem; max-width:50ch; margin:0 0 30px; }

/* CA pill */
.ca{
  display:inline-flex; align-items:center; gap:0; border:1px solid var(--hair);
  background:var(--slab); margin-bottom:26px; cursor:pointer; max-width:100%;
  transition:border-color .3s var(--ease);
}
.ca:hover{ border-color:var(--bone-3); }
.ca__label{ font-family:var(--ff-mono); font-size:.68rem; letter-spacing:.16em;
  padding:11px 13px; background:var(--bone); color:var(--void); font-weight:600; }
/* min-width:0 is load-bearing: without it this flex item refuses to
   shrink below the full 44-char address and blows the pill past the
   viewport, where overflow-x silently clips the end of the CA. */
.ca__value{ font-family:var(--ff-mono); font-size:.8rem; padding:11px 14px; color:var(--bone-2);
  min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.ca__copy{ font-family:var(--ff-mono); font-size:.64rem; letter-spacing:.14em; padding:11px 14px;
  border-left:1px solid var(--hair); color:var(--bone-3); }
.ca:hover .ca__copy{ color:var(--bone); }

.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* hero art plate */
.plate{ margin:0; position:relative; border:1px solid var(--hair); background:var(--slab); overflow:hidden; }
.plate img{ width:100%; height:auto; }
.plate__scan{
  position:absolute; left:0; right:0; height:32%; pointer-events:none;
  background:linear-gradient(180deg,transparent,rgba(242,236,224,.055),transparent);
  animation:scanDrift 9s ease-in-out infinite;
}
@keyframes scanDrift{ 0%,100%{ transform:translateY(-40%) } 50%{ transform:translateY(230%) } }
.no-motion .plate__scan{ animation:none; opacity:.3; }
.plate__cap{
  display:flex; justify-content:space-between; gap:12px; align-items:center;
  padding:11px 14px; border-top:1px solid var(--hair);
  font-family:var(--ff-mono); font-size:.66rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--bone-3);
}

/* ══ MARQUEE — plain straight band, redacted words ════════ */
.marq{ border-block:1px solid var(--hair-2); background:var(--slab); overflow:hidden; padding:15px 0; }
.marq__track{ display:flex; gap:0; width:max-content; animation:marq 42s linear infinite; }
.no-motion .marq__track{ animation:none; }
@keyframes marq{ to{ transform:translateX(-50%) } }
.marq__item{
  font-family:var(--ff-disp); font-weight:800; font-size:1.32rem; letter-spacing:.16em;
  text-transform:uppercase; padding-inline:26px; white-space:nowrap; color:var(--bone);
  display:flex; align-items:center; gap:26px;
}
.marq__item::after{ content:''; width:7px; height:7px; background:var(--bone-3); flex:0 0 auto; }
.marq__blk{ display:inline-block; width:6.5em; height:.92em; background:var(--bone); }

/* ══ THE RECORD ═══════════════════════════════════════════ */
.record{ list-style:none; margin:0; padding:0; display:grid; gap:0; border-top:1px solid var(--hair); }
.rec{
  display:grid; grid-template-columns:76px minmax(0,1fr) minmax(0,1.25fr); gap:clamp(16px,3vw,40px);
  padding:clamp(26px,3.6vw,44px) 0; border-bottom:1px solid var(--hair); align-items:start;
}
.rec__no{ color:var(--bone-3); padding-top:.35em; }
.rec__h{ font-family:var(--ff-disp); font-weight:800; font-size:clamp(24px,2.9vw,40px);
  line-height:1; margin:0; text-transform:uppercase; }
.rec p{ margin:0; color:var(--bone-2); }
.record__coda{
  margin:clamp(34px,4vw,52px) 0 0; font-family:var(--ff-disp); font-weight:700;
  font-size:clamp(21px,2.9vw,36px); line-height:1.16; text-transform:uppercase; max-width:22ch;
}
.record__coda em{ font-style:normal; color:var(--bone-3); display:block; }

/* ══ THE SLAB ═════════════════════════════════════════════ */
.slab{ display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:clamp(24px,3.6vw,52px);
  align-items:start; }
.slab__stage{ position:relative; border:1px solid var(--hair); background:#000; overflow:hidden; }
#slabCanvas{ width:100%; height:auto; display:block; cursor:crosshair; touch-action:manipulation; }
.slab__hint{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  font-family:var(--ff-mono); font-size:.78rem; letter-spacing:.26em; color:rgba(242,236,224,.5);
  pointer-events:none; animation:hintPulse 2.6s ease-in-out infinite; text-align:center;
}
@keyframes hintPulse{ 0%,100%{opacity:.32} 50%{opacity:.85} }
.no-motion .slab__hint{ animation:none; }
.slab__hint.gone{ display:none; }
.slab__flash{ position:absolute; inset:0; background:var(--bone); opacity:0; pointer-events:none;
  transition:opacity .5s ease; }
.slab__flash.on{ opacity:.82; transition:opacity .06s ease; }

.slab__side{ display:flex; flex-direction:column; gap:20px; }
.gauge{ border:1px solid var(--hair); background:var(--slab); padding:16px 18px; }
.gauge__label{ margin:0 0 6px; color:var(--bone-3); }
.gauge__val{ font-family:var(--ff-disp); font-weight:800; font-size:2.5rem; line-height:1; margin:0;
  font-variant-numeric:tabular-nums; }
.gauge__val span{ font-size:1.1rem; color:var(--bone-3); margin-left:2px; }
.gauge--sm .gauge__val{ font-size:1.7rem; }
.gauge__track{ height:5px; background:rgba(242,236,224,.1); margin-top:12px; }
.gauge__fill{ height:100%; width:0; background:var(--bone); transition:width .4s var(--ease); }
.slab__verdict{ margin:0; color:var(--bone-2); font-size:.92rem; min-height:2.8em; }
.slab__ctrls{ display:flex; gap:10px; flex-wrap:wrap; }
.slab__note{ margin:0; color:var(--dim); line-height:1.7; }

/* ══ THE RITUAL ═══════════════════════════════════════════ */
.ritual{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:clamp(14px,2vw,26px); }
.rit{ border:1px solid var(--hair); background:var(--slab); padding:0 0 24px; }
.rit__vis{ position:relative; height:132px; overflow:hidden;
  background-image:url('../assets/logo.webp'); background-size:cover; background-position:center 30%; }
/* Two bands with a torn inner edge. The gap between them widens
   beat by beat — the covering giving way, not a wipe. */
.rit__cover{ position:absolute; left:-1px; right:-1px; background:var(--void); }
.rit__cover--t{ top:0; }
.rit__cover--b{ bottom:0; }

.rit__vis--1 .rit__cover--t{ height:100%; }
.rit__vis--1 .rit__cover--b{ height:0; }

.rit__vis--2 .rit__cover--t{ height:48%;
  clip-path:polygon(0 0,100% 0,100% 86%,78% 100%,55% 82%,31% 97%,0 84%); }
.rit__vis--2 .rit__cover--b{ height:46%;
  clip-path:polygon(0 16%,25% 2%,51% 19%,77% 3%,100% 14%,100% 100%,0 100%); }

.rit__vis--3 .rit__cover--t{ height:27%;
  clip-path:polygon(0 0,100% 0,100% 74%,73% 100%,45% 72%,21% 95%,0 70%); }
.rit__vis--3 .rit__cover--b{ height:26%;
  clip-path:polygon(0 30%,23% 3%,49% 33%,75% 5%,100% 25%,100% 100%,0 100%); }

.rit__vis--4 .rit__cover--t,.rit__vis--4 .rit__cover--b{ height:0; }
.rit__no{ color:var(--bone-3); margin:20px 20px 8px; }
.rit__h{ font-family:var(--ff-disp); font-weight:800; font-size:1.62rem; line-height:1;
  margin:0 20px 10px; text-transform:uppercase; }
.rit p:not(.rit__no){ margin:0 20px; color:var(--bone-2); font-size:.93rem; }
.ritual__note{ margin:clamp(24px,3vw,34px) 0 0; color:var(--bone-3); line-height:1.9;
  max-width:78ch; border-left:2px solid var(--hair); padding-left:16px; }

/* ══ SUPPLY — slabs that crack open ═══════════════════════ */
.stats{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:clamp(12px,1.8vw,20px); }
.stat{ position:relative; border:1px solid var(--hair); background:var(--slab-hi);
  padding:clamp(24px,3vw,34px) clamp(18px,2vw,26px); overflow:hidden; }
.stat__cover{
  position:absolute; inset:0; background:var(--void); z-index:2;
  transition:clip-path .85s var(--ease-slab), opacity .5s ease .35s;
  clip-path:polygon(0 0,100% 0,100% 100%,0 100%);
}
.stat.in .stat__cover{
  clip-path:polygon(0 0,100% 0,100% 0,58% 6%,62% 0,0 0);
  opacity:0;
}
.no-motion .stat__cover{ display:none; }
.stat__val{ font-family:var(--ff-disp); font-weight:900; font-size:clamp(26px,2.8vw,38px);
  line-height:1; margin:0 0 10px; font-variant-numeric:tabular-nums;
  white-space:nowrap; letter-spacing:-.01em; }
.stat__key{ margin:0; color:var(--bone-3); }

/* ── telemetry ── */
.tele{ margin-top:clamp(28px,3.6vw,44px); border:1px solid var(--hair); background:var(--slab);
  padding:clamp(20px,2.6vw,28px); }
.tele__head{ display:flex; justify-content:space-between; gap:16px; align-items:center;
  padding-bottom:16px; border-bottom:1px solid var(--hair-2); margin-bottom:20px; }
.tele .kicker__dot{ width:8px; height:8px; border-radius:50%; background:var(--bone-3);
  transition:background .4s ease, box-shadow .4s ease; }
.tele[data-state="live"] .kicker__dot{ background:var(--steel);
  box-shadow:0 0 0 0 var(--steel-dim); animation:pip 2s ease-out infinite; }
@keyframes pip{ to{ box-shadow:0 0 0 9px rgba(127,168,196,0) } }
.no-motion .tele .kicker__dot{ animation:none; }
.tele__grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:clamp(14px,2vw,24px); }
.tele__k{ margin:0 0 5px; color:var(--bone-3); }
.tele__v{ font-family:var(--ff-disp); font-weight:800; font-size:clamp(21px,2.3vw,32px);
  line-height:1; margin:0; font-variant-numeric:tabular-nums; }
.tele__v.up{ color:var(--bone); }
.tele__v.down{ color:var(--bone-3); }
.tele__note{ margin:18px 0 0; color:var(--dim); }

/* ══ HOW TO BUY ═══════════════════════════════════════════ */
.steps{ list-style:none; margin:0; padding:0; display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr)); gap:clamp(12px,1.8vw,20px); }
.step{ border:1px solid var(--hair); background:var(--slab); padding:clamp(22px,2.6vw,30px);
  position:relative; transition:background .3s var(--ease), border-color .3s var(--ease); }
.step:hover{ background:var(--slab-hi); border-color:var(--bone-3); }
.step__no{ color:var(--bone-3); display:block; margin-bottom:20px; }
/* every brand mark is flattened to bone — nothing on this page
   gets to keep its own colour except the photograph */
.step__ico{ width:26px; height:26px; margin-bottom:14px;
  filter:brightness(0) invert(1); opacity:.82;
  transition:opacity .3s var(--ease); }
.step:hover .step__ico{ opacity:1; }
.step__h{ font-family:var(--ff-disp); font-weight:800; font-size:1.5rem; line-height:1.02;
  margin:0 0 9px; text-transform:uppercase; }
.step p{ margin:0; color:var(--bone-2); font-size:.92rem; }

/* ══ CHAPTERS ═════════════════════════════════════════════ */
.chaps{ list-style:none; margin:0; padding:0; display:grid; gap:0; border-top:1px solid var(--hair); }
.chap{ display:grid; grid-template-columns:150px minmax(0,1fr) minmax(0,1.1fr) 130px;
  gap:clamp(14px,2.6vw,32px); align-items:center;
  padding:clamp(22px,3vw,34px) 0; border-bottom:1px solid var(--hair); }
.chap__no{ margin:0; color:var(--bone-3); }
.chap__h{ font-family:var(--ff-disp); font-weight:800; font-size:clamp(21px,2.5vw,32px);
  line-height:1; margin:0; text-transform:uppercase; }
.chap__d{ margin:0; color:var(--bone-2); font-size:.93rem; }
.chap__s{ margin:0; text-align:right; color:var(--bone-3); }
.chap--open .chap__s{ color:var(--bone); }
.chap--forever .chap__s{ color:var(--steel); }
/* sealed chapters are literally still covered */
.seal{ position:relative; display:inline-block; color:transparent; user-select:none; }
.seal::after{ content:''; position:absolute; left:-.12em; right:-.12em; top:.06em; bottom:.14em;
  background:var(--bone-3); opacity:.55; }
.chap--sealed:hover .seal::after{ opacity:.72; }

/* ══ CTA ══════════════════════════════════════════════════ */
.cta{ padding:clamp(76px,10vw,132px) 0; border-top:1px solid var(--hair);
  background:radial-gradient(90% 130% at 50% 100%, var(--deep) 0%, var(--void) 62%); }
.cta__in{ text-align:center; }
.cta__h{ font-family:var(--ff-disp); font-weight:900; margin:0 0 34px;
  font-size:clamp(40px,7.6vw,104px); line-height:.9; text-transform:uppercase; }
.cta__actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ══ FOOTER ═══════════════════════════════════════════════ */
.foot{ border-top:1px solid var(--hair); padding:clamp(40px,5vw,64px) 0; background:var(--void); }
.foot__in{ display:grid; gap:22px; }
.foot__brand{ display:flex; align-items:center; gap:10px; }
.foot__dis{ margin:0; color:var(--bone-3); font-size:.82rem; line-height:1.75; max-width:88ch; }
.foot__c{ margin:0; color:var(--bone-3); }

/* ══ TOAST ════════════════════════════════════════════════ */
.toast{
  position:fixed; left:50%; bottom:26px; transform:translate(-50%,140%); z-index:170;
  background:var(--bone); color:var(--void); padding:13px 22px; max-width:min(90vw,460px);
  font-weight:600; font-size:.88rem; text-align:center; pointer-events:none;
  transition:transform .45s var(--ease-slab);
}
.toast.on{ transform:translate(-50%,0); }

/* ══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width:1080px){
  .hero__in{ grid-template-columns:1fr; }
  .hero__art{ order:-1; max-width:440px; }
  .slab{ grid-template-columns:1fr; }
  .slab__side{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); }
  .slab__verdict,.slab__ctrls,.slab__note{ grid-column:1/-1; }
  .ritual,.stats,.steps{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .chap{ grid-template-columns:120px minmax(0,1fr) 120px; }
  .chap__d{ grid-column:1/-1; }
}
@media (max-width:860px){
  .nav__links{
    position:absolute; top:100%; left:0; right:0;
    display:none; flex-direction:column; gap:0;
    background:var(--void); border-bottom:1px solid var(--hair);
    padding:10px var(--pad) 20px;
  }
  .nav__links.open{ display:flex; }
  .nav__links a{ padding:14px 0; border-bottom:1px solid var(--hair-2); font-size:.98rem; }
  .nav__links a::after{ display:none; }
  .burger{ display:grid; }
  .nav__buy{ display:none; }
  .rec{ grid-template-columns:52px minmax(0,1fr); }
  .rec p{ grid-column:2; }
  .tele__grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:600px){
  .ritual,.stats,.steps{ grid-template-columns:1fr; }
  .slab__side{ grid-template-columns:1fr; }
  .chap{ grid-template-columns:1fr; gap:8px; }
  .chap__s{ text-align:left; }
  /* on a phone the address wraps rather than ellipsising — people
     verify a CA character by character before they paste it */
  .ca{ width:100%; max-width:100%; }
  .ca__value{ font-size:.7rem; white-space:normal; word-break:break-all;
    text-overflow:clip; line-height:1.55; }
  .hero__actions .btn{ flex:1 1 auto; }
}

/* ══ MOTION PREFERENCE ════════════════════════════════════
   The OS on the build machine has reduce-motion ON, so ?motion=force
   re-enables everything for testing. Real visitors get their choice. */
@media (prefers-reduced-motion:reduce){
  html:not(.motion-force) *{ animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ══ PRINT — the page goes back under the bar ═════════════ */
@media print{
  body{ background:#fff; color:#000; }
  .pre,.split,.grain,.toast,.nav,.hero__deep,.marq,.slab__side,.cta__actions,.hero__actions,.ca__copy{ display:none !important; }
  .sec,.hero,.cta{ padding:12px 0; }
  h1,h2,h3,p,li,figcaption,.stat__val,.chap__d,.rec p,
  .hero__h1 .line,.hero__h1 .line--out,.redact__text,.chap__s,.rit__no,.step__no,.rec__no{
    color:#000 !important;
  }
  /* the covered word stays covered on paper too */
  .redact__bar{ background:#000 !important; transform:none !important; }
  .ca{ background:#fff !important; border:1px solid #000 !important; }
  .ca__label{ background:#000 !important; color:#fff !important; }
  .ca__value{ color:#000 !important; }
  /* everything that isn't a heading gets covered on the way out */
  .rec p,.step p,.rit p,.chap__d,.hero__sub,.sec__lede,.stat__val,.tele,.record__coda{
    background:#000 !important; color:#000 !important;
  }
  .plate img,.rit__vis{ filter:grayscale(1) brightness(0); }
  .foot__dis{ color:#000 !important; background:none !important; font-size:9pt; }
  body::before{
    content:'THIS DOCUMENT HAS BEEN REDACTED FOR YOUR PROTECTION.';
    display:block; background:#000; color:#fff; padding:10px 14px; margin-bottom:14px;
    font-family:monospace; font-size:11pt; letter-spacing:.14em;
  }
  @page{ margin:14mm; }
}
