/* ================================================================
   KINVARA — cinematic landing
   dark & gold · Cormorant Garamond + Inter
   ================================================================ */

@font-face{font-family:'Cormorant Garamond';src:url('../assets/fonts/CormorantGaramond-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Cormorant Garamond';src:url('../assets/fonts/CormorantGaramond-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Cormorant Garamond';src:url('../assets/fonts/CormorantGaramond-700.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Cormorant Garamond';src:url('../assets/fonts/CormorantGaramond-500i.woff2') format('woff2');font-weight:500;font-style:italic;font-display:swap}
@font-face{font-family:'Inter';src:url('../assets/fonts/Inter-300.woff2') format('woff2');font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('../assets/fonts/Inter-400.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('../assets/fonts/Inter-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('../assets/fonts/Inter-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}

:root{
  --ink:#070907;
  --ink-2:#0c0f0c;
  --ink-3:#11150f;
  --cream:#f4efe2;
  --cream-dim:#c9c4b5;
  --muted:#8f8b7e;
  --gold:#e6c368;
  --gold-2:#c9a227;
  --gold-deep:#a97f2f;
  --pine:#1e4a38;
  --pine-glow:#2f6a4f;
  --hairline:rgba(230,195,104,.15);
  --hairline-soft:rgba(244,239,226,.07);
  --maxw:1200px;
  --ease-out:cubic-bezier(.16,1,.3,1);
}
*{box-sizing:border-box;margin:0;padding:0}
html{height:100%}
html.lenis,html.lenis body{height:auto}
.lenis.lenis-smooth{scroll-behavior:auto!important}
body{
  background:var(--ink);
  color:var(--cream);
  font-family:'Inter',system-ui,sans-serif;
  font-weight:300;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
::selection{background:var(--gold-2);color:#0a0c0a}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px}
.serif{font-family:'Cormorant Garamond',Georgia,serif}
.gold-text{
  background:linear-gradient(115deg,#f7e3a6 0%,#e6c368 28%,#c9a227 52%,#f2d98a 74%,#b9891f 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:12px;
  font-size:11.5px;letter-spacing:.34em;text-transform:uppercase;
  color:var(--gold);font-weight:500;
}
.eyebrow::before{content:"";width:34px;height:1px;background:linear-gradient(90deg,transparent,var(--gold))}

/* film grain over everything */
.grain{
  position:fixed;inset:-100px;z-index:90;pointer-events:none;opacity:.4;mix-blend-mode:overlay;
  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='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
  /* NOTE: static on purpose — an animated transform on this fixed mix-blend layer
     stalls some compositors (found during Browser-pane verification) */
}

/* ================= PRELOADER ================= */
#loader{
  position:fixed;inset:0;z-index:200;background:#050605;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:28px;
}
#loader .mark{width:110px;filter:drop-shadow(0 6px 30px rgba(230,195,104,.35));opacity:0;transform:scale(.9)}
#loader .word{
  font-family:'Cormorant Garamond',serif;font-size:15px;letter-spacing:.55em;text-indent:.55em;
  color:var(--cream-dim);text-transform:uppercase;opacity:0;
}
#loader .load-bar{width:180px;height:1px;background:rgba(244,239,226,.12);overflow:hidden}
#loader .load-bar i{display:block;height:100%;width:0%;background:linear-gradient(90deg,var(--gold-2),var(--gold))}

/* ================= NAV ================= */
header.nav{
  position:fixed;top:0;left:0;right:0;z-index:80;
  transition:background .45s ease,backdrop-filter .45s ease,border-color .45s ease,transform .45s ease;
  border-bottom:1px solid transparent;
  transform:translateY(-100%);
}
header.nav.on{transform:translateY(0)}
header.nav.scrolled{
  background:rgba(7,9,7,.7);
  backdrop-filter:blur(16px) saturate(150%);
  border-bottom:1px solid var(--hairline);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:76px}
.brand{display:flex;align-items:center;gap:12px;font-family:'Cormorant Garamond',serif;font-size:22px;letter-spacing:.18em;font-weight:600}
.brand img{height:36px;width:auto;filter:drop-shadow(0 2px 12px rgba(230,195,104,.3))}
.nav-links{display:flex;gap:36px;align-items:center}
.nav-links>a:not(.btn){font-size:13.5px;color:var(--cream-dim);transition:color .25s;position:relative}
.nav-links>a:not(.btn)::after{
  content:"";position:absolute;left:0;bottom:-6px;height:1px;width:100%;
  background:var(--gold);transform:scaleX(0);transform-origin:right;transition:transform .35s var(--ease-out);
}
.nav-links>a:not(.btn):hover{color:var(--gold)}
.nav-links>a:not(.btn):hover::after{transform:scaleX(1);transform-origin:left}

.btn{
  display:inline-flex;align-items:center;gap:10px;
  font-size:14px;font-weight:500;letter-spacing:.02em;
  padding:14px 26px;border-radius:100px;cursor:pointer;border:none;
  transition:transform .35s var(--ease-out),box-shadow .35s,border-color .35s,color .35s;
  will-change:transform;
}
.btn-gold{
  background:linear-gradient(135deg,#f4dd94,#e6c368 40%,#c9a227);
  color:#181405;font-weight:600;
  box-shadow:0 10px 34px -10px rgba(230,195,104,.6),inset 0 1px 0 rgba(255,255,255,.55);
  position:relative;overflow:hidden;
}
.btn-gold::before{
  content:"";position:absolute;top:0;left:-80%;width:60%;height:100%;
  background:linear-gradient(105deg,transparent,rgba(255,255,255,.55),transparent);
  transform:skewX(-20deg);transition:left .6s ease;
}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 16px 44px -10px rgba(230,195,104,.75),inset 0 1px 0 rgba(255,255,255,.6)}
.btn-gold:hover::before{left:120%}
.btn-ghost{background:rgba(244,239,226,.04);color:var(--cream);border:1px solid var(--hairline)}
.btn-ghost:hover{transform:translateY(-2px);border-color:var(--gold);color:var(--gold)}
.nav .btn{padding:11px 22px;font-size:13.5px}

/* ================= HERO ================= */
.hero{position:relative;min-height:100svh;display:flex;align-items:center;overflow:hidden}
.hero-media{position:absolute;inset:0;z-index:0}
.hero-media video,.hero-media .poster{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  filter:saturate(.82) contrast(1.06) brightness(.62);
}
.hero-media .poster{background:radial-gradient(1200px 700px at 70% 30%,#17251c 0%,#0a120c 45%,#050605 100%)}
.hero-media::after{ /* cinematic grade: warm shadow + vignette */
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(5,6,5,.92) 0%,rgba(5,6,5,.55) 34%,rgba(5,6,5,.25) 60%,rgba(5,6,5,.55) 100%),
    linear-gradient(0deg,rgba(5,6,5,.95) 0%,transparent 30%,transparent 72%,rgba(5,6,5,.75) 100%),
    radial-gradient(120% 90% at 50% 50%,transparent 55%,rgba(4,5,4,.6) 100%);
}
.hero-media .tint{position:absolute;inset:0;background:linear-gradient(160deg,rgba(201,162,39,.10),rgba(30,74,56,.16));mix-blend-mode:soft-light}
#helix{position:absolute;inset:0;width:100%;height:100%;z-index:2;pointer-events:none}
/* footage present: helix becomes a subtle overlay accent instead of the lead actor */
body.has-video #helix{opacity:.45;mix-blend-mode:screen}
.hero-content{position:relative;z-index:5;max-width:820px;padding-top:76px}
.hero h1{
  font-family:'Cormorant Garamond',serif;font-weight:600;
  font-size:clamp(48px,7.4vw,102px);line-height:1;letter-spacing:-.01em;margin:26px 0 30px;
}
.hero h1 .line{display:block;overflow:hidden;padding-bottom:.08em;margin-bottom:-.08em}
.hero h1 .line span{display:inline-block;transform:translateY(115%)}
.hero p.lede{font-size:clamp(17px,1.9vw,21px);color:var(--cream-dim);max-width:600px;line-height:1.65}
.hero-cta{display:flex;gap:18px;margin-top:44px;flex-wrap:wrap;align-items:center}
.hero-sub{margin-top:30px;font-size:13px;color:var(--muted);letter-spacing:.05em;display:flex;align-items:center;gap:10px}
.hero-sub::before{content:"";width:22px;height:1px;background:var(--gold-deep)}
.scroll-hint{
  position:absolute;bottom:34px;left:50%;transform:translateX(-50%);z-index:5;
  font-size:10.5px;letter-spacing:.32em;text-transform:uppercase;color:var(--muted);
  display:flex;flex-direction:column;align-items:center;gap:12px;
}
.scroll-hint .bar{width:1px;height:48px;background:linear-gradient(var(--gold),transparent);animation:pulseBar 2.2s ease-in-out infinite}
@keyframes pulseBar{0%,100%{opacity:.25;transform:scaleY(.55)}50%{opacity:1;transform:scaleY(1)}}

/* ================= MARQUEE ================= */
.marquee-band{
  border-top:1px solid var(--hairline);border-bottom:1px solid var(--hairline);
  padding:30px 0;overflow:hidden;background:linear-gradient(var(--ink-2),var(--ink));position:relative;z-index:5;
}
.marquee{display:flex;white-space:nowrap;width:max-content}
.marquee span{
  font-family:'Cormorant Garamond',serif;font-size:24px;letter-spacing:.12em;color:var(--cream-dim);
  display:flex;align-items:center;padding-right:64px;
}
.marquee span::after{content:"◆";color:var(--gold-2);font-size:11px;margin-left:64px;opacity:.8}

/* ================= SECTIONS ================= */
section{position:relative;padding:130px 0}
.sec-head{max-width:720px;margin-bottom:72px}
.sec-head h2,.h-display{
  font-family:'Cormorant Garamond',serif;font-weight:600;
  font-size:clamp(36px,4.8vw,58px);line-height:1.07;letter-spacing:-.01em;margin:18px 0 20px;
}
.sec-head p{font-size:18px;color:var(--cream-dim)}
.reveal{opacity:0;transform:translateY(40px)}
[data-lines] .line{display:block;overflow:hidden;padding-bottom:.09em;margin-bottom:-.09em}
[data-lines] .line span{display:inline-block;transform:translateY(115%)}

/* ================= PROBLEM ================= */
.problem{background:var(--ink-2)}
.problem .split{display:grid;grid-template-columns:1.08fr .92fr;gap:76px;align-items:center}
.problem h2{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:clamp(32px,4.2vw,50px);line-height:1.09;margin:18px 0 30px}
.problem .before{list-style:none;display:flex;flex-direction:column;gap:16px}
.problem .before li{display:flex;gap:15px;align-items:flex-start;color:var(--cream-dim);font-size:16px}
.problem .before li .x{
  flex:none;width:23px;height:23px;border-radius:7px;margin-top:2px;
  background:rgba(168,80,67,.15);color:#d78a7c;display:grid;place-items:center;font-size:12px;
}
.after-card{
  position:relative;border-radius:22px;padding:40px 38px;overflow:hidden;
  background:linear-gradient(160deg,rgba(30,74,56,.38),rgba(12,15,12,.5));
  border:1px solid var(--hairline);backdrop-filter:blur(8px);
  box-shadow:0 40px 90px -40px rgba(0,0,0,.9);
}
.after-card::before{
  content:"";position:absolute;top:-60px;right:-60px;width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle,rgba(230,195,104,.14),transparent 70%);
}
.after-card .tag{font-size:11.5px;letter-spacing:.26em;text-transform:uppercase;color:var(--gold);font-weight:500}
.after-card h3{font-family:'Cormorant Garamond',serif;font-size:31px;font-weight:600;margin:14px 0 20px;line-height:1.14}
.after-card ul{list-style:none;display:flex;flex-direction:column;gap:14px}
.after-card li{display:flex;gap:13px;font-size:15.5px;color:var(--cream)}
.after-card li .c{
  flex:none;width:23px;height:23px;border-radius:7px;margin-top:1px;
  background:rgba(51,105,61,.28);color:#82d193;display:grid;place-items:center;font-size:12px;
}

/* ================= PRODUCT TOUR (pinned) ================= */
.tour{padding:0;background:var(--ink)}
.tour-pin{min-height:100svh;display:flex;align-items:center;overflow:hidden;position:relative}
.tour-glow{position:absolute;width:900px;height:900px;left:58%;top:50%;transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(201,162,39,.10),transparent 62%);filter:blur(50px);pointer-events:none}
.tour-inner{display:grid;grid-template-columns:.78fr 1.22fr;gap:70px;align-items:center;width:100%}
.tour-copy{position:relative;min-height:340px}
.tour-step{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;opacity:0;visibility:hidden}
.tour-step .num{
  font-family:'Cormorant Garamond',serif;font-size:15px;color:var(--gold);letter-spacing:.3em;margin-bottom:18px;
  display:flex;align-items:center;gap:14px;
}
.tour-step .num::after{content:"";flex:1;max-width:60px;height:1px;background:linear-gradient(90deg,var(--gold-deep),transparent)}
.tour-step h3{font-family:'Cormorant Garamond',serif;font-size:clamp(30px,3.4vw,44px);font-weight:600;line-height:1.1;margin-bottom:16px}
.tour-step p{font-size:16.5px;color:var(--cream-dim);max-width:420px}
.tour-progress{display:flex;gap:10px;margin-top:34px}
.tour-progress i{width:34px;height:2px;background:rgba(244,239,226,.14);border-radius:2px;overflow:hidden;position:relative}
.tour-progress i b{position:absolute;inset:0;background:linear-gradient(90deg,var(--gold-2),var(--gold));transform:scaleX(0);transform-origin:left}
.tour-stage{position:relative;perspective:1600px;height:min(62vh,640px)}
.shot{
  position:absolute;inset:0;margin:auto;border-radius:14px;overflow:hidden;
  border:1px solid var(--hairline);background:#0d100e;
  box-shadow:0 60px 120px -40px rgba(0,0,0,.9),0 0 0 1px rgba(230,195,104,.06),0 0 80px -30px rgba(201,162,39,.25);
  opacity:0;visibility:hidden;will-change:transform,opacity;
  display:flex;flex-direction:column;
}
.shot .chrome{display:flex;align-items:center;gap:7px;padding:11px 15px;background:#141814;border-bottom:1px solid var(--hairline-soft);flex:none}
.shot .chrome i{width:9px;height:9px;border-radius:50%;background:#2b3028;display:block}
.shot .chrome .url{
  margin-left:12px;font-size:11.5px;color:var(--muted);background:#0b0e0b;
  padding:4px 16px;border-radius:6px;flex:1;letter-spacing:.03em;font-family:'Inter',sans-serif;
}
.shot img{width:100%;height:100%;object-fit:cover;object-position:top;flex:1;filter:saturate(.96)}

/* ================= ALSO INSIDE (chip strip) ================= */
.also-band{background:var(--ink);border-top:1px solid var(--hairline-soft);padding:34px 0}
.also{display:flex;align-items:flex-start;gap:24px;flex-wrap:wrap}
.also-label{
  flex:none;font-size:11px;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);
  font-weight:600;padding-top:9px;display:inline-flex;align-items:center;gap:10px;
}
.also-label::after{content:"";width:26px;height:1px;background:linear-gradient(90deg,var(--gold-deep),transparent)}
.also-chips{display:flex;flex-wrap:wrap;gap:10px;flex:1;min-width:260px}
.also-chips span{
  font-size:13px;color:var(--cream-dim);padding:8px 16px;border-radius:100px;
  border:1px solid var(--hairline-soft);background:rgba(244,239,226,.025);
  transition:border-color .3s,color .3s;white-space:nowrap;
}
.also-chips span:hover{border-color:var(--gold);color:var(--gold)}

/* ================= PORTAL SPOTLIGHT ================= */
.spot{background:var(--ink-2);overflow:hidden}
.spot .split{display:grid;grid-template-columns:.98fr 1.02fr;gap:70px;align-items:center}
.spot h2{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:clamp(32px,4.4vw,50px);line-height:1.09;margin:16px 0 10px}
.spot .sub{font-size:17px;color:var(--cream-dim)}
.spot ol{list-style:none;display:flex;flex-direction:column;gap:24px;margin-top:36px}
.spot ol li{display:flex;gap:18px}
.spot ol li .n{
  flex:none;width:36px;height:36px;border-radius:10px;
  background:linear-gradient(135deg,rgba(230,195,104,.95),rgba(201,162,39,.75));
  color:#1a1405;font-family:'Cormorant Garamond',serif;font-weight:700;font-size:17px;
  display:grid;place-items:center;box-shadow:0 8px 20px -8px rgba(230,195,104,.5);
}
.spot ol li h4{font-size:16px;font-weight:600;color:var(--cream);margin-bottom:4px}
.spot ol li p{font-size:14.5px;color:var(--muted);max-width:400px}
.spot-shot{
  border-radius:16px;overflow:hidden;border:1px solid var(--hairline);background:#0d100e;
  box-shadow:0 60px 120px -40px rgba(0,0,0,.95),0 0 90px -30px rgba(201,162,39,.2);
  transform:perspective(1800px) rotateY(-8deg) rotateX(2deg);
  transition:transform .9s var(--ease-out);
}
.spot-shot:hover{transform:perspective(1800px) rotateY(0) rotateX(0)}
.spot-shot .chrome{display:flex;align-items:center;gap:7px;padding:11px 15px;background:#141814;border-bottom:1px solid var(--hairline-soft)}
.spot-shot .chrome i{width:9px;height:9px;border-radius:50%;background:#2b3028}
.spot-shot .chrome .url{margin-left:12px;font-size:11.5px;color:var(--muted);background:#0b0e0b;padding:4px 16px;border-radius:6px;flex:1}
.spot-shot img{width:100%;display:block}

/* ================= HUB / ORBIT ================= */
.hub{overflow:hidden}
.hub .ring-wrap{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.hub h2{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:clamp(32px,4.4vw,50px);line-height:1.09;margin:16px 0 20px}
.hub p{font-size:17px;color:var(--cream-dim);margin-bottom:18px}
.orbit{position:relative;width:100%;aspect-ratio:1;max-width:470px;margin:0 auto}
.orbit .ring{position:absolute;inset:0;border:1px dashed rgba(230,195,104,.22);border-radius:50%}
.orbit .ring.r2{inset:15.5%;border-color:rgba(244,239,226,.07);border-style:solid}
.orbit .center{
  position:absolute;inset:0;margin:auto;width:150px;height:150px;border-radius:50%;
  display:grid;place-items:center;
  background:radial-gradient(circle at 38% 32%,rgba(230,195,104,.22),rgba(10,12,10,.95) 70%);
  border:1px solid rgba(230,195,104,.55);
  box-shadow:0 0 80px -12px rgba(230,195,104,.45),inset 0 0 40px -18px rgba(230,195,104,.4);
}
.orbit .center img{width:86px;filter:drop-shadow(0 4px 16px rgba(0,0,0,.6))}
.orbit .node{
  position:absolute;width:64px;height:64px;border-radius:16px;
  background:linear-gradient(160deg,#141a12,#0c0f0c);border:1px solid var(--hairline);
  display:grid;place-items:center;box-shadow:0 14px 34px -12px rgba(0,0,0,.8);
  will-change:transform;
}
.orbit .node svg{width:27px;height:27px;stroke:var(--gold);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.orbit .node .tip{
  position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%);
  font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);white-space:nowrap;
}
.orbit svg.links{position:absolute;inset:0;width:100%;height:100%;pointer-events:none}
.orbit svg.links line{stroke:rgba(230,195,104,.16);stroke-width:1;stroke-dasharray:3 5}

/* ================= FOUNDER ================= */
.founder{background:linear-gradient(180deg,var(--ink-2),var(--ink))}
.founder .card{max-width:860px;margin:0 auto;text-align:center;position:relative}
.founder .quote{
  font-family:'Cormorant Garamond',serif;font-weight:500;
  font-size:clamp(26px,3.8vw,42px);line-height:1.32;
}
.founder .quote em{font-style:italic;color:var(--gold)}
.founder .mark{font-family:'Cormorant Garamond',serif;font-size:130px;line-height:.2;color:var(--gold);opacity:.3;display:block;margin-bottom:26px}
.founder .who{margin-top:38px;font-size:14px;letter-spacing:.08em;color:var(--muted)}
.founder .who b{color:var(--gold);font-weight:600}

/* ================= CTA ================= */
.cta-band{position:relative;text-align:center;padding:150px 0;overflow:hidden}
.cta-band .glow{
  position:absolute;width:760px;height:760px;left:50%;top:50%;transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(201,162,39,.17),transparent 64%);filter:blur(60px);pointer-events:none;
}
.cta-band h2{position:relative;font-family:'Cormorant Garamond',serif;font-weight:600;font-size:clamp(42px,6.4vw,84px);line-height:1.03;margin-bottom:26px}
.cta-band p{position:relative;font-size:19px;color:var(--cream-dim);max-width:540px;margin:0 auto 44px}
.cta-band .cta-row{position:relative;display:flex;gap:18px;justify-content:center;flex-wrap:wrap}
.cta-doc{position:relative;margin-top:26px;font-size:14px;color:var(--muted)}
.cta-doc a{color:var(--gold);border-bottom:1px solid rgba(230,195,104,.35);transition:border-color .25s}
.cta-doc a:hover{border-color:var(--gold)}
.cta-doc span{color:var(--muted);font-size:12.5px;letter-spacing:.06em;margin-left:6px}

/* ================= FOOTER ================= */
footer{border-top:1px solid var(--hairline);padding:60px 0 42px;background:var(--ink-2)}
.foot-top{display:flex;justify-content:space-between;align-items:flex-start;gap:44px;flex-wrap:wrap;margin-bottom:44px}
.foot-brand{max-width:330px}
.foot-brand .brand{margin-bottom:16px}
.foot-brand p{font-size:14px;color:var(--muted)}
.foot-cols{display:flex;gap:70px;flex-wrap:wrap}
.foot-col h6{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:18px;font-weight:600}
.foot-col a{display:block;font-size:14px;color:var(--cream-dim);margin-bottom:12px;transition:color .2s}
.foot-col a:hover{color:var(--gold)}
.foot-bottom{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;
  padding-top:28px;border-top:1px solid var(--hairline-soft);font-size:13px;color:var(--muted);
}
.foot-bottom .tag{font-family:'Cormorant Garamond',serif;letter-spacing:.28em;font-size:12px;color:var(--gold-deep)}

/* ================= RESPONSIVE ================= */
@media(max-width:980px){
  .nav-links a:not(.btn){display:none}
  .problem .split,.spot .split,.hub .ring-wrap{grid-template-columns:1fr;gap:48px}
  .tour-inner{grid-template-columns:1fr;gap:36px}
  .tour-copy{min-height:280px}
  .tour-stage{height:44vh}
  .spot-shot{transform:none}
  section{padding:96px 0}
}
@media(max-width:620px){
  .wrap{padding:0 22px}
  .nav .brand-word{display:none}
  .nav .btn{padding:10px 16px;font-size:12.5px;white-space:nowrap}
  .hero{padding-bottom:40px}
  .scroll-hint{display:none}
  .hero-cta{flex-direction:column;align-items:stretch}
  .hero-cta .btn{justify-content:center}
  .cta-band .cta-row{flex-direction:column;align-items:center}
  .foot-cols{gap:40px}
  .orbit .node{width:52px;height:52px}
  .orbit .node .tip{display:none}
  .orbit .center{width:116px;height:116px}
  .orbit .center img{width:66px}
}

/* ================= REDUCED MOTION ================= */
@media(prefers-reduced-motion:reduce){
  .grain{animation:none}
  .scroll-hint .bar{animation:none}
  .reveal{opacity:1!important;transform:none!important}
  .hero h1 .line span,[data-lines] .line span{transform:none!important}
  .tour-step{position:relative;opacity:1!important;visibility:visible!important;margin-bottom:40px}
  .tour-copy{min-height:0}
  .shot{position:relative;opacity:1!important;visibility:visible!important;margin-bottom:24px}
}
