/* ================================================================
   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}
.nav-signin{border-color:rgba(230,195,104,.45);color:var(--gold)}
.nav-signin:hover{background:rgba(230,195,104,.08)}

/* ================= 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 button{
  font:inherit;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,background .3s;white-space:nowrap;cursor:pointer;
}
.also-chips button:hover{border-color:var(--gold);color:var(--gold)}
.also-chips button.active{
  border-color:var(--gold);color:#181405;font-weight:600;
  background:linear-gradient(135deg,#f4dd94,#e6c368 40%,#c9a227);
}
.also-info[hidden]{display:none}
.also-info{
  flex-basis:100%;margin-top:10px;padding:26px 28px;border-radius:18px;
  border:1px solid var(--hairline-soft);border-left:2px solid var(--gold);
  background:linear-gradient(180deg,rgba(244,239,226,.04),rgba(244,239,226,.015));
  animation:alsoIn .4s var(--ease-out);
  display:grid;grid-template-columns:1fr 1.15fr;gap:32px;align-items:center;
}
.also-info-copy h5{font-family:'Cormorant Garamond',serif;font-size:24px;color:var(--gold);margin-bottom:10px;font-weight:600}
.also-info-copy p{font-size:15px;color:var(--cream-dim);line-height:1.65}
.also-shot{
  border-radius:12px;overflow:hidden;border:1px solid var(--hairline);
  box-shadow:0 24px 60px -20px rgba(0,0,0,.75),0 0 0 1px rgba(230,195,104,.06);
  display:flex;flex-direction:column;
}
.also-shot .chrome{display:flex;align-items:center;gap:7px;padding:10px 14px;background:#141814;border-bottom:1px solid var(--hairline-soft);flex:none}
.also-shot .chrome i{width:8px;height:8px;border-radius:50%;background:#2b3028;display:block}
.also-shot .chrome .url{margin-left:10px;font-size:11px;color:var(--muted);background:#0b0e0b;padding:3px 14px;border-radius:6px;flex:1;white-space:nowrap;overflow:hidden}
.also-shot img{
  display:block;width:100%;aspect-ratio:16/9.5;object-fit:cover;object-position:top;
  background:#0b0e0b;
}
@keyframes alsoIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
@media(max-width:820px){
  .also-info{grid-template-columns:1fr;gap:20px}
}

/* ================= 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-band .cta-doc{margin-top:48px;padding-top:26px;border-top:1px solid var(--hairline-soft);max-width:560px;margin-left:auto;margin-right:auto}
.cta-doc{position:relative;margin-top:26px;font-size:14px;color:var(--muted);line-height:1.7}
.cta-doc span{white-space:nowrap}
.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)}

/* ================= GET THE APP ================= */
.appinstall{background:var(--ink);border-top:1px solid var(--hairline-soft)}
.appinstall .split{display:grid;grid-template-columns:1fr 1.05fr;gap:70px;align-items:center}
.appinstall h2{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:clamp(32px,4.4vw,50px);line-height:1.09;margin:16px 0 10px}
.appinstall .sub{font-size:16.5px;color:var(--cream-dim);margin-bottom:14px;max-width:52ch}
.appinstall .btn{margin-top:14px}
.install-cards{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.install-card{
  border:1px solid var(--hairline-soft);border-radius:18px;padding:26px 24px;
  background:linear-gradient(180deg,rgba(244,239,226,.035),rgba(244,239,226,.015));
}
.install-card .tag{
  display:inline-block;font-size:10.5px;letter-spacing:.24em;text-transform:uppercase;
  color:var(--gold);border:1px solid rgba(230,195,104,.35);border-radius:100px;
  padding:5px 12px;margin-bottom:14px;font-weight:600;
}
.install-card h4{font-family:'Cormorant Garamond',serif;font-size:21px;margin-bottom:14px;font-weight:600}
.install-card ol{list-style:none;display:flex;flex-direction:column;gap:11px}
.install-card ol li{display:flex;gap:10px;font-size:13.8px;color:var(--cream-dim);line-height:1.55}
.install-card ol li>span{flex:1;min-width:0}
.install-card ol li>span b{color:var(--cream)}
.install-card ol li>b:first-child{
  flex:none;width:22px;height:22px;border-radius:7px;font-size:12px;
  background:linear-gradient(135deg,rgba(230,195,104,.95),rgba(201,162,39,.75));
  color:#1a1405;display:grid;place-items:center;font-weight:700;
}
.install-card .card-note{font-size:12.5px;color:var(--muted);margin-top:14px;font-style:italic}
.share-glyph{color:var(--gold)}

/* ================= EARLY ACCESS MODAL ================= */
.modal{position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:20px}
.modal[hidden]{display:none}
.modal-back{position:absolute;inset:0;background:rgba(4,5,4,.72);backdrop-filter:blur(10px)}
.modal-card{
  position:relative;width:min(520px,100%);max-height:min(92svh,760px);overflow:auto;
  background:linear-gradient(180deg,#0d110d,#0a0d0a);border:1px solid var(--hairline);
  border-radius:22px;padding:38px 36px;box-shadow:0 40px 120px -30px rgba(0,0,0,.9),0 0 0 1px rgba(230,195,104,.08);
  animation:modalIn .4s var(--ease-out);
}
@keyframes modalIn{from{opacity:0;transform:translateY(18px) scale(.98)}to{opacity:1;transform:none}}
.modal-x{
  position:absolute;top:14px;right:16px;width:38px;height:38px;border-radius:100px;
  background:rgba(244,239,226,.05);border:1px solid var(--hairline-soft);color:var(--cream-dim);
  font-size:20px;line-height:1;cursor:pointer;transition:color .25s,border-color .25s;
}
.modal-x:hover{color:var(--gold);border-color:var(--gold)}
.modal-card h3{font-family:'Cormorant Garamond',serif;font-size:30px;font-weight:600;margin:10px 0 8px}
.modal-sub{font-size:14.5px;color:var(--cream-dim);line-height:1.6;margin-bottom:22px}
#accessForm{display:flex;flex-direction:column;gap:16px}
#accessForm label{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--cream-dim);display:flex;flex-direction:column;gap:7px;font-weight:600}
#accessForm label span{text-transform:none;letter-spacing:0;color:var(--muted);font-weight:400}
#accessForm input,#accessForm textarea{
  font:inherit;font-size:15px;color:var(--cream);padding:12px 14px;border-radius:12px;
  background:rgba(244,239,226,.04);border:1px solid var(--hairline-soft);outline:none;
  transition:border-color .25s,background .25s;resize:vertical;
}
#accessForm input::placeholder,#accessForm textarea::placeholder{color:rgba(244,239,226,.25)}
#accessForm input:focus,#accessForm textarea:focus{border-color:var(--gold);background:rgba(244,239,226,.06)}
#accessForm .btn{justify-content:center;margin-top:6px}
#accessForm .btn[disabled]{opacity:.6;cursor:wait;transform:none}
.hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;opacity:0}
.form-note{font-size:13px;color:var(--gold);text-align:center}
.form-legal{font-size:12px;color:var(--muted);text-align:center;margin-top:2px}
.form-legal a{color:var(--cream-dim);text-decoration:underline}
.form-err{font-size:13.5px;color:#e2907e;text-align:center;line-height:1.5}
.form-err a{color:var(--gold);text-decoration:underline}
.modal-done{text-align:center;padding:14px 0 6px}
.done-mark{
  width:64px;height:64px;border-radius:100px;margin:0 auto 18px;font-size:28px;
  background:linear-gradient(135deg,#f4dd94,#e6c368 40%,#c9a227);color:#181405;
  display:grid;place-items:center;font-weight:700;box-shadow:0 14px 40px -10px rgba(230,195,104,.6);
}
.modal-done .cta-doc{margin:18px 0 22px}
body.modal-open{overflow:hidden}

/* ================= RESPONSIVE ================= */
@media(max-width:980px){
  .nav-links a:not(.btn){display:none}
  .nav-links{gap:12px}
  .problem .split,.spot .split,.hub .ring-wrap,.appinstall .split{grid-template-columns:1fr;gap:48px}
  .install-cards{grid-template-columns:1fr}
  .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 14px;font-size:12px;white-space:nowrap}
  .modal-card{padding:30px 22px}
  .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}
}

/* ================= FAQ ================= */
.faq{background:var(--ink-2);border-top:1px solid var(--hairline-soft)}
.faq-list{max-width:820px;display:flex;flex-direction:column}
.faq-item{border-bottom:1px solid var(--hairline-soft)}
.faq-item:first-child{border-top:1px solid var(--hairline-soft)}
.faq-item summary{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:22px 4px;cursor:pointer;list-style:none;
  font-size:17px;font-weight:400;color:var(--cream);
  transition:color .25s var(--ease-out);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:hover{color:var(--gold)}
.faq-item[open] summary{color:var(--gold)}
.faq-ind{position:relative;flex:0 0 14px;height:14px}
.faq-ind::before,.faq-ind::after{
  content:"";position:absolute;left:0;top:6px;width:14px;height:1.5px;
  background:var(--gold);transition:transform .3s var(--ease-out);
}
.faq-ind::after{transform:rotate(90deg)}
.faq-item[open] .faq-ind::after{transform:rotate(0)}
.faq-a{padding:0 44px 24px 4px}
.faq-a p{font-size:15.5px;line-height:1.7;color:var(--cream-dim);max-width:62ch}
.faq-a b{color:var(--cream);font-weight:500}
.faq-a a{color:var(--gold);border-bottom:1px solid var(--hairline)}

/* ================= TRIAL / FOUNDERS NOTES ================= */
.trial-note{
  margin-top:14px;font-size:12.5px;letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold);font-weight:500;
}
.cta-band .founders-note{
  position:relative;margin:26px auto 0;font-size:14px;color:var(--muted);max-width:540px;
}
.cta-band .founders-note b{color:var(--gold);font-weight:600}

/* ================= ASK BUBBLE ================= */
.ask{position:fixed;right:26px;bottom:26px;z-index:80;font-family:'Inter',system-ui,sans-serif}
.ask-fab{
  display:inline-flex;align-items:center;gap:10px;
  padding:13px 20px;border:1px solid var(--hairline);border-radius:999px;
  background:rgba(12,15,12,.92);backdrop-filter:blur(10px);
  color:var(--cream);font-size:13.5px;font-weight:500;letter-spacing:.02em;cursor:pointer;
  box-shadow:0 10px 34px rgba(0,0,0,.45);
  transition:border-color .25s,transform .25s var(--ease-out);
}
.ask-fab:hover{border-color:var(--gold);transform:translateY(-2px)}
.ask-q{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;
  background:linear-gradient(115deg,#f7e3a6,#c9a227);color:#0a0c0a;
  font-weight:600;font-size:13px;
}
.ask-panel{
  position:absolute;right:0;bottom:calc(100% + 14px);
  width:min(360px,calc(100vw - 44px));
  background:#0d100d;border:1px solid var(--hairline);border-radius:16px;
  box-shadow:0 24px 70px rgba(0,0,0,.6);padding:18px;
}
.ask-panel[hidden]{display:none}
.ask-head{display:flex;flex-direction:column;gap:2px;margin-bottom:12px}
.ask-head b{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:600;color:var(--cream)}
.ask-head span{font-size:12.5px;color:var(--muted)}
.ask-search{
  width:100%;padding:11px 14px;border-radius:10px;
  border:1px solid var(--hairline-soft);background:rgba(244,239,226,.04);
  color:var(--cream);font-size:14px;font-family:inherit;outline:none;
}
.ask-search:focus{border-color:var(--gold)}
.ask-search::placeholder{color:var(--muted)}
.ask-results{max-height:280px;overflow-y:auto;margin:10px 0 4px;display:flex;flex-direction:column;gap:4px}
.ask-hit{padding:10px 12px;border-radius:10px;cursor:pointer;transition:background .2s}
.ask-hit:hover,.ask-hit.open{background:rgba(230,195,104,.07)}
.ask-hit .q{font-size:13.5px;font-weight:500;color:var(--cream);display:flex;justify-content:space-between;gap:10px}
.ask-hit .q::after{content:"+";color:var(--gold);font-weight:400}
.ask-hit.open .q::after{content:"–"}
.ask-hit .a{display:none;font-size:13px;line-height:1.65;color:var(--cream-dim);margin-top:7px}
.ask-hit.open .a{display:block}
.ask-empty{padding:10px 12px;font-size:13px;color:var(--muted)}
.ask-foot{display:flex;align-items:center;justify-content:space-between;gap:12px;border-top:1px solid var(--hairline-soft);padding-top:13px;margin-top:6px}
.ask-foot>span{font-size:12.5px;color:var(--muted)}
.ask-foot .btn{padding:9px 16px;font-size:12.5px}
@media(max-width:620px){
  .ask{right:16px;bottom:16px}
  .ask-label{display:none}
  .ask-fab{padding:13px 15px}
  .faq-a{padding-right:8px}
}

/* ================= SPECIES CARDS (kennels & catteries) ================= */
.species{background:var(--ink);border-top:1px solid var(--hairline-soft)}
.species-cards .install-card p{font-size:14.5px;color:var(--cream-dim);line-height:1.65;margin-bottom:18px}
.species-link{
  display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:500;color:var(--gold);
  border-bottom:1px solid rgba(230,195,104,.35);padding-bottom:2px;transition:border-color .25s;
}
.species-link::after{content:"→";transition:transform .3s var(--ease-out)}
.species-link:hover{border-color:var(--gold)}
.species-link:hover::after{transform:translateX(4px)}

/* ================= SUBPAGES (landing pages, blog, legal) =================
   No GSAP/Lenis/three on these pages: nav is always visible, no preloader,
   no .reveal/data-lines hooks. Everything renders without JS. */
body.subpage header.nav{
  transform:none;
  background:rgba(7,9,7,.78);backdrop-filter:blur(16px) saturate(150%);
  border-bottom:1px solid var(--hairline);
}
.page-hero{padding:190px 0 84px;background:
  radial-gradient(900px 480px at 70% 0%,rgba(30,74,56,.35),transparent 60%),
  linear-gradient(180deg,#0a0d0a,var(--ink))}
.page-hero .eyebrow{margin-bottom:6px}
.page-hero h1{
  font-family:'Cormorant Garamond',serif;font-weight:600;
  font-size:clamp(38px,5.6vw,68px);line-height:1.05;letter-spacing:-.01em;margin:18px 0 24px;max-width:850px;
}
.page-hero .lede{font-size:clamp(16.5px,1.8vw,20px);color:var(--cream-dim);max-width:640px;line-height:1.65}
.page-hero .hero-cta{display:flex;gap:18px;margin-top:38px;flex-wrap:wrap;align-items:center}
.lp-section{padding:96px 0}
.lp-section.alt{background:var(--ink-2);border-top:1px solid var(--hairline-soft);border-bottom:1px solid var(--hairline-soft)}
.lp-split{display:grid;grid-template-columns:1fr 1.05fr;gap:64px;align-items:center}
.lp-split.flip{grid-template-columns:1.05fr 1fr}
.lp-split h2{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:clamp(28px,3.6vw,44px);line-height:1.1;margin:14px 0 18px}
.lp-split p{font-size:16px;color:var(--cream-dim);margin-bottom:14px;line-height:1.7}
.lp-split ul{list-style:none;display:flex;flex-direction:column;gap:12px;margin-top:6px}
.lp-split ul li{display:flex;gap:12px;font-size:15px;color:var(--cream-dim);line-height:1.6}
.lp-split ul li::before{content:"✓";flex:none;width:22px;height:22px;border-radius:7px;margin-top:2px;
  background:rgba(51,105,61,.28);color:#82d193;display:grid;place-items:center;font-size:12px}
.lp-shot{border-radius:14px;overflow:hidden;border:1px solid var(--hairline);background:#0d100e;
  box-shadow:0 40px 90px -35px rgba(0,0,0,.9),0 0 70px -30px rgba(201,162,39,.18);
  display:flex;flex-direction:column}
.lp-shot .chrome{display:flex;align-items:center;gap:7px;padding:11px 15px;background:#141814;border-bottom:1px solid var(--hairline-soft);flex:none}
.lp-shot .chrome i{width:9px;height:9px;border-radius:50%;background:#2b3028;display:block}
.lp-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}
.lp-shot img{width:100%;display:block}
.lp-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:24px}
.lp-card{border:1px solid var(--hairline-soft);border-radius:18px;padding:26px 24px;
  background:linear-gradient(180deg,rgba(244,239,226,.035),rgba(244,239,226,.015))}
.lp-card h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:600;margin-bottom:10px;color:var(--cream)}
.lp-card p{font-size:14px;color:var(--cream-dim);line-height:1.65}
.crumbs{font-size:12.5px;color:var(--muted);letter-spacing:.04em;margin-bottom:10px}
.crumbs a{color:var(--muted);border-bottom:1px solid var(--hairline-soft)}
.crumbs a:hover{color:var(--gold)}
/* article / blog prose */
.prose{max-width:760px;margin:0 auto}
.prose h2{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:clamp(26px,3vw,36px);line-height:1.15;margin:52px 0 18px}
.prose h3{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:22px;margin:36px 0 12px;color:var(--cream)}
.prose p{font-size:16.5px;color:var(--cream-dim);line-height:1.75;margin-bottom:18px}
.prose ul,.prose ol{margin:0 0 18px 22px;display:flex;flex-direction:column;gap:8px}
.prose li{font-size:16px;color:var(--cream-dim);line-height:1.65}
.prose a{color:var(--gold);border-bottom:1px solid rgba(230,195,104,.35)}
.prose a:hover{border-color:var(--gold)}
.prose b,.prose strong{color:var(--cream);font-weight:500}
.prose blockquote{border-left:2px solid var(--gold);padding:6px 0 6px 22px;margin:26px 0;
  font-family:'Cormorant Garamond',serif;font-size:21px;line-height:1.5;color:var(--cream)}
.post-meta{font-size:13px;color:var(--muted);letter-spacing:.06em;text-transform:uppercase;margin-bottom:8px}
.post-list{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;margin-top:10px}
.post-card{display:block;border:1px solid var(--hairline-soft);border-radius:18px;padding:28px 26px;
  background:linear-gradient(180deg,rgba(244,239,226,.035),rgba(244,239,226,.015));
  transition:border-color .3s,transform .3s var(--ease-out)}
.post-card:hover{border-color:var(--gold);transform:translateY(-3px)}
.post-card .tag{display:inline-block;font-size:10.5px;letter-spacing:.24em;text-transform:uppercase;
  color:var(--gold);border:1px solid rgba(230,195,104,.35);border-radius:100px;padding:5px 12px;margin-bottom:14px;font-weight:600}
.post-card h3{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:600;line-height:1.2;margin-bottom:10px;color:var(--cream)}
.post-card p{font-size:14.5px;color:var(--cream-dim);line-height:1.65}
.post-card .read{display:inline-block;margin-top:14px;font-size:13.5px;color:var(--gold)}
@media(max-width:980px){
  .lp-split,.lp-split.flip{grid-template-columns:1fr;gap:40px}
  .lp-cards{grid-template-columns:1fr}
  .post-list{grid-template-columns:1fr}
  .page-hero{padding:150px 0 64px}
  .lp-section{padding:72px 0}
}

/* "Rather watch?" — sits under the Handbook line in the CTA band */
.cta-band .cta-watch{
  position:relative;margin:14px auto 0;max-width:560px;
  font-size:15px;color:var(--muted);
}
.cta-band .cta-watch a{color:var(--gold);border-bottom:1px solid var(--hairline)}
.cta-band .cta-watch a:hover{border-bottom-color:var(--gold)}
