/* ============================================================
   FUSIONPILOT — design tokens
   ============================================================ */
:root{
  --ink:#0E1422;
  --ink-60:rgba(14,20,34,.62);
  --ink-40:rgba(14,20,34,.4);
  --ink-12:rgba(14,20,34,.12);
  --paper:#E9EDF3;
  --paper-2:#DFE5EF;
  --dark:#0B0F17;
  --dark-2:#070A10;
  --white:#F4F6FA;
  --white-60:rgba(244,246,250,.64);
  --white-12:rgba(244,246,250,.14);
  --accent:#2E45FF;
  --accent-soft:rgba(46,69,255,.12);
  --display:'Inter Tight',-apple-system,'Helvetica Neue',Arial,sans-serif;
  --body:'Inter',-apple-system,'Helvetica Neue',Arial,sans-serif;
  --pad:clamp(1.25rem,4.5vw,4.5rem);
  --navh:4.75rem;
  --r-pill:99rem;
  --ease:cubic-bezier(.65,.05,0,1);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
html,body{width:100%;}
body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
  line-height:1.55;
}
::selection{background:var(--accent);color:#fff}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:4px}
img,canvas,svg{display:block;max-width:100%}

/* ============================================================
   Fixed layers (back → front):
   bgLayer 0 · bgGrad 1 · bgCanvas 2 · wordLayer 3 · fgCanvas 4
   main 5 · grain 6 · nav 50 · cursor 80 · loader 100
   ============================================================ */
#bgLayer{position:fixed;inset:0;z-index:0;background:var(--paper)}
.bg-grad{position:fixed;inset:0;z-index:1;pointer-events:none;
  background:
    radial-gradient(42% 50% at 18% 12%, rgba(255,255,255,.5), transparent 70%),
    radial-gradient(50% 60% at 85% 80%, rgba(46,69,255,.05), transparent 70%);
  mix-blend-mode:soft-light}
#bgCanvas{position:fixed;inset:0;z-index:2;width:100%;height:100%;pointer-events:none}
#wordLayer{position:fixed;inset:0;z-index:3;pointer-events:none}
#fgCanvas{position:fixed;inset:0;z-index:4;width:100%;height:100%;pointer-events:none}
main{position:relative;z-index:5}
#grain{position:fixed;inset:-50%;z-index:6;pointer-events:none;opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E")}
html.no-webgl #bgCanvas, html.no-webgl #fgCanvas{display:none}

/* ============================================================
   Big-word layer (desktop layered mode only)
   ============================================================ */
#wordLayer{display:none}
html.layered #wordLayer{display:block}
.bw{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;will-change:transform,opacity}
.bw-text{font-family:var(--display);font-weight:900;line-height:.86;letter-spacing:-.035em;
  white-space:nowrap;text-transform:uppercase;will-change:transform;
  font-size:var(--ws,17vw)}
.bw[data-key="problem"]{--ws:15.2vw}
.bw[data-key="how"]    {--ws:18vw}
.bw[data-key="unlocks"]{--ws:18vw}
.bw[data-key="team"]   {--ws:18vw}
.bw[data-key="cta"]    {--ws:19.5vw}
/* Section watermark words sit behind the copy — kept faint so they read as
   texture and never compete with the body text for legibility. */
.bw-ink .bw-text{color:rgba(14,20,34,.10)}
.bw-light .bw-text{color:rgba(244,246,250,.11)}
.bw-outline .bw-text{color:transparent;-webkit-text-stroke:1.5px rgba(14,20,34,.26)}

/* Hero headline lives in the word layer on desktop so the 3D object can occlude it */
#wHero{position:absolute;inset:0;opacity:0;visibility:hidden;
  padding:calc(var(--navh) + 6vh) var(--pad) 0;
  display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start}
#wHero .h-line{display:block;overflow:hidden;
  font-family:var(--display);font-weight:900;text-transform:uppercase;
  font-size:clamp(3rem,8.4vw,9.4rem);line-height:.94;letter-spacing:-.03em;color:var(--ink)}
#wHero .h-line .ch{display:inline-block;will-change:transform}
#wHero .h-line em{font-style:normal;color:var(--accent)}

/* ============================================================
   Navigation
   ============================================================ */
.nav{position:fixed;top:0;left:0;right:0;z-index:50;height:var(--navh);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 var(--pad);pointer-events:none}
.nav>*{pointer-events:auto}
/* Nav colour follows the section underneath: dark ink on light sections,
   white on dark sections. The .on-dark flag is toggled by the runtime. */
.nav-logo{display:flex;align-items:center;gap:.6rem;
  font-family:var(--display);font-weight:800;font-size:1.02rem;letter-spacing:.02em;
  color:var(--ink);transition:color .4s var(--ease)}
.nav-logo .lg{width:1.15rem;height:1.15rem;border-radius:.3rem;flex:none;object-fit:contain;display:block}
.nav-links{display:flex;gap:2.2rem;color:var(--ink);
  font-size:.82rem;font-weight:500;letter-spacing:.06em;text-transform:uppercase;transition:color .4s var(--ease)}
.nav-links a{opacity:.78;transition:opacity .3s}
.nav-links a:hover{opacity:1}
html.on-dark .nav-logo{color:#fff}
html.on-dark .nav-links{color:#fff}
.nav-cta{background:var(--accent);color:#fff;border-radius:var(--r-pill);
  padding:.62rem 1.25rem;font-size:.8rem;font-weight:600;letter-spacing:.05em;text-transform:uppercase;
  transition:transform .35s var(--ease),box-shadow .35s}
.nav-cta:hover{transform:translateY(-2px);box-shadow:0 12px 28px -10px rgba(46,69,255,.55)}
@media (max-width:820px){.nav-links{display:none}}

/* ============================================================
   Loader
   ============================================================ */
#loader{position:fixed;inset:0;z-index:100;background:var(--dark-2);color:var(--white);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.4rem}
#loader .l-mark{font-family:var(--display);font-weight:900;letter-spacing:.32em;font-size:.85rem;text-transform:uppercase;padding-left:.32em}
#loader .l-bar{width:min(260px,56vw);height:1px;background:var(--white-12);overflow:hidden}
#loader .l-bar i{display:block;height:100%;width:100%;background:var(--accent);transform:scaleX(0);transform-origin:left}
#loader .l-count{font-size:.72rem;letter-spacing:.18em;color:var(--white-60);font-variant-numeric:tabular-nums}
html.reduce #loader{display:none}

/* ============================================================
   Shared section scaffolding
   ============================================================ */
.sec{position:relative;min-height:100vh;min-height:100svh;
  padding:calc(var(--navh) + 2rem) var(--pad) 3.5rem;
  display:flex;flex-direction:column;justify-content:center}
.band{position:relative;padding:clamp(4.5rem,10vh,8rem) var(--pad)}
.label{display:inline-flex;align-items:center;gap:.8rem;
  font-size:.92rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-60)}
.label::before{content:"";width:2.4rem;height:1px;background:currentColor;opacity:.45}
.sec-dark .label,.band-dark .label{color:var(--white-60)}
.word-inline{display:none;font-family:var(--display);font-weight:900;text-transform:uppercase;
  font-size:clamp(3.1rem,15vw,7.5rem);line-height:.9;letter-spacing:-.03em;margin:1.1rem 0 1.6rem;color:var(--ink)}
html:not(.layered) .word-inline{display:block}
.sec-dark .word-inline{color:var(--white)}
.word-inline.outline{color:transparent;-webkit-text-stroke:2px currentColor}
.sec-dark .word-inline.outline{-webkit-text-stroke:2px var(--white);color:transparent}

.pill{display:inline-flex;align-items:center;gap:.45rem;border:1px solid var(--ink-12);
  border-radius:var(--r-pill);padding:.42rem .95rem;font-size:.74rem;font-weight:500;
  letter-spacing:.07em;text-transform:uppercase;color:var(--ink-60);background:rgba(255,255,255,.32);
  backdrop-filter:blur(6px)}
.pill .dot{width:.4rem;height:.4rem;border-radius:50%;background:var(--accent)}
.sec-dark .pill,.band-dark .pill{border-color:var(--white-12);color:var(--white-60);background:rgba(255,255,255,.04)}

.btn{display:inline-flex;align-items:center;gap:.6rem;border-radius:var(--r-pill);
  padding:1rem 1.7rem;font-family:var(--display);font-weight:600;font-size:.86rem;
  letter-spacing:.06em;text-transform:uppercase;transition:transform .4s var(--ease),box-shadow .4s,background .3s,color .3s;
  will-change:transform}
.btn .arr{transition:transform .4s var(--ease)}
.btn:hover .arr{transform:translateX(4px)}
.btn-primary{background:var(--ink);color:var(--white)}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 18px 36px -14px rgba(14,20,34,.5)}
.btn-accent{background:var(--accent);color:#fff}
.btn-accent:hover{transform:translateY(-3px);box-shadow:0 18px 36px -14px rgba(46,69,255,.6)}
.btn-ghost{border:1px solid var(--ink-12);color:var(--ink)}
.btn-ghost:hover{border-color:var(--ink);transform:translateY(-3px)}
.sec-dark .btn-ghost{border-color:var(--white-12);color:var(--white)}
.sec-dark .btn-ghost:hover{border-color:var(--white)}
/* ============================================================
   HERO
   ============================================================ */
.sec-hero{justify-content:flex-end;padding-bottom:6vh}
.hero-eyebrow{position:absolute;top:calc(var(--navh) + 1.4rem);left:var(--pad);right:var(--pad);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.hero-pills{display:flex;gap:.55rem;flex-wrap:wrap}
.hero-title-inline{font-family:var(--display);font-weight:900;text-transform:uppercase;
  font-size:clamp(2.7rem,11.5vw,5rem);line-height:.96;letter-spacing:-.03em;margin:0 0 1.6rem}
.hero-title-inline em{font-style:normal;color:var(--accent)}
html.layered .hero-title-inline{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.hero-grid{display:grid;grid-template-columns:minmax(0,30rem) 1fr;align-items:end;gap:2.5rem}
.hero-sub{font-size:clamp(.98rem,1.2vw,1.12rem);color:var(--ink-60);max-width:30rem}
.hero-right{display:flex;flex-direction:column;align-items:flex-start;gap:1.5rem;justify-self:end;max-width:26rem}
.hero-punch{font-family:var(--display);font-weight:700;font-size:clamp(1.15rem,1.7vw,1.5rem);line-height:1.25;letter-spacing:-.01em}
.hero-punch em{font-style:normal;color:var(--accent)}
.hero-ctas{display:flex;gap:.8rem;flex-wrap:wrap}
.scroll-hint{position:absolute;bottom:2.2rem;right:var(--pad);display:flex;align-items:center;gap:.8rem;
  font-size:.68rem;font-weight:600;letter-spacing:.28em;text-transform:uppercase;color:var(--ink-40)}
.scroll-hint .ln{width:3.4rem;height:1px;background:var(--ink-40);position:relative;overflow:hidden}
.scroll-hint .ln::after{content:"";position:absolute;inset:0;background:var(--accent);transform:translateX(-100%);animation:hint 2.4s var(--ease) infinite}
@keyframes hint{0%{transform:translateX(-100%)}55%{transform:translateX(0)}100%{transform:translateX(101%)}}
@media (prefers-reduced-motion:reduce){.scroll-hint .ln::after{animation:none}}
@media (max-width:820px){
  .sec-hero{justify-content:center;padding-top:calc(var(--navh) + 4.5rem)}
  .hero-eyebrow{position:static;margin-bottom:1.6rem;order:-1}
  .hero-grid{grid-template-columns:1fr;gap:1.6rem}
  .hero-right{justify-self:start}
  .scroll-hint{display:none}
}

/* ============================================================
   PROBLEM — BOTTLENECK
   ============================================================ */
.sec-problem .sec-inner{display:grid;grid-template-columns:1fr minmax(0,30rem);gap:3rem;align-items:center;width:100%}
.prob-head{align-self:start;padding-top:2vh}
.prob-copy{justify-self:end;display:flex;flex-direction:column;gap:1.15rem}
.prob-copy h3{font-family:var(--display);font-weight:800;font-size:clamp(1.4rem,2vw,1.9rem);line-height:1.18;letter-spacing:-.02em}
.prob-copy p{color:var(--ink-60);font-size:clamp(.95rem,1.1vw,1.05rem)}
.prob-copy .btn{align-self:flex-start;margin-top:.5rem}
@media (max-width:820px){.sec-problem .sec-inner{grid-template-columns:1fr}.prob-copy{justify-self:start}}

/* ============================================================
   HOW IT WORKS — PIPELINE
   ============================================================ */
.sec-how{color:var(--white)}
.sec-how .sec-inner{width:100%;display:flex;flex-direction:column;min-height:72vh;justify-content:space-between;gap:2rem}
.stages{position:relative;flex:1;min-height:46vh}
.stage{position:absolute;inset:0;display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,24rem);
  align-items:center;gap:2.5rem}
.stage-id{display:flex;flex-direction:column;gap:.4rem}
.stage-num{font-family:var(--display);font-weight:700;font-size:.95rem;letter-spacing:.2em;color:var(--accent)}
.stage-name{font-family:var(--display);font-weight:900;text-transform:uppercase;
  font-size:clamp(2.6rem,6.4vw,5.6rem);line-height:.92;letter-spacing:-.025em}
.stage-desc{justify-self:end;color:var(--white-60);font-size:clamp(.95rem,1.1vw,1.06rem)}
.stage-desc strong{color:var(--white);font-weight:600}
.rail{display:flex;flex-direction:column;gap:1rem}
.rail-bar{height:1px;background:var(--white-12);overflow:hidden}
.rail-bar i{display:block;height:100%;background:var(--accent);transform:scaleX(0);transform-origin:left;width:100%}
.rail-marks{display:flex;justify-content:space-between;font-size:.7rem;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase}
.rail-marks span{opacity:.34;transition:opacity .3s}
.guard-link{align-self:flex-start}
@media (max-width:820px){
  .sec-how .sec-inner{min-height:0;display:block}
  .stages{min-height:0}
  .stage{position:static;grid-template-columns:1fr;gap:.9rem;margin-bottom:3rem}
  .stage-desc{justify-self:start}
  .rail{display:none}
}
/* static fallback (no pinning): stack stages normally */
html:not(.layered) .stages{min-height:0}
html:not(.layered) .stage{position:static;margin-bottom:2.6rem}
html:not(.layered) .rail .rail-bar i{transform:scaleX(1)}
html:not(.layered) .rail-marks span{opacity:.7}

/* ============================================================
   GUARDRAIL band
   ============================================================ */
.band-guardrail{background:var(--dark-2);color:var(--white)}
.guard-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.15fr);gap:3rem;align-items:start;
  max-width:80rem;margin:0 auto}
.guard-grid h2{font-family:var(--display);font-weight:900;text-transform:uppercase;
  font-size:clamp(2.1rem,4.6vw,4rem);line-height:.95;letter-spacing:-.02em;margin-top:1rem}
.guard-grid h2 em{font-style:normal;color:var(--accent)}
.guard-right{display:flex;flex-direction:column;gap:1.6rem;padding-top:.4rem}
.guard-right>p{color:var(--white-60);font-size:clamp(.95rem,1.1vw,1.08rem);max-width:34rem}
.gate-chips{display:flex;flex-wrap:wrap;gap:.6rem}
.gate-chips .chip{display:inline-flex;align-items:center;gap:.55rem;border:1px solid var(--white-12);
  border-radius:var(--r-pill);padding:.6rem 1.1rem;font-family:var(--display);font-weight:600;
  font-size:.8rem;letter-spacing:.05em;text-transform:uppercase}
.gate-chips .chip::before{content:"";width:.45rem;height:.45rem;border-radius:50%;background:var(--accent);flex:none}
.guard-foot{display:flex;gap:2rem;flex-wrap:wrap;color:var(--white-60);font-size:.84rem}
.guard-foot b{color:var(--white);font-weight:600;display:block;font-size:.95rem;margin-bottom:.15rem}
@media (max-width:820px){.guard-grid{grid-template-columns:1fr;gap:2rem}}

/* ============================================================
   UNLOCKS — LEVERAGE
   ============================================================ */
.sec-unlocks .sec-inner{width:100%;display:flex;flex-direction:column;justify-content:flex-end;min-height:72vh;gap:2.4rem}
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem}
.pillar{border:1px solid var(--ink-12);border-radius:1.25rem;padding:1.6rem 1.5rem 1.5rem;
  background:rgba(255,255,255,.45);backdrop-filter:blur(10px);
  display:flex;flex-direction:column;gap:.85rem;min-height:15rem}
.pillar-stat{font-family:var(--display);font-weight:900;font-size:clamp(2rem,3.2vw,3rem);
  letter-spacing:-.03em;line-height:1;color:var(--accent)}
.pillar-title{font-family:var(--display);font-weight:700;font-size:1.06rem;letter-spacing:-.01em}
.pillar-body{color:var(--ink-60);font-size:.92rem;margin-top:auto}
@media (max-width:980px){.pillars{grid-template-columns:1fr}.pillar{min-height:0}}

/* ============================================================
   TEAM — BUILDERS
   ============================================================ */
.sec-team .sec-inner{width:100%}
.team-grid{display:grid;grid-template-columns:repeat(2,minmax(0,26rem));justify-content:center;gap:1.4rem;margin-top:2.2rem}
.tcard{border:1px solid var(--ink-12);border-radius:1.4rem;padding:1.8rem;
  background:rgba(255,255,255,.5);backdrop-filter:blur(12px);
  display:flex;flex-direction:column;gap:1rem;will-change:transform}
.tcard-top{display:flex;align-items:center;gap:1rem}
.tcard-ava{width:3.4rem;height:3.4rem;border-radius:50%;flex:none;display:flex;align-items:center;justify-content:center;
  font-family:var(--display);font-weight:800;font-size:1rem;letter-spacing:.04em;color:#fff;
  background:linear-gradient(135deg,var(--accent),#101a66)}
.tcard:last-child .tcard-ava{background:linear-gradient(135deg,#0E1422,#3a4a72)}
.tcard-name{font-family:var(--display);font-weight:800;font-size:1.2rem;letter-spacing:-.01em}
.tcard-role{font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-60)}
.tcard-bio{color:var(--ink-60);font-size:.94rem}
.tcard-tags{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:auto}
@media (max-width:820px){.team-grid{grid-template-columns:1fr}}

/* ============================================================
   CTA — PARTNER
   ============================================================ */
.sec-cta{color:var(--white)}
.sec-cta .sec-inner{width:100%;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,28rem);gap:3.5rem;align-items:center}
.cta-left{display:flex;flex-direction:column;gap:1.3rem;max-width:32rem}
.cta-left h2{font-family:var(--display);font-weight:900;text-transform:uppercase;
  font-size:clamp(2.2rem,4.4vw,3.9rem);line-height:.96;letter-spacing:-.02em}
.cta-left h2 em{font-style:normal;color:var(--accent)}
.cta-left p{color:var(--white-60);font-size:clamp(.95rem,1.1vw,1.06rem)}
.cta-note{display:flex;align-items:center;gap:.7rem;font-size:.82rem;color:var(--white-60)}
.cta-note .dot{width:.45rem;height:.45rem;border-radius:50%;background:var(--accent);flex:none}
.form-card{border:1px solid var(--white-12);border-radius:1.5rem;padding:1.9rem;
  background:rgba(244,246,250,.045);backdrop-filter:blur(14px);
  display:flex;flex-direction:column;gap:1.15rem}
.field{display:flex;flex-direction:column;gap:.45rem}
.field label{font-size:.72rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--white-60)}
.field input{background:transparent;border:0;border-bottom:1px solid var(--white-12);
  padding:.55rem 0 .7rem;font:inherit;font-size:1rem;color:var(--white);transition:border-color .3s}
.field input::placeholder{color:rgba(244,246,250,.28)}
.field input:focus{outline:none;border-color:var(--accent)}
.field input.is-bad{border-color:#ff5a6e}
.field input.is-bad::placeholder{color:rgba(255,90,110,.55)}
.mod-label{font-size:.72rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--white-60)}
.mod-pills{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.45rem}
.pill-toggle{border:1px solid var(--white-12);border-radius:var(--r-pill);padding:.5rem 1rem;
  font-size:.78rem;font-weight:500;letter-spacing:.04em;color:var(--white-60);
  transition:all .3s var(--ease)}
.pill-toggle:hover{border-color:rgba(244,246,250,.4);color:var(--white)}
.pill-toggle[aria-pressed="true"]{background:var(--accent);border-color:var(--accent);color:#fff}
.btn-submit{justify-content:center;margin-top:.4rem}
.form-done{display:none;flex-direction:column;gap:.8rem;align-items:flex-start;padding:1rem 0}
.form-done .tick{width:2.6rem;height:2.6rem;border-radius:50%;background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:1.1rem}
.form-done p{color:var(--white-60)}
.form-card.is-done form{display:none}
.form-card.is-done .form-done{display:flex}
@media (max-width:980px){.sec-cta .sec-inner{grid-template-columns:1fr;gap:2.4rem}}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:#06080D;color:var(--white);padding:3rem var(--pad);
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.footer .f-mark{font-family:var(--display);font-weight:900;letter-spacing:.06em;font-size:1rem;text-transform:uppercase}
.footer .f-mark em{font-style:normal;color:var(--accent)}
.footer-text{display:flex;flex-direction:column;gap:.3rem;text-align:right}
.footer-text p{color:var(--white-60);font-size:.84rem;margin:0}
@media (max-width:680px){
  .footer{flex-direction:column;align-items:center;text-align:center;gap:1rem}
  .footer-text{text-align:center}
}

/* ============================================================
   Cursor
   ============================================================ */
.cursor{position:fixed;inset:0;z-index:80;pointer-events:none;display:none}
html.has-cursor .cursor{display:block}
html.has-cursor{cursor:none}
html.has-cursor a,html.has-cursor button,html.has-cursor input{cursor:none}
/* Cursor colour follows the section: dark on light sections, white on dark.
   .on-dark is toggled by the runtime alongside the background colour. */
.cursor-dot,.cursor-ring{position:absolute;top:0;left:0;border-radius:50%;will-change:transform}
.cursor-dot{width:6px;height:6px;background:var(--ink);margin:-3px 0 0 -3px;transition:background .4s var(--ease)}
.cursor-ring{width:34px;height:34px;border:1px solid rgba(14,20,34,.6);margin:-17px 0 0 -17px;
  transition:width .3s var(--ease),height .3s var(--ease),margin .3s var(--ease),border-color .4s var(--ease)}
.cursor.is-hover .cursor-ring{width:56px;height:56px;margin:-28px 0 0 -28px}
html.on-dark .cursor-dot{background:#fff}
html.on-dark .cursor-ring{border-color:rgba(255,255,255,.85)}

/* ============================================================
   Reduced motion / static fallbacks
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001s!important;transition-duration:.001s!important}
}