/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #05070D;
  color: #E6EAF2;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
img, svg { display: block; max-width: 100%; }

:root {
  --bg: #05070D;
  --bg-2: #0A0E1A;
  --bg-3: #0F1422;
  --surface: #0C1120;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.18);
  --text: #E6EAF2;
  --text-dim: #8892A6;
  --text-faint: #5A6378;
  --cyan: #7DD3FC;
  --mint: #6EE7B7;
  --violet: #A78BFA;
  --grad: linear-gradient(100deg, #7DD3FC 0%, #A78BFA 50%, #6EE7B7 100%);
  --display: 'Archivo', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

::selection { background: var(--cyan); color: #05070D; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.16,.84,.44,1), transform 1s cubic-bezier(.16,.84,.44,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(.16,.84,.44,1), transform 1s cubic-bezier(.16,.84,.44,1);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(.16,.84,.44,1), transform 1s cubic-bezier(.16,.84,.44,1);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1s cubic-bezier(.16,.84,.44,1), transform 1.1s cubic-bezier(.16,.84,.44,1);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* Word-by-word hero reveal */
.hero-display .word,
.hero-display .hero-slash {
  opacity: 0;
  transform: translateY(60px) skew(-4deg);
  animation: word-rise 1.1s cubic-bezier(.16,.84,.44,1) forwards;
}
.hero-display .line-1 .word:nth-child(1) { animation-delay: 0.1s; }
.hero-display .line-1 .word:nth-child(2) { animation-delay: 0.22s; }
.hero-display .line-2 .word:nth-child(1) { animation-delay: 0.36s; }
.hero-display .line-2 .hero-slash        { animation-delay: 0.48s; }
.hero-display .line-2 .word:nth-child(3) { animation-delay: 0.6s; }
.hero-display .line-3 .word              { animation-delay: 0.74s; }
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0) skew(0); }
}
.hero-display .word-italic { animation-name: word-rise-italic; }
@keyframes word-rise-italic {
  to { opacity: 1; transform: translateY(0) skew(-3deg); }
}

/* Subtle hero promise entrance */
.hero-promise, .hero-actions, .hero-meta, .hero-caption-pill {
  opacity: 0;
  animation: fade-up 1s cubic-bezier(.16,.84,.44,1) forwards;
}
.hero-meta { animation-delay: 0.15s; }
.hero-promise { animation-delay: 1.0s; }
.hero-actions { animation-delay: 1.15s; }
.hero-caption-pill { animation-delay: 1.4s; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.kinetic-bar { opacity: 0; animation: fade-up 1.1s cubic-bezier(.16,.84,.44,1) 1.3s forwards; }

/* Number counter — kept visible, JS updates value */
.counter { font-variant-numeric: tabular-nums; }

/* ===== AMBIENT MOTION BACKGROUND ===== */
.ambient {
  position: fixed; inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}

/* Aurora blobs — slow flowing gradient mesh */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  mix-blend-mode: screen;
  will-change: transform;
}
.aurora-1 {
  top: -10%; left: -10%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(125,211,252,0.55), transparent 65%);
  animation: aurora-float 28s ease-in-out infinite;
}
.aurora-2 {
  top: 20%; right: -15%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(167,139,250,0.55), transparent 65%);
  animation: aurora-float 34s ease-in-out infinite reverse;
  animation-delay: -4s;
}
.aurora-3 {
  bottom: -15%; left: 20%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(110,231,183,0.45), transparent 65%);
  animation: aurora-float 40s ease-in-out infinite;
  animation-delay: -8s;
}
.aurora-4 {
  top: 50%; left: 45%;
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, rgba(125,211,252,0.4), transparent 65%);
  animation: aurora-float 32s ease-in-out infinite reverse;
  animation-delay: -14s;
  opacity: 0.3;
}
@keyframes aurora-float {
  0%   { transform: translate(0,0) scale(1) rotate(0); }
  25%  { transform: translate(8vw,-6vw) scale(1.12) rotate(90deg); }
  50%  { transform: translate(-4vw,10vw) scale(0.94) rotate(180deg); }
  75%  { transform: translate(-10vw,-4vw) scale(1.08) rotate(270deg); }
  100% { transform: translate(0,0) scale(1) rotate(360deg); }
}

/* Pulsing dot grid */
.grid-pulse {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.08) 1px, transparent 1.5px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  animation: grid-breathe 8s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes grid-breathe {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

/* Horizontal streaks (kept, expanded) */
.streak {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,0.5), transparent);
  transform-origin: center;
  will-change: transform;
}
.streak-1 { top: 18%; left: -10%; width: 60%; transform: rotate(-18deg); animation: drift 22s ease-in-out infinite; }
.streak-2 { top: 55%; right: -10%; width: 50%; transform: rotate(-15deg); animation: drift 28s ease-in-out infinite reverse; opacity: 0.5; }
.streak-3 { top: 82%; left: 20%; width: 40%; transform: rotate(-18deg); background: linear-gradient(90deg, transparent, rgba(110,231,183,0.45), transparent); animation: drift 32s ease-in-out infinite; opacity: 0.6; }
.streak-4 { top: 38%; left: -10%; width: 45%; transform: rotate(-18deg); background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent); animation: drift 36s ease-in-out infinite reverse; opacity: 0.5; animation-delay: -12s; }
@keyframes drift {
  0%,100% { transform: translateX(-20px) rotate(-18deg); }
  50% { transform: translateX(30px) rotate(-18deg); }
}

/* Parallax orbs (controlled by JS) */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  will-change: transform;
}
.orb-1 { top: 10%; right: 5%; width: 500px; height: 500px; background: radial-gradient(circle, var(--violet), transparent 70%); }
.orb-2 { bottom: 10%; left: -5%; width: 600px; height: 600px; background: radial-gradient(circle, var(--cyan), transparent 70%); opacity: 0.25; }
.orb-3 { top: 60%; right: 30%; width: 400px; height: 400px; background: radial-gradient(circle, var(--mint), transparent 70%); opacity: 0.18; }

/* Floating particles */
.particles {
  position: absolute; inset: 0;
}
.particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  opacity: 0;
  animation: particle-rise var(--particle-dur, 14s) linear infinite;
  animation-delay: var(--particle-delay, 0s);
}
.particles span:nth-child(1)  { left: 8%;  --particle-dur: 18s; --particle-delay: 0s;   background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.particles span:nth-child(2)  { left: 18%; --particle-dur: 22s; --particle-delay: -3s;  background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.particles span:nth-child(3)  { left: 28%; --particle-dur: 16s; --particle-delay: -7s;  }
.particles span:nth-child(4)  { left: 38%; --particle-dur: 26s; --particle-delay: -2s;  background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.particles span:nth-child(5)  { left: 48%; --particle-dur: 20s; --particle-delay: -10s; }
.particles span:nth-child(6)  { left: 58%; --particle-dur: 14s; --particle-delay: -5s;  background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.particles span:nth-child(7)  { left: 65%; --particle-dur: 24s; --particle-delay: -9s;  }
.particles span:nth-child(8)  { left: 72%; --particle-dur: 19s; --particle-delay: -1s;  background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.particles span:nth-child(9)  { left: 80%; --particle-dur: 21s; --particle-delay: -12s; }
.particles span:nth-child(10) { left: 88%; --particle-dur: 17s; --particle-delay: -6s;  background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.particles span:nth-child(11) { left: 94%; --particle-dur: 23s; --particle-delay: -14s; background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.particles span:nth-child(12) { left: 3%;  --particle-dur: 25s; --particle-delay: -4s;  }
@keyframes particle-rise {
  0%   { transform: translateY(110vh) translateX(0) scale(0.6); opacity: 0; }
  8%   { opacity: 0.85; }
  50%  { transform: translateY(55vh) translateX(20px) scale(1); opacity: 0.7; }
  92%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(-20px) scale(0.6); opacity: 0; }
}

/* Mouse-follow spotlight */
.spotlight {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,211,252,0.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  left: 0; top: 0;
  transform: translate3d(-9999px, -9999px, 0);
  transition: opacity .6s ease;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform;
}
body.cursor-active .spotlight { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .aurora, .streak, .particles span, .grid-pulse { animation: none !important; }
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 20px 40px;
  background: rgba(5,7,13,0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 1480px;
  margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand-12 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: #fff;
  color: #05070D;
  font-size: 16px;
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  letter-spacing: -0.04em;
  transform: skew(-6deg);
}
.brand-slash {
  width: 1px; height: 24px;
  background: var(--border-strong);
  transform: skew(-20deg);
}
.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variation-settings: "wdth" 100;
}

.nav-links {
  display: flex; justify-content: center; gap: 28px;
}
.nav-links a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #fff;
  color: #05070D;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transform: skew(-6deg);
  transition: background .2s, transform .2s;
}
.nav-btn > * { transform: skew(6deg); }
.nav-btn:hover { background: var(--cyan); transform: skew(-6deg) translateX(2px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 2;
  padding: 56px 40px 72px;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

/* Full-bleed background image + overlays */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: grayscale(0.12) contrast(1.05) brightness(0.72) saturate(0.85);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,13,0.92) 0%, rgba(5,7,13,0.78) 30%, rgba(5,7,13,0.35) 60%, rgba(5,7,13,0.15) 100%),
    linear-gradient(180deg, rgba(5,7,13,0.55) 0%, transparent 25%, transparent 70%, rgba(5,7,13,0.85) 100%);
}
.hero-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 15% 30%, rgba(125,211,252,0.14), transparent 65%),
    radial-gradient(50% 40% at 85% 80%, rgba(167,139,250,0.18), transparent 65%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.6 0 0 0 0 0.8 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: flex; justify-content: space-between;
  margin-bottom: auto;
  padding-bottom: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text);
}
.meta-ping { display: inline-flex; align-items: center; gap: 10px; color: var(--mint); }
.ping-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
  animation: ping 1.8s infinite;
}
@keyframes ping { 0%,100%{opacity:1} 50%{opacity:.4} }
.meta-tick { color: rgba(230,234,242,0.7); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: auto;
  padding: 40px 0 56px;
}

.hero-display {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 90;
  letter-spacing: -0.04em;
  line-height: 0.88;
  font-size: clamp(48px, 8vw, 144px);
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-line {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.15em;
}
.line-1 { justify-content: flex-start; }
.line-2 { justify-content: flex-start; padding-left: 6%; }
.line-3 { justify-content: flex-start; }
.word { display: inline-block; }
.word-italic {
  font-style: italic;
  font-variation-settings: "wdth" 85;
  color: var(--cyan);
  transform: skew(-3deg);
}
.word-outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}
.word-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-slash {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  font-variation-settings: "wdth" 75;
  padding: 0 0.1em;
}

.hero-promise {
  font-size: 18px;
  color: rgba(230,234,242,0.85);
  max-width: 580px;
  line-height: 1.55;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 2px solid var(--cyan);
}
.hero-promise strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-caption-pill {
  position: absolute;
  bottom: 140px;
  right: 40px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(5,7,13,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text);
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: skew(-6deg);
  transition: transform .2s, background .2s;
}
.btn > * { transform: skew(6deg); }
.btn-primary {
  background: #fff;
  color: #05070D;
}
.btn-primary:hover {
  background: var(--cyan);
  transform: skew(-6deg) translateX(3px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-arrow { font-family: 'Inter'; font-weight: 500; }
.play-dot { color: var(--mint); font-size: 10px; }

/* ===== HERO — shared bits ===== */
.cap-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* Images used elsewhere (quote, partner, etc.) keep these utilities */
.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.photo-frame img,
.photo-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.25) contrast(1.05) brightness(0.85);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  display: block;
}
.photo-frame:hover img,
.photo-frame:hover video { transform: scale(1.03); }
.photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(125,211,252,0.18) 0%, transparent 45%),
    linear-gradient(315deg, rgba(167,139,250,0.22) 0%, transparent 50%),
    linear-gradient(180deg, transparent 50%, rgba(5,7,13,0.55) 100%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.photo-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--cyan);
  border-style: solid;
  z-index: 2;
}
.photo-corner.tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.photo-corner.br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

/* ===== KINETIC STATS BAR (sits over hero image) ===== */
.kinetic-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 32px;
  padding: 28px 40px;
  background: rgba(10,14,26,0.7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, 100% 0, calc(100% - 32px) 100%, 32px 100%);
}
.kinetic-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,0.05), transparent);
  pointer-events: none;
}
.kin-div { height: 40px; background: var(--border); }
.kin-num {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.kin-unit {
  color: var(--cyan);
  font-size: 0.5em;
  margin-left: 2px;
}
.kin-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-top: 8px;
}

/* ===== SECTION ===== */
.section {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
  padding: 120px 40px;
}
.section-head { margin-bottom: 72px; max-width: 900px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 32px;
}
.tag-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.08em;
}
.tag-text {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text);
}

.heavy {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 90;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.heavy-medium { font-size: clamp(36px, 4.2vw, 64px); }
.heavy span { display: block; }
.heavy .italic {
  font-style: italic;
  color: var(--cyan);
  transform: skew(-3deg);
  transform-origin: left;
  padding-left: 0.15em;
}
.section-lede {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 620px;
  margin-top: 28px;
  line-height: 1.55;
}

/* ===== WHO WE HELP ===== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.who-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  transition: transform .3s, border-color .3s;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.who-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125,211,252,0.3);
}
.who-icon {
  width: 44px; height: 44px;
  color: var(--cyan);
  margin-bottom: 28px;
}
.who-card h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-variation-settings: "wdth" 95;
  margin-bottom: 14px;
}
.who-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ===== DIAGONAL DIVIDER ===== */
.diag-divider {
  margin: 40px 0;
  padding: 18px 0;
  background: var(--cyan);
  color: #05070D;
  transform: rotate(-1.2deg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.tick-line {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  animation: ticker 55s linear infinite;
  padding-left: 100%;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ===== ADVISORY (CAPABILITIES) ===== */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cap-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  transition: transform .3s, border-color .3s;
  overflow: hidden;
}
.cap-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background .3s;
}
.cap-card:hover::before { background: var(--cyan); }
.cap-card-featured {
  background: linear-gradient(180deg, rgba(125,211,252,0.08), rgba(125,211,252,0) 60%), var(--surface);
  border-color: rgba(125,211,252,0.25);
}
.cap-card-featured::before { background: var(--grad); }

.cap-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
}
.cap-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.cap-chip {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
  border-radius: 4px;
}
.cap-chip-accent {
  background: var(--cyan);
  color: #05070D;
}
.cap-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 95;
  margin-bottom: 16px;
}
.cap-card p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.55;
}
.cap-stat {
  display: flex; align-items: end; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.cap-stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.percent { font-size: 0.5em; color: var(--cyan); }
.cap-stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-bottom: 6px;
}
.cap-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  font-size: 18px;
  color: var(--text-faint);
  transition: transform .3s, color .3s;
}
.cap-card:hover .cap-arrow {
  color: var(--cyan);
  transform: translate(4px, -4px);
}

/* ===== PARTNER (How we stand next to you) ===== */
.partner {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}
.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.partner-photo {
  position: relative;
}
.photo-frame-tall {
  aspect-ratio: 4 / 5;
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
}
.partner-badge {
  position: absolute;
  right: -24px;
  bottom: 40px;
  background: var(--surface);
  border: 1px solid var(--cyan);
  padding: 18px 20px;
  max-width: 260px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.pb-tag {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.pb-text {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}
.partner-right .section-tag { margin-bottom: 28px; }
.partner-right .heavy { margin-bottom: 28px; }
.partner-lede {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 560px;
}
.partner-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 4px;
}
.partner-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.partner-list li:last-child { border-bottom: none; }
.pl-num {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  font-size: 28px;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 2px;
}
.partner-list h5 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-variation-settings: "wdth" 95;
  margin-bottom: 6px;
}
.partner-list p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ===== PERFORMANCE ===== */
.perf-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}
.perf-col {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.perf-before {
  opacity: 0.75;
  clip-path: polygon(0 0, 100% 0, calc(100% - 32px) 100%, 0 100%);
}
.perf-after {
  background: linear-gradient(165deg, rgba(110,231,183,0.08), transparent 50%), var(--surface);
  border-color: rgba(110,231,183,0.25);
  clip-path: polygon(32px 0, 100% 0, 100% 100%, 0 100%);
}
.perf-col-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.col-tag {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.col-tag-after {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.col-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  text-align: right;
}
.perf-metric { margin-bottom: 28px; }
.perf-metric:last-child { margin-bottom: 0; }
.pm-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.pm-value {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.pm-value span {
  font-size: 0.5em;
  color: var(--text-faint);
  margin-left: 4px;
}
.pm-good { color: var(--mint); }
.pm-good span { color: rgba(110,231,183,0.6); }
.pm-bar {
  height: 4px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
}
.pm-bar span {
  display: block; height: 100%;
}
.pm-bar-slow span {
  background: var(--text-faint);
}
.pm-bar-fast span {
  background: var(--grad);
  box-shadow: 0 0 12px rgba(110,231,183,0.5);
}

.perf-vs {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px;
  align-self: center;
  text-align: center;
}
.vs-num {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 75;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: skew(-6deg);
}
.vs-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  margin-top: 8px;
  max-width: 140px;
  line-height: 1.4;
}

/* ===== METHOD ===== */
.method-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 60px;
}
.track-line {
  position: absolute;
  top: 86px; left: 40px; right: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--cyan), var(--mint), var(--border));
  z-index: 0;
}
.phase { position: relative; }
.phase-marker {
  width: 56px; height: 56px;
  background: var(--bg);
  border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 16px;
  font-variation-settings: "wdth" 85;
  color: var(--cyan);
  margin-bottom: 32px;
  transform: skew(-6deg);
  position: relative;
  z-index: 1;
}
.phase-marker span { transform: skew(6deg); }
.phase-marker-final {
  background: var(--mint);
  color: #05070D;
  border-color: var(--mint);
  box-shadow: 0 0 24px rgba(110,231,183,0.5);
}
.phase-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.phase h4 {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.phase p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 260px;
}

/* ===== NETWORK ===== */
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.network-copy h2 { margin-bottom: 32px; }
.network-copy > p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 480px;
}
.ns {
  padding: 20px 0;
  border-top: 2px solid var(--cyan);
}
.ns-num {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.ns-lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cities {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
}
.city {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .3s, padding-left .3s;
}
.city:hover {
  color: var(--text);
  padding-left: 12px;
}
.city-primary {
  color: var(--text);
  font-size: 32px;
  font-variation-settings: "wdth" 95;
}
.city .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--text-faint);
  flex-shrink: 0;
}
.city-primary .dot {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.city-tag {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 3px;
}

/* ===== QUOTE ===== */
.quote-wrap {
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}
.quote-card {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  overflow: hidden;
}
.quote-photo {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.quote-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05) brightness(0.8);
}
.quote-photo .photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(125,211,252,0.18) 0%, transparent 50%),
    linear-gradient(315deg, rgba(167,139,250,0.28) 0%, transparent 55%),
    linear-gradient(90deg, transparent 50%, rgba(12,17,32,0.5) 100%);
  mix-blend-mode: screen;
}
.quote-body {
  padding: 56px 56px 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.quote-mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 120px;
  line-height: 0.6;
  color: var(--cyan);
  margin-bottom: 24px;
}
.quote-card blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
}
.q-hl {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.quote-attrib {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.qa-name { font-weight: 600; font-size: 15px; }
.qa-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-top: 4px;
}
.qa-logo {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  padding: 10px 16px;
  border: 1px solid var(--border);
}

/* ===== CTA ===== */
.cta {
  padding-top: 80px;
  padding-bottom: 160px;
}
.cta-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.cta-display {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 85;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.cta-line { display: block; }
.cta-italic {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: skew(-4deg);
  margin-top: 8px;
}
.cta-lede {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.55;
}

.cta-form {
  max-width: 780px;
  margin: 0 auto 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cta-form input, .cta-form select {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color .2s, background .2s;
}
.cta-form input::placeholder { color: var(--text-faint); }
.cta-form input:focus, .cta-form select:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(125,211,252,0.04);
}
.cta-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892A6' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  padding-right: 48px;
}

.btn-big {
  padding: 24px 32px;
  background: #fff;
  color: #05070D;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 20px 100%);
  transition: background .2s, transform .2s;
}
.btn-big:hover {
  background: var(--cyan);
  transform: translateY(-2px);
}
.big-arrow { font-size: 22px; font-family: 'Inter'; }

.form-done {
  display: none;
  padding: 18px;
  background: rgba(110,231,183,0.08);
  border: 1px solid rgba(110,231,183,0.3);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mint);
}
.form-done.show { display: block; }

.form-error {
  display: none;
  padding: 18px;
  margin-top: 16px;
  background: rgba(255,120,120,0.08);
  border: 1px solid rgba(255,120,120,0.3);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #ffb4b4;
  text-align: center;
}
.form-error.show { display: block; }

.cta-meta {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 72px 40px 28px;
}
.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.55;
}
.footer-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-dim);
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: var(--text); padding-left: 4px; }
.footer-address {
  display: block;
  padding: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-faint);
  max-width: 240px;
}
.footer-bottom {
  max-width: 1480px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hero { min-height: auto; padding-bottom: 56px; }
  .hero-bg-img { object-position: 65% center; }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(5,7,13,0.65) 0%, rgba(5,7,13,0.55) 40%, rgba(5,7,13,0.85) 100%);
  }
  .hero-caption-pill { display: none; }
  .kinetic-bar {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    clip-path: none;
    padding: 24px;
  }
  .kin-div { display: none; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .partner-inner { grid-template-columns: 1fr; gap: 56px; }
  .partner-badge { right: 24px; bottom: 24px; }
  .perf-grid { grid-template-columns: 1fr; }
  .perf-before, .perf-after { clip-path: none; opacity: 1; }
  .perf-vs { transform: none; }
  .method-track { grid-template-columns: 1fr 1fr; }
  .track-line { display: none; }
  .network-grid { grid-template-columns: 1fr; gap: 56px; }
  .quote-card { grid-template-columns: 1fr; clip-path: none; }
  .quote-photo { aspect-ratio: 16/9; min-height: auto; }
  .quote-body { padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .brand-name { display: none; }
  .hero { padding: 32px 20px 48px; }
  .hero-meta { flex-direction: column; gap: 8px; padding-bottom: 32px; }
  .hero-content { padding: 32px 0 40px; }
  .line-2 { padding-left: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .kinetic-bar { grid-template-columns: 1fr; gap: 20px; }
  .section { padding: 80px 20px; }
  .who-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .method-track { grid-template-columns: 1fr; }
  .ns-num { font-size: 36px; }
  .cta-row { grid-template-columns: 1fr; }
  .cta-meta { flex-direction: column; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: left; }
  .city-primary { font-size: 24px; }
  .city { font-size: 18px; }
  .quote-attrib { flex-direction: column; align-items: flex-start; gap: 16px; }
  .partner-list li { grid-template-columns: 40px 1fr; gap: 14px; }
  .pl-num { font-size: 22px; }
}
