:root {
  --bg: #0a0a0b;
  --bg-2: #0f0f11;
  --surface: #141417;
  --surface-2: #1a1a1f;
  --surface-hover: #1f1f25;
  --text: #f5f5f5;
  --text-dim: #a3a3ac;
  --text-muted: #6a6a74;
  --border: rgba(255, 255, 255, 0.07);
  --border-bright: rgba(255, 255, 255, 0.14);
  --accent: #10b981;
  --accent-dim: rgba(16, 185, 129, 0.12);
  --accent-glow: rgba(16, 185, 129, 0.3);
  --warm: #f59e0b;
  --warm-dim: rgba(245, 158, 11, 0.12);
  --rose: #f43f5e;
  --rose-dim: rgba(244, 63, 94, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: none; }

/* ============ Splash intro ============ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: all;
}
.splash.done {
  animation: splash-out 1.1s var(--ease) forwards;
}
@keyframes splash-out {
  0% { opacity: 1; clip-path: inset(0 0 0 0); }
  40% { opacity: 1; }
  100% { opacity: 0; clip-path: inset(0 0 100% 0); pointer-events: none; visibility: hidden; }
}
body.splash-active { overflow: hidden; }

.splash::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(16, 185, 129, 0.12), transparent 70%),
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(245, 158, 11, 0.08), transparent 70%);
  animation: splash-pulse 3s ease-in-out infinite;
}
@keyframes splash-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.splash::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.04;
  pointer-events: none;
}

.splash-grid {
  position: absolute;
  inset: 0;
  padding: 28px 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.sg { position: absolute; animation: sg-in 0.9s var(--ease) 0.1s both; }
.sg-tl { top: 28px; left: 36px; }
.sg-tr { top: 28px; right: 36px; }
.sg-bl { bottom: 28px; left: 36px; }
.sg-br { bottom: 28px; right: 36px; }
@keyframes sg-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.splash-lines {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
}
.sl {
  overflow: hidden;
  line-height: 1.15;
}
.sl span {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5.2vw, 78px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  transform: translateY(110%);
  animation: sl-in 0.9s var(--ease) forwards;
}
.sl:nth-child(1) span { animation-delay: 0.25s; }
.sl:nth-child(2) span {
  animation-delay: 0.55s;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sl:nth-child(3) span {
  animation-delay: 0.85s;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
@keyframes sl-in {
  to { transform: translateY(0); }
}
.sl:nth-child(1) span,
.sl:nth-child(2) span,
.sl:nth-child(3) span {
  animation-name: sl-in, sl-out;
  animation-duration: 0.9s, 0.6s;
  animation-timing-function: var(--ease), var(--ease);
  animation-fill-mode: forwards, forwards;
}
.sl:nth-child(1) span { animation-delay: 0.25s, 1.9s; }
.sl:nth-child(2) span { animation-delay: 0.55s, 1.95s; }
.sl:nth-child(3) span { animation-delay: 0.85s, 2.0s; }
@keyframes sl-out {
  to { transform: translateY(-110%); opacity: 0; }
}

.splash-wordmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 82px);
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0;
  animation: sw-in 0.7s var(--ease) 2.35s forwards;
  z-index: 3;
}
.sw-mark {
  display: inline-block;
  color: var(--accent);
  animation: spin 6s linear infinite;
  filter: drop-shadow(0 0 24px rgba(16, 185, 129, 0.5));
}
.sw-accent { color: var(--accent); }
@keyframes sw-in {
  from { opacity: 0; transform: scale(0.96); letter-spacing: 0.08em; }
  to { opacity: 1; transform: scale(1); letter-spacing: -0.03em; }
}

.splash-progress {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  z-index: 2;
}
.sp-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  animation: sp-fill 3s var(--ease) forwards;
  box-shadow: 0 0 12px var(--accent-glow);
}
@keyframes sp-fill { to { width: 100%; } }

.splash-meta {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .splash { display: none; }
}

/* ============ Custom cursor ============ */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 64px;
  height: 64px;
  border-color: var(--accent);
  background: rgba(16, 185, 129, 0.1);
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  mix-blend-mode: difference;
}
@media (max-width: 820px) {
  body { cursor: auto; }
  button, a { cursor: pointer; }
  .cursor, .cursor-dot { display: none; }
}

/* ============ Background flourishes ============ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  will-change: transform;
}
.orb-1 {
  width: 540px; height: 540px;
  background: var(--accent);
  top: -180px; left: -120px;
  animation: float 22s ease-in-out infinite;
}
.orb-2 {
  width: 440px; height: 440px;
  background: var(--warm);
  top: 50%; right: -140px;
  animation: float 26s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px; height: 400px;
  background: var(--rose);
  bottom: -140px; left: 25%;
  opacity: 0.18;
  animation: float 30s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.08); }
}

/* ============ Layout base ============ */
main, .nav, .footer { position: relative; z-index: 3; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 11, 0.55);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  padding: 8px 12px;
  border-radius: 10px;
}
.logo-mark {
  color: var(--accent);
  animation: spin 14s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-link {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
.nav-link:hover { color: var(--text); }

@media (max-width: 920px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 1px var(--accent-glow), 0 10px 40px -8px var(--accent-glow);
}
.btn-ghost {
  border-color: var(--border-bright);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-lg { padding: 15px 24px; font-size: 14.5px; }
.btn-xl { padding: 20px 30px; font-size: 16px; gap: 14px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 72px 48px 0;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.06);
  animation: hero-bg-drift 30s ease-in-out infinite alternate;
}
@keyframes hero-bg-drift {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.08) translate(-2%, -1%); }
}
.hero-bg-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(245,158,11,0.22), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(16,185,129,0.14), transparent 60%),
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.97) 100%);
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 60% at 40% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 40% 50%, #000 0%, transparent 75%);
  opacity: 0.6;
}

.hero-inner { position: relative; z-index: 2; }

/* Side panel */
.hero-side {
  position: absolute;
  top: 90px;
  right: 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  min-width: 180px;
  opacity: 0;
  animation: fade-in 0.8s var(--ease) 2.2s forwards;
}
.hs-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-dim);
}
.hs-k { color: var(--text-muted); }
.hs-v { color: var(--text); }
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 8px var(--accent-glow);
  animation: live-pulse 1.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes fade-in { to { opacity: 1; } }
@media (max-width: 1100px) { .hero-side { display: none; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-dim);
  margin-bottom: 36px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.03em;
}
.dot-pulse {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 8.5vw, 140px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin-bottom: 36px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  margin-right: 0.18em;
}
.hero-title .word.in {
  opacity: 1;
  transform: translateY(0);
}
/* stagger via nth-child on words */
.hero-title .word[data-word="0"] { transition-delay: 1.95s; }
.hero-title .word[data-word="1"] { transition-delay: 2.05s; }
.hero-title .word[data-word="2"] { transition-delay: 2.15s; }
.hero-title .word[data-word="3"] { transition-delay: 2.35s; }
.hero-title .word[data-word="4"] { transition-delay: 2.45s; }
.hero-title .word[data-word="5"] { transition-delay: 2.55s; }

/* The word that cycles */
.rotator {
  display: inline-block;
  position: relative;
  min-width: 4ch;
}
.rotator.swap {
  animation: rotator-swap 0.6s var(--ease);
}
@keyframes rotator-swap {
  0% { transform: translateY(0); opacity: 1; filter: blur(0); }
  45% { transform: translateY(-55%); opacity: 0; filter: blur(6px); }
  55% { transform: translateY(55%); opacity: 0; filter: blur(6px); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

/* Reveal-up: used for trust/stats/subtitle/scroll */
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}
.italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--warm);
}
.gradient-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--warm) 55%, var(--rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-subtitle strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust band */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ht-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.ht-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
}
.ht-logo {
  transition: color 0.3s var(--ease);
  cursor: default;
}
.ht-logo:hover { color: var(--accent); }
.ht-dot { color: var(--text-muted); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 0 32px;
  border-top: 1px solid var(--border);
  max-width: 960px;
}
.hstat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.hstat:first-child { padding-left: 0; }
.hstat:last-child { border-right: none; }
.hstat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.hstat:nth-child(2) .hstat-num { color: var(--accent); }
.hstat:nth-child(3) .hstat-num { color: var(--warm); }
.hstat:nth-child(4) .hstat-num { color: var(--rose); }
.hstat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.hstat-bar {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
}
.hstat-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: currentColor;
  opacity: 0.85;
  transition: width 1.4s var(--ease) 2.2s;
}
.hstat-bar i { color: var(--accent); }
.hstat:nth-child(3) .hstat-bar i { color: var(--warm); }
.hstat:nth-child(4) .hstat-bar i { color: var(--rose); }
.hstat.in .hstat-bar i { width: var(--w); }

/* Scroll cue */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 56px 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hs-line {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.hs-line::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 16px;
  background: var(--accent);
  animation: scroll-tick 2.2s var(--ease) infinite;
}
@keyframes scroll-tick {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(250%); }
  100% { transform: translateX(250%); }
}

@media (max-width: 820px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px 0; padding-bottom: 20px; }
  .hstat { padding: 0 16px; }
  .hstat:nth-child(2) { border-right: none; }
  .hero-trust { gap: 12px; }
}

.marquee {
  margin: 100px -48px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 44px;
  align-items: center;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--text-dim);
  font-weight: 500;
}
.marquee-track span:nth-child(even) {
  color: var(--accent);
  font-size: 14px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Section base ============ */
.section {
  padding: 140px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-header { margin-bottom: 72px; max-width: 900px; }
.section-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.section-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-dim);
  max-width: 620px;
}

/* ============ Mission ============ */
.mission-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.mission-copy .lede {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.mission-copy p {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 60ch;
}
.mission-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.metric-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.metric-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-bright);
}
.mv {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.mv.warm { color: var(--warm); }
.mv.rose { color: var(--rose); }
.ml { font-size: 13px; color: var(--text-dim); }

@media (max-width: 960px) {
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============ Image bands ============ */
.image-band {
  position: relative;
  height: 56vh;
  min-height: 420px;
  overflow: hidden;
  margin: 0;
}
.image-band-tall { height: 68vh; min-height: 520px; }
.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.06);
}
.image-band-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.5) 0%, rgba(10,10,11,0.15) 30%, rgba(10,10,11,0.15) 70%, rgba(10,10,11,0.75) 100%);
}
.image-band-quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  z-index: 2;
}
.image-band-quote p {
  max-width: 720px;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.25;
  color: #fff;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.quote-mark {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.4;
  color: var(--warm);
  margin-bottom: 20px;
  opacity: 0.8;
}

.image-band-stripe {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 0 24px;
  z-index: 2;
}
.image-band-stripe span:nth-child(even) { color: var(--warm); opacity: 0.8; }

/* ============ Product / features ============ */
.lux-mark {
  background: linear-gradient(90deg, var(--accent), #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  position: relative;
  padding: 36px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(16, 185, 129, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  background: var(--surface-hover);
  border-color: rgba(16, 185, 129, 0.35);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-icon.warm { background: var(--warm-dim); color: var(--warm); }
.feature-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-weight: 600;
}
.feature-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}

.product-visit {
  margin-top: 56px;
  text-align: center;
}

@media (max-width: 960px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ============ Evidence split ============ */
.section-evidence { padding-top: 80px; padding-bottom: 140px; }
.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.evidence-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: 560px;
}
.ei { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.ei img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.ei:hover img { transform: scale(1.04); }
.ei-tall { grid-row: span 2; }
.ei-short { align-self: end; height: 320px; }

.evidence-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 20px 0 40px;
}
.evidence-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.es {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.es-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.es-label { font-size: 12.5px; color: var(--text-dim); line-height: 1.4; }
.es:nth-child(2) .es-num { color: var(--warm); }
.es:nth-child(3) .es-num { color: var(--warm); }
.es:nth-child(4) .es-num { color: var(--rose); }

.evidence-note {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 52ch;
}

@media (max-width: 960px) {
  .evidence-grid { grid-template-columns: 1fr; gap: 48px; }
  .evidence-imgs { height: 440px; }
  .evidence-stats { grid-template-columns: 1fr 1fr; }
}

/* ============ Traction / pipeline ============ */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 100px;
}
.pipe-card {
  padding: 34px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  min-height: 340px;
}
.pipe-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-bright);
}
.pipe-primary {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 60px -20px var(--accent-glow);
}
.pipe-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.pipe-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.pipe-tag-green { background: var(--accent-dim); color: var(--accent); }
.pipe-tag-warm { background: var(--warm-dim); color: var(--warm); }
.pipe-tag-rose { background: var(--rose-dim); color: var(--rose); }
.pipe-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.pipe-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 600;
}
.pipe-big {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.pipe-card:nth-child(2) .pipe-big { color: var(--warm); }
.pipe-card:nth-child(3) .pipe-big { color: var(--rose); }
.pipe-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pipe-card li {
  font-size: 13.5px;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.pipe-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

@media (max-width: 960px) {
  .pipeline-grid { grid-template-columns: 1fr; }
}

/* Timeline */
.timeline-head { margin-bottom: 40px; }
.timeline-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  max-width: 780px;
}
.timeline-items {
  border-top: 1px solid var(--border);
}
.ti {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
}
.ti:hover { padding-left: 20px; background: rgba(255,255,255,0.01); }
.ti-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding-top: 2px;
}
.ti:nth-child(1) .ti-year { color: var(--accent); }
.ti:nth-child(2) .ti-year, .ti:nth-child(3) .ti-year { color: var(--accent); }
.ti:nth-child(4) .ti-year, .ti:nth-child(5) .ti-year { color: var(--warm); }
.ti:nth-child(6) .ti-year { color: var(--rose); }
.ti-body {
  font-size: 15.5px;
  color: var(--text-dim);
  line-height: 1.55;
}
.ti-body b { color: var(--text); font-weight: 600; }

@media (max-width: 640px) {
  .ti { grid-template-columns: 1fr; gap: 6px; }
}

/* ============ Company ============ */
.section-company { padding-top: 120px; padding-bottom: 80px; }
.company-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.company-copy p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 58ch;
}
.company-copy p:first-child { color: var(--text); font-size: 20px; }

.why-now {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.why-now h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 20px;
}
.why-now ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-now li {
  font-size: 14.5px;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.why-now li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.why-now li b { color: var(--text); }

.company-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
}
.company-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}
.portrait-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, transparent, rgba(10,10,11,0.85) 65%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pc-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.01em;
}
.pc-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 960px) {
  .company-grid { grid-template-columns: 1fr; gap: 48px; }
  .company-portrait { aspect-ratio: 4/3; max-height: 500px; }
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sb {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sb:last-child { border-right: none; }
.sb-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.sb:nth-child(1) .sb-num { color: var(--accent); }
.sb:nth-child(2) .sb-num { color: var(--accent); }
.sb:nth-child(3) .sb-num { color: var(--warm); }
.sb:nth-child(4) .sb-num { color: var(--rose); }
.sb-label { font-size: 12.5px; color: var(--text-muted); letter-spacing: 0.04em; }

@media (max-width: 820px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .sb { border-bottom: 1px solid var(--border); }
  .sb:nth-child(2) { border-right: none; }
}

/* ============ Contact ============ */
.section-contact {
  padding: 160px 48px;
  text-align: center;
}
.contact-inner { max-width: 880px; margin: 0 auto; }
.contact-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 24px 0 28px;
}
.contact-sub {
  color: var(--text-dim);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 580px;
  margin: 0 auto 48px;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.social-link {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-dim);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ============ Insights ============ */
.section-insights {
  padding-top: 100px;
  padding-bottom: 40px;
}

.insights-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  padding: 24px;
  display: grid;
  gap: 12px;
}

.insight-date {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.insight-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.18;
}

.insight-card p {
  color: var(--text-dim);
  line-height: 1.7;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 980px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}
.footer-tag { flex: 1; text-align: center; }

@media (max-width: 820px) {
  .hero, .section, .section-contact { padding-left: 20px; padding-right: 20px; }
  .marquee { margin-left: -20px; margin-right: -20px; }
  .footer { padding: 24px 20px; }
  .footer-tag { text-align: left; flex: none; }
}

/* ============ Magnetic base ============ */
.magnetic {
  display: inline-flex;
  will-change: transform;
  transition: transform 0.4s var(--ease);
}
.magnetic > * { pointer-events: none; }

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .magnetic { transform: none !important; }
}
