/* =========================================================
   NIGHTSHYFT — ngtshyft.com
   Tokens, base, animations
   ========================================================= */

:root {
  --void: #07070A;
  --asphalt: #0E0E14;
  --charcoal: #16161E;
  --panel: #1C1C26;
  --panel-2: #20202C;
  --line: #2A2A36;
  --gray-mid: #5C5C68;
  --gray-text: #9A9AA8;
  --chrome: #E8E8ED;
  --chrome-2: #BFBFC8;
  --white: #FFFFFF;
  --purple: #8A35FF;
  --purple-deep: #4B1B9B;
  --purple-mist: #C9B0FF;

  --chrome-grad: linear-gradient(180deg, #FFFFFF 0%, #E8E8ED 40%, #8A8A95 55%, #E8E8ED 70%, #FFFFFF 100%);
  --purple-glass: linear-gradient(180deg, rgba(138,53,255,0.85), rgba(75,27,155,0.95));

  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-snap: cubic-bezier(0.7, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  background: var(--void);
  color: var(--chrome);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Global grain — fixed, very subtle */
body::before {
  content: '';
  position: fixed;
  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='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: overlay;
}

/* Scan-line vignette overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.012) 0,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 998;
}

::selection { background: var(--purple); color: var(--white); }

/* Skip-to-content — visible only on keyboard focus */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 18px;
  background: var(--purple);
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 8px 24px rgba(138,53,255,0.5);
  transform: translateY(-160%);
  transition: transform 0.22s var(--ease-out);
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--purple-mist);
  outline-offset: 2px;
}

/* =========================================================
   TYPE UTILITIES
   ========================================================= */

.display { font-family: 'Anton', sans-serif; font-weight: 400; letter-spacing: -0.01em; line-height: 0.9; text-transform: uppercase; }
.headline { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.02em; line-height: 1; text-transform: uppercase; }
.mono { font-family: 'JetBrains Mono', monospace; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--purple-mist); }

.chrome-text {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

/* Chrome shine pass — animates across hero type periodically */
.chrome-shine {
  position: relative;
  display: inline-block;
}
.chrome-shine::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,0.95) 48%,
    rgba(201,176,255,0.95) 52%,
    transparent 70%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shinePass 6s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes shinePass {
  0% { background-position: 200% 0; opacity: 0; }
  20% { opacity: 1; }
  60% { opacity: 1; }
  100% { background-position: -100% 0; opacity: 0; }
}

/* =========================================================
   NAVIGATION — HUD / game-menu shell
   ========================================================= */

.nav {
  --nav-shell-h: 56px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 10px 4vw 0;
  pointer-events: none;
}
@media (min-width: 901px) {
  .nav {
    display: grid;
    grid-template-areas: 'bar';
    align-items: start;
  }
  .nav-hud-shell,
  .nav-links {
    grid-area: bar;
  }
  .nav-links {
    align-self: center;
    justify-self: end;
    margin-left: 0;
    margin-right: 14px;
    pointer-events: auto;
    z-index: 2;
  }
}
.nav-hud-shell {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--nav-shell-h);
  padding: 6px 14px 6px 10px;
  background:
    linear-gradient(180deg, rgba(28, 28, 38, 0.92) 0%, rgba(10, 10, 16, 0.88) 100%);
  border: 1px solid rgba(138, 53, 255, 0.28);
  clip-path: polygon(
    0 8px, 8px 0, calc(100% - 8px) 0, 100% 8px,
    100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px)
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(138, 53, 255, 0.1);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition:
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}
.nav.scrolled .nav-hud-shell {
  border-color: rgba(138, 53, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 16px 48px rgba(0, 0, 0, 0.65),
    0 0 64px rgba(138, 53, 255, 0.16);
}

/* Corner brackets */
.nav-hud-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0.75;
}
.nav-hud-corner--tl { top: 3px; left: 3px; border-top: 2px solid var(--purple-mist); border-left: 2px solid var(--purple-mist); }
.nav-hud-corner--tr { top: 3px; right: 3px; border-top: 2px solid var(--purple-mist); border-right: 2px solid var(--purple-mist); }
.nav-hud-corner--bl { bottom: 3px; left: 3px; border-bottom: 2px solid var(--purple-mist); border-left: 2px solid var(--purple-mist); }
.nav-hud-corner--br { bottom: 3px; right: 3px; border-bottom: 2px solid var(--purple-mist); border-right: 2px solid var(--purple-mist); }

/* Scan sweep along bottom edge */
.nav-hud-scan {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-mist), transparent);
  opacity: 0.55;
  animation: navScan 4.5s linear infinite;
  pointer-events: none;
}
@keyframes navScan {
  0% { transform: translateX(-120%); opacity: 0; }
  15% { opacity: 0.7; }
  85% { opacity: 0.7; }
  100% { transform: translateX(120%); opacity: 0; }
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.nav-logo {
  display: block;
  height: 38px;
  width: auto;
  max-width: min(148px, 38vw);
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(201, 176, 255, 0.25));
  transition: filter 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.nav-brand:hover .nav-logo {
  filter: drop-shadow(0 0 16px rgba(201, 176, 255, 0.45));
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-links-head { display: none; }

.nav-rail {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  clip-path: polygon(0 4px, 4px 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 0 100%);
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--gray-text);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  clip-path: polygon(0 3px, 3px 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 0 100%);
  transition:
    color 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}
.nav-item-index {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--purple);
  opacity: 0.65;
  transition: opacity 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.nav-item-label { white-space: nowrap; }
.nav-item:hover {
  color: var(--chrome);
  background: rgba(138, 53, 255, 0.1);
  border-color: rgba(138, 53, 255, 0.28);
  box-shadow: 0 0 18px rgba(138, 53, 255, 0.12);
}
.nav-item:hover .nav-item-index { opacity: 1; color: var(--purple-mist); }
.nav-item.active {
  color: var(--white);
  background: linear-gradient(180deg, rgba(138, 53, 255, 0.28), rgba(75, 27, 155, 0.22));
  border-color: rgba(201, 176, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(201, 176, 255, 0.12) inset,
    0 0 24px rgba(138, 53, 255, 0.22);
}
.nav-item.active .nav-item-index { opacity: 1; color: var(--purple-mist); }

.nav-out {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-left: 4px;
  color: var(--chrome) !important;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  clip-path: polygon(0 3px, 3px 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 0 100%);
  transition:
    color 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}
.nav-out-tag {
  padding: 2px 6px;
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--purple-mist);
  border: 1px solid rgba(138, 53, 255, 0.35);
  background: rgba(138, 53, 255, 0.12);
}
.nav-out:hover {
  color: var(--purple-mist) !important;
  border-color: rgba(138, 53, 255, 0.45);
  background: rgba(138, 53, 255, 0.1);
  box-shadow: 0 0 20px rgba(138, 53, 255, 0.15);
}

/* Mobile toggle — HUD button */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  min-width: 44px;
  padding: 0 12px;
  background: rgba(138, 53, 255, 0.08);
  border: 1px solid rgba(138, 53, 255, 0.35);
  clip-path: polygon(0 4px, 4px 0, calc(100% - 4px) 0, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0 calc(100% - 4px));
  cursor: pointer;
  color: var(--chrome);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.nav-toggle:hover {
  background: rgba(138, 53, 255, 0.16);
  border-color: rgba(201, 176, 255, 0.5);
  box-shadow: 0 0 20px rgba(138, 53, 255, 0.2);
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}
.nav-toggle-bars span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--chrome);
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
}
.nav-toggle-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--purple-mist);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] {
  background: rgba(138, 53, 255, 0.22);
  border-color: var(--purple-mist);
}

body.nav-open { overflow: hidden; }

.nav-item:focus-visible,
.nav-out:focus-visible,
.nav-toggle:focus-visible,
.nav-brand:focus-visible {
  outline: 2px solid var(--purple-mist);
  outline-offset: 2px;
}

@media (max-width: 960px) {
  .nav-item-label--long { display: none; }
  .nav-item-label--short { display: inline; }
}
@media (min-width: 961px) {
  .nav-item-label--short { display: none; }
}

@media (max-width: 900px) {
  .nav { padding: 8px 4vw 0; }
  .nav-hud-shell {
    padding-right: 8px;
    z-index: 211;
  }
  .nav-logo { height: 34px; max-width: min(132px, 42vw); }
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 190;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--nav-shell-h) + 28px) 5vw 32px;
    margin-left: 0;
    background:
      radial-gradient(ellipse 80% 40% at 50% 0%, rgba(138, 53, 255, 0.14), transparent 60%),
      rgba(7, 7, 10, 0.97);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s var(--ease-out),
      transform 0.28s var(--ease-out),
      visibility 0.28s var(--ease-out);
  }
  .nav-links::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(138, 53, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(138, 53, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, black 0%, transparent 85%);
    pointer-events: none;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(138, 53, 255, 0.25);
    position: relative;
    z-index: 1;
  }
  .nav-links-head-label { color: var(--purple-mist); }
  .nav-links-head-status {
    color: var(--chrome);
    letter-spacing: 0.16em;
  }
  .nav-links-head-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 8px var(--purple);
    vertical-align: middle;
    animation: navPulse 2s ease-in-out infinite;
  }
  @keyframes navPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
  }

  .nav-rail {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0;
    background: none;
    border: none;
    clip-path: none;
    position: relative;
    z-index: 1;
  }
  .nav-item {
    padding: 18px 16px;
    font-size: 12px;
    letter-spacing: 0.16em;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(22, 22, 30, 0.65);
  }
  .nav-item-index {
    min-width: 28px;
    font-size: 11px;
  }
  .nav-item-label--short { display: none !important; }
  .nav-item-label--long { display: inline !important; }

  .nav-out {
    margin-left: 0;
    margin-top: 20px;
    padding: 18px 16px;
    font-size: 11px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .nav-out-tag { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-hud-scan,
  .nav-links-head-status::before { animation: none; }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 78% 30%, rgba(138, 53, 255, 0.32), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(75, 27, 155, 0.30), transparent 65%),
    radial-gradient(ellipse 100% 60% at 50% 110%, rgba(201, 176, 255, 0.10), transparent 70%),
    linear-gradient(180deg, #04040A 0%, #0A0A14 50%, #07070A 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(201, 176, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 176, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 80%);
  z-index: 1;
  transform: perspective(900px) rotateX(58deg) translateY(8%) translateZ(0);
  animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 0 64px; }
}

/* Horizon scan-line */
.hero-horizon {
  position: absolute;
  left: 0; right: 0;
  bottom: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-mist) 30%, var(--white) 50%, var(--purple-mist) 70%, transparent);
  box-shadow: 0 0 30px var(--purple), 0 0 80px rgba(138,53,255,0.6);
  z-index: 1;
  opacity: 0.7;
}

/* Shooting star */
.shooting-star {
  position: absolute;
  top: 18%;
  left: -10%;
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--chrome) 40%, var(--white) 50%, var(--purple-mist) 60%, transparent);
  border-radius: 100px;
  filter: drop-shadow(0 0 6px var(--purple-mist));
  z-index: 2;
  opacity: 0;
  animation: shootStar 9s var(--ease-snap) infinite;
}
@keyframes shootStar {
  0% { transform: translate(0, 0) rotate(8deg); opacity: 0; }
  5% { opacity: 0; }
  10% { opacity: 1; }
  35% { transform: translate(120vw, 30vh) rotate(8deg); opacity: 0.9; }
  40% { opacity: 0; }
  100% { transform: translate(120vw, 30vh) rotate(8deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}
.hero-meta .dot {
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 11vw, 200px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.35s forwards;
}
.hero h1 .line { display: block; padding-block: 0.02em; }
.hero h1 .accent {
  background: linear-gradient(180deg, var(--purple-mist), var(--purple) 60%, var(--purple-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(138,53,255,0.5));
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--gray-text);
  max-width: 620px;
  line-height: 1.5;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.55s forwards;
}
.hero-sub strong { color: var(--chrome); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.75s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--purple-glass);
  color: var(--white);
  border-color: rgba(201,176,255,0.4);
  box-shadow: 0 8px 32px rgba(138,53,255,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(138,53,255,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  background: transparent;
  color: var(--chrome);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--chrome);
  background: rgba(232,232,237,0.04);
}
.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero stats strip — flows after content, anchored visually to hero base */
.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(56px, 9vh, 120px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 1s forwards;
}
.hero-stat .num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  color: var(--chrome);
  display: block;
  margin-bottom: 8px;
}
.hero-stat .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.hero-stat .num .accent { color: var(--purple-mist); }
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-text);
  display: none; /* covered by stats */
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   SECTION BASE
   ========================================================= */

section {
  position: relative;
  padding: 140px 5vw;
}
.container { max-width: 1400px; margin: 0 auto; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 32px; }
}
.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-mist);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--chrome);
}
.section-lede {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 580px;
  line-height: 1.55;
}
.section-lede strong { color: var(--chrome); font-weight: 500; }

/* Scroll reveal — hidden state only applies when JS is active (.js on <html>),
   so content stays visible if JavaScript is disabled. */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* =========================================================
   MANIFESTO MARQUEE
   ========================================================= */

.manifesto {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(138,53,255,0.04), transparent);
}
.marquee {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--chrome);
  display: inline-flex;
  align-items: center;
  gap: 80px;
}
.marquee span::after {
  content: '';
  width: 14px; height: 14px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--purple);
}
.marquee .ghost { color: transparent; -webkit-text-stroke: 1px var(--gray-mid); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   DUALITY — THE WORLD / THE TOOL
   ========================================================= */

.duality {
  background: var(--asphalt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.duality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--charcoal);
}
@media (max-width: 820px) {
  .duality-grid { grid-template-columns: 1fr; }
}
.duality-card {
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.duality-card.world {
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(138,53,255,0.22), transparent 60%),
    linear-gradient(135deg, #0d0d18, #16161e);
  border-right: 1px solid var(--line);
}
.duality-card.tool {
  background:
    linear-gradient(135deg, #0e0e16, #16161e);
}
@media (max-width: 820px) {
  .duality-card.world { border-right: none; border-bottom: 1px solid var(--line); }
}
.duality-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-mist);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.duality-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--purple-mist);
}
.duality-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.9;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.duality-card.world .duality-title {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.duality-card.tool .duality-title {
  color: var(--chrome);
}
.duality-card.tool .duality-title .accent {
  background: linear-gradient(180deg, var(--purple-mist), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.duality-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 24px;
}
.duality-desc {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 460px;
}
.duality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tag-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--chrome-2);
  background: rgba(255,255,255,0.02);
}
.duality-card.world .tag-chip { color: var(--purple-mist); border-color: rgba(201,176,255,0.25); background: rgba(138,53,255,0.06); }
.duality-cta {
  margin-top: auto;
}

/* Decorative chrome moon (world card) */
.moon {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--chrome-grad);
  box-shadow:
    inset -16px -16px 30px rgba(0,0,0,0.5),
    inset 8px 8px 20px rgba(255,255,255,0.4),
    0 0 60px rgba(201,176,255,0.3);
  transform: rotate(-25deg);
  animation: moonSpin 30s linear infinite;
}
@keyframes moonSpin { to { transform: rotate(335deg); } }

/* Decorative map (tool card) */
.tool-map {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 140px;
  height: 100px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(138,53,255,0.15), transparent),
    repeating-linear-gradient(45deg, var(--panel) 0 8px, var(--panel-2) 8px 16px);
  border: 1px solid var(--line);
  overflow: hidden;
}
.tool-map::before, .tool-map::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 14px var(--purple);
}
.tool-map::before { width: 8px; height: 8px; top: 30%; left: 40%; animation: pinPulse 2s ease-in-out infinite; }
.tool-map::after  { width: 6px; height: 6px; top: 60%; left: 70%; animation: pinPulse 2s ease-in-out infinite 0.5s; }
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 14px var(--purple); transform: scale(1); }
  50% { box-shadow: 0 0 24px var(--purple), 0 0 40px rgba(138,53,255,0.4); transform: scale(1.3); }
}

/* =========================================================
   CMF PRODUCT SHOWCASE
   ========================================================= */

.product {
  background: var(--void);
  position: relative;
  overflow: hidden;
}
.product::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.product-stage {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 820px) {
  .product-stage { grid-template-columns: 1fr; }
}

.product-copy h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.product-copy h3 .accent {
  background: linear-gradient(180deg, var(--purple-mist), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-copy p {
  color: var(--gray-text);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

/* Feature ticks */
.feature-list {
  list-style: none;
  margin: 32px 0 40px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--chrome-2);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .fl-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--purple-mist);
  letter-spacing: 0.2em;
  min-width: 32px;
  padding-top: 3px;
}
.feature-list .fl-name { color: var(--chrome); font-weight: 500; }

/* Product map — live Car Meet Finder Leaflet embed */
.map-mock {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: #1a0a2e;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.cmf-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a0a2e;
}
.map-mock .leaflet-container {
  width: 100%;
  height: 100%;
  background: #1a0a2e !important;
  font-family: 'JetBrains Mono', monospace;
}
.map-mock .leaflet-pane { z-index: 1; }
.map-mock .map-search,
.map-mock .map-hud,
.map-mock .map-corner { z-index: 5; }

/* ===== Map wireframe loader — shown until Leaflet tiles are ready ===== */
.map-loader {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: #1a0a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s;
}
.map-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
/* blueprint grid */
.map-loader-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(201,176,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,176,255,0.10) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: mapGridDrift 6s linear infinite;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 25%, transparent 88%);
  mask-image: radial-gradient(circle at 50% 45%, #000 25%, transparent 88%);
}
@keyframes mapGridDrift { to { background-position: 34px 34px; } }
/* sweeping scan line */
.map-loader-scan {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-mist), transparent);
  box-shadow: 0 0 16px 2px rgba(138,53,255,0.6);
  animation: mapScan 2.1s var(--ease-out) infinite;
}
@keyframes mapScan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
/* skeleton wireframe pins being located */
.map-loader-pin {
  position: absolute;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border: 1.5px dashed rgba(201,176,255,0.55);
  border-radius: 50%;
  animation: mapPinPulse 1.6s ease-out infinite;
}
.map-loader-pin::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(201,176,255,0.45);
}
@keyframes mapPinPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 1; }
}
/* center readout */
.map-loader-readout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 500;
  color: var(--purple-mist);
  background: rgba(7,7,10,0.35);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201,176,255,0.18);
  backdrop-filter: blur(2px);
}
.map-loader-spinner {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(201,176,255,0.25);
  border-top-color: var(--purple-mist);
  animation: mapSpin 0.8s linear infinite;
}
@keyframes mapSpin { to { transform: rotate(360deg); } }
.map-loader-dots { display: inline-flex; gap: 4px; }
.map-loader-dots i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--purple-mist);
  opacity: 0.3;
  animation: mapDot 1.2s infinite;
}
.map-loader-dots i:nth-child(2) { animation-delay: 0.2s; }
.map-loader-dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes mapDot { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
/* indeterminate progress bar */
.map-loader-bar {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  height: 2px;
  background: rgba(201,176,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.map-loader-bar span {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, transparent, var(--purple-mist), transparent);
  animation: mapBar 1.4s var(--ease-out) infinite;
}
@keyframes mapBar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(330%); }
}

/* CMF meet markers (match carmeetfinder.com home map) */
.map-mock .meet-marker {
  background: transparent;
  border: none;
}
.map-mock .marker-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}
.map-mock .marker-icon-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.map-mock .meet-marker-icon {
  width: 45px;
  height: 45px;
  display: block;
  transition: transform 0.3s ease;
}
.map-mock .marker-pulse {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 89, 255, 0.28) 0%, rgba(162, 89, 255, 0) 72%);
  animation: cmfPinPulse 2.5s ease-out infinite;
  z-index: 1;
}
@keyframes cmfPinPulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 0.35; }
  100% { transform: scale(1.55); opacity: 0; }
}
.map-mock .meet-marker.prominent .meet-marker-icon { width: 48px; height: 48px; }
.map-mock .meet-marker.prominent .marker-container { width: 54px; height: 54px; }
.map-mock .meet-marker.featured .meet-marker-icon { width: 52px; height: 52px; }
.map-mock .marker-cluster,
.map-mock .marker-cluster-small,
.map-mock .marker-cluster-medium,
.map-mock .marker-cluster-large {
  background-color: transparent !important;
  border: none !important;
}
.map-mock .marker-cluster div {
  background-color: rgba(162, 89, 255, 0.85) !important;
  color: #fff;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

/* Map pins */
.pin {
  position: absolute;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -100%);
  pointer-events: none;
}
.pin .pin-dot {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--purple-glass);
  box-shadow:
    0 0 18px rgba(138,53,255,0.7),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -4px 6px rgba(0,0,0,0.3);
  border: 1px solid rgba(201,176,255,0.5);
}
.pin .pin-core {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--white);
}
.pin .pin-ring {
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid var(--purple-mist);
  border-radius: 50%;
  top: 0; left: 50%;
  transform: translate(-50%, -8px);
  opacity: 0;
  animation: ringPulse 3s ease-out infinite;
}
.pin.delay-1 .pin-ring { animation-delay: 1s; }
.pin.delay-2 .pin-ring { animation-delay: 2s; }
@keyframes ringPulse {
  0% { transform: translate(-50%, -8px) scale(0.4); opacity: 0.9; }
  70% { opacity: 0; }
  100% { transform: translate(-50%, -8px) scale(2.2); opacity: 0; }
}

/* Pin labels */
.pin-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome);
  background: rgba(7,7,10,0.85);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: labelFloat 8s ease-in-out infinite;
}
.pin.delay-1 .pin-label { animation-delay: 2s; }
.pin.delay-2 .pin-label { animation-delay: 4s; }
@keyframes labelFloat {
  0%, 100% { opacity: 0; transform: translate(-50%, -2px); }
  10%, 30% { opacity: 1; transform: translate(-50%, -8px); }
  40% { opacity: 0; }
}

/* Map HUD overlays */
.map-hud {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-mist);
  pointer-events: none;
}
.map-hud .coord { color: var(--gray-text); }
.map-hud .live { display: inline-flex; align-items: center; gap: 6px; color: var(--chrome); }
.map-hud .live::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.map-corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--purple-mist);
}
.map-corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.map-corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.map-corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.map-corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

/* Search bar mock */
.map-search {
  position: absolute;
  top: 50px;
  left: 16px;
  right: 16px;
  background: rgba(7,7,10,0.85);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray-text);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.map-search .cursor {
  width: 1px;
  height: 14px;
  background: var(--purple-mist);
  animation: blink 1s steps(2) infinite;
}

/* =========================================================
   PILLARS
   ========================================================= */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out);
  cursor: pointer;
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(138,53,255,0.5);
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(138,53,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--purple-mist);
  margin-bottom: 16px;
}
.pillar-title {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.pillar-desc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.55;
  position: relative;
}

/* Pillar visual icon corner */
.pillar-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  opacity: 0.7;
}

/* =========================================================
   INFLUENCES
   ========================================================= */

.influences {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(138,53,255,0.06), transparent 60%),
    var(--asphalt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 820px) { .inf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .inf-grid { grid-template-columns: 1fr; } }

.inf-card {
  background: var(--charcoal);
  padding: 32px 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease-out);
}
.inf-card:hover { background: var(--panel); }

.inf-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.inf-name {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--chrome);
}
.inf-desc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.55;
  margin-top: auto;
}

/* =========================================================
   ECOSYSTEM ROADMAP
   ========================================================= */

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .eco-grid { grid-template-columns: 1fr; } }

.eco-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.eco-card.live { border-color: rgba(138,53,255,0.4); background: linear-gradient(180deg, rgba(138,53,255,0.10), var(--charcoal)); }
.eco-card.future { background: var(--asphalt); }

.eco-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.eco-status.live { color: #4ade80; border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.06); }
.eco-status.live::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 8px #4ade80; animation: blink 1.5s ease-in-out infinite; }
.eco-status.soon { color: var(--purple-mist); border-color: rgba(201,176,255,0.3); background: rgba(138,53,255,0.06); }
.eco-status.future { color: var(--gray-text); }

.eco-title {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eco-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.55;
  margin-bottom: 20px;
}
.eco-items {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.eco-items li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-text);
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}
.eco-items li .dot {
  color: var(--purple-mist);
}

/* =========================================================
   VOICE / TAGLINES BLOCK
   ========================================================= */

.voice {
  background: var(--void);
  position: relative;
  overflow: hidden;
}
.voice::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(138,53,255,0.10), transparent 70%);
}
.voice-rotator {
  position: relative;
  z-index: 1;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.voice-rotator .ticker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-mist);
  margin-bottom: 32px;
}
.voice-line {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
  min-height: 1.2em;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.voice-source {
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.voice-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  justify-content: center;
}
.voice-dots .vd {
  width: 22px;
  height: 2px;
  background: var(--line);
  cursor: pointer;
  transition: background 0.3s var(--ease-out);
}
.voice-dots .vd.active { background: var(--purple); }

/* =========================================================
   FOOTER CTA
   ========================================================= */

.footer-cta {
  padding: 160px 5vw 80px;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(138,53,255,0.25), transparent 70%),
    linear-gradient(180deg, var(--asphalt), #04040a);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.footer-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple) 20%, var(--white) 50%, var(--purple) 80%, transparent);
  box-shadow: 0 0 20px var(--purple);
}
.footer-cta h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 10vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-cta p {
  max-width: 540px;
  margin: 0 auto 48px;
  color: var(--gray-text);
  font-size: 17px;
}
.footer-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  text-align: left;
}
@media (max-width: 800px) { .footer-bottom { grid-template-columns: 1fr 1fr; } }
.footer-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-mist);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 4px 0; }
.footer-col a {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s var(--ease-out);
}
.footer-col a:hover { color: var(--chrome); }
.footer-col p { color: var(--gray-text); font-size: 13px; line-height: 1.55; }
.footer-meta {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
}
@media (max-width: 700px) { .footer-meta { flex-direction: column; gap: 12px; text-align: center; } }

/* =========================================================
   POSITIONING STRIP
   ========================================================= */
.positioning {
  background: var(--asphalt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) {
  .positioning-grid { grid-template-columns: 1fr; gap: 56px; }
}
.positioning-lead h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: 16px;
  color: var(--gray-text);
}
.positioning-lead h2 .chrome-text {
  display: block;
  margin-top: 16px;
}
.positioning-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.pcol {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pcol:last-child { border-bottom: none; }
.pcol-num {
  color: var(--purple-mist);
  padding-top: 6px;
}
.pcol-title {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--chrome);
}
.pcol p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .pcol { grid-template-columns: 1fr; gap: 8px; }
}

/* =========================================================
   PRODUCT MARKER + WHY-NOW
   ========================================================= */
.product-marker {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 11px;
}
.product-marker span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
}

.why-now {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
@media (max-width: 820px) { .why-now { grid-template-columns: 1fr; gap: 32px; } }
.why-num {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  line-height: 0.9;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.why-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-mist);
  margin-bottom: 12px;
}
.why-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 360px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--asphalt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(138,53,255,0.06), transparent 60%);
  pointer-events: none;
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--chrome);
}
.about-lead {
  font-size: 20px;
  color: var(--chrome);
  line-height: 1.5;
  margin-bottom: 28px;
}
.about-body p {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 620px;
}
.about-body p strong { color: var(--chrome); font-weight: 500; }
.about-meta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  max-width: 620px;
}
.about-meta-item .amk {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-mist);
  margin-bottom: 6px;
}
.about-meta-item .amv {
  font-size: 15px;
  color: var(--chrome);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--void);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.contact-sub {
  margin-top: 24px;
  font-size: 17px;
  color: var(--gray-text);
  max-width: 380px;
  line-height: 1.55;
}
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 700px) { .contact-channels { grid-template-columns: 1fr; } }
.channel {
  background: var(--charcoal);
  padding: 28px;
  text-decoration: none;
  color: var(--chrome);
  position: relative;
  display: block;
  min-height: 160px;
  transition: background 0.25s var(--ease-out);
}
.channel:hover { background: var(--panel); }
.channel:hover .channel-arrow {
  color: var(--purple-mist);
  transform: translate(4px, -4px);
}
.channel-label {
  color: var(--purple-mist);
  margin-bottom: 16px;
  font-size: 10px;
  letter-spacing: 0.3em;
}
.channel-line {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.channel-note {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
}
.channel-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--gray-mid);
  transition: transform 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

/* =========================================================
   SPEEDOMETER (decorative — kept for future use)
   ========================================================= */
.speedo {
  width: 220px;
  height: 220px;
  position: relative;
}
.speedo svg { width: 100%; height: 100%; }
.speedo .needle {
  transform-origin: 100px 100px;
  animation: needleSweep 4s var(--ease-snap) infinite;
}
@keyframes needleSweep {
  0%, 100% { transform: rotate(-120deg); }
  50% { transform: rotate(110deg); }
}

/* =========================================================
   UTIL
   ========================================================= */
.divider-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

/* =========================================================
   HERO SPLIT (home — text + live map)
   ========================================================= */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-split .map-mock { order: -1; }
}
.hero-split .hero-meta,
.hero-split h1,
.hero-split .hero-sub,
.hero-split .hero-actions { opacity: 1; animation: none; }

/* =========================================================
   INTERIOR PAGE HERO (Product / About / Contact)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 160px 5vw 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero .hero-bg, .page-hero .hero-grid { z-index: 0; }
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}
.crumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.crumb a { color: var(--purple-mist); text-decoration: none; }
.crumb a:hover { color: var(--chrome); }
.page-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--chrome);
  max-width: 16ch;
}
.page-hero .page-sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.5vw, 21px);
  color: var(--gray-text);
  max-width: 620px;
  line-height: 1.55;
}
.page-hero .page-sub strong { color: var(--chrome); font-weight: 500; }
.page-hero .hero-actions { margin-top: 40px; opacity: 1; animation: none; }

/* =========================================================
   EARLY-ACCESS / STATUS BADGE
   ========================================================= */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-mist);
  padding: 8px 16px;
  border: 1px solid rgba(201,176,255,0.3);
  border-radius: 100px;
  background: rgba(138,53,255,0.08);
  margin-bottom: 32px;
}
.status-pill::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple);
  animation: pulse 2s ease-in-out infinite;
}

/* =========================================================
   STEPS — HOW IT WORKS
   ========================================================= */
.steps-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .steps-wrap { grid-template-columns: 1fr; } }
.steps-track {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  background: var(--charcoal);
}
.steps-track h3 {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--chrome);
}
.steps-track .track-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-mist);
  margin-bottom: 28px;
}
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.step:first-of-type { border-top: none; }
.step-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--purple-mist);
  letter-spacing: 0.1em;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.step-title { color: var(--chrome); font-weight: 500; font-size: 16px; margin-bottom: 4px; }
.step-desc { color: var(--gray-text); font-size: 14px; line-height: 1.55; }

/* =========================================================
   MEET TYPES GRID (9 icon groups)
   ========================================================= */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .types-grid { grid-template-columns: 1fr; } }
.type-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform 0.35s var(--ease-out), border-color 0.3s var(--ease-out);
}
.type-card:hover { transform: translateY(-5px); border-color: rgba(138,53,255,0.5); }
.type-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-glass);
  border: 1px solid rgba(201,176,255,0.4);
  box-shadow: 0 0 18px rgba(138,53,255,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  margin-bottom: 18px;
}
.type-icon svg { width: 24px; height: 24px; stroke: var(--white); stroke-width: 1.6; fill: none; }
.type-name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 8px;
}
.type-slugs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--purple-mist);
  margin-bottom: 10px;
  word-spacing: 0.2em;
}
.type-desc { font-size: 13px; color: var(--gray-text); line-height: 1.5; }
.type-card .gate {
  display: inline-block;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px 9px;
}

/* =========================================================
   ACCOUNT TIERS
   ========================================================= */
.tiers {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.tier-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 2fr;
  gap: 24px;
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.tier-row:first-child { border-top: none; }
.tier-row.head {
  background: var(--charcoal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-mist);
}
.tier-name { font-family: 'Anton', sans-serif; font-size: 20px; text-transform: uppercase; color: var(--chrome); }
.tier-quota { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--purple-mist); }
.tier-note { font-size: 13px; color: var(--gray-text); }
@media (max-width: 700px) {
  .tier-row { grid-template-columns: 1fr 1fr; gap: 8px 16px; }
  .tier-row .tier-note { grid-column: 1 / -1; }
  .tier-row.head .tier-note { display: none; }
}

/* =========================================================
   TRUST & SAFETY
   ========================================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
}
.trust-card .t-ico {
  width: 38px; height: 38px;
  margin-bottom: 18px;
  color: var(--purple-mist);
}
.trust-card .t-ico svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; }
.trust-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 10px;
}
.trust-card p { font-size: 14px; color: var(--gray-text); line-height: 1.55; }

/* =========================================================
   FAQ (native details/summary)
   ========================================================= */
.faq { max-width: 880px; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--chrome);
  transition: color 0.2s var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--purple-mist); }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  color: var(--purple-mist);
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  padding: 0 48px 28px 0;
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.65;
  max-width: 70ch;
}

/* =========================================================
   CTA BAND (pre-footer)
   ========================================================= */
.cta-band {
  position: relative;
  text-align: center;
  padding: 120px 5vw;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(138,53,255,0.20), transparent 70%),
    var(--void);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.cta-band h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}
.cta-band p {
  max-width: 520px;
  margin: 0 auto 40px;
  color: var(--gray-text);
  font-size: 17px;
  line-height: 1.55;
}
.cta-band .hero-actions { justify-content: center; opacity: 1; animation: none; }

/* =========================================================
   MISC — section intro, stat band reuse, lede center
   ========================================================= */
.lead-center { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.lead-center .section-num { margin-bottom: 18px; }
.lead-center h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--chrome);
}
.lead-center p { margin-top: 20px; color: var(--gray-text); font-size: 17px; line-height: 1.55; }

/* =========================================================
   BRAND HERO (homepage — no-map centered chrome mark)
   ========================================================= */
.brand-hero { text-align: center; }
.brand-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}
.brand-mark-large {
  width: clamp(100px, 14vw, 168px);
  height: clamp(100px, 14vw, 168px);
  margin-bottom: clamp(4px, 0.8vw, 10px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 28px rgba(201,176,255,0.35));
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.1s forwards;
}
.brand-wordmark {
  font-family: 'Anton', sans-serif;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.25s forwards;
}
.brand-tagline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--chrome-2);
  margin-top: clamp(20px, 2.5vw, 36px);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.45s forwards;
}
.brand-tagline .accent {
  background: linear-gradient(180deg, var(--purple-mist), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-positioning {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.6s forwards;
}
.brand-positioning .sep { color: var(--gray-mid); }
.brand-hero .hero-actions {
  justify-content: center;
  margin-top: clamp(32px, 4vw, 52px);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.75s forwards;
}

/* =========================================================
   ONE RULE STRIP (homepage manifesto band)
   ========================================================= */
.one-rule-strip {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 5vw;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(138,53,255,0.08), transparent 70%),
    linear-gradient(180deg, transparent, rgba(138,53,255,0.04), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.one-rule-strip .container { max-width: 1100px; }
.one-rule-quote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 5.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--chrome);
}
.one-rule-quote .tool {
  background: linear-gradient(180deg, var(--purple-mist), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.one-rule-quote .world {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.one-rule-voice {
  margin-top: clamp(28px, 3vw, 44px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--purple-mist);
}

/* =========================================================
   PRODUCT ROW (homepage two-up product cards)
   ========================================================= */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 820px) {
  .product-row { grid-template-columns: 1fr; }
}
.product-row .eco-card { min-height: 320px; }
.product-row .eco-card .product-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  align-self: flex-start;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.product-row .eco-card .product-cta:hover {
  border-color: var(--purple);
  background: rgba(138,53,255,0.10);
  transform: translateY(-2px);
}
.product-row .eco-card .product-cta.disabled {
  color: var(--gray-text);
  cursor: default;
  pointer-events: none;
  background: rgba(255,255,255,0.02);
}
.product-row .eco-card .product-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-mist);
  margin-bottom: 18px;
}

/* =========================================================
   PIPELINE STRIP — REDACTED / CLASSIFIED
   ========================================================= */
.pipeline-strip {
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(138,53,255,0.08), transparent 70%),
    var(--void);
  border-top: 1px solid var(--line);
}
.pipeline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 820px) {
  .pipeline-row { grid-template-columns: 1fr; }
}
.pipeline-item {
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 200px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.pipeline-item:hover {
  border-color: rgba(138,53,255,0.4);
  transform: translateY(-3px);
}
.pipeline-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 12px,
    rgba(201,176,255,0.025) 12px,
    rgba(201,176,255,0.025) 14px
  );
  pointer-events: none;
}
.classified-chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--gray-text);
  background: rgba(255,255,255,0.02);
  position: relative;
  z-index: 1;
}
.classified-chip::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gray-mid);
}
.redacted-bar {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--gray-mid);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  user-select: none;
  position: relative;
  z-index: 1;
  text-shadow: none;
  transition: color 0.4s var(--ease-out), text-shadow 0.4s var(--ease-out);
}
.redacted-bar.shimmer {
  animation: redactedShimmer 1.8s var(--ease-out) forwards;
}
@keyframes redactedShimmer {
  0%   { color: var(--gray-mid); text-shadow: none; }
  35%  { color: var(--purple-mist); text-shadow: 0 0 14px rgba(201,176,255,0.55); }
  100% { color: var(--gray-mid); text-shadow: none; }
}
.pipeline-status {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-mist);
  position: relative;
  z-index: 1;
}
.pipeline-note {
  margin-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-text);
  text-align: center;
}

/* =========================================================
   STUDIO-IN-3 (homepage three-line studio summary)
   ========================================================= */
.studio-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 820px) {
  .studio-3 { grid-template-columns: 1fr; }
}
.studio-3-item {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--charcoal);
}
.studio-3-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--purple-mist);
  margin-bottom: 14px;
}
.studio-3-title {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 10px;
}
.studio-3-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

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

/* =========================================================
   HUD OVERLAY — viewfinder corners, scroll rail, section readout
   "You're looking through the interface."
   ========================================================= */
.hud {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
}
.hud-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.22;
}
.hud-corner.tl { top: 16px; left: 16px; border-top: 1.5px solid var(--purple-mist); border-left: 1.5px solid var(--purple-mist); }
.hud-corner.tr { top: 16px; right: 16px; border-top: 1.5px solid var(--purple-mist); border-right: 1.5px solid var(--purple-mist); }
.hud-corner.bl { bottom: 16px; left: 16px; border-bottom: 1.5px solid var(--purple-mist); border-left: 1.5px solid var(--purple-mist); }
.hud-corner.br { bottom: 16px; right: 16px; border-bottom: 1.5px solid var(--purple-mist); border-right: 1.5px solid var(--purple-mist); }

/* Vertical scroll-progress rail, right edge */
.hud-rail {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 36vh;
  background: rgba(255, 255, 255, 0.06);
}
.hud-rail-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--purple-mist), var(--purple));
  box-shadow: 0 0 12px rgba(138, 53, 255, 0.6);
}
.hud-rail-dot {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 10px var(--purple-mist), 0 0 18px rgba(138, 53, 255, 0.6);
}

/* Section readout, bottom-left */
.hud-readout {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-text);
  background: rgba(7, 7, 10, 0.55);
  border: 1px solid var(--line);
  clip-path: polygon(0 5px, 5px 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 0 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hud-readout-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  animation: pulse 2s ease-in-out infinite;
}
.hud-readout-index { color: var(--purple-mist); }
.hud-readout-label { color: var(--chrome); }

@media (max-width: 820px) {
  .hud-rail, .hud-readout { display: none; }
  .hud-corner { opacity: 0.14; }
}

/* Mouse-follow spotlight — ambient life that tracks the cursor */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 53, 255, 0.10), transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  will-change: transform;
}
.cursor-glow.on { opacity: 1; }
@media (hover: none) { .cursor-glow { display: none; } }

/* =========================================================
   TOOL SHOWCASE — surfaces the live animated map + device frame
   ========================================================= */
.tool-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(138, 53, 255, 0.12), transparent 60%),
    linear-gradient(180deg, var(--void), var(--asphalt));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tool-showcase-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .tool-showcase-grid { grid-template-columns: 1fr; gap: 48px; }
  .tool-showcase .map-stage { order: -1; }
}
.tool-showcase h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--chrome);
  margin: 16px 0 24px;
}
.tool-showcase h2 .accent {
  background: linear-gradient(180deg, var(--purple-mist), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tool-showcase .ts-lede {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 28px;
}
.tool-showcase .ts-lede strong { color: var(--chrome); font-weight: 500; }
.ts-bullets { list-style: none; margin: 0 0 32px; }
.ts-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--chrome-2);
}
.ts-bullets li:last-child { border-bottom: none; }
.ts-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple);
}

/* Stage wraps the map + floating device frame */
.map-stage { position: relative; }

/* Floating phone mockup over the map corner (real screenshot asset) */
.device-phone {
  position: absolute;
  right: -10px;
  bottom: -34px;
  width: clamp(116px, 14vw, 158px);
  aspect-ratio: 9 / 19.5;
  padding: 6px;
  border-radius: 26px;
  background: #050509;
  border: 1px solid rgba(201, 176, 255, 0.30);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 44px rgba(138, 53, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  z-index: 5;
  animation: phoneFloat 7s var(--ease-out) infinite;
}
/* PNG already includes device chrome — no faux frame on the wrapper */
.device-phone--screenshot {
  width: clamp(132px, 15vw, 188px);
  height: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  aspect-ratio: auto;
  box-shadow: none;
  overflow: visible;
}
.device-phone--screenshot .device-phone-shot {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  border-radius: 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.device-phone .device-notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 3;
}
.device-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #0c0c14, #08080d);
}
.device-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* CSS placeholder app-screen (used until a real screenshot is dropped in) */
.device-screen .ds-map {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 176, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 176, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.device-screen .ds-pin {
  position: absolute;
  top: 42%; left: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--purple-glass);
  border: 1px solid rgba(201, 176, 255, 0.6);
  box-shadow: 0 0 16px rgba(138, 53, 255, 0.8);
}
.device-screen .ds-bar {
  position: absolute;
  left: 8px; right: 8px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}
.device-screen .ds-bar.b1 { top: 14px; }
.device-screen .ds-sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(20, 20, 28, 0.6), rgba(12, 12, 18, 0.95));
  border-top: 1px solid rgba(201, 176, 255, 0.18);
  border-radius: 14px 14px 0 0;
  padding: 12px 10px;
}
.device-screen .ds-sheet span {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.10);
  margin-bottom: 7px;
}
.device-screen .ds-sheet span:first-child { width: 60%; background: rgba(201, 176, 255, 0.35); }
.device-screen .ds-sheet span:nth-child(2) { width: 85%; }
.device-screen .ds-sheet span:nth-child(3) { width: 45%; }
.device-tag {
  position: absolute;
  left: 0; top: -30px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-mist);
}

/* =========================================================
   HUD PANEL TREATMENT — corner brackets + scanline for cards
   ========================================================= */
.eco-card, .pipeline-item, .studio-3-item {
  position: relative;
}
.hud-bracket {
  position: absolute;
  width: 12px; height: 12px;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}
.hud-bracket.tl { top: 10px; left: 10px; border-top: 1.5px solid var(--purple-mist); border-left: 1.5px solid var(--purple-mist); }
.hud-bracket.tr { top: 10px; right: 10px; border-top: 1.5px solid var(--purple-mist); border-right: 1.5px solid var(--purple-mist); }
.hud-bracket.bl { bottom: 10px; left: 10px; border-bottom: 1.5px solid var(--purple-mist); border-left: 1.5px solid var(--purple-mist); }
.hud-bracket.br { bottom: 10px; right: 10px; border-bottom: 1.5px solid var(--purple-mist); border-right: 1.5px solid var(--purple-mist); }
.eco-card:hover .hud-bracket,
.pipeline-item:hover .hud-bracket,
.studio-3-item:hover .hud-bracket { opacity: 0.8; }

.studio-3-item, .eco-card {
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.studio-3-item:hover {
  transform: translateY(-6px);
  border-color: rgba(138, 53, 255, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(138, 53, 255, 0.10);
}
.product-row .eco-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 44px rgba(138, 53, 255, 0.12);
}

/* =========================================================
   MANIFESTO MARQUEE — restyled to chrome/ghost alternation
   ========================================================= */
.manifesto .marquee span .ghost {
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-mid);
}
.manifesto .marquee span.chrome {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   FACT STRIP — honest brand facts, animated count-up
   ========================================================= */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 8px;
}
@media (max-width: 720px) { .fact-strip { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
.fact {
  text-align: center;
  position: relative;
  padding: 8px 4px;
}
.fact::after {
  content: '';
  position: absolute;
  right: -12px; top: 18%;
  height: 64%;
  width: 1px;
  background: var(--line);
}
.fact:last-child::after { display: none; }
@media (max-width: 720px) {
  .fact:nth-child(2n)::after { display: none; }
}
.fact-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.fact-num .pre { font-size: 0.5em; color: var(--purple-mist); -webkit-text-fill-color: var(--purple-mist); }
.fact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* Magnetic buttons keep transform set via JS; ensure smooth return */
.btn { will-change: transform; }
