/* SLM White SaaS — Component Styles */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.018em;
}
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.020em;
}
h3, h4, h5 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(38px, 4.2vw, 62px); line-height: 1.08; letter-spacing: -0.018em; }
h2 { font-size: clamp(28px, 3.0vw, 42px); line-height: 1.12; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }
p  { margin: 0; color: var(--ink-2); }
@media (max-width: 480px) {
  h1 { font-size: 32px !important; font-weight: 400; letter-spacing: -0.020em; }
}

/* Layout */
.wrap     { max-width: var(--wrap);    margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-sm  { max-width: var(--wrap-sm); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-xs  { max-width: var(--wrap-xs); margin: 0 auto; padding: 0 var(--pad-x); }

section { padding: 120px 0; }
@media (max-width: 768px) { section { padding: 80px 0; } }
section.band { background: var(--bg); border-top: 0; border-bottom: 0; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.sec-head { text-align: center; margin: 0 auto 64px; max-width: 720px; }
.sec-head p { font-size: 17px; color: var(--ink-3); margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.sec-head p.prob-pull { font-size: 22px; color: var(--ink); font-weight: 600; margin-top: 12px; }

/* Announcement bar */
.announce {
  background: var(--bar-bg);
  color: var(--bar-ink);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 60;
}
.announce-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 11px 24px 11px 24px;
  display: flex; justify-content: center; align-items: center;
  gap: 16px; position: relative;
}
.announce-msg { text-align: center; line-height: 1.4; }
.announce-link {
  color: var(--bar-link);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.announce-link:hover { color: var(--bar-link); border-color: var(--bar-link); }
.announce-x {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  background: transparent; border: 0;
  color: rgba(245,242,234,0.6);
  font-size: 20px; line-height: 1;
  padding: 4px 8px; cursor: pointer;
  border-radius: 999px;
  transition: all .15s ease;
}
.announce-x:hover { color: var(--bar-link); background: rgba(184,223,165,0.10); }
@media (max-width: 640px) {
  .announce { font-size: 12px; }
  .announce-inner { padding: 9px 40px; }
}

/* Nav — Thalamus floating pill */
.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 18px auto 0;
  max-width: 1180px;
  padding: 0 24px;
  pointer-events: none;
}
.nav > .nav-inner { pointer-events: auto; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-2);
  gap: 20px;
}
.nav-brand {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--ink);
}
.nav-brand .tm  { font-size: 10px; color: var(--ink-3); font-weight: 500; font-family: var(--font); }
.nav-brand .sub { font-size: 12px; color: var(--ink-3); font-weight: 500; letter-spacing: 0; font-family: var(--font); }
.nav-brand:hover { color: var(--ink); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--ink-2); padding: 8px 14px;
  border-radius: var(--r-pill); font-weight: 500;
  transition: all .15s ease;
}
.nav-links a:hover     { color: var(--ink); background: var(--accent-soft); }
.nav-links a.active    { color: var(--ink); background: var(--accent-soft); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
@media (max-width: 880px) { .nav-links { display: none; } }
@media (max-width: 480px) { .nav-cta .btn-ghost { display: none; } .nav { top: 8px; margin-top: 12px; } }

/* Buttons — Thalamus pistachio pill + ghost outlined teal */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
  transition: all .15s ease; border: 1px solid transparent; cursor: pointer;
  font-family: inherit; line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--accent-ink);
  transform: translateY(-1px);
  box-shadow: var(--sh-2);
}
.btn-dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: #082826;
  color: var(--bg);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-link {
  background: transparent;
  color: var(--ink);
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--ink-4);
  border-radius: 0;
}
.btn-link::after { content: " →"; transition: transform .15s ease; display: inline-block; margin-left: 4px; }
.btn-link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.btn-link:hover::after { transform: translateX(3px); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* Hero */
.hero { padding: 96px 0 280px; overflow: hidden; }
.hero > .wrap { max-width: none; padding-left: 24px; padding-right: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero h1 { margin-bottom: 24px; font-size: clamp(30px, 3.36vw, 50px); }
.hero-superkicker{
  display:inline-block;
  font-family:'Playfair Display', Georgia, serif;
  font-style:italic; font-weight:700;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing:-.01em;
  background: linear-gradient(90deg, #C0392B 0%, #D4A017 55%, #0E7C66 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  margin-bottom: 6px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.04));
}
.hero-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink-3); text-transform: uppercase; margin-bottom: 24px;
}
.hero-eyebrow-big { font-size: 19.5px; }
.hero-lead {
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  max-width: 56ch; margin-bottom: 32px;
}
.hero-bullets {
  list-style: none; padding: 0; margin: 0 0 36px 0;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 56ch;
}
.hero-bullets li {
  font-size: 17px; line-height: 1.5; color: var(--ink-2);
  padding-left: 32px; position: relative;
}
.hero-bullets li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,1) 0%, rgba(255,255,255,.9) 6%, rgba(255,255,255,0) 18%),
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 35%),
    radial-gradient(circle at 72% 80%, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(circle at 50% 50%, var(--orb-a,#7ED087) 0%, var(--orb-b,#2E7D5B) 55%, var(--orb-c,#0E3D2A) 100%);
  box-shadow:
    0 10px 16px -5px rgba(0,0,0,.55),
    0 4px 6px -2px rgba(0,73,83,.35),
    inset -3px -5px 7px rgba(0,0,0,.45),
    inset 3px 3px 4px rgba(255,255,255,.35);
  opacity: 0;
  transform: translateY(-280px) scale(.2);
  animation: 18s linear infinite;
  will-change: transform, opacity, filter;
}
.hero-bullets li::after {
  content: ""; position: absolute; left: -2px; top: 32px;
  width: 30px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 70%);
  filter: blur(3px);
  opacity: 0;
  animation: 18s linear infinite;
}
.hero-bullets li:nth-child(1)::before,
.hero-bullets li:nth-child(2)::before,
.hero-bullets li:nth-child(3)::before,
.hero-bullets li:nth-child(4)::before,
.hero-bullets li:nth-child(5)::before { animation-name: orbDrop1, orbTrail1; }
.hero-bullets li:nth-child(1)::before { animation-delay: 0s, 0s; }
.hero-bullets li:nth-child(2)::before { animation-delay: 0.09s, 0.09s; }
.hero-bullets li:nth-child(3)::before { animation-delay: 0.18s, 0.18s; }
.hero-bullets li:nth-child(4)::before { animation-delay: 0.27s, 0.27s; }
.hero-bullets li:nth-child(5)::before { animation-delay: 0.36s, 0.36s; }
.hero-bullets li:nth-child(1)::after { animation-delay: 0s; }
.hero-bullets li:nth-child(2)::after { animation-delay: 0.09s; }
.hero-bullets li:nth-child(3)::after { animation-delay: 0.18s; }
.hero-bullets li:nth-child(4)::after { animation-delay: 0.27s; }
.hero-bullets li:nth-child(5)::after { animation-delay: 0.36s; }
.hero-bullets li::before {
  animation-duration: 18s, 18s;
  animation-timing-function: linear, linear;
  animation-iteration-count: infinite, infinite;
}
.hero-bullets li:nth-child(1)::after,
.hero-bullets li:nth-child(2)::after,
.hero-bullets li:nth-child(3)::after,
.hero-bullets li:nth-child(4)::after,
.hero-bullets li:nth-child(5)::after { animation-name: orbShadow1; }

/*  Cycle = 18s. Each ball's drop+bounce window = ~22% (4s).
    Ball N starts at (N-1)*22% of cycle.
    Descent eased-in via timing-function stepping inside keyframes.
    Bounces (dampened): 120 → 65 → 30 → 12 px peaks. */

/* === BALL 1: 0-22% — FAST fall, SLOW tall first bounce === */
@keyframes orbDrop1 {
  0%    { opacity: 0; transform: translateY(-280px) scale(.20);
          animation-timing-function: cubic-bezier(.7,0,.95,.15); }   /* hard ease-in */
  1%    { opacity: 1; transform: translateY(-260px) scale(.30); }
  4%    { transform: translateY(0)      scale(1.00);                  /* 1st land — fast fall */
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }    /* slow ease-out bounce */
  9%    { transform: translateY(-160px) scale(1);
          animation-timing-function: cubic-bezier(.55,0,.7,.25); }    /* ease-in falling back */
  13.5% { transform: translateY(0)      scale(1);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  15.7% { transform: translateY(-80px)  scale(1);
          animation-timing-function: cubic-bezier(.55,0,.7,.25); }
  17.6% { transform: translateY(0)      scale(1);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  18.6% { transform: translateY(-35px)  scale(1); }
  19.4% { transform: translateY(0)      scale(1); }
  19.9% { transform: translateY(-13px)  scale(1); }
  20.3% { transform: translateY(0)      scale(1); }
  21%, 94% { opacity: 1; transform: translateY(0) scale(1); }
  98%, 100%{ opacity: 0; transform: translateY(0) scale(1); }
}
@keyframes orbShadow1 {
  0%, 3.9% { opacity: 0; }
  4%, 94%  { opacity: 1; }
  98%, 100%{ opacity: 0; }
}

/* === BALL 2: shifted +22% === */
@keyframes orbDrop2 {
  0%, 22% { opacity: 0; transform: translateY(-280px) scale(.20);
            animation-timing-function: cubic-bezier(.7,0,.95,.15); }
  23%   { opacity: 1; transform: translateY(-260px) scale(.30); }
  26%   { transform: translateY(0)      scale(1.00);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  31%   { transform: translateY(-160px) scale(1);
          animation-timing-function: cubic-bezier(.55,0,.7,.25); }
  35.5% { transform: translateY(0)      scale(1);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  37.7% { transform: translateY(-80px)  scale(1);
          animation-timing-function: cubic-bezier(.55,0,.7,.25); }
  39.6% { transform: translateY(0)      scale(1);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  40.6% { transform: translateY(-35px)  scale(1); }
  41.4% { transform: translateY(0)      scale(1); }
  41.9% { transform: translateY(-13px)  scale(1); }
  42.3% { transform: translateY(0)      scale(1); }
  43%, 94% { opacity: 1; transform: translateY(0) scale(1); }
  98%, 100%{ opacity: 0; transform: translateY(0) scale(1); }
}
@keyframes orbShadow2 {
  0%, 25.9% { opacity: 0; }
  26%, 94%  { opacity: 1; }
  98%, 100% { opacity: 0; }
}

/* === BALL 3: shifted +44% === */
@keyframes orbDrop3 {
  0%, 44% { opacity: 0; transform: translateY(-280px) scale(.20);
            animation-timing-function: cubic-bezier(.7,0,.95,.15); }
  45%   { opacity: 1; transform: translateY(-260px) scale(.30); }
  48%   { transform: translateY(0)      scale(1.00);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  53%   { transform: translateY(-160px) scale(1);
          animation-timing-function: cubic-bezier(.55,0,.7,.25); }
  57.5% { transform: translateY(0)      scale(1);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  59.7% { transform: translateY(-80px)  scale(1);
          animation-timing-function: cubic-bezier(.55,0,.7,.25); }
  61.6% { transform: translateY(0)      scale(1);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  62.6% { transform: translateY(-35px)  scale(1); }
  63.4% { transform: translateY(0)      scale(1); }
  63.9% { transform: translateY(-13px)  scale(1); }
  64.3% { transform: translateY(0)      scale(1); }
  65%, 94% { opacity: 1; transform: translateY(0) scale(1); }
  98%, 100%{ opacity: 0; transform: translateY(0) scale(1); }
}
@keyframes orbShadow3 {
  0%, 47.9% { opacity: 0; }
  48%, 94%  { opacity: 1; }
  98%, 100% { opacity: 0; }
}

/* === BALL 4: shifted +66% === */
@keyframes orbDrop4 {
  0%, 66% { opacity: 0; transform: translateY(-280px) scale(.20);
            animation-timing-function: cubic-bezier(.7,0,.95,.15); }
  67%   { opacity: 1; transform: translateY(-260px) scale(.30); }
  70%   { transform: translateY(0)      scale(1.00);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  75%   { transform: translateY(-160px) scale(1);
          animation-timing-function: cubic-bezier(.55,0,.7,.25); }
  79.5% { transform: translateY(0)      scale(1);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  81.7% { transform: translateY(-80px)  scale(1);
          animation-timing-function: cubic-bezier(.55,0,.7,.25); }
  83.6% { transform: translateY(0)      scale(1);
          animation-timing-function: cubic-bezier(.25,.85,.4,1); }
  84.6% { transform: translateY(-35px)  scale(1); }
  85.4% { transform: translateY(0)      scale(1); }
  85.9% { transform: translateY(-13px)  scale(1); }
  86.3% { transform: translateY(0)      scale(1); }
  87%, 94% { opacity: 1; transform: translateY(0) scale(1); }
  98%, 100%{ opacity: 0; transform: translateY(0) scale(1); }
}
@keyframes orbShadow4 {
  0%, 69.9% { opacity: 0; }
  70%, 94%  { opacity: 1; }
  98%, 100% { opacity: 0; }
}

/* === GAS TRAILS: drop-shadows ABOVE each ball during descent.
   Negative Y offsets place the puffs upward (where the ball just was).
   Dark blue-gray tint shows on the light page background. === */
@keyframes orbTrail1 {
  0%    { filter: none; }
  1%    { filter:
            drop-shadow(0 -12px 6px rgba(60,72,96,.55))
            drop-shadow(0 -28px 14px rgba(70,82,104,.45))
            drop-shadow(0 -52px 22px rgba(80,92,112,.30))
            drop-shadow(0 -82px 34px rgba(90,100,118,.16)); }
  3%    { filter:
            drop-shadow(0 -8px 5px rgba(70,82,104,.40))
            drop-shadow(0 -18px 10px rgba(80,92,112,.25))
            drop-shadow(0 -30px 14px rgba(90,100,118,.12))
            drop-shadow(0 -46px 20px rgba(100,110,124,.05)); }
  4%, 100% { filter: none; }
}
@keyframes orbTrail2 {
  0%, 22% { filter: none; }
  23%   { filter:
            drop-shadow(0 -12px 6px rgba(60,72,96,.55))
            drop-shadow(0 -28px 14px rgba(70,82,104,.45))
            drop-shadow(0 -52px 22px rgba(80,92,112,.30))
            drop-shadow(0 -82px 34px rgba(90,100,118,.16)); }
  25%   { filter:
            drop-shadow(0 -8px 5px rgba(70,82,104,.40))
            drop-shadow(0 -18px 10px rgba(80,92,112,.25))
            drop-shadow(0 -30px 14px rgba(90,100,118,.12))
            drop-shadow(0 -46px 20px rgba(100,110,124,.05)); }
  26%, 100% { filter: none; }
}
@keyframes orbTrail3 {
  0%, 44% { filter: none; }
  45%   { filter:
            drop-shadow(0 -12px 6px rgba(60,72,96,.55))
            drop-shadow(0 -28px 14px rgba(70,82,104,.45))
            drop-shadow(0 -52px 22px rgba(80,92,112,.30))
            drop-shadow(0 -82px 34px rgba(90,100,118,.16)); }
  47%   { filter:
            drop-shadow(0 -8px 5px rgba(70,82,104,.40))
            drop-shadow(0 -18px 10px rgba(80,92,112,.25))
            drop-shadow(0 -30px 14px rgba(90,100,118,.12))
            drop-shadow(0 -46px 20px rgba(100,110,124,.05)); }
  48%, 100% { filter: none; }
}
@keyframes orbTrail4 {
  0%, 66% { filter: none; }
  67%   { filter:
            drop-shadow(0 -12px 6px rgba(60,72,96,.55))
            drop-shadow(0 -28px 14px rgba(70,82,104,.45))
            drop-shadow(0 -52px 22px rgba(80,92,112,.30))
            drop-shadow(0 -82px 34px rgba(90,100,118,.16)); }
  69%   { filter:
            drop-shadow(0 -8px 5px rgba(70,82,104,.40))
            drop-shadow(0 -18px 10px rgba(80,92,112,.25))
            drop-shadow(0 -30px 14px rgba(90,100,118,.12))
            drop-shadow(0 -46px 20px rgba(100,110,124,.05)); }
  70%, 100% { filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bullets li::before, .hero-bullets li::after {
    animation: none; opacity: 1; transform: none; filter: none;
  }
}
.hero-bullets li:nth-child(1) { --orb-a:#FFD46B; --orb-b:#E89B1F; --orb-c:#7A4A05; }
.hero-bullets li:nth-child(2) { --orb-a:#FF8E7C; --orb-b:#D14A38; --orb-c:#5E1408; }
.hero-bullets li:nth-child(3) { --orb-a:#7AD2FF; --orb-b:#1A78C9; --orb-c:#08305A; }
.hero-bullets li:nth-child(4) { --orb-a:#C19AFF; --orb-b:#7A4ACB; --orb-c:#311466; }
.hero-bullets li:nth-child(5) { --orb-a:#86EFAC; --orb-b:#22C55E; --orb-c:#14532D; }
.hero-bullets li b { color: var(--ink); font-weight: 600; }
.hero-bullets li u { text-decoration: underline; text-decoration-color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; color: inherit; font-weight: inherit; }
.hero-bullets li .bracket { color: var(--ink-3); font-weight: 400; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pos); display: inline-block; flex-shrink: 0;
}

/* Hero tilted product mock (Thalamus signature) */
.hero-mock-wrap {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  overflow: visible;
}
/* Scroll-rolling line (Thalamus-style) — fixed full-viewport SVG, path drawn on scroll progress */
.hero-memo-back {
  position: absolute;
  top: -100px;
  left: 420px;
  z-index: 3;
  width: 460px;
  max-width: 92%;
  transform: scale(0.81) perspective(1100px) rotateY(-34deg) rotateX(-14deg) rotateZ(20deg);
  transform-origin: top left;
  filter: drop-shadow(0 30px 50px rgba(0,73,83,.35))
          drop-shadow(0 10px 20px rgba(0,73,83,.20));
  pointer-events: none;
  border-radius: 22px;
  border: 2px solid #E64A3B;
}
@media (max-width: 1024px) { .hero-memo-back { display: none; } }

.hero-memo-pop {
  position: absolute;
  top: 360px;
  left: 320px;
  z-index: 4;
  width: 460px;
  max-width: 92%;
  background: linear-gradient(155deg, #FFFFFF 0%, #FFFFFF 55%, #F4F1E8 100%);
  border-radius: 22px;
  box-shadow:
    1px 1px 0 #E6E0D1,
    2px 2px 0 #DDD6C3,
    3px 3px 0 #D4CBB5,
    4px 4px 0 #CCC2A8,
    5px 5px 0 #C3B89B,
    6px 6px 0 #BBAF8E,
    7px 7px 0 #B2A582,
    8px 8px 0 #AA9C75,
    9px 9px 0 #A19369,
    10px 10px 0 #998A5D,
    0 60px 110px -30px rgba(0,73,83,.55),
    0 30px 60px -20px rgba(0,73,83,.30),
    inset 0 2px 0 rgba(255,255,255,.95),
    inset 0 -2px 0 rgba(0,73,83,.08);
  padding: 26px 28px 24px;
  font-family: var(--font);
  color: var(--ink);
  border: 2px solid #E64A3B;
  transform: scale(0.81) perspective(1100px) rotateY(-34deg) rotateX(-14deg) rotateZ(20deg);
  transform-origin: top left;
}
.hero-memo-pop::before {
  content: "";
  position: absolute;
  inset: -14px -14px -22px -10px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.55), rgba(255,255,255,0) 55%);
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}
.hero-memo-pop::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: -28px;
  height: 40px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(0,73,83,.35) 0%, rgba(0,73,83,0) 70%);
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}
.memo-pop-bell {
  position: absolute;
  top: -54px; left: -18px;
  width: 80px; height: 96px;
  display: grid; place-items: center;
  background: transparent;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.25)) drop-shadow(0 2px 4px rgba(0,0,0,.18));
  pointer-events: none;
}
.memo-pop-bell .bell-swing {
  transform-origin: 40px 6px;
  animation: bell-swing 1.6s ease-in-out infinite;
}
@keyframes bell-swing {
  0%, 100% { transform: rotate(-14deg); }
  50%      { transform: rotate( 14deg); }
}
@media (prefers-reduced-motion: reduce) {
  .memo-pop-bell .bell-swing { animation: none; }
}
.memo-pop-head { border-bottom: 1px solid var(--line-2); padding-bottom: 14px; margin-bottom: 14px; }
.memo-pop-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: var(--ink-3); }
.memo-pop-ttl { font-family: var(--font); font-weight: 700; font-size: 22px; color: var(--ink); margin: 2px 0 2px; letter-spacing: -0.01em; }
.memo-pop-sub { font-size: 13px; color: var(--ink-3); }
.memo-pop-block { border-bottom: 1px solid var(--line-2); padding: 12px 0 14px; }
.memo-pop-block:last-child { border-bottom: none; padding-bottom: 0; }
.memo-pop-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.10em; color: var(--ink-3); margin-bottom: 10px; }
.memo-pop-lbl b { display: inline-grid; place-items: center; width: 18px; height: 18px; border: 1px solid var(--line); border-radius: 4px; font-size: 10px; color: var(--ink-3); margin-right: 6px; }
.memo-pop-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; }
.memo-pop-h { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 6px; }
.memo-pop-block p { font-size: 13px; line-height: 1.45; color: var(--ink-2); margin: 0; }
.memo-pop-money { text-align: right; min-width: 120px; }
.memo-pop-money .amt { font-size: 18px; font-weight: 700; color: var(--pos); }
.memo-pop-money .cap { font-size: 10px; letter-spacing: 0.08em; color: var(--ink-3); margin-top: 4px; line-height: 1.3; }
.memo-pop-q, .memo-pop-warn { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 999px; font-size: 11px; vertical-align: middle; margin-right: 6px; }
.memo-pop-q { background: var(--bg-soft); color: var(--ink-3); }
.memo-pop-warn { background: #FCE3DF; color: var(--neg); }
.memo-pop-sublbl { font-size: 11px; font-weight: 600; letter-spacing: 0.10em; color: var(--ink-3); margin: 10px 0 4px; }
@media (max-width: 1024px) { .hero-memo-pop { display: none; } }

.hero-mock-2 {
  margin-top: -471px !important;
  transform: translate(-120px, 0) perspective(2200px) rotateX(55deg) rotateZ(-38deg) rotateY(0deg) scale(.8) !important;
  position: relative;
  z-index: 1 !important;
}
.hero-mock {
  display: block;
  position: relative;
  z-index: 2;
  width: 176%;
  filter: brightness(1.3) contrast(1.06) saturate(1.05);
  max-width: none;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  transform: translate(-160px, -220px) perspective(2200px) rotateX(55deg) rotateZ(-38deg) rotateY(0deg) scale(.8);
  transform-origin: center center;
  box-shadow:
    -40px 50px 80px -40px rgba(0,73,83,.32),
    0 18px 36px -12px rgba(0,73,83,.16);
}
@media (max-width: 1024px) {
  .hero-mock { width: 100%; transform: none; box-shadow: var(--sh-3); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mock { transform: none; transition: none; }
}

/* Demo card (legacy, retained for reuse on /product) */
.demo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.demo-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-2);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.demo-head .ttl     { font-size: 13px; font-weight: 600; color: var(--ink); }
.demo-head .ttl .sub { display: block; font-size: 11px; color: var(--ink-3); font-weight: 500; margin-top: 2px; }
.demo-head .pill {
  font-size: 11px; color: var(--ink-3); background: var(--bg-band);
  padding: 4px 10px; border-radius: 20px; font-weight: 500; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
/* .demo-head .pill::before replaced by .pulse-dot span */

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line-2); }
.kpi { padding: 14px 16px; border-right: 1px solid var(--line-2); }
.kpi:last-child { border-right: none; }
.kpi .lbl  { font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 6px; }
.kpi .val  { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.kpi .val.neg { color: var(--neg); }
.kpi .val.pos { color: var(--pos); }
.kpi .delta { font-size: 10px; color: var(--ink-3); margin-top: 4px; font-weight: 500; }
.kpi .delta.pos { color: var(--pos); }
.kpi .delta.neg { color: var(--neg); }
@media (max-width: 480px) {
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .kpi:nth-child(2) { border-right: none; }
  .kpi:nth-child(1), .kpi:nth-child(2) { border-bottom: 1px solid var(--line-2); }
}

.act-row {
  display: grid;
  grid-template-columns: 1.7fr .7fr 1fr .4fr;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-2);
  align-items: center;
  font-size: 13px;
  gap: 8px;
}
.act-row:last-child { border-bottom: none; }
.act-row .name { font-weight: 600; color: var(--ink); }
.act-row .name .sub { display: block; font-size: 11px; color: var(--ink-3); font-weight: 500; margin-top: 2px; }
.act-row .impact { font-weight: 700; color: var(--pos); font-variant-numeric: tabular-nums; }
.act-row .why { color: var(--ink-3); font-size: 12px; }
.act-row .conf { font-weight: 600; color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.act-head { background: var(--bg-soft); }
.act-head > div {
  font-size: 10px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}

.demo-foot {
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--bg-soft);
}
.demo-foot .total { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.demo-foot .total b { color: var(--pos); font-size: 16px; font-weight: 700; margin-left: 6px; font-variant-numeric: tabular-nums; }

/* Verdict pill — Thalamus palette */
.verdict {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  padding: 4px 8px; border-radius: var(--r-pill);
  text-transform: uppercase;
}
.verdict.keep    { background: var(--pos-soft);   color: var(--pos);   border: 1px solid #C6E2C3; }
.verdict.kill    { background: var(--neg-soft);   color: var(--neg);   border: 1px solid #EAC3C0; }
.verdict.scale   { background: var(--accent-soft);color: var(--accent-ink); border: 1px solid #CDE4B8; }
.verdict.watch   { background: var(--warn-soft);  color: var(--warn);  border: 1px solid #E8D2A8; }
.verdict.dormant { background: var(--bg-card);    color: var(--ink-3); border: 1px solid var(--line); }

/* Logo strip */
.logos { padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.logos-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.logos-lbl { font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; }
.logo-row { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.logo-row span { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink-3); letter-spacing: -0.02em; }

/* Problem cards */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .prob-grid { grid-template-columns: 1fr; } }
.prob-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--sh-1);
}
.prob-card .v {
  font-size: 30px; font-weight: 700; color: var(--neg);
  letter-spacing: -0.02em; margin-bottom: 8px; font-variant-numeric: tabular-nums;
}
.prob-card h3 { margin-bottom: 8px; }
.prob-card p  { font-size: 14px; color: var(--ink-3); line-height: 1.55; }
.prob-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--accent-ink); background: var(--accent-soft);
  padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: 18px;
  border: 1px solid #CDE4B8;
}
.prob-foot {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line-2);
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.02em; line-height: 1.5;
}
.prob-more {
  text-align: center; margin-top: 48px; font-size: 15px; color: var(--ink-3);
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.prob-more b { color: var(--ink); font-weight: 600; }
.prob-more a { color: var(--accent); font-weight: 500; }
.prob-more a:hover { text-decoration: underline; }

/* Steps — legacy bordered grid (kept for fallback) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 24px 24px 24px 0; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; padding-right: 0; }
@media (max-width: 820px) {
  .step { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .step:last-child { border-bottom: none; }
}
.step .n { font-size: 13px; font-weight: 600; color: var(--ink-4); margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.step h3 { margin-bottom: 8px; font-size: 17px; }
.step p { font-size: 14px; color: var(--ink-3); }

/* Steps — connected horizontal flow */
.steps-flow {
  list-style: none; padding: 0; margin: 64px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; counter-reset: stepflow;
}
.steps-flow::before {
  content: ""; position: absolute; top: 70px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--line);
  background-image: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
  background-repeat: repeat-x; background-size: 12px 1px;
  z-index: 0;
}
.step-flow {
  position: relative; z-index: 1; padding: 0 18px;
  display: flex; flex-direction: column; align-items: flex-start;
  border-right: 1px solid var(--line-2);
}
.step-flow:last-child { border-right: none; }
.step-flow:first-child { padding-left: 0; }
.step-flow:last-child  { padding-right: 0; }
.step-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--ink-3); text-transform: uppercase;
  margin-bottom: 14px;
}
.step-node {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-1);
  margin-bottom: 24px;
  transition: all .2s ease;
  position: relative;
  animation: step-dance 2.4s ease-in-out infinite;
  will-change: transform;
}
.step-flow:nth-child(1) .step-node { animation-delay: 0s; }
.step-flow:nth-child(2) .step-node { animation-delay: .15s; }
.step-flow:nth-child(3) .step-node { animation-delay: .30s; }
.step-flow:nth-child(4) .step-node { animation-delay: .45s; }
@keyframes step-dance {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  25%      { transform: translateY(-6px) rotate(-3deg); }
  50%      { transform: translateY(0)    rotate(0deg); }
  75%      { transform: translateY(-3px) rotate(3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .step-node { animation: none; }
}
.step-node::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px dashed var(--line); opacity: 0;
  transition: opacity .2s ease;
}
.step-flow:hover .step-node {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -6px rgba(194,65,12,.25);
}
.step-flow:hover .step-node::after { opacity: 1; border-color: var(--accent-soft); }
.step-flow:hover .step-n { color: var(--accent); }
.step-n {
  font-family: var(--font);
  font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: color .2s ease;
}
.step-flow h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.02em; }
.step-flow p  { font-size: 14px; color: var(--ink-3); line-height: 1.55; }

/* ── AI pointer arrow (Step 2 only) ─────────────────────── */
.step-flow.has-pointer .step-body { position: relative; }
.ai-pointer {
  position: absolute;
  right: -10px; top: 50%;
  width: 96px; height: 18px;
  transform: translateY(-50%);
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(0 0 6px rgba(34,211,238,.65)) drop-shadow(0 0 16px rgba(139,92,246,.4));
}
.ai-pointer svg {
  width: 100%; height: 100%; display: block;
  animation: aiPointerSlide 1.8s cubic-bezier(.55,.08,.45,1) infinite;
  transform-origin: left center;
}
@keyframes aiPointerSlide {
  0%   { transform: translateX(-8px) scaleX(.94); opacity: 0; }
  20%  { transform: translateX(0)    scaleX(1);   opacity: 1; }
  72%  { transform: translateX(12px) scaleX(1.05);opacity: 1; }
  100% { transform: translateX(24px) scaleX(.95); opacity: 0; }
}
@media (max-width: 1180px) {
  .ai-pointer { right: -8px; width: 72px; }
}
@media (max-width: 820px) {
  .ai-pointer { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-pointer svg { animation: none; }
}

@media (max-width: 820px) {
  .steps-flow:not(.steps-vertical) { grid-template-columns: 1fr; gap: 0; }
  .steps-flow:not(.steps-vertical)::before { display: none; }
  .steps-flow:not(.steps-vertical) .step-flow {
    flex-direction: row; align-items: flex-start; gap: 20px;
    padding: 24px 0; border-right: none;
    border-bottom: 1px solid var(--line-2);
  }
  .steps-flow:not(.steps-vertical) .step-flow:last-child { border-bottom: none; }
}

/* ── How It Works split layout ───────────────────────────── */
.how-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .how-split { grid-template-columns: 1fr; gap: 48px; } }
.sec-head-left { text-align: left; margin: 0 0 56px 0; max-width: none; }
.sec-head-left p { margin-left: 0; margin-right: 0; max-width: 52ch; }

/* Vertical steps variant for split layout */
.steps-vertical {
  grid-template-columns: 1fr !important;
  position: relative;
}
.steps-vertical::before {
  content: ""; position: absolute;
  top: 56px; bottom: 56px; left: 27px;
  width: 1px; height: auto; right: auto;
  background: var(--line);
  background-image: repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 12px);
  background-size: 1px 12px; background-repeat: repeat-y;
  z-index: 0;
}
.steps-vertical .step-flow {
  display: grid !important;
  grid-template-columns: 56px 1fr !important;
  grid-template-areas: "node body" !important;
  gap: 22px;
  padding: 0 0 36px 0;
  border-right: none; border-bottom: none;
}
.steps-vertical .step-flow:last-child { padding-bottom: 0; }
.steps-vertical .step-node { grid-area: node; margin-bottom: 0; align-self: start; }
.steps-vertical .step-body { grid-area: body; padding-top: 6px; }
.steps-vertical .step-body .step-tag { display: inline-block; margin-bottom: 8px; }
.steps-vertical .step-body h3 { margin-bottom: 6px; font-size: 18px; }
.steps-vertical .step-body p  { font-size: 14px; color: var(--ink-3); }

/* ── "Inside SLM's Brain" kicker above the CSV mock card ── */
.brain-kicker {
  display: flex; align-items: center; gap: 18px;
  max-width: 560px; margin: 0 auto 4px;
  font-family: 'Inter','Helvetica Neue',sans-serif;
}
.brain-kicker .bk-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,18,32,.30), transparent);
}
.brain-kicker .bk-label {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFFBEC 0%, #F5E7C5 100%);
  border: 1px solid rgba(212,160,23,.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 4px 18px -6px rgba(212,160,23,.45),
    0 0 0 4px rgba(212,160,23,.06);
  white-space: nowrap;
}
.brain-kicker .bk-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd17a, #b88a18);
  box-shadow: 0 0 0 3px rgba(212,160,23,.18), 0 0 14px rgba(255,180,80,.85);
  animation: bkPulse 1.8s ease-in-out infinite;
}
@keyframes bkPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(212,160,23,.16), 0 0 12px rgba(255,180,80,.7); }
  50%     { transform: scale(1.25); box-shadow: 0 0 0 5px rgba(212,160,23,.10), 0 0 22px rgba(255,180,80,1);  }
}
.brain-kicker .bk-eyebrow {
  font-family: 'JetBrains Mono',ui-monospace,Menlo,monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #8a5a1f;
}
.brain-kicker .bk-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600; font-size: 18px; letter-spacing: -.01em;
  color: #1a1f2b;
}
.brain-kicker .bk-title em {
  font-style: italic; font-weight: 700;
  background: linear-gradient(90deg, #065F46 0%, #0E7C66 50%, #15803D 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 720px){
  .brain-kicker { gap: 10px; }
  .brain-kicker .bk-label { padding: 6px 12px; gap: 8px; }
  .brain-kicker .bk-title { font-size: 16px; }
  .brain-kicker .bk-eyebrow { display: none; }
}

/* ── CSV → Verdict mock card (right slot) ──────────────── */
.csv-card {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 92%, #FBF6E8 100%);
  border: 1px solid rgba(212,176,108,.55);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 560px;
  margin: 32px auto 56px;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow:
    0 1px 0 rgba(212,176,108,.45),
    0 80px 140px -30px rgba(0,40,50,.78),
    0 50px 90px -25px rgba(0,40,50,.62),
    0 24px 50px -18px rgba(0,40,50,.45),
    0 10px 20px -6px rgba(0,40,50,.30),
    0 -80px 140px -30px rgba(0,40,50,.27),
    0 -50px 90px -25px rgba(0,40,50,.21),
    0 -24px 50px -18px rgba(0,40,50,.15),
    0 -10px 20px -6px rgba(0,40,50,.10),
    inset 0 1px 0 rgba(255,245,212,.85),
    inset 0 0 0 1px rgba(212,176,108,.22),
    inset 0 -2px 0 rgba(212,176,108,.28);
}
.csv-card::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: -56px;
  height: 90px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(0,40,50,.28) 0%, rgba(0,40,50,0) 70%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}
.csv-card::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -56px;
  height: 90px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(0,40,50,.80) 0%, rgba(0,40,50,0) 70%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}
.csv-head {
  padding: 8px 20px;
  border-bottom: 1px solid var(--line-2);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-soft);
}
.csv-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-3);
}
.csv-pill {
  font-size: 11px; font-weight: 600;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; padding: 4px 10px;
  border: 1px solid var(--line); border-radius: 999px;
}
.csv-body {
  padding: 12px 24px 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.csv-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.csv-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 5px 0;
  border-bottom: 1px dashed var(--line-2);
}
.csv-list li:last-child { border-bottom: none; }
.csv-name {
  font-family: var(--mono);
  font-size: 12.5px; font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.csv-meta {
  font-size: 11px; color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.csv-tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--pos-soft);
  color: var(--pos);
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #BBF7D0;
}
.csv-arrow {
  text-align: center; font-size: 18px;
  color: var(--ink-4);
  margin: 4px 0 -4px;
  font-weight: 400;
}
.csv-out {
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.csv-out-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
}
.csv-out-row .csv-out-lbl { color: var(--ink-3); }
.csv-out-row .csv-out-val {
  font-weight: 700; color: var(--ink);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.csv-out-row .csv-out-val.pos { color: var(--pos); font-size: 16px; }
.csv-out-row-top {
  padding-top: 10px; margin-top: 4px;
  border-top: 1px solid var(--line-2);
}
.csv-out-row-mega {
  padding: 10px 12px;
  margin: 4px -6px;
  background: var(--accent-soft);
  border-radius: var(--r-sm);
  border: 1px solid #FED7AA;
}
.csv-out-row-mega .csv-out-lbl { color: var(--accent-2); font-weight: 600; }
.csv-mega {
  font-size: 18px !important;
  color: var(--ink-3) !important;
  letter-spacing: -0.02em;
}

/* ── Depth-of-computation panel ─────────────────────────── */
.depth-box {
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 18px 20px 16px;
  display: flex; flex-direction: column; gap: 16px;
}
.depth-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; flex-wrap: wrap;
}
.depth-eyebrow {
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
}
.depth-batch {
  font-size: 10px; color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

.depth-layers {
  list-style: none; margin: 0; padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  counter-reset: dlayer;
  box-shadow: var(--sh-1);
}
.depth-layer {
  counter-increment: dlayer;
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  gap: 12px; align-items: center;
  padding: 6px 16px;
  border-bottom: 1px solid var(--line-2);
  font-size: 12.5px;
  font-family: var(--mono);
  color: var(--ink-3);
  letter-spacing: 0.005em;
  transition: background .15s ease;
}
.depth-layer:last-child { border-bottom: none; }
.depth-layer:hover { background: var(--bg-soft); }
.depth-layer::before { display: none; }
@media (max-width: 540px) {
  .depth-layer {
    grid-template-columns: 26px 1fr;
    gap: 10px;
  }
  .dl-eq-arrow { display: none; }
  .dl-result { grid-column: 2; padding-top: 4px; }
}
.depth-layer b {
  color: var(--ink); font-weight: 700;
  font-family: var(--font);
  font-size: 13.5px; letter-spacing: -0.01em;
}
.dl-eq, .dl-result {
  white-space: normal; line-height: 1.4;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px;
}
.dl-x, .dl-plus {
  color: var(--ink-4); font-weight: 400;
  margin: 0 1px;
  font-family: var(--mono);
}
.dl-eq-arrow {
  font-family: var(--font);
  color: var(--ink-3); font-weight: 600;
  font-size: 24px;
  text-align: center;
  background: transparent;
  border: none;
  width: auto; height: auto;
  display: inline-flex; align-items: center; justify-content: center;
}
.dl-result {
  text-align: left;
}
.dl-result b {
  color: var(--ink-3) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.depth-chain {
  text-align: center; padding: 6px 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}
.depth-chain-lbl { color: var(--ink); font-weight: 700; margin-right: 6px; }
.depth-chain-eq { letter-spacing: 0.02em; }

.depth-total {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative; overflow: hidden;
}
.depth-total-top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; flex-wrap: wrap;
}
.depth-total .dt-tag { margin-top: 8px; display: block; }
.dt-lbl {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72);
}
.dt-lbl-big { font-size: 15px; letter-spacing: 0.06em; color: rgba(255,255,255,0.95); margin-right: 6px; }
.dt-tag {
  font-size: 21px;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, #67E8F9 0%, #A78BFA 45%, #F472B6 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 6px rgba(167,139,250,0.45));
  animation: ai-shine 5s ease-in-out infinite;
}
@keyframes ai-shine {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.dt-tag .dt-tag-plain {
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: rgba(255,255,255,.78);
  color: rgba(255,255,255,.78);
  filter: none;
  animation: none;
  margin-right: 6px;
}
@media (prefers-reduced-motion: reduce) {
  .dt-tag { animation: none; }
}
.depth-total-val {
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.depth-total-num {
  font-family: var(--mono);
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* ── Engine matrix display (legacy, kept) ───────────────── */
.matrix-box {
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 16px 18px 14px;
  display: flex; flex-direction: column; gap: 14px;
}
.matrix-head { }
.matrix-eyebrow {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-3);
}
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  overflow: hidden;
}
@media (max-width: 540px) {
  .matrix-grid { grid-template-columns: repeat(2, 1fr); }
}
.m-cell {
  background: #fff;
  padding: 10px 12px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
}
.m-cell .m-val {
  font-size: 18px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.m-cell .m-lbl {
  font-size: 10.5px; font-weight: 500; color: var(--ink-3);
  letter-spacing: 0.02em;
}
.m-cell-skus { background: var(--accent-soft); }
.m-cell-skus .m-val { color: var(--accent); }
.m-cell-skus .m-lbl { color: var(--accent-2); }

.matrix-chain {
  text-align: center; padding: 6px 0;
}
.m-chain-eq {
  font-family: var(--mono);
  font-size: 11.5px; color: var(--ink-3);
  letter-spacing: 0.02em;
}

.matrix-total {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-sm);
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.m-total-lbl {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72);
}
.m-total-val {
  font-size: 24px; font-weight: 800;
  color: #fff; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.matrix-foot {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 4px;
}
.m-foot-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px; color: var(--ink-3);
}
.m-foot-val {
  font-weight: 700; color: var(--ink);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.m-foot-val.pos { color: var(--pos); font-size: 14px; }
.csv-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--line-2);
  background: var(--bg-soft);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.csv-foot-l { color: var(--ink-3); }
.csv-foot-r { color: var(--ink); font-weight: 600; }
.csv-foot-r:hover { color: var(--accent); }

/* ── Three.js orbital scene (embedded in slot) ──────────── */
#sceneOrbital {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: #fff;
}
#sceneOrbital canvas { display: block; width: 100% !important; height: 100% !important; }
.orb-lbl {
  position: absolute;
  transform: translate(-50%, -100%);
  font-size: 10.5px; font-weight: 500;
  color: var(--ink-2);
  line-height: 1.2; letter-spacing: 0.01em;
  white-space: nowrap; pointer-events: none;
  text-shadow: 0 1px 2px #fff, 0 0 6px #fff, 0 0 8px #fff;
  transition: opacity .25s ease;
}
.orb-center {
  position: absolute; pointer-events: none;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.orb-center .ce {
  display: block; font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  text-shadow: 0 1px 2px #fff, 0 0 4px #fff;
}
.orb-center .ch {
  display: block; font-size: 17px; font-weight: 700;
  letter-spacing: -0.025em; color: var(--ink);
  line-height: 1.05; margin-top: 2px;
  text-shadow: 0 1px 2px #fff, 0 0 6px #fff;
}
.orb-center .cs {
  display: block; font-size: 10px; font-weight: 500;
  color: var(--ink-3); margin-top: 3px;
  text-shadow: 0 1px 2px #fff;
}
.orb-center .ch-big {
  font-size: 38px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--ink);
  text-shadow: 0 2px 4px #fff, 0 0 12px #fff, 0 0 16px #fff;
}

/* ── 3D Orbital system (perspective) ────────────────────── */
.orbit3d {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  perspective: 1400px;
  perspective-origin: 50% 30%;
  overflow: visible;
}
.orbit3d-plane {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(66deg);
}

.ring3d {
  position: absolute; top: 50%; left: 50%;
  width: var(--d); height: var(--d);
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(10,10,10,0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,247,237,0.10) 0%, transparent 60%);
}

.p3d {
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  transform:
    translate(-50%, -50%)
    rotateY(var(--a))
    translateZ(var(--r))
    rotateY(calc(var(--a) * -1));
  transform-style: preserve-3d;
}

/* Ground shadow — lies flat on the tilted plane */
.ground {
  position: absolute; left: 50%; top: 50%;
  width: 56px; height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,10,10,0.34) 0%, rgba(10,10,10,0) 65%);
  filter: blur(3px);
  pointer-events: none;
}

/* Riser — vertical column standing up off plane, counter-tilted to face camera */
.riser {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -100%) rotateX(-66deg);
  transform-origin: 50% 100%;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  white-space: nowrap;
  padding-bottom: 4px;
}
.riser .planet-lbl {
  font-size: 11px; font-weight: 500; color: var(--ink-2);
  line-height: 1.2; letter-spacing: 0.01em;
  text-shadow: 0 1px 2px #fff, 0 0 6px #fff, 0 0 8px #fff;
  margin-top: 4px;
}

/* Sphere — pure white 3D */
.sphere {
  display: block; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%,
      #ffffff 0%,
      #f8f7f5 18%,
      #ddd9d3 60%,
      #a8a29e 100%);
  box-shadow:
    inset -4px -6px 9px rgba(10,10,10,0.15),
    inset 3px 3px 6px rgba(255,255,255,0.85),
    0 12px 22px -8px rgba(10,10,10,0.30),
    0 4px 8px -2px rgba(10,10,10,0.15);
  position: relative;
}
.sphere::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 7%,
    rgba(0,0,0,0.05) 7.4%,
    transparent 8%,
    transparent 14%
  );
  mix-blend-mode: multiply; pointer-events: none;
}
.s-sm { width: 24px; height: 24px; }
.s-md { width: 38px; height: 38px; }
.s-lg { width: 56px; height: 56px; }
.s-xl { width: 72px; height: 72px; }

/* Central sphere — sits at the center of the plane, counter-tilted */
.center3d {
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}
.center-riser {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -100%) rotateX(-66deg);
  transform-origin: 50% 100%;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.center-sphere {
  width: 175px; height: 175px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%,
      #ffffff 0%,
      #fbfbfa 18%,
      #ededeb 55%,
      #c4c0bb 100%);
  box-shadow:
    inset -8px -12px 22px rgba(10,10,10,0.18),
    inset 8px 8px 16px rgba(255,255,255,0.9),
    0 38px 60px -20px rgba(10,10,10,0.34),
    0 14px 26px -8px rgba(10,10,10,0.18);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.center-sphere::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 9%,
    rgba(0,0,0,0.045) 9.4%,
    transparent 10%,
    transparent 18%
  );
  mix-blend-mode: multiply; pointer-events: none;
}
.center-ground {
  width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(10,10,10,0.40) 0%, rgba(10,10,10,0) 65%);
  margin-top: 4px;
}
/* Central glow (face camera, no tilt) */
.center-glow {
  position: absolute; left: 50%; top: 50%;
  width: 280px; height: 280px;
  transform: translate(-50%, -50%) rotateX(-66deg);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,65,12,0.18) 0%, rgba(255,247,237,0.06) 40%, rgba(255,255,255,0) 65%);
  pointer-events: none;
  animation: c3d-glow 4.5s ease-in-out infinite;
}
@keyframes c3d-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) rotateX(-66deg) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) rotateX(-66deg) scale(1.08); }
}

.orbit-core-text {
  text-align: center; padding: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  position: relative; z-index: 1;
}
.orbit-core-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
  text-shadow: 0 1px 1px rgba(255,255,255,0.7);
}
.orbit-core-head {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.05;
  text-shadow: 0 1px 2px rgba(255,255,255,0.85);
  white-space: nowrap;
}
.orbit-core-sub {
  font-size: 10px; font-weight: 500; color: var(--ink-3);
  text-shadow: 0 1px 1px rgba(255,255,255,0.7);
}

@media (max-width: 720px) {
  .orbit3d { max-width: 460px; }
  .ring3d[style*="280"] { --d: 220px !important; }
  .ring3d[style*="420"] { --d: 330px !important; }
  .ring3d[style*="540"] { --d: 420px !important; }
  .p3d[style*="--r:140px"] { --r: 110px !important; }
  .p3d[style*="--r:210px"] { --r: 165px !important; }
  .p3d[style*="--r:270px"] { --r: 210px !important; }
  .center-sphere { width: 135px; height: 135px; }
  .center-ground { width: 130px; height: 130px; }
  .orbit-core-head { font-size: 15px; }
}

/* ── legacy orbit-stage kept (unused now, safe to ignore) ──── */
.orbit-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: visible;
}
.orbit-rings {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.orbit-rings ellipse { animation: orbit-breathe 7s ease-in-out infinite; transform-origin: 260px 260px; }
.orbit-rings ellipse:nth-child(3) { animation-delay: -1.5s; }
.orbit-rings ellipse:nth-child(4) { animation-delay: -3s;   }
.orbit-rings ellipse:nth-child(5) { animation-delay: -4.5s; }
@keyframes orbit-breathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.02); }
}

/* Central sphere */
.orbit-center-sphere {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32%; aspect-ratio: 1/1; max-width: 175px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%,
      #ffffff 0%,
      #fbfbfa 18%,
      #ededeb 55%,
      #c4c0bb 100%);
  box-shadow:
    inset -6px -10px 18px rgba(10,10,10,0.16),
    inset 6px 6px 14px rgba(255,255,255,0.85),
    0 30px 50px -18px rgba(10,10,10,0.30),
    0 12px 22px -8px rgba(10,10,10,0.14);
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.orbit-center-sphere::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 9%,
    rgba(0,0,0,0.045) 9.4%,
    transparent 10%,
    transparent 18%
  );
  mix-blend-mode: multiply; pointer-events: none;
}
.orbit-center-sphere::after {
  content: ""; position: absolute;
  left: 10%; right: 10%; bottom: -22%;
  height: 18%;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.22) 0%, rgba(10,10,10,0) 70%);
  filter: blur(3px);
  pointer-events: none;
  z-index: -1;
}
.orbit-core-text {
  text-align: center; padding: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  position: relative; z-index: 1;
}
.orbit-core-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
  text-shadow: 0 1px 1px rgba(255,255,255,0.7);
}
.orbit-core-head {
  font-size: clamp(15px, 1.9vw, 20px); font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.05;
  text-shadow: 0 1px 2px rgba(255,255,255,0.85);
}
.orbit-core-sub {
  font-size: 9.5px; font-weight: 500; color: var(--ink-3);
  margin-top: 2px;
  text-shadow: 0 1px 1px rgba(255,255,255,0.7);
}

.orbit-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  will-change: transform;
  animation: node-float 3.2s ease-in-out infinite;
}
.orbit-node[data-i="0"]  { animation-delay: 0.00s; }
.orbit-node[data-i="1"]  { animation-delay: 0.20s; }
.orbit-node[data-i="2"]  { animation-delay: 0.40s; }
.orbit-node[data-i="3"]  { animation-delay: 0.60s; }
.orbit-node[data-i="4"]  { animation-delay: 0.80s; }
.orbit-node[data-i="5"]  { animation-delay: 1.00s; }
.orbit-node[data-i="6"]  { animation-delay: 1.20s; }
.orbit-node[data-i="7"]  { animation-delay: 1.40s; }
.orbit-node[data-i="8"]  { animation-delay: 1.60s; }
.orbit-node[data-i="9"]  { animation-delay: 1.80s; }
.orbit-node[data-i="10"] { animation-delay: 2.00s; }
.orbit-node[data-i="11"] { animation-delay: 2.20s; }
.orbit-node[data-i="12"] { animation-delay: 2.40s; }
.orbit-node[data-i="13"] { animation-delay: 2.60s; }
@keyframes node-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-4px); }
}

.orbit-sphere {
  display: block; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%,
      #ffffff 0%,
      #f8f7f5 22%,
      #d6d3d1 70%,
      #a8a29e 100%);
  box-shadow:
    inset -2px -3px 6px rgba(0,0,0,0.12),
    inset 2px 2px 4px rgba(255,255,255,0.7),
    0 8px 18px -6px rgba(10,10,10,0.18),
    0 2px 4px rgba(10,10,10,0.08);
  position: relative;
}
.orbit-sphere::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 6%,
    rgba(0,0,0,0.05) 6.5%,
    transparent 7%,
    transparent 12%
  );
  mix-blend-mode: multiply; pointer-events: none;
}
/* Ground shadow beneath each planet — sits on tilted orbital plane */
.orbit-sphere::before {
  content: ""; position: absolute;
  left: 6%; right: 6%; bottom: -32%;
  height: 24%;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.30) 0%, rgba(10,10,10,0) 70%);
  filter: blur(3px);
  pointer-events: none;
  z-index: -1;
}
.s-sm { width: 22px; height: 22px; }
.s-md { width: 34px; height: 34px; }
.s-lg { width: 46px; height: 46px; }
.s-xl { width: 60px; height: 60px; }

.orbit-label {
  font-size: 10px; font-weight: 500; color: var(--ink-2);
  text-align: center; line-height: 1.25;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 1px 2px #fff, 0 0 4px #fff;
}

/* Pulsing core glow */
.orbit-stage::after {
  content: ""; position: absolute;
  top: 50%; left: 50%; width: 180px; height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,65,12,0.10) 0%, rgba(255,255,255,0) 70%);
  z-index: 2; pointer-events: none;
  animation: core-pulse 4s ease-in-out infinite;
}
@keyframes core-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

@media (max-width: 600px) {
  .orbit-stage { max-width: 420px; }
  .orbit-label { font-size: 9px; }
  .s-sm { width: 18px; height: 18px; }
  .s-md { width: 26px; height: 26px; }
  .s-lg { width: 36px; height: 36px; }
  .s-xl { width: 46px; height: 46px; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-node, .orbit-rings ellipse, .orbit-stage::after { animation: none; }
}

/* Right-side slot card (placeholder, kept for other pages) */
.slot-card {
  background: #fff; border: 1px dashed var(--ink-5); border-radius: var(--r-lg);
  min-height: 480px;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-1);
  overflow: hidden;
}
.slot-head {
  padding: 14px 18px; border-bottom: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-soft);
}
.slot-eyebrow {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--ink-3);
}
.slot-pill {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--accent); background: var(--accent-soft);
  padding: 3px 10px; border-radius: 999px; text-transform: uppercase;
}
.slot-body {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; padding: 56px 32px;
  gap: 14px;
}
.slot-glyph {
  font-size: 48px; line-height: 1; color: var(--ink-5);
  letter-spacing: -0.05em;
}
.slot-body h3 { color: var(--ink-2); font-size: 17px; font-weight: 600; }
.slot-body p  { color: var(--ink-3); font-size: 14px; max-width: 36ch; }

/* Memo */
.memo {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--sh-2);
}
.memo-head {
  padding: 24px 32px; border-bottom: 1px solid var(--line-2);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap;
}
.memo-head .ttl { font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.memo-head .sku {
  font-size: 12px; color: var(--ink-3); font-family: var(--mono);
  margin-top: 4px; display: block;
}
.memo-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 820px) { .memo-grid { grid-template-columns: 1fr; } }
.memo-block { padding: 24px 32px; border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.memo-block:nth-child(2n) { border-right: none; }
.memo-block:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 820px) {
  .memo-block { border-right: none; }
  .memo-block:nth-last-child(-n+2) { border-bottom: 1px solid var(--line-2); }
  .memo-block:last-child { border-bottom: none; }
}
.memo-block .lbl {
  font-size: 10px; font-weight: 600; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}
.memo-block .v { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.memo-block .v.neg { color: var(--neg); }
.memo-block .v.pos { color: var(--pos); }
.memo-block p { margin-top: 8px; font-size: 13px; color: var(--ink-3); line-height: 1.55; }

/* Feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 48px; }
@media (max-width: 820px) { .feat-grid { grid-template-columns: 1fr; gap: 32px; } }
.feat .num { font-size: 24px; font-weight: 900; color: #0E7C66; letter-spacing: 0.04em; margin-bottom: 14px; font-variant-numeric: tabular-nums; }
.feat h3 { margin-bottom: 10px; font-size: 19px; }
.feat p { font-size: 14px; color: var(--ink-3); line-height: 1.6; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-list summary {
  font-weight: 600; font-size: 16px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--ink-3); transition: transform .15s ease; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-top: 14px; color: var(--ink-3); font-size: 14px; line-height: 1.65; }

/* CTA */
.cta { text-align: center; padding: 120px 0; }
.cta h2 { margin-bottom: 18px; }
.cta p { font-size: 17px; color: var(--ink-3); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
/* Footer — deep teal Thalamus */
footer.site-foot {
  background: var(--ink);
  color: rgba(245,242,234,0.72);
  border-top: 0;
  padding: 72px 0 40px;
  margin-top: 80px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-col h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(245,242,234,0.55);
  margin-bottom: 16px; font-weight: 600;
  font-family: var(--font);
}
.foot-col a {
  display: block; font-size: 14px;
  color: rgba(245,242,234,0.78);
  padding: 5px 0; transition: color .15s ease;
}
.foot-col a:hover { color: var(--accent); }
.foot-brand {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 24px;
  margin-bottom: 10px;
  color: #F5F2EA;
}
.foot-brand-tag {
  font-size: 13px;
  color: rgba(245,242,234,0.62);
  max-width: 36ch;
  line-height: 1.55;
}
.foot-bottom {
  display: flex; justify-content: space-between; padding-top: 32px;
  border-top: 1px solid rgba(245,242,234,0.10);
  font-size: 12px;
  color: rgba(245,242,234,0.50);
  flex-wrap: wrap; gap: 16px;
}
.foot-bottom a { color: rgba(245,242,234,0.62); }
.foot-bottom a:hover { color: var(--accent); }

/* Currency switch utility (IN locale) */
.cur::before { content: '$'; }
html.locale-in .cur::before { content: '₹'; }
.price-inr { display: none; }
html.locale-in .price-usd { display: none; }
html.locale-in .price-inr { display: inline; }

/* ── DYNAMISM PACK ─────────────────────────────────────── */

/* Cream BG — no grid texture (Thalamus look is plain) */
body {
  background-color: var(--bg);
  background-image: none;
}
body::before { content: none; }

/* Scroll-reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* Platform marquee strip */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; position: relative; background: var(--bg);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right, var(--bg), rgba(245,242,234,0)); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--bg), rgba(245,242,234,0)); }
.marquee-track {
  display: flex; gap: 28px; padding: 8px 0;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--ink-3);
  letter-spacing: 0.04em; white-space: nowrap;
}
.marquee-item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-4); display: inline-block;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pulse dot — for live refresh pill */
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pos); display: inline-block;
  position: relative; flex-shrink: 0;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  background: var(--pos); opacity: .35;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.6); opacity: .5; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Tilt card (JS-driven CSS vars) */
.tilt {
  transform: perspective(1200px)
             rotateX(var(--rx, 0deg))
             rotateY(var(--ry, 0deg))
             translateY(var(--ty, 0));
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt:hover { box-shadow: 0 24px 60px -24px rgba(10,10,10,.18), 0 8px 24px -12px rgba(10,10,10,.10); }

/* Counter shimmer */
.counter { font-variant-numeric: tabular-nums; }

/* Primary button shimmer */
.btn-primary {
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary span.arr {
  display: inline-block; transition: transform .2s ease;
}
.btn-primary:hover span.arr { transform: translateX(3px); }

/* Hero h1 gloss disabled — serif headlines need no shimmer */
.hero h1 .gloss { color: var(--ink); }

/* Live ticker chip — Thalamus pill */
.live-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: var(--sh-1);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  margin-bottom: 24px;
}
.live-chip .pulse-dot::after { background: var(--pos); }
.live-chip .pulse-dot { background: var(--pos); }
.live-chip b { color: var(--ink); font-weight: 700; }

/* Verdict pill micro-interaction inside memo */
.memo .verdict { transition: transform .2s ease; }
.memo:hover .verdict { transform: scale(1.04); }

/* Demo card live highlight */
.demo .pill { transition: background .2s ease; }

/* Feature card hover lift */
.feat {
  padding: 4px; border-radius: var(--r-lg); transition: all .25s ease;
}
.feat:hover { background: var(--bg-soft); padding: 12px; }
.feat:hover h3 { color: var(--ink); }

/* Step-flow card hover ring */
.step-flow:hover { cursor: default; }

/* Verdict pill in act-row shimmer on row hover */
.act-row { transition: background .15s ease; }
.act-row:not(.act-head):hover { background: var(--bg-soft); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  body { background-image: none; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}