/* ===========================================================================
   Lithora — Modern revamp
   • Aesthetic: closer to lithosquare.com — oversized grotesque, topographic
     line motifs, minimal accent color, sharp editorial layouts.
   • Type: Schibsted Grotesk (display) + Geist (body) + Geist Mono.
   • Light use of brand gem palette as accent only.
=========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800;900&family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* ---------- Brand (gem palette — accents only) ---------- */
  --brand-navy:        #1f2d3a;
  --brand-slate:       #3a4844;
  --brand-sage:        #6b7d72;
  --brand-moss:        #7d9080;
  --brand-olive:       #9a937a;
  --brand-amber:       #c8a45a;
  --brand-terracotta:  #b85c4a;
  --accent:            #c8d3e0;          /* neutral chrome accent */

  /* ---------- Surfaces (deeper / flatter than design system) ---------- */
  --ink:               #0a0a0c;          /* page background */
  --ink-1:             #0f0f12;          /* elevated */
  --ink-2:             #15151a;          /* card */
  --ink-3:             #1c1c22;          /* hover */

  /* ---------- Foreground ---------- */
  --fg-0:              #ffffff;
  --fg-1:              #ededf0;
  --fg-2:              #d6d6dc;
  --fg-3:              rgba(255,255,255,0.62);
  --fg-4:              rgba(255,255,255,0.48);
  --fg-5:              rgba(255,255,255,0.34);
  --fg-6:              rgba(255,255,255,0.22);

  /* ---------- Lines ---------- */
  --line-1:            rgba(255,255,255,0.06);
  --line-2:            rgba(255,255,255,0.10);
  --line-3:            rgba(255,255,255,0.16);
  --line-4:            rgba(255,255,255,0.28);

  /* ---------- Type ---------- */
  --font-display:      'Schibsted Grotesk', 'Helvetica Neue', sans-serif;
  --font-sans:         'Geist', system-ui, -apple-system, sans-serif;
  --font-mono:         'Geist Mono', ui-monospace, monospace;

  /* ---------- Geometry ---------- */
  --radius-xs: 4px;  --radius-sm: 6px;  --radius-md: 8px;
  --radius-lg: 12px; --radius-xl: 18px; --radius-pill: 999px;

  /* ---------- Motion ---------- */
  --ease-out:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard:     cubic-bezier(0.2, 0, 0, 1);
  --dur-fast:          120ms;
  --dur-base:          200ms;

  /* page rhythm */
  --gutter:            32px;
  --max-w:             1320px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--ink); }
body {
  background: var(--ink);
  color: var(--fg-2);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(255,255,255,0.16); color: #fff; }

img { display: block; max-width: 100%; }

/* ---------- typographic primitives ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-4);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .bar {
  display: inline-block; width: 24px; height: 1px;
  background: var(--fg-6);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--fg-0);
  text-wrap: balance;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ===========================================================================
   TOPO BG — recurring topographic-contour decoration
=========================================================================== */
.topo {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'><g fill='none' stroke='%23ffffff' stroke-width='0.6' stroke-opacity='0.12'><path d='M-50 720 C 180 700, 320 620, 520 660 S 880 720, 1250 660'/><path d='M-50 660 C 200 640, 360 560, 540 600 S 880 660, 1250 600'/><path d='M-50 600 C 180 580, 360 500, 560 540 S 900 600, 1250 540'/><path d='M-50 540 C 200 520, 380 440, 580 480 S 920 540, 1250 480'/><path d='M-50 480 C 220 460, 400 380, 600 420 S 940 480, 1250 420'/><path d='M-50 420 C 240 400, 420 320, 620 360 S 960 420, 1250 360'/><path d='M-50 360 C 260 340, 440 260, 640 300 S 980 360, 1250 300'/><path d='M-50 300 C 280 280, 460 200, 660 240 S 1000 300, 1250 240'/><path d='M-50 240 C 300 220, 480 140, 680 180 S 1020 240, 1250 180'/><path d='M-50 180 C 320 160, 500 80, 700 120 S 1040 180, 1250 120'/><path d='M-50 120 C 340 100, 520 20, 720 60 S 1060 120, 1250 60'/></g></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.topo--full { opacity: 0.4; }
.topo--soft { opacity: 0.18; }

/* ===========================================================================
   NAV
=========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  background: rgba(10,10,12,0.6);
  -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-1);
}
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.nav-logo img { height: 22px; width: auto; }
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--fg-0);
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 400;
  color: var(--fg-3);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent; border: 0;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--dur-base);
  position: relative;
}
.nav-link:hover { color: var(--fg-0); }
.nav-link .caret { font-size: 8px; opacity: 0.5; }

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-cta {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 0; background: #fff; color: var(--ink);
  cursor: pointer;
  transition: transform var(--dur-base), opacity var(--dur-base);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-cta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-moss); }

/* ---------- mega-menu dropdown ---------- */
.mega {
  position: absolute; top: 48px; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(900px, calc(100vw - 48px));
  background: rgba(15,15,18,0.92);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base), transform var(--dur-base);
}
.mega.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.mega-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--dur-base);
}
.mega-item:hover { background: rgba(255,255,255,0.04); }
.mega-item-head { display: flex; align-items: center; gap: 10px; }
.mega-item-glyph {
  width: 22px; height: 22px; display: grid; place-items: center;
  border: 1px solid var(--line-2); border-radius: 5px;
  color: var(--fg-2); font-family: var(--font-mono); font-size: 10px; font-weight: 500;
}
.mega-item-title { font-size: 13px; font-weight: 500; color: var(--fg-0); }
.mega-item-body { font-size: 12px; color: var(--fg-4); line-height: 1.5; padding-left: 32px; }
.mega-foot {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--line-1);
  display: flex; justify-content: space-between; align-items: center;
  padding-left: 6px; padding-right: 6px;
}
.mega-foot-l { font-family: var(--font-mono); font-size: 11px; color: var(--fg-5); letter-spacing: 0.12em; text-transform: uppercase; }
.mega-foot-link { font-size: 12px; color: var(--fg-2); display: inline-flex; gap: 6px; }
.mega-foot-link:hover { color: var(--fg-0); }

/* ===========================================================================
   HERO — oversized grotesque + topo lines + cursor-tracking glow
=========================================================================== */
.hero {
  position: relative; width: 100%;
  min-height: 100svh;
  padding: 100px var(--gutter) 0;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: var(--ink);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(125,144,128,0.10) 0%, transparent 60%),
    radial-gradient(50% 40% at 12% 90%, rgba(154,147,122,0.08) 0%, transparent 60%);
}
.hero-video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-cursor {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(400px 400px at var(--mx,50%) var(--my,40%), rgba(200,164,90,0.10) 0%, transparent 70%);
  transition: background 0.2s linear;
}
.hero-topo {
  position: absolute; inset: -10%; z-index: -1; opacity: 0.55;
  will-change: transform;
}

.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-top: 40px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-4);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-coords {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--fg-4);
  letter-spacing: 0.06em;
  text-align: right;
  line-height: 1.6;
}
.hero-coords strong { color: var(--fg-0); font-weight: 500; }

.hero-center {
  margin-top: auto; margin-bottom: auto;
  padding: 80px 0 40px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--fg-0);
  text-wrap: balance;
  text-align: center;
}
.hero-h1-row { display: block; }
.hero-h1-row + .hero-h1-row { color: var(--fg-3); }

.hero-sub-row {
  margin-top: 36px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line-2);
  padding-top: 32px;
}
.hero-sub {
  max-width: 560px;
  font-size: 16px; font-weight: 400; line-height: 1.55;
  color: var(--fg-2);
  text-align: center;
}
.hero-actions { display: flex; gap: 10px; flex-shrink: 0; justify-content: center; }

.hero-bottom {
  padding: 32px 0 28px;
  border-top: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 40px;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--fg-4);
  letter-spacing: 0.08em; text-transform: uppercase;
  flex-wrap: wrap;
}
.hero-bottom-item { display: inline-flex; align-items: center; gap: 10px; }
.hero-bottom-item .v { color: var(--fg-0); font-weight: 500; letter-spacing: 0; text-transform: none; font-size: 13px; }
.hero-bottom-item .vmono { color: var(--fg-0); font-weight: 500; }
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-moss);
  box-shadow: 0 0 0 0 rgba(125,144,128,0.6);
  animation: pulse 2.4s infinite var(--ease-out);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(125,144,128,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(125,144,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(125,144,128,0); }
}

/* ---------- BUTTONS ---------- */
.btn {
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: opacity var(--dur-base), transform var(--dur-base), background var(--dur-base), color var(--dur-base), border-color var(--dur-base);
  white-space: nowrap;
}
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--fg-1);
  border: 1px solid var(--line-3);
}
.btn-ghost:hover { border-color: var(--line-4); color: var(--fg-0); background: rgba(255,255,255,0.03); }
.btn-arrow svg { width: 14px; height: 14px; }

/* ===========================================================================
   TICKER (commodity tape)
=========================================================================== */
.ticker {
  position: relative; z-index: 3;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  background: var(--ink-1);
  overflow: hidden;
  height: 40px; display: flex; align-items: center;
}
.ticker-label {
  flex-shrink: 0;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--fg-4); letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0 22px;
  border-right: 1px solid var(--line-1);
  display: flex; align-items: center; gap: 8px;
  height: 100%;
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 70s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 0 26px;
  display: inline-flex; align-items: center; gap: 10px;
  border-right: 1px solid var(--line-1);
  font-family: var(--font-mono); font-size: 12px;
  color: var(--fg-3);
}
.ticker-item-sym { color: var(--fg-0); font-weight: 500; }
.ticker-item-name { color: var(--fg-4); }
.ticker-item-pct.up   { color: #94c08b; }
.ticker-item-pct.down { color: #d68a78; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================================================
   SECTIONS
=========================================================================== */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 160px var(--gutter) 0;
  position: relative;
}
.section:last-of-type { padding-bottom: 0; }

.section-head {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head-l { display: flex; flex-direction: column; gap: 16px; }
.section-num {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--fg-5);
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.section-num .dash { width: 32px; height: 1px; background: var(--fg-6); }

.section-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--fg-0);
  text-wrap: balance;
  max-width: 16ch;
}
.section-lead {
  max-width: 460px;
  font-size: 15px; line-height: 1.6;
  color: var(--fg-3);
}

/* ===========================================================================
   WHY THIS MATTERS — 3 reason cards
=========================================================================== */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-1); border: 1px solid var(--line-1); border-radius: var(--radius-lg); overflow: hidden; }
.why-card { background: var(--ink); padding: 36px 30px 32px; min-height: 320px; display: flex; flex-direction: column; gap: 18px; transition: background var(--dur-base); }
.why-card:hover { background: var(--ink-1); }
.why-card-n {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-5); letter-spacing: 0.18em;
}
.why-card-h {
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--fg-0); margin-top: auto;
}
.why-card-p {
  font-size: 14px; line-height: 1.55; color: var(--fg-3);
}

/* ===========================================================================
   PROCESS — Target / Discover / Delineate (3-step large)
=========================================================================== */
.process { display: flex; flex-direction: column; }

/* The horizontal divider between steps animates in: width 0 → 100% */
.process-step {
  display: grid; grid-template-columns: 80px 1.2fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid transparent;  /* placeholder */
  align-items: start;
  position: relative;
}
.process-step::before {
  content: ""; position: absolute; top: 0; left: 0;
  height: 1px; width: 0; background: var(--line-2);
  transition: width 1.1s 0.05s var(--ease-out);
}
.process-step.in::before { width: 100%; }
.process-step:last-child::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0; background: var(--line-2);
  transition: width 1.1s 0.6s var(--ease-out);
}
.process-step:last-child.in::after { width: 100%; }

/* Step number — fades and slides in subtly */
.process-step-n {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--fg-5); letter-spacing: 0.18em;
  padding-top: 14px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.7s 0.15s var(--ease-out), transform 0.7s 0.15s var(--ease-out);
}
.process-step.in .process-step-n { opacity: 1; transform: translateY(0); }

/* Big word — slides in from left + draws an underline beneath */
.process-step-h {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.94; letter-spacing: -0.045em;
  color: var(--fg-0);
  position: relative;
  display: inline-block; /* so underline width tracks text */
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s var(--ease-out), transform 1s var(--ease-out);
}
.process-step.in .process-step-h { opacity: 1; transform: translateX(0); }

.process-step-h::after {
  content: "";
  position: absolute; left: 0; bottom: -14px;
  height: 2px; width: 62%;
  background: linear-gradient(90deg,
    var(--brand-moss) 0%,
    var(--brand-amber) 55%,
    transparent 100%);
  opacity: var(--process-progress, 0);
  transition: none;
  transform: none;
  transform-origin: left center;
}

/* Right column — slides in from the right */
.process-step-r {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 24px;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s 0.2s var(--ease-out), transform 1s 0.2s var(--ease-out);
}
.process-step.in .process-step-r { opacity: 1; transform: translateX(0); }

.process-step-p { font-size: 15px; line-height: 1.6; color: var(--fg-3); max-width: 460px; }

/* Tags — stagger pop in after the panel arrives */
.process-step-features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.process-tag {
  font-family: var(--font-mono); font-size: 10px;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  color: var(--fg-3);
  letter-spacing: 0.06em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color var(--dur-base), border-color var(--dur-base);
}
.process-step.in .process-tag { opacity: 1; transform: translateY(0); }
.process-step.in .process-tag:nth-child(1) { transition-delay: 0.55s, 0.55s, 0s, 0s; }
.process-step.in .process-tag:nth-child(2) { transition-delay: 0.65s, 0.65s, 0s, 0s; }
.process-step.in .process-tag:nth-child(3) { transition-delay: 0.75s, 0.75s, 0s, 0s; }
.process-step.in .process-tag:nth-child(4) { transition-delay: 0.85s, 0.85s, 0s, 0s; }
.process-tag:hover { color: var(--fg-0); border-color: var(--line-3); }

@media (prefers-reduced-motion: reduce) {
  .process-step::before, .process-step:last-child::after { width: 100% !important; transition: none !important; }
  .process-step-n, .process-step-h, .process-step-r, .process-tag {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .process-step-h::after { opacity: 1 !important; }
}

/* ===========================================================================
   SUITE — Hub anchor + 3-app composer
=========================================================================== */
.suite-frame {
  border: 1px solid var(--line-1);
  border-radius: var(--radius-xl);
  background: var(--ink-1);
  overflow: hidden;
  display: flex; flex-direction: column;
}

/* ---- HUB band (always-included anchor) ---- */
.suite-hub {
  position: relative;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  padding: 40px 40px 38px;
  background:
    linear-gradient(135deg, rgba(125,144,128,0.08) 0%, transparent 60%),
    var(--ink-2);
  border-bottom: 1px solid var(--line-1);
}
.suite-hub-l { display: flex; flex-direction: column; gap: 18px; }
.suite-hub-tag {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--brand-moss); letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.suite-hub-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.035em; line-height: 0.96;
  color: var(--fg-0);
}
.suite-hub-body {
  font-size: 14.5px; color: var(--fg-2); line-height: 1.6;
  max-width: 560px;
}
.suite-hub-body em {
  font-style: normal; color: var(--fg-0);
  background: rgba(125,144,128,0.18);
  padding: 1px 6px; border-radius: 3px;
}
.suite-hub-bullets { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }

.suite-hub-vs {
  align-self: stretch;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--line-1);
  padding-left: 40px;
  gap: 6px;
  justify-content: center;
}
.vs-row {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 0;
}
.vs-row .vs-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-5);
}
.vs-row .vs-text {
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; line-height: 1.0; letter-spacing: -0.025em;
}
.vs-row--off { color: var(--fg-5); }
.vs-row--off .vs-text { color: var(--fg-5); text-decoration: line-through; text-decoration-color: var(--fg-6); text-decoration-thickness: 1px; }
.vs-row--on .vs-text { color: var(--fg-0); }
.vs-row--on { border-top: 1px solid var(--line-1); padding-top: 18px; }
.vs-note {
  margin-top: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-4); letter-spacing: 0.06em;
}

/* ---- body: 3 add-on apps + summary rail ---- */
.suite-body { display: grid; grid-template-columns: 1.55fr 1fr; }
.suite-grid {
  display: grid; gap: 1px;
  background: var(--line-1);
  border-right: 1px solid var(--line-1);
}
.suite-grid--3 { grid-template-columns: repeat(3, 1fr); }

.module {
  background: var(--ink-1);
  padding: 28px 26px 24px;
  cursor: pointer;
  position: relative;
  min-height: 260px;
  display: flex; flex-direction: column;
  transition: background var(--dur-base);
  text-align: left;
  border: 0; color: inherit; font-family: inherit;
}
.module:hover { background: var(--ink-2); }
.module.on { background: var(--ink-2); }
.module.on::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--brand-moss); border-radius: 0;
  pointer-events: none;
}
.suite-grid .module:first-child.on::after {
  border-bottom-left-radius: var(--radius-xl);
}

.module-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.module-glyph {
  width: 30px; height: 30px;
  border: 1px solid var(--line-2); border-radius: 5px;
  display: grid; place-items: center;
  transition: border-color var(--dur-base), background var(--dur-base);
}
.module.on .module-glyph { border-color: var(--brand-moss); background: rgba(125,144,128,0.12); }
.module-glyph svg { width: 14px; height: 14px; stroke: var(--fg-2); stroke-width: 1.4; fill: none; }
.module.on .module-glyph svg { stroke: var(--brand-moss); }
.module-num { font-family: var(--font-mono); font-size: 11px; color: var(--fg-5); letter-spacing: 0.1em; }

.module-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--fg-0); margin-bottom: 10px; line-height: 1.05;
}
.module-desc { font-size: 13px; color: var(--fg-3); line-height: 1.5; }

.module-bullets {
  margin-top: 14px; flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.module-bullet {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-4);
  padding-left: 12px; position: relative;
}
.module-bullet::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 6px; height: 1px; background: var(--line-3); transform: translateY(-50%);
}
.module.on .module-bullet::before { background: var(--brand-moss); }

.module-tag {
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--fg-5); letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.module.on .module-tag { color: var(--brand-moss); }
.module-tag .tier {
  padding: 3px 7px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  color: var(--fg-2);
  margin-left: auto;
}

.suite-summary {
  padding: 32px 30px;
  background: var(--ink-1);
  display: flex; flex-direction: column;
}
.suite-summary-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 18px; border-bottom: 1px solid var(--line-1);
}
.suite-summary-title { font-family: var(--font-display); font-weight: 500; font-size: 28px; color: var(--fg-0); letter-spacing: -0.02em; }
.suite-summary-tag { font-family: var(--font-mono); font-size: 11px; color: var(--fg-5); letter-spacing: 0.14em; }

.suite-list { flex: 1; padding-top: 14px; display: flex; flex-direction: column; gap: 2px; }
.suite-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0;
  font-family: var(--font-sans); font-size: 13px;
}
.suite-row--hub { padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px dashed var(--line-1); }
.suite-row--hub .suite-row-name { color: var(--fg-0); font-weight: 500; }
.suite-row--hub .suite-row-price { color: var(--brand-moss); font-family: var(--font-mono); }
.suite-row.empty { color: var(--fg-5); font-family: var(--font-display); font-size: 15px; padding: 20px 0; }
.suite-row-name { color: var(--fg-1); display: inline-flex; align-items: center; gap: 10px; }
.suite-row-name .dot { width: 6px; height: 6px; background: var(--brand-moss); border-radius: 50%; }
.suite-row-price { font-family: var(--font-mono); font-size: 12px; color: var(--fg-3); }

.suite-total {
  margin-top: 18px; padding-top: 20px;
  border-top: 1px solid var(--line-1);
  display: flex; align-items: baseline; justify-content: space-between;
}
.suite-total-l { font-family: var(--font-mono); font-size: 11px; color: var(--fg-5); letter-spacing: 0.14em; text-transform: uppercase; }
.suite-total-r { font-family: var(--font-display); font-weight: 500; font-size: 40px; color: var(--fg-0); letter-spacing: -0.03em; line-height: 1; }
.suite-total-r .suffix { font-family: var(--font-mono); font-size: 12px; color: var(--fg-4); letter-spacing: 0.08em; margin-left: 4px; }
.suite-cta { margin-top: 22px; }

/* ===========================================================================
   PROSPECTIVITY MAP
=========================================================================== */
.prospect-wrap {
  border: 1px solid var(--line-1);
  border-radius: var(--radius-xl);
  background: var(--ink-1);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 360px;
}
.prospect-map { position: relative; min-height: 580px; background: var(--ink); }
.prospect-map svg { width: 100%; height: 100%; display: block; }

.prospect-tabs {
  position: absolute; top: 20px; left: 20px;
  display: flex; gap: 2px;
  padding: 4px;
  background: rgba(15,15,18,0.8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
}
.prospect-tab {
  font-family: var(--font-mono); font-size: 11px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  color: var(--fg-3); cursor: pointer;
  background: transparent; border: 0;
  transition: color var(--dur-base), background var(--dur-base);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.prospect-tab:hover { color: var(--fg-0); }
.prospect-tab.on { background: rgba(255,255,255,0.10); color: var(--fg-0); }

.prospect-legend {
  position: absolute; left: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  background: rgba(15,15,18,0.8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
}
.prospect-legend-l { font-family: var(--font-mono); font-size: 10px; color: var(--fg-5); letter-spacing: 0.14em; text-transform: uppercase; }
.prospect-legend-ramp { display: flex; gap: 2px; }
.prospect-legend-ramp span { width: 16px; height: 6px; }
.prospect-legend-r { font-family: var(--font-mono); font-size: 10px; color: var(--fg-3); }

.prospect-detail {
  border-left: 1px solid var(--line-1);
  padding: 30px;
  display: flex; flex-direction: column;
  background: var(--ink-1);
}
.prospect-detail-eyebrow { font-family: var(--font-mono); font-size: 10px; color: var(--fg-5); letter-spacing: 0.18em; text-transform: uppercase; }
.prospect-detail-region {
  font-family: var(--font-display); font-weight: 500;
  font-size: 36px; color: var(--fg-0); margin-top: 12px;
  letter-spacing: -0.025em; line-height: 1.0;
}
.prospect-detail-coords { font-family: var(--font-mono); font-size: 11px; color: var(--fg-4); margin-top: 10px; letter-spacing: 0.04em; }

.prospect-stats { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.prospect-stat { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--line-1); }
.prospect-stat:last-child { border-bottom: 0; padding-bottom: 0; }
.prospect-stat-l { font-size: 13px; color: var(--fg-3); }
.prospect-stat-v { font-family: var(--font-mono); font-size: 13px; color: var(--fg-0); font-weight: 500; }

.prospect-minerals { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 6px; }
.mineral-pill {
  font-family: var(--font-mono); font-size: 10px;
  padding: 5px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--line-2);
  color: var(--fg-3);
  letter-spacing: 0.04em;
}

.prospect-targets-head { margin-top: 30px; font-family: var(--font-mono); font-size: 10px; color: var(--fg-5); letter-spacing: 0.18em; text-transform: uppercase; }
.prospect-targets { margin-top: 12px; display: flex; flex-direction: column; gap: 0; }
.prospect-target {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid var(--line-1);
  cursor: pointer; transition: padding var(--dur-base);
}
.prospect-target:last-child { border-bottom: 0; }
.prospect-target:hover { padding-left: 4px; }
.prospect-target-id { font-family: var(--font-mono); font-size: 12px; color: var(--fg-0); }
.prospect-target-mineral { font-size: 12px; color: var(--fg-3); flex: 1; padding-left: 14px; }
.prospect-target-conf { font-family: var(--font-mono); font-size: 11px; color: var(--brand-amber); }

.hex { cursor: pointer; transition: opacity var(--dur-fast); }
.hex:hover { opacity: 0.78; }

/* ===========================================================================
   LIFECYCLE — five-phase
=========================================================================== */
.lifecycle-rail {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  background: var(--ink-1);
  overflow: hidden;
}
.phase {
  padding: 22px 24px 22px;
  border-right: 1px solid var(--line-1);
  cursor: pointer; position: relative;
  background: var(--ink-1);
  transition: background var(--dur-base);
  text-align: left;
  border-top: 0; border-bottom: 0; border-left: 0;
  color: inherit; font-family: inherit;
}
.phase:last-child { border-right: 0; }
.phase:hover { background: var(--ink-2); }
.phase.on { background: var(--ink-2); }
.phase.on::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brand-moss);
}
.phase-num { font-family: var(--font-mono); font-size: 10px; color: var(--fg-5); letter-spacing: 0.16em; text-transform: uppercase; }
.phase-name { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--fg-0); margin-top: 14px; letter-spacing: -0.02em; line-height: 1.0; }
.phase-desc { font-size: 12px; color: var(--fg-3); margin-top: 8px; line-height: 1.5; }

.phase-detail {
  margin-top: 1px;
  border: 1px solid var(--line-1); border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--ink);
  padding: 56px 48px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}
.phase-detail-l { display: flex; flex-direction: column; gap: 22px; }
.phase-detail-h {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px); color: var(--fg-0);
  line-height: 0.96; letter-spacing: -0.035em;
}

/* type-reveal — char-by-char timed entrance */
.type-reveal { display: inline; }
.type-word { display: inline-block; white-space: nowrap; }
.type-space { display: inline-block; width: 0.32em; }
.type-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  filter: blur(2px);
  animation: typeIn 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform, filter;
}
@keyframes typeIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .type-char { opacity: 1; transform: none; filter: none; animation: none; }
}
.phase-detail-p { font-size: 15px; color: var(--fg-3); line-height: 1.6; max-width: 520px; }

.phase-features { display: flex; flex-direction: column; gap: 0; margin-top: 10px; }
.phase-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line-1);
}
.phase-feature:first-child { border-top: 1px solid var(--line-1); }
.phase-feature-glyph {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--fg-5); letter-spacing: 0.1em;
  padding-top: 3px; flex-shrink: 0; min-width: 44px;
}
.phase-feature-text { font-size: 14px; color: var(--fg-2); line-height: 1.5; }
.phase-feature-text strong { color: var(--fg-0); font-weight: 500; }

.phase-art {
  border: 1px solid var(--line-1);
  border-radius: var(--radius-md);
  background: var(--ink);
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

/* ===========================================================================
   DRILLHOLES TABLE
=========================================================================== */
.tbl-wrap { border: 1px solid var(--line-1); border-radius: var(--radius-lg); overflow: hidden; }
.tbl { width: 100%; border-collapse: collapse; }
.tbl thead th {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  color: var(--fg-5); letter-spacing: 0.16em; text-align: left;
  padding: 16px 24px; border-bottom: 1px solid var(--line-1);
  background: var(--ink-1); text-transform: uppercase;
}
.tbl tbody td {
  font-family: var(--font-sans); font-size: 13px; padding: 20px 24px;
  border-bottom: 1px solid var(--line-1);
  color: var(--fg-2); vertical-align: middle;
}
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr { transition: background var(--dur-fast); cursor: pointer; }
.tbl tbody tr:hover td { background: var(--ink-1); }
.tbl-id { font-family: var(--font-mono); font-size: 12px; color: var(--fg-0); font-weight: 500; }

.cbar { display: flex; align-items: center; gap: 10px; }
.cbar-track { width: 88px; height: 2px; background: var(--line-2); overflow: hidden; }
.cbar-fill  { height: 100%; background: var(--fg-1); }
.cbar-num   { font-family: var(--font-mono); font-size: 11px; color: var(--fg-4); min-width: 32px; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--line-2); color: var(--fg-4);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.pill.on { border-color: var(--line-3); color: var(--fg-0); }
.pill-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }

/* ===========================================================================
   PROOF — testimonial slab
=========================================================================== */
.proof {
  padding: 100px 64px;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-xl);
  background: var(--ink-1);
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.proof .topo { opacity: 0.18; }
.proof-content { position: relative; z-index: 1; }
.proof-quote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--fg-0);
  text-wrap: pretty;
}
.proof-sources {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line-1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proof-sources-l {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-5);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.proof-sources-v {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}

.proof-stats { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 22px; }
.proof-stat { padding-bottom: 22px; border-bottom: 1px solid var(--line-1); }
.proof-stat:last-child { border-bottom: 0; padding-bottom: 0; }
.proof-stat-v {
  font-family: var(--font-display); font-weight: 500;
  font-size: 64px; color: var(--fg-0); line-height: 0.92;
  letter-spacing: -0.035em;
  display: flex; align-items: baseline;
}
.proof-stat-v .unit-pre {
  font-family: var(--font-display); font-weight: 500;
  font-size: 40px; color: var(--fg-3); margin-right: 2px;
  letter-spacing: -0.02em;
}
.proof-stat-v .unit { font-family: var(--font-mono); font-size: 14px; color: var(--fg-4); letter-spacing: 0.06em; margin-left: 8px; font-weight: 400; }
.proof-stat-l { font-family: var(--font-mono); font-size: 11px; color: var(--fg-2); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 12px; line-height: 1.5; }
.proof-stat-src { font-family: var(--font-mono); font-size: 10px; color: var(--fg-5); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 6px; }

/* ===========================================================================
   CTA BAND
=========================================================================== */
.cta-band {
  margin-top: 160px;
  padding: 160px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-1);
}
.cta-band .topo { opacity: 0.4; }
.cta-band-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }

/* cursor glow — mirrors hero-cursor */
.cta-cursor {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(400px 400px at var(--cta-mxp, 50%) var(--cta-myp, 40%), rgba(200,164,90,0.10) 0%, transparent 70%);
}

/* ore reveal layer: mask hides everything except a torch circle at the cursor */
.cta-ore-layer {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  -webkit-mask-image: radial-gradient(circle 160px at var(--cta-mx, -9999px) var(--cta-my, -9999px), black 0%, black 30%, transparent 100%);
  mask-image: radial-gradient(circle 160px at var(--cta-mx, -9999px) var(--cta-my, -9999px), black 0%, black 30%, transparent 100%);
}
.cta-ore {
  position: absolute; pointer-events: none; user-select: none;
  filter: drop-shadow(0 0 12px rgba(200,164,90,0.45));
}
.cta-h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(64px, 11vw, 192px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: var(--fg-0);
}
.cta-sub {
  margin: 36px auto 0;
  font-size: 16px; color: var(--fg-3); max-width: 520px; line-height: 1.6;
}
.cta-actions { margin-top: 44px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===========================================================================
   FOOTER
=========================================================================== */
.footer {
  border-top: 1px solid var(--line-1);
  padding: 80px var(--gutter) 32px;
  background: var(--ink);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; }
.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 320px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand-logo img { height: 24px; }
.footer-brand-logo .wm { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--fg-0); }
.footer-tag { font-family: var(--font-display); font-size: 20px; color: var(--fg-2); line-height: 1.2; font-weight: 500; letter-spacing: -0.02em; }
.footer-col-title { font-family: var(--font-mono); font-size: 10px; color: var(--fg-5); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col-list { display: flex; flex-direction: column; gap: 11px; }
.footer-col-link { font-size: 13px; color: var(--fg-3); transition: color var(--dur-base); cursor: pointer; }
.footer-col-link:hover { color: var(--fg-0); }

.footer-bottom {
  max-width: var(--max-w); margin: 80px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line-1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-family: var(--font-mono); font-size: 11px; color: var(--fg-5); }
.footer-region { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-region .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-moss); }

/* huge footer wordmark — Webflow-ism */
.footer-mark {
  max-width: var(--max-w);
  margin: 96px auto 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(96px, 19vw, 340px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--ink-2);
  user-select: none;
  text-align: center;
  white-space: nowrap;
}

/* ===========================================================================
   REVEAL / ANIMATIONS
=========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.up { opacity: 0; animation: fadeUp 1s var(--ease-out) forwards; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* WIPE — clip-path reveal used on big headlines */
.wipe {
  clip-path: inset(0 100% -10% 0);
  transition: clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.wipe.in { clip-path: inset(0 0 -10% 0); }

/* WIPE STAGGER — each child wipes with offset delay */
.wipe-stagger > * {
  clip-path: inset(0 100% -10% 0);
  transition: clip-path 1.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.wipe-stagger > *:nth-child(1) { transition-delay: 0s; }
.wipe-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.wipe-stagger > *:nth-child(3) { transition-delay: 0.24s; }
.wipe-stagger > *:nth-child(4) { transition-delay: 0.36s; }
.wipe-stagger > *.in { clip-path: inset(0 0 -10% 0); }

@media (prefers-reduced-motion: reduce) {
  .up, .reveal, .wipe, .wipe-stagger > * { opacity: 1; animation: none; transform: none; transition: none; clip-path: none !important; }
}

/* ===========================================================================
   SCROLL PROGRESS BAR — ultra-thin top hairline
=========================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 1.5px;
  background: linear-gradient(90deg, var(--brand-moss) 0%, var(--brand-amber) 60%, var(--brand-terracotta) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ===========================================================================
   HEX PANEL — futuristic inspection card for hovered H3 tiles
=========================================================================== */
.hex-panel {
  position: absolute; top: 20px; right: 20px; z-index: 5;
  width: 248px;
  background: rgba(10,10,12,0.86);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--line-2);
  padding: 16px 16px 14px;
  font-family: var(--font-mono);
  color: var(--fg-2);
  user-select: none;
  animation: hexPanelIn 380ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes hexPanelIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hex-panel-bracket {
  position: absolute; width: 8px; height: 8px;
  border-color: var(--brand-moss); border-style: solid; border-width: 0;
}
.hex-panel-bracket--tl { top: -1px; left: -1px;   border-top-width: 1px; border-left-width: 1px; }
.hex-panel-bracket--tr { top: -1px; right: -1px;  border-top-width: 1px; border-right-width: 1px; }
.hex-panel-bracket--bl { bottom: -1px; left: -1px;  border-bottom-width: 1px; border-left-width: 1px; }
.hex-panel-bracket--br { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }

.hex-panel-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px; border-bottom: 1px solid var(--line-1);
}
.hex-panel-lbl {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-5);
}
.hex-panel-id { font-size: 10.5px; color: var(--fg-0); letter-spacing: 0.02em; }

.hex-panel-prospect {
  display: flex; align-items: baseline; gap: 12px;
  padding: 16px 0 8px;
}
.hex-panel-prospect-num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 42px; line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg-0);
  font-variant-numeric: tabular-nums;
}
.hex-panel-prospect-l { display: flex; flex-direction: column; gap: 4px; }
.hex-panel-band {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500;
}
.hex-panel-band--vhigh { color: var(--brand-terracotta); }
.hex-panel-band--high  { color: var(--brand-amber); }
.hex-panel-band--med   { color: var(--brand-olive); }
.hex-panel-band--low   { color: var(--brand-moss); }
.hex-panel-band--trace { color: var(--fg-4); }
.hex-panel-band--bg    { color: var(--fg-5); }

.hex-panel-bar {
  height: 2px; background: var(--line-2);
  margin: 6px 0 14px;
  position: relative;
}
.hex-panel-bar-fill {
  height: 100%; background: var(--fg-3);
  transition: width 220ms var(--ease-out);
}
.hex-panel-bar-fill--vhigh { background: var(--brand-terracotta); }
.hex-panel-bar-fill--high  { background: var(--brand-amber); }
.hex-panel-bar-fill--med   { background: var(--brand-olive); }
.hex-panel-bar-fill--low   { background: var(--brand-moss); }
.hex-panel-bar-fill--trace { background: var(--fg-5); }
.hex-panel-bar-fill--bg    { background: var(--fg-6); }

.hex-panel-grid { display: flex; flex-direction: column; gap: 1px; padding-top: 4px; }
.hex-panel-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line-1);
}
.hex-panel-row:last-child { border-bottom: 0; }
.hex-panel-val {
  font-size: 11px; color: var(--fg-0);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* empty state */
.hex-panel--empty {
  padding: 26px 18px;
  text-align: center;
}
.hex-panel-empty-icon {
  font-size: 28px;
  color: var(--fg-5);
  line-height: 1; margin-bottom: 12px;
}
.hex-panel-empty-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-4);
  letter-spacing: 0.06em;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .hex-panel { right: 12px; top: 60px; width: 220px; padding: 14px; }
}
.scroll-hud {
  position: fixed; left: 24px; bottom: 24px; z-index: 90;
  width: 220px; padding: 14px 16px;
  background: rgba(15,15,18,0.78);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 0; /* squared = more HUD */
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  pointer-events: none;
  user-select: none;
  display: flex; flex-direction: column; gap: 6px;
}
.scroll-hud-row { display: flex; justify-content: space-between; align-items: center; }
.scroll-hud-row--head { padding-bottom: 8px; border-bottom: 1px solid var(--line-1); margin-bottom: 2px; }
.scroll-hud-row--pct { padding-top: 2px; }
.scroll-hud-lbl {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-5);
}
.scroll-hud-val {
  color: var(--fg-0); font-weight: 500; font-variant-numeric: tabular-nums;
  font-size: 11px;
}
.scroll-hud-row--head .scroll-hud-val { font-size: 11px; letter-spacing: 0.04em; }

.scroll-hud-bar {
  height: 1.5px; background: var(--line-2);
  position: relative; margin: 4px 0 2px;
}
.scroll-hud-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--brand-moss);
  transition: width 60ms linear;
}

/* corner brackets — HUD ornament */
.scroll-hud-bracket {
  position: absolute; width: 8px; height: 8px;
  border-color: var(--brand-moss); border-style: solid; border-width: 0;
}
.scroll-hud-bracket--tl { top: -1px; left: -1px; border-top-width: 1px; border-left-width: 1px; }
.scroll-hud-bracket--tr { top: -1px; right: -1px; border-top-width: 1px; border-right-width: 1px; }
.scroll-hud-bracket--bl { bottom: -1px; left: -1px; border-bottom-width: 1px; border-left-width: 1px; }
.scroll-hud-bracket--br { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }

/* hide HUD on small screens — would crowd content */
@media (max-width: 760px) {
  .scroll-hud { display: none; }
}

/* ===========================================================================
   RESPONSIVE
=========================================================================== */
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .why { grid-template-columns: 1fr; }
  .why-card { min-height: 200px; }
  .process-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .process-step-r { grid-column: 1 / -1; padding-top: 8px; }
  .suite-body { grid-template-columns: 1fr; }
  .suite-grid { border-right: 0; border-bottom: 1px solid var(--line-1); }
  .suite-hub { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .suite-hub-vs { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-1); padding-top: 24px; }
  .prospect-wrap { grid-template-columns: 1fr; }
  .prospect-detail { border-left: 0; border-top: 1px solid var(--line-1); }
  .lifecycle-rail { grid-template-columns: repeat(2, 1fr); }
  .phase { border-bottom: 1px solid var(--line-1); }
  .phase-detail { grid-template-columns: 1fr; padding: 32px; }
  .proof { grid-template-columns: 1fr; padding: 48px 32px; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 96px 24px 0; }
  .hero-sub-row { gap: 24px; align-items: center; }
  .hero { padding: 100px 24px 0; }
}
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .suite-grid { grid-template-columns: 1fr 1fr; }
  .lifecycle-rail { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
