/* =========================================
   FULLSCALE MDC — styles.css
   Bebas Neue · Syne · IBM Plex Mono
   #6e4bff brand purple
   Concept: Deep space command center
========================================= */

:root {
  --void:   #030409;
  --void2:  #05070f;
  --panel:  #090c17;
  --panel2: #0d1020;
  --panel3: #121628;
  --edge:   rgba(255,255,255,.055);
  --edge2:  rgba(255,255,255,.10);
  --edge3:  rgba(255,255,255,.17);
  --ink:    #dde2f5;
  --ink2:   #a8b0ce;
  --ink3:   #6b7494;
  --v:      #6e4bff;
  --v2:     #9a7aff;
  --v3:     #c2adff;
  --vg:     rgba(110,75,255,.45);
  --vs:     rgba(110,75,255,.13);
  --vd:     rgba(110,75,255,.06);
  --green:  #4fffb0;
  --bb: 'Bebas Neue', sans-serif;
  --sy: 'Syne', sans-serif;
  --mo: 'IBM Plex Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--ink);
  font-family: var(--sy);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ── Global grid canvas ── */
#grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Container ── */
.wrap {
  position: relative;
  z-index: 2;
  width: min(1200px, 92vw);
  margin: 0 auto;
}
.section { padding: 88px 0; position: relative; }
.section-dark { background: var(--void2); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Section kicker ── */
.section-kicker {
  font-family: var(--mo);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--v2);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--v);
  box-shadow: 0 0 10px var(--vg);
  flex-shrink: 0;
}

/* ── Type ── */
h2 {
  font-family: var(--bb);
  font-size: clamp(52px, 5.8vw, 88px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 18px;
}
h2 em { font-style: normal; color: var(--v2); }
h3 {
  font-family: var(--sy);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
p { color: var(--ink2); line-height: 1.72; }

/* ── Buttons ── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--v);
  color: #fff;
  font-family: var(--sy);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: background .15s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 1px rgba(110,75,255,.45) inset,
              0 8px 32px rgba(110,75,255,.45),
              0 0 60px rgba(110,75,255,.15);
  white-space: nowrap;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 55%);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover {
  background: #8361ff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(155,125,255,.5) inset,
              0 14px 44px rgba(110,75,255,.6),
              0 0 80px rgba(110,75,255,.2);
}
.btn-primary:hover::after { opacity: 1; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sy);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--edge2);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, color .15s, transform .15s, background .15s;
}
.btn-ghost:hover {
  border-color: var(--edge3);
  color: #fff;
  transform: translateY(-2px);
  background: rgba(255,255,255,.04);
}
.btn-block { width: 100%; justify-content: center; margin-top: 0; }
.builder-right .btn-primary {
  border-radius: 0 0 18px 18px;
  padding: 16px 24px;
  font-size: 14px;
  box-shadow: none;
}
.builder-right .btn-primary:hover {
  box-shadow: 0 -4px 24px rgba(110,75,255,.2);
  transform: none;
}
.btn-xl { padding: 18px 40px; font-size: 17px; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(3,4,9,.88);
  backdrop-filter: blur(26px) saturate(1.4);
  -webkit-backdrop-filter: blur(26px) saturate(1.4);
  border-bottom: 1px solid var(--edge);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  padding: 18px clamp(20px, 3vw, 56px);
}
.nav-logo { height: 26px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--sy);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--v2); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ink3);
  padding: 7px 14px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
}
.live-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--v2);
  box-shadow: 0 0 8px var(--vg);
  animation: pip 2.2s ease-in-out infinite;
}
@keyframes pip { 0%,100% { opacity:1; } 50% { opacity:.25; } }
.cta-pill {
  font-family: var(--sy);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  padding: 9px 20px;
  background: var(--v);
  border-radius: 10px;
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(110,75,255,.4);
}
.cta-pill:hover { background: #8361ff; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(110,75,255,.55); }
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); border-radius: 999px;
  transition: transform .2s, opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 24px 16px;
  background: rgba(3,4,9,.98);
  border-top: 1px solid var(--edge);
}
.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--edge);
  color: var(--ink2);
  font-weight: 500;
}
.mobile-nav .cta-pill { margin-top: 12px; text-align: center; }
.mobile-nav.open { display: flex; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 120px 0 48px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mo);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--v3);
  padding: 8px 14px;
  border: 1px solid rgba(110,75,255,.28);
  border-radius: 999px;
  background: rgba(110,75,255,.07);
  margin-bottom: 28px;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--v2);
  box-shadow: 0 0 8px var(--vg);
  animation: pip 2.2s ease-in-out infinite;
}
.hero-headline {
  font-family: var(--bb);
  font-size: clamp(72px, 8vw, 118px);
  font-weight: 400;
  line-height: .89;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hl-row {
  display: block;
  opacity: 0;
  transform: translateX(-24px);
  animation: hlIn .8s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--d);
}
.hl-accent { color: var(--v2); }
@keyframes hlIn { to { opacity: 1; transform: none; } }
.hero-body {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 36px;
  opacity: 0;
  animation: hlIn .8s cubic-bezier(.16,1,.3,1) .42s forwards;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hlIn .8s cubic-bezier(.16,1,.3,1) .54s forwards;
}
.hero-right {
  opacity: 0;
  animation: hlIn .95s cubic-bezier(.16,1,.3,1) .28s forwards;
}

/* ── Iso viz card ── */
.iso-wrap {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--edge2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,.65),
    0 0 60px rgba(110,75,255,.07),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.iso-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--edge);
  background: rgba(3,4,9,.6);
}
.iso-status {
  display: flex;
  align-items: center;
  gap: 7px;
}
.iso-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(79,255,176,.8), 0 0 20px rgba(79,255,176,.3);
  animation: pip 2s ease-in-out infinite;
}
.iso-status-text {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.iso-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.iso-meta-val {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ink2);
}
#isoCanvas {
  display: block;
  width: 100%;
  height: auto;
  background: var(--void2);
}
.phase-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--edge);
}
.ptab {
  padding: 12px 10px;
  border: none;
  border-right: 1px solid var(--edge);
  border-radius: 0;
  background: var(--void2);
  color: var(--ink2);
  font-family: var(--sy);
  cursor: pointer;
  transition: background .15s, color .15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.ptab:last-child { border-right: none; }
.ptab-mw {
  font-family: var(--bb);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink2);
  transition: color .15s;
}
.ptab-date {
  font-family: var(--mo);
  font-size: 9px;
  letter-spacing: .08em;
  color: var(--ink3);
  transition: color .15s;
}
.ptab:hover { background: rgba(110,75,255,.05); }
.ptab:hover .ptab-mw { color: var(--ink); }
.ptab.active { background: rgba(110,75,255,.1); }
.ptab.active .ptab-mw { color: #fff; }
.ptab.active .ptab-date { color: var(--v2); }

/* ── Hero callout strip ── */
.hero-callout {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--edge);
  background: rgba(5,7,15,.88);
  backdrop-filter: blur(24px);
}
.hc-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: stretch;
}
.hc-sep {
  background: var(--edge);
  align-self: stretch;
}
.hc-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px;
  transition: background .2s;
}
.hc-card:hover { background: rgba(110,75,255,.04); }
.hc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(110,75,255,.12);
  border: 1px solid rgba(110,75,255,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v2);
  flex-shrink: 0;
  margin-top: 2px;
}
.hc-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hc-title {
  font-family: var(--sy);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.hc-desc {
  font-family: var(--sy);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink2);
}

/* ══════════════════════════════
   PLATFORM
══════════════════════════════ */
.platform-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.platform-copy h2 { margin-bottom: 18px; }
.platform-copy p { font-size: 16px; max-width: 440px; color: var(--ink); }
.model-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.model-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--edge);
  border-radius: 18px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color .2s, transform .25s, box-shadow .25s;
  cursor: default;
}
.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.model-a {
  border-color: rgba(110,75,255,.18);
  background: linear-gradient(145deg, rgba(110,75,255,.09) 0%, var(--panel) 60%);
}
.model-a:hover {
  border-color: rgba(110,75,255,.4);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 70px rgba(110,75,255,.09);
}
.model-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(110,75,255,.14), transparent 70%);
  pointer-events: none;
}
.model-num {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--ink3);
  margin-bottom: 10px;
}
.model-tag {
  display: inline-block;
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v2);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--vs);
  border: 1px solid rgba(110,75,255,.22);
  margin-bottom: 16px;
}
.model-tag-dim { color: var(--ink2); background: rgba(255,255,255,.03); border-color: var(--edge); }
.model-card h3 { font-size: 19px; margin-bottom: 10px; }
.model-card p { font-size: 13px; margin-bottom: 20px; color: var(--ink); }
.model-list { display: flex; flex-direction: column; gap: 0; }
.model-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--edge);
}
.model-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--v2);
  flex-shrink: 0;
}
.flow-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.flow-chain span {
  font-size: 13px;
  font-weight: 600;
  color: #dde2f5;
  padding: 5px 11px;
  border: 1px solid var(--edge);
  border-radius: 7px;
  background: var(--panel2);
}
.fc-arrow { color: var(--v2); font-size: 18px; border: none !important; background: none !important; padding: 0 !important; }
.value-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--edge);
  border: 1px solid var(--edge);
  border-radius: 16px;
  overflow: hidden;
}
.vt-item {
  background: var(--panel);
  padding: 32px 28px;
  transition: background .2s;
}
.vt-item:hover { background: var(--panel2); }
.vt-num {
  font-family: var(--bb);
  font-size: 52px;
  color: rgba(110,75,255,.28);
  line-height: 1;
  margin-bottom: 10px;
}
.vt-line {
  width: 24px; height: 2px;
  background: var(--v);
  box-shadow: 0 0 8px var(--vg);
  margin-bottom: 14px;
  transition: width .3s;
}
.vt-item:hover .vt-line { width: 44px; }
.vt-title {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 10px;
}
.vt-item p { font-size: 13px; line-height: 1.65; color: var(--ink2); }

/* ══════════════════════════════
   CAMPUS
══════════════════════════════ */
.campus-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 60px;
  align-items: start;
}
.campus-copy h2 { margin-bottom: 18px; }
.campus-copy p { font-size: 16px; margin-bottom: 32px; color: var(--ink); }
.campus-specs { border: 1px solid var(--edge); border-radius: 14px; overflow: hidden; }
.cs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 13px 18px;
  border-bottom: 1px solid var(--edge);
  background: var(--panel);
  transition: background .15s;
}
.cs-row:hover { background: var(--panel2); }
.cs-row:last-child { border-bottom: none; }
.cs-k {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3);
}
.cs-v { font-size: 14px; font-weight: 600; color: var(--ink); }
.power-display {
  position: relative;
  background: var(--void2);
  border: 1px solid var(--edge2);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 0 80px rgba(110,75,255,.07);
}
.power-display::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--v), var(--v2), transparent);
  opacity: .65;
}
#powerCanvas { display: block; width: 100%; height: auto; }
.pd-overlay {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(3,4,9,.85);
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(16px);
}
.pd-phase-label {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v2);
  margin-bottom: 4px;
}
.pd-phase-mw {
  font-family: var(--bb);
  font-size: 38px;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}
.pd-phase-note { font-size: 11px; color: var(--ink3); font-family: var(--mo); }
.phase-selector { display: flex; flex-direction: column; gap: 8px; }
.ps-btn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--edge);
  border-radius: 12px;
  background: var(--panel);
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  opacity: .5;
  transition: opacity .2s, border-color .2s, background .2s, box-shadow .2s;
}
.ps-btn:hover { opacity: .8; }
.ps-btn.active {
  border-color: rgba(110,75,255,.42);
  background: rgba(110,75,255,.08);
  opacity: 1;
  box-shadow: 0 0 30px rgba(110,75,255,.1);
}
.psb-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--ink3);
  margin-top: 5px; flex-shrink: 0;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.ps-btn.active .psb-indicator {
  border-color: var(--v2);
  background: var(--v2);
  box-shadow: 0 0 12px rgba(110,75,255,.6);
}
.psb-date { font-family: var(--mo); font-size: 10px; letter-spacing: .1em; color: var(--v2); margin-bottom: 3px; }
.psb-mw { font-family: var(--bb); font-size: 30px; color: #fff; line-height: 1; margin-bottom: 4px; }
.ps-btn p { font-size: 12px; color: var(--ink); line-height: 1.5; margin: 0; }

/* ══════════════════════════════
   MODULAR
══════════════════════════════ */
.modular-header { max-width: 560px; margin-bottom: 48px; }
.modular-header h2 { margin-bottom: 14px; }
.modular-header p { color: var(--ink); font-size: 17px; }
.builder-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
.builder-left {
  background: var(--panel);
  border: 1px solid var(--edge2);
  border-radius: 20px;
  padding: 28px;
}
.bl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.bl-title { font-weight: 700; font-size: 15px; color: #fff; }
.bl-badge {
  font-family: var(--mo);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--v2);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--vs);
  border: 1px solid rgba(110,75,255,.25);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(110,75,255,.3); }
  50% { box-shadow: 0 0 0 5px rgba(110,75,255,.0); }
}
.option-groups { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.og-label {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 8px;
}
.og-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.og-opt {
  padding: 8px 16px;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: var(--panel2);
  color: var(--ink2);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
}
.og-opt:hover { border-color: rgba(110,75,255,.3); color: var(--ink); }
.og-opt.active {
  border-color: rgba(110,75,255,.55);
  background: rgba(110,75,255,.13);
  color: var(--v3);
  box-shadow: 0 0 18px rgba(110,75,255,.14);
}
.unit-render {
  position: relative;
  border: 1px solid var(--edge);
  border-radius: 12px;
  background: var(--void);
  overflow: hidden;
}
#unitCanvas { display: block; width: 100%; height: auto; }
.ur-label {
  position: absolute;
  bottom: 10px; right: 10px;
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--ink3);
  background: rgba(3,4,9,.85);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--edge);
}
.builder-right {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--edge2);
  border-radius: 20px;
  overflow: hidden;
  background: var(--edge);
  gap: 1px;
  align-self: stretch;
  justify-content: space-between;
}
.co-item {
  background: var(--panel);
  padding: 22px 24px;
  transition: background .15s;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.co-item:hover { background: var(--panel2); }
.co-k {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--v2);
  margin-bottom: 8px;
}
.co-v { font-size: 16px; color: var(--ink); line-height: 1.65; }

/* White space */
.whitespace {
  position: relative;
  padding: 48px;
  border: 1px solid var(--edge2);
  border-radius: 24px;
  background: var(--panel);
  overflow: hidden;
}
.whitespace::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(110,75,255,.07), transparent 65%);
  pointer-events: none;
}
.ws-eyebrow {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--v2);
  margin-bottom: 10px;
}
.whitespace h3 {
  font-family: var(--bb);
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 400;
  line-height: .93;
  color: #fff;
  margin-bottom: 36px;
}
.whitespace h3 em { font-style: normal; color: var(--v2); }
.ws-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
}
.wsc-label {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--v2);
  margin-bottom: 14px;
}
.ws-col-b .wsc-label { color: var(--ink3); }
.wsc-list { display: flex; flex-direction: column; }
.wsc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--edge);
  line-height: 1.4;
}
.wsc-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--v2);
  flex-shrink: 0;
}
.wsc-dim li { color: var(--ink2); }
.wsc-dim li::before { background: var(--ink3); }
.ws-plus { display: flex; align-items: center; justify-content: center; }
.ws-plus span {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(110,75,255,.3);
  background: rgba(110,75,255,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--v2);
  box-shadow: 0 0 30px rgba(110,75,255,.14);
}
.ws-vs-bar {
  margin-top: 28px;
  border-top: 1px solid var(--edge);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--edge);
}
.wsvb-side {
  padding: 18px 22px;
}
.wsvb-side-old {
  background: rgba(255,255,255,0.03);
}
.wsvb-side-new {
  background: rgba(110,75,255,0.08);
}
.wsvb-label {
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.wsvb-side-old .wsvb-label { color: var(--ink3); }
.wsvb-side-new .wsvb-label { color: var(--v2); }
.wsvb-text {
  font-size: 14px;
  line-height: 1.5;
}
.wsvb-side-old .wsvb-text { color: var(--ink2); }
.wsvb-side-new .wsvb-text { color: var(--ink); font-weight: 500; }
.wsvb-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.1em;
  color: var(--v2);
  background: rgba(110,75,255,0.06);
  border-left: 1px solid var(--edge);
  border-right: 1px solid var(--edge);
  font-weight: 700;
}

/* ══════════════════════════════
   REFRESH
══════════════════════════════ */
/* ── Refresh section ── */
.refresh-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.refresh-copy h2 { margin-bottom: 16px; }
.refresh-copy > p { font-size: 15px; margin-bottom: 36px; color: var(--ink); line-height: 1.75; }
.refresh-pts { display: flex; flex-direction: column; gap: 24px; }
.rpt { display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: start; }
.rpt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--v); border: 1px solid var(--v);
  box-shadow: 0 0 10px rgba(110,75,255,.4);
  margin-top: 5px; flex-shrink: 0;
}
.rpt-dot.accent { background: var(--v2); border-color: var(--v2); box-shadow: 0 0 14px rgba(154,122,255,.45); }
.rpt-dot.bright { background: var(--v2); border-color: var(--v2); box-shadow: 0 0 14px rgba(154,122,255,.45); }
.rpt-title { font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 6px; }
.rpt p { font-size: 13px; margin: 0; color: var(--ink2); }

/* Refresh comparison card */
.rc-card {
  background: var(--panel);
  border: 1px solid var(--edge2);
  border-radius: 20px;
  overflow: hidden;
}
.rc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--edge);
}
.rc-title { font-weight: 700; font-size: 15px; color: #fff; }
.rc-tabs {
  display: flex;
  gap: 6px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--edge);
  background: var(--panel2);
}
.rc-tab {
  flex: 1;
  padding: 7px 4px;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: transparent;
  color: var(--ink3);
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .08em;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
}
.rc-tab:hover { border-color: rgba(110,75,255,.35); color: var(--ink2); }
.rc-tab.active {
  border-color: rgba(110,75,255,.6);
  background: rgba(110,75,255,.14);
  color: var(--v3);
  box-shadow: 0 0 16px rgba(110,75,255,.12);
}
.rc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.rc-col {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rc-col-trad { border-right: 1px solid var(--edge); }
.rc-col-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.rc-col-name {
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink2);
}
.rc-col-tag {
  font-family: var(--mo);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.rc-tag-locked {
  background: rgba(255,90,30,.12);
  color: rgba(255,120,50,.85);
  border: 1px solid rgba(255,90,30,.22);
}
.rc-tag-live {
  background: var(--vs);
  color: var(--v2);
  border: 1px solid rgba(110,75,255,.28);
}
.rc-slab {
  flex: 1;
  background: rgba(90,84,122,.18);
  border: 1px solid rgba(120,114,155,.22);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.rc-slab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(110,104,142,.05) 12px,
    rgba(110,104,142,.05) 13px
  );
}
.rc-slab-inner {
  text-align: center;
  padding: 10px 0 6px;
  position: relative;
  z-index: 1;
}
.rc-lock-icon { font-size: 22px; margin-bottom: 6px; }
.rc-lock-text {
  font-family: var(--mo);
  font-size: 11px;
  font-weight: 700;
  color: rgba(165,158,196,.88);
  margin-bottom: 3px;
}
.rc-lock-sub {
  font-family: var(--mo);
  font-size: 9px;
  color: rgba(140,133,172,.5);
}
.rc-missed-ticks {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.rc-tick {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  background: rgba(255,90,30,.08);
  border: 1px solid rgba(255,90,30,.18);
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s;
}
.rc-tick.visible { opacity: 1; transform: translateX(0); }
.rc-tick-x {
  font-family: var(--mo);
  font-size: 10px;
  color: rgba(255,100,35,.88);
  font-weight: 700;
  flex-shrink: 0;
}
.rc-tick-label {
  font-family: var(--mo);
  font-size: 8.5px;
  color: rgba(220,160,130,.65);
  letter-spacing: .04em;
}
.rc-col-foot {
  font-family: var(--mo);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 6px;
  text-align: center;
}
.rc-foot-bad {
  background: rgba(255,90,30,.08);
  color: rgba(255,110,45,.72);
  border: 1px solid rgba(255,90,30,.18);
}
.rc-foot-good {
  background: rgba(78,255,176,.07);
  color: rgba(78,255,176,.72);
  border: 1px solid rgba(78,255,176,.18);
}
.rc-gen-card {
  flex: 1;
  background: var(--vd);
  border: 1px solid rgba(110,75,255,.22);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
}
.rc-gen-badge {
  font-family: var(--mo);
  font-size: 22px;
  font-weight: 700;
  color: var(--v2);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 2px;
}
.rc-gen-rows { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.rc-gen-row {}
.rc-gen-row-k {
  font-family: var(--mo);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v2);
  margin-bottom: 3px;
}
.rc-gen-row-v {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}
.rc-refresh-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(78,255,176,.08);
  border: 1px solid rgba(78,255,176,.20);
  border-radius: 6px;
  margin-top: auto;
}
.rc-check {
  font-size: 13px;
  color: var(--green);
  flex-shrink: 0;
}
#rcRefreshLabel {
  font-family: var(--mo);
  font-size: 9px;
  color: rgba(78,255,176,.78);
  letter-spacing: .04em;
}

/* ══════════════════════════════
   FUTURE
══════════════════════════════ */
.future-header { max-width: 640px; margin-bottom: 48px; }
.future-header h2 { margin-bottom: 14px; }
.future-header p { color: var(--ink); font-size: 16px; }
.future-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ft-card {
  border: 1px solid var(--edge);
  border-radius: 20px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color .2s, transform .25s, box-shadow .25s;
}
.ft-card:hover {
  border-color: rgba(110,75,255,.32);
  transform: translateY(-6px);
  box-shadow: 0 36px 90px rgba(0,0,0,.6), 0 0 60px rgba(110,75,255,.09);
}
.ft-canvas {
  display: block;
  width: 100%;
  height: 220px;
  border-bottom: 1px solid var(--edge);
  background: var(--void2);
}
.ft-body { padding: 22px 24px; }
.ft-num { font-family: var(--mo); font-size: 10px; letter-spacing: .14em; color: var(--v2); margin-bottom: 10px; }
.ft-title { font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 10px; }
.ft-card p { font-size: 13px; line-height: 1.65; color: var(--ink2); }

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.process-header { max-width: 600px; margin-bottom: 48px; }
.process-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pr-line {
  position: absolute;
  left: 20px;
  top: 22px; bottom: 22px;
  width: 1px;
  background: linear-gradient(180deg, var(--v), rgba(110,75,255,.18), transparent);
}
.pr-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  cursor: pointer;
}
.prs-node {
  position: relative;
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--edge2);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mo);
  font-size: 11px;
  color: var(--ink3);
  box-shadow: 0 0 0 8px var(--void2);
  transition: border-color .3s, box-shadow .3s, color .3s;
}
.pr-step.active .prs-node {
  border-color: rgba(110,75,255,.55);
  color: var(--v2);
  box-shadow: 0 0 0 8px var(--void2), 0 0 28px rgba(110,75,255,.25);
}
.prs-card {
  padding: 15px 20px;
  border: 1px solid var(--edge);
  border-radius: 12px;
  background: var(--panel);
  transition: border-color .3s, background .2s;
}
.pr-step.active .prs-card {
  border-color: rgba(110,75,255,.22);
  background: rgba(110,75,255,.04);
}
.prs-title { font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 6px; }
.prs-card p { font-size: 13px; margin: 0; }

/* ══════════════════════════════
   TEAM
══════════════════════════════ */
.team-header { max-width: 640px; margin-bottom: 52px; }
.team-header h2 { margin-bottom: 14px; }
.team-header p { font-size: 16px; color: var(--ink); line-height: 1.75; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--panel);
  border: 1px solid var(--edge2);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .2s, box-shadow .2s;
}
.team-card:hover {
  border-color: rgba(110,75,255,.35);
  box-shadow: 0 0 40px rgba(110,75,255,.08);
}
.team-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.team-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(110,75,255,.35);
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(3,4,9,1);
}
.team-av-canvas {
  display: block;
  width: 52px !important;
  height: 52px !important;
}
.team-identity { flex: 1; min-width: 0; }
.team-name {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
}
.team-role {
  font-family: var(--mo);
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v2);
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-tag {
  font-family: var(--mo);
  font-size: 8.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 4px 10px;
  border: 1px solid var(--edge);
  border-radius: 6px;
  background: rgba(255,255,255,.025);
}
.team-bio {
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.78;
  flex: 1;
}
.team-divider {
  height: 1px;
  background: var(--edge);
}
.team-stat-row {
  display: flex;
  gap: 24px;
}
.team-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.team-stat-n {
  font-family: var(--mo);
  font-size: 18px;
  font-weight: 700;
  color: var(--v2);
  line-height: 1;
}
.team-stat-l {
  font-family: var(--mo);
  font-size: 8px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink3);
}

/* ══════════════════════════════
   CLOSING
══════════════════════════════ */
.closing {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  background: var(--void2);
}
.closing-glow {
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(110,75,255,.15), transparent 65%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.closing-copy h2 { margin-bottom: 16px; }
.closing-copy p { font-size: 16px; margin-bottom: 28px; color: var(--ink); }
.closing-list { display: flex; flex-direction: column; gap: 10px; }
.closing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}
.closing-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--v2);
  flex-shrink: 0;
}
.closing-stat { text-align: center; }
.cstat-big { line-height: 1; margin-bottom: 12px; }
#cstatCount {
  font-family: var(--bb);
  font-size: clamp(84px, 9.5vw, 130px);
  font-weight: 400;
  color: var(--v2);
  letter-spacing: -.01em;
}
.cstat-unit {
  font-family: var(--bb);
  font-size: 40px;
  color: rgba(154,122,255,.5);
  vertical-align: super;
}
.cstat-sub {
  font-family: var(--mo);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 32px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 64px;
  align-items: start;
}
.contact-left h2 { margin-bottom: 16px; }
.contact-left > p { margin-bottom: 28px; color: var(--ink); font-size: 16px; }
.contact-topics { display: flex; flex-direction: column; margin-bottom: 32px; }
.contact-topics li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--edge);
}
.contact-topics li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--v2);
  flex-shrink: 0;
}
.contact-meta { display: flex; flex-direction: column; gap: 10px; }
.cm-pair {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--edge);
  border-radius: 10px;
  background: var(--panel);
}
.cm-k { font-family: var(--mo); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); }
.cm-v { font-weight: 600; font-size: 14px; color: var(--v2); }
.contact-form {
  background: var(--panel);
  border: 1px solid var(--edge2);
  border-radius: 22px;
  padding: 36px;
}
.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
}
.contact-form label em { font-style: normal; text-transform: none; letter-spacing: 0; font-family: var(--sy); opacity: .5; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--void);
  border: 1px solid var(--edge2);
  border-radius: 10px;
  color: var(--ink);
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--sy);
  outline: none;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(110,75,255,.55);
  box-shadow: 0 0 0 3px rgba(110,75,255,.1);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-footer { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.form-secure { font-family: var(--mo); font-size: 10px; color: var(--ink3); letter-spacing: .06em; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
/* ══════════════════════════════════════════════════════
   FOOTER — Comprehensive
══════════════════════════════════════════════════════ */
.footer {
  background: var(--void2);
  border-top: 1px solid var(--edge);
  margin-top: 0;
  padding: 0;
}

.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 56px);
}

/* Top: logo + tagline + CTA */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--edge);
  flex-wrap: wrap;
}

.footer-brand { flex: 1; min-width: 200px; }

.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo { height: 24px; opacity: .9; }

.footer-tagline {
  font-family: var(--sy);
  font-size: .85rem;
  color: var(--ink3);
  line-height: 1.65;
  max-width: 360px;
  margin: 0;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sy);
  font-weight: 700;
  font-size: .875rem;
  color: #fff;
  text-decoration: none;
  background: var(--v);
  padding: 13px 28px;
  border-radius: 7px;
  white-space: nowrap;
  transition: background .15s, transform .12s;
  box-shadow: 0 0 24px rgba(110,75,255,.25);
  flex-shrink: 0;
  align-self: flex-start;
}
.footer-cta:hover { background: #7e5dff; transform: translateY(-1px); }

/* Nav columns */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--edge);
}

.footer-col-head {
  font-family: var(--mo);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--v2);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col .footer-location,
.footer-col .footer-status {
  display: block;
  font-family: var(--sy);
  font-size: .85rem;
  color: var(--ink3);
  text-decoration: none;
  line-height: 1;
  margin-bottom: 12px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--ink); }

.footer-email {
  color: var(--v2) !important;
  font-family: var(--mo) !important;
  font-size: .75rem !important;
  letter-spacing: .04em;
  word-break: break-all;
}
.footer-email:hover { color: var(--v3) !important; }

.footer-location {
  font-family: var(--mo) !important;
  font-size: .7rem !important;
  letter-spacing: .08em;
  color: rgba(107,116,148,.6) !important;
  text-transform: uppercase;
  margin-top: 8px;
}

.footer-status {
  display: flex !important;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
}
.footer-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4fffb0;
  box-shadow: 0 0 6px rgba(75,255,176,.6);
  flex-shrink: 0;
  animation: pip 2s ease-in-out infinite;
}

/* Bottom: legal */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--mo);
  font-size: .65rem;
  letter-spacing: .08em;
  color: rgba(107,116,148,.55);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links span,
.footer-legal-links a {
  font-family: var(--mo);
  font-size: .65rem;
  letter-spacing: .08em;
  color: rgba(107,116,148,.4);
  text-decoration: none;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 32px; padding: 36px 0; }
  .footer-top { padding: 40px 0 36px; gap: 28px; }
  .footer-cta { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-top { flex-direction: column; }
}

/* Legacy .footer-links (subpages still use this) */
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--ink3); text-decoration: none; font-family: var(--mo); font-size: 11px; letter-spacing: .06em; }
.footer-links a:hover { color: var(--v2); transition: color .15s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; padding: 100px 0 40px; }
  .hero-right { display: none; }
  .hc-grid { grid-template-columns: 1fr; }
  .hc-sep { display: none; }
  .hc-card { border-bottom: 1px solid var(--edge); }
  .hc-card:last-child { border-bottom: none; }
  .platform-layout { grid-template-columns: 1fr; gap: 40px; }
  .model-pair { grid-template-columns: 1fr; }
  .campus-layout { grid-template-columns: 1fr; gap: 40px; }
  .builder-grid { grid-template-columns: 1fr; }
  .refresh-layout { grid-template-columns: 1fr; gap: 40px; }
  .rstat { border-right: none; border-bottom: 1px solid var(--edge2); }
  .rstat:last-child { border-bottom: none; }
  .future-triptych { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; } { grid-template-columns: 1fr; gap: 40px; padding: 70px 0; text-align: center; }
  .cstat-sub { margin: 0 auto 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .ws-split { grid-template-columns: 1fr; gap: 20px; }
  .ws-plus { display: none; }
  .value-triptych { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .live-indicator { display: none; }
  .burger { display: flex; }
  .hc-grid { grid-template-columns: 1fr 1fr; }
  .hc-sep:first-of-type { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 68px 0; }
  .hc-grid { grid-template-columns: 1fr; }
  .hc-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .closing-inner { padding: 56px 0; }
  .whitespace { padding: 28px; }
  .contact-form { padding: 24px; }
  .future-triptych { grid-template-columns: 1fr; }
  .campus-layout { grid-template-columns: 1fr; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--panel3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--v); }

/* ── Closing section: split-word text colors ── */
.closing h2 .tw { color: #fff; }
.closing h2 .tp { color: #9a7aff; }

/* ── Closing section: split-zone topology diagram ── */
.topo2-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(154,122,255,0.2);
  border-radius: 14px;
  overflow: hidden;
}
.topo2-zone {
  position: relative;
  height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s ease;
}
.topo2-zone:hover { background: rgba(154,122,255,0.05); }
.topo2-campus-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(154,122,255,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: topo2GridPulse 4s ease-in-out infinite;
}
@keyframes topo2GridPulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 0.9; }
}
.topo2-campus-glow {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,122,255,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: topo2GlowBreath 3s ease-in-out infinite;
}
@keyframes topo2GlowBreath {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  50%      { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}
.topo2-mdc-bg { position: absolute; inset: 0; }
.topo2-sq {
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid rgba(154,122,255,0.25);
  border-radius: 2px;
  animation: topo2SqFloat 3s ease-in-out infinite;
}
@keyframes topo2SqFloat {
  0%,100% { opacity: 0.3; transform: translateY(0); }
  50%      { opacity: 0.7; transform: translateY(-4px); }
}
.topo2-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 40px rgba(154,122,255,0.4);
  transition: text-shadow 0.3s ease;
}
.topo2-zone:hover .topo2-name { text-shadow: 0 0 60px rgba(154,122,255,0.7); }
.topo2-sublabel {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(154,122,255,0.7);
  position: relative;
  z-index: 2;
}
.topo2-tooltip {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  display: flex;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3;
  pointer-events: none;
}
.topo2-zone:hover .topo2-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.topo2-tip {
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.topo2-tip::before { content: "· "; color: #9a7aff; }
.topo2-divider {
  display: flex;
  align-items: center;
}
.topo2-div-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,122,255,0.5));
}
.topo2-div-line-r {
  background: linear-gradient(90deg, rgba(154,122,255,0.5), transparent);
}
.topo2-div-label {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(154,122,255,0.9);
  padding: 8px 18px;
  border: 1px solid rgba(154,122,255,0.3);
  background: rgba(0,0,0,0.8);
  white-space: nowrap;
}

/* ── US-manufactured badge ── */
.mdc-badge {
  display: inline-block;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a7aff;
  border: 1px solid rgba(154,122,255,0.35);
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 14px;
}

/* ── builder-right fill fix ── */
.config-output {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.config-output .co-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ══════════════════════════════════════════════════
   BEHIND-THE-METER SECTION
══════════════════════════════════════════════════ */
.btm-section {
  background: var(--void2);
}

.btm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Copy column */
.btm-copy h2 { margin-bottom: 20px; }
.btm-copy p  { margin-bottom: 16px; }

.btm-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.btm-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--edge);
}
.btm-pillar:first-child { border-top: 1px solid var(--edge); }

.btm-pillar-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 7px;
  background: var(--vs);
  border: 1px solid rgba(110,75,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--v2);
  margin-top: 2px;
}

.btm-pillar-title {
  font-family: var(--sy);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.btm-pillar-text {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}

/* Visual column */
.btm-visual {
  position: relative;
}

#btmCanvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--edge2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55),
              0 0 60px rgba(110,75,255,0.06);
}

.btm-legend {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
  justify-content: center;
}

.btm-leg-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mo);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
}

.btm-leg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.btm-leg-owned { background: #9a7aff; box-shadow: 0 0 6px rgba(110,75,255,0.6); }
.btm-leg-grid  { background: #ff5f5f; box-shadow: 0 0 6px rgba(255,95,95,0.55); }

/* Responsive */
@media (max-width: 900px) {
  .btm-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ════════════════════════════════════════════
   COMPREHENSIVE MOBILE — All subpages
   ════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Section wrapper padding */
  .section { padding: 72px 0; }
  .section-inner, .page-hero-content, .content-wrap { padding-left: 20px !important; padding-right: 20px !important; }

  /* Page hero headline — scale down on mobile */
  .page-h1 {
    font-size: clamp(44px, 12vw, 72px) !important;
    line-height: .88 !important;
  }

  /* All 2-column grids → stack */
  .two-col,
  .grid-2,
  .split-layout,
  .btm-layout,
  .hero-inner,
  .content-grid,
  .spec-grid,
  .process-grid,
  [class*="two-col"],
  [class*="split-"],
  [class*="-grid"]:not(.pillars-grid):not(.scale-grid) {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  /* 3+ column grids → stack */
  .three-col,
  .grid-3,
  .triptych,
  .future-triptych,
  .stat-row,
  .card-grid,
  .hc-grid {
    grid-template-columns: 1fr !important;
    gap: 1px !important;
  }

  /* Page-level stat rows → stack */
  .campus-stats,
  .power-stats,
  .stats-row {
    grid-template-columns: 1fr !important;
    border-radius: 0;
  }

  /* Process steps — stack */
  .process-steps,
  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  /* Team grid → stack */
  .team-grid,
  .leadership-grid {
    grid-template-columns: 1fr !important;
  }

  /* Modular spec cards */
  .spec-cards,
  .model-grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact form — single col fields */
  .form-row { grid-template-columns: 1fr !important; }

  /* Form full-width */
  .contact-form, .form-wrap { padding: 24px 20px !important; }

  /* Whitespace visual → hide on small, show copy */
  .whitespace-visual { display: none !important; }
  .whitespace-copy { max-width: 100% !important; }

  /* Campus stat bars */
  .campus-stat-item { grid-template-columns: 1fr !important; }

  /* Connectivity diagram — hide on mobile */
  .connectivity-diagram { display: none !important; }
  .connectivity-spec-list { max-width: 100% !important; }

  /* Future triptych → single col */
  .future-triptych { grid-template-columns: 1fr !important; }

  /* CTA section buttons → stack */
  .cta-buttons, .btn-row, .action-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .btn-primary, .btn-ghost, .cta-pill-large {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  /* Section headings — scale down */
  .section-h, .section-title, h2.big {
    font-size: clamp(40px, 11vw, 64px) !important;
    line-height: .88 !important;
  }

  /* Table overflow → scroll */
  .data-table-wrap, table { overflow-x: auto !important; display: block !important; }

  /* Hide decorative visuals that cause overflow */
  .hero-bg-graphic, .section-bg-visual { opacity: .3; }

  /* Nav indicator pill — shorten if needed */
  .live-indicator { display: none !important; }
  .burger { display: flex !important; }
}

@media (max-width: 480px) {
  /* Tighter phone: 1 col everything */
  .hc-grid { grid-template-columns: 1fr !important; }

  /* Stat chips → stack */
  .stat-chips, .stat-pill-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* Reduce section padding further */
  .section { padding: 56px 0; }

  /* Bigger touch targets on links */
  .nav-links a { padding: 12px 8px !important; }
}
