/* ==========================================================
   Identification — futuristic Orb host network
   Original design — not affiliated with any specific brand
   ========================================================== */

:root {
  --bg: #050507;
  --bg-2: #0a0a0f;
  --surface: #0c0c12;
  --surface-2: #111118;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --fg: #f5f5f7;
  --fg-dim: rgba(245, 245, 247, 0.62);
  --fg-faint: rgba(245, 245, 247, 0.38);
  --accent: oklch(0.78 0.14 250);
  --accent-hot: oklch(0.85 0.16 245);
  --halo: oklch(0.9 0.18 240 / 0.45);
  --holo-1: oklch(0.85 0.14 200);
  --holo-2: oklch(0.78 0.18 290);
  --holo-3: oklch(0.82 0.16 350);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-serif: "Instrument Serif", ui-serif, Georgia, serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(108, 164, 255, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 30%, rgba(120, 90, 255, 0.06), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

/* Hairline grid background overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 100% 88px,
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 88px 100%;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

::selection { background: var(--accent); color: #06060a; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--halo);
}
.eyebrow.no-dot::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 7vw, 96px); line-height: 0.98; font-weight: 400; }
h2 { font-size: clamp(34px, 4.6vw, 64px); line-height: 1.02; }
h3 { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.2; }

.serif-em { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.gradient-text {
  background: linear-gradient(96deg, #ffffff 10%, #c8d6ff 45%, #ffffff 70%, #d6c8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mono { font-family: var(--font-mono); }

p { color: var(--fg-dim); text-wrap: pretty; }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
section { position: relative; z-index: 1; }

.section-pad { padding: clamp(96px, 12vw, 160px) 0; }
.section-tight { padding: clamp(64px, 8vw, 112px) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 64px;
  max-width: 820px;
}
.section-head h2 { max-width: 720px; }
.section-head p { font-size: 18px; color: var(--fg-dim); max-width: 620px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .3s ease;
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, #f6f7fb 0%, #d9def0 100%);
  color: #06060a;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -10px 20px rgba(120,160,255,0.2) inset,
    0 12px 40px rgba(108,164,255,0.18);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 -10px 20px rgba(120,160,255,0.3) inset, 0 18px 50px rgba(108,164,255,0.32); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }

.btn .arrow { width: 14px; height: 14px; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Card primitives ---------- */
.glass {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hairline-top { border-top: 1px solid var(--border); }
.hairline-bottom { border-bottom: 1px solid var(--border); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(5,5,7,0.85) 0%, rgba(5,5,7,0.55) 70%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--fg);
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0%, #d8dffa 14%, #8b94b8 38%, #2a2c3a 70%, #06070d 100%);
  box-shadow:
    0 0 18px rgba(160, 190, 255, 0.55),
    0 0 0 1px rgba(255,255,255,0.18) inset,
    inset 0 -4px 8px rgba(80, 110, 180, 0.45);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 30%; height: 30%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ffffff, #6ba4ff 35%, #1b2255 80%);
  box-shadow: 0 0 8px rgba(140,180,255,0.9);
}
.brand-dot {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--fg-dim);
  margin-left: 1px;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--fg-dim);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--fg); background: rgba(255,255,255,0.04); }

.nav-right {
  display: flex; align-items: center; gap: 12px; justify-content: flex-end;
}
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.02);
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: var(--fg-faint);
  padding: 6px 12px;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.lang-toggle button.active {
  color: #06060a;
  background: linear-gradient(180deg, #f6f7fb, #d9def0);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 96px) 0 clamp(80px, 10vw, 140px);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}
.hero-copy h1 {
  margin-top: 18px;
}
.hero-copy h1 .line { display: block; }
.hero-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 19px);
  max-width: 520px;
  color: var(--fg-dim);
}
.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 540px;
}
.hero-meta .item .v {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero-meta .item .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: 4px;
}

/* ---------- Sphere ---------- */
.sphere-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.sphere-stage .glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(140, 180, 255, 0.35), rgba(140, 180, 255, 0.08) 35%, transparent 60%);
  filter: blur(20px);
  z-index: 0;
}
.sphere-stage .ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.10);
  animation: spinSlow 60s linear infinite;
}
.sphere-stage .ring.r2 {
  inset: -4%;
  border: 1px solid rgba(255,255,255,0.06);
  animation-duration: 120s;
  animation-direction: reverse;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.sphere {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    /* highlight */
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.0) 18%),
    /* secondary highlight */
    radial-gradient(circle at 70% 22%, rgba(200, 220, 255, 0.6) 0%, rgba(200,220,255,0.0) 14%),
    /* chrome body */
    radial-gradient(circle at 50% 55%, #e8edfa 0%, #aab2cc 22%, #5a627a 48%, #1c1f2e 78%, #06070d 100%),
    /* rim light */
    radial-gradient(circle at 50% 92%, rgba(140,180,255,0.6), transparent 28%);
  box-shadow:
    inset 0 -30px 60px rgba(80, 110, 180, 0.4),
    inset 0 30px 60px rgba(255, 255, 255, 0.1),
    0 40px 120px rgba(108, 164, 255, 0.35),
    0 0 0 1px rgba(255,255,255,0.04);
  animation: floatY 8s ease-in-out infinite;
}

.sphere-img {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  object-fit: contain;
  z-index: 2;
  animation: floatY 8s ease-in-out infinite;
  filter:
    drop-shadow(0 40px 120px rgba(108, 164, 255, 0.55))
    drop-shadow(0 0 60px rgba(180, 210, 255, 0.35));
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes scan {
  0%, 100% { top: 26%; opacity: 0.3; }
  50% { top: 74%; opacity: 1; }
}

/* Floating particles around sphere */
.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(180, 210, 255, 0.9);
  box-shadow: 0 0 8px rgba(180, 210, 255, 0.9);
  animation: drift 14s linear infinite;
}

@keyframes drift {
  0% { transform: translate(0,0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(40px, -120px); opacity: 0; }
}

/* Holographic readout next to sphere */
.readout {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(180, 210, 255, 0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.readout::before {
  content: "";
  width: 8px; height: 1px;
  background: rgba(180,210,255,0.5);
}
.readout.right::before { display: none; }
.readout.right::after {
  content: "";
  width: 8px; height: 1px;
  background: rgba(180,210,255,0.5);
}
.readout.tl { top: 6%;  left: 2%; }
.readout.tr { top: 14%; right: 2%; }
.readout.bl { bottom: 14%; left: 2%; }
.readout.br { bottom: 6%; right: 2%; }

/* ---------- What is section ---------- */
.what-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.what-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.what-card .num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--fg-faint);
  letter-spacing: 0.18em;
}
.what-card h3 {
  font-size: 22px;
}
.what-card p { font-size: 14.5px; margin: 0; }

.what-card.a { grid-column: span 5; min-height: 320px; }
.what-card.b { grid-column: span 4; }
.what-card.c { grid-column: span 3; }
.what-card.d { grid-column: span 4; }
.what-card.e { grid-column: span 4; }
.what-card.f { grid-column: span 4; }

.what-illus {
  margin-top: auto;
  position: relative;
  min-height: 90px;
}

/* Iris illustration */
.iris {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.iris-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background:
    conic-gradient(from 0deg, rgba(140,180,255,0.2), rgba(200,180,255,0.05), rgba(140,180,255,0.2));
  animation: spinSlow 24s linear infinite;
}
.iris-ring::after {
  content: "";
  width: 70%; height: 70%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 40%, #ffffff 0%, #6ba4ff 25%, #1b2255 70%, #04050a 100%);
  box-shadow: 0 0 30px rgba(108,164,255,0.5);
}

/* Lock / shield style icon — built with CSS only */
.shield {
  width: 60px; height: 72px;
  position: relative;
  margin: 0 auto;
}
.shield::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  clip-path: polygon(50% 0, 100% 18%, 100% 60%, 50% 100%, 0 60%, 0 18%);
}
.shield::after {
  content: "";
  position: absolute;
  left: 50%; top: 48%;
  width: 16px; height: 16px;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--halo);
}

/* Network dots */
.network {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(180,210,255,0.9) 1.5px, transparent 2px),
    radial-gradient(circle at 50% 30%, rgba(180,210,255,0.9) 1.5px, transparent 2px),
    radial-gradient(circle at 80% 50%, rgba(180,210,255,0.9) 1.5px, transparent 2px),
    radial-gradient(circle at 35% 80%, rgba(180,210,255,0.7) 1.5px, transparent 2px),
    radial-gradient(circle at 65% 80%, rgba(180,210,255,0.7) 1.5px, transparent 2px);
}
.network::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(20deg, transparent 49.5%, rgba(180,210,255,0.25) 50%, transparent 50.5%),
    linear-gradient(160deg, transparent 49.5%, rgba(180,210,255,0.20) 50%, transparent 50.5%),
    linear-gradient(90deg, transparent 49.5%, rgba(180,210,255,0.15) 50%, transparent 50.5%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Bar / pulse visual */
.pulse {
  position: absolute; inset: auto 0 10px 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 4px;
  height: 60px;
}
.pulse span {
  flex: 1;
  background: linear-gradient(180deg, rgba(180,210,255,0.9), rgba(180,210,255,0.1));
  border-radius: 2px;
  animation: pulse 1.6s ease-in-out infinite;
}
.pulse span:nth-child(1){ animation-delay: 0s; }
.pulse span:nth-child(2){ animation-delay: 0.15s; }
.pulse span:nth-child(3){ animation-delay: 0.3s; }
.pulse span:nth-child(4){ animation-delay: 0.45s; }
.pulse span:nth-child(5){ animation-delay: 0.6s; }
.pulse span:nth-child(6){ animation-delay: 0.75s; }
.pulse span:nth-child(7){ animation-delay: 0.9s; }
.pulse span:nth-child(8){ animation-delay: 1.05s; }
.pulse span:nth-child(9){ animation-delay: 1.2s; }
.pulse span:nth-child(10){ animation-delay: 1.35s; }
@keyframes pulse {
  0%, 100% { transform: scaleY(0.2); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* fingerprint-style arcs */
.fingerprint {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.fingerprint i {
  position: absolute;
  border: 1px solid rgba(180,210,255,0.4);
  border-radius: 50%;
  width: 30px; height: 30px;
}
.fingerprint i:nth-child(1){ width: 30px; height: 30px; opacity: 0.9; }
.fingerprint i:nth-child(2){ width: 50px; height: 50px; opacity: 0.7; }
.fingerprint i:nth-child(3){ width: 70px; height: 70px; opacity: 0.55; }
.fingerprint i:nth-child(4){ width: 90px; height: 90px; opacity: 0.4; }
.fingerprint i:nth-child(5){ width: 110px; height: 110px; opacity: 0.25; }

/* ---------- Why host benefits ---------- */
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.benefit {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.benefit:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.benefit .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.benefit h3 { font-size: clamp(22px, 2.2vw, 30px); max-width: 320px; }
.benefit p { font-size: 14.5px; margin: 0; max-width: 340px; }
.benefit .benefit-phrase {
  margin-top: auto;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #b4bcdc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-top: 12px;
}
.benefit .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ---------- Locations strip ---------- */
.locations {
  display: flex;
  gap: 12px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.loc-track {
  display: flex; gap: 12px;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.loc-chip {
  flex: 0 0 auto;
  padding: 14px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: rgba(255,255,255,0.02);
  display: inline-flex; align-items: center; gap: 10px;
}
.loc-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--halo);
}

/* ---------- How it works ---------- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  left: 5%; right: 5%;
  top: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,164,255,0.6), rgba(180,210,255,0.4), transparent);
}
.step {
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
}
.step .marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0%, #d3dafa 18%, #6c7796 50%, #11131c 90%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: #06060a;
  box-shadow: 0 0 30px rgba(108,164,255,0.35), 0 0 0 1px rgba(255,255,255,0.12) inset;
}
.step h3 { font-size: 24px; }
.step p { font-size: 14.5px; margin: 0; }
.step .meta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

/* ---------- Stats / map ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.map-card { padding: 0; overflow: hidden; min-height: 460px; position: relative; }
.map-card .map-head {
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.map-card .map-head h3 { font-size: 17px; }
.map-wrap { position: relative; flex: 1; height: calc(100% - 70px); }
.map-svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--halo);
  transform: translate(-50%, -50%);
}
.map-pin.big {
  width: 11px; height: 11px;
  background: var(--accent-hot);
  box-shadow: 0 0 22px var(--halo), 0 0 0 2px rgba(108,164,255,0.18);
  z-index: 2;
}
.map-pin::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(180,210,255,0.4);
  animation: ping 2.6s ease-out infinite;
}
.map-pin.big::after {
  inset: -12px;
  border-color: rgba(180,210,255,0.55);
}
@keyframes ping {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

.stat-col { display: flex; flex-direction: column; gap: 16px; }
.stat-card { padding: 26px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-height: 0; }
.stat-card .v {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-card .v .unit { font-size: 18px; color: var(--fg-dim); letter-spacing: 0; }
.stat-card .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 12px;
}
.stat-card .delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  margin-top: 8px;
}

/* ---------- Application form ---------- */
.apply-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}
.apply-aside {
  padding: 36px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(108,164,255,0.15), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.apply-aside .small-sphere {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #ffffff 0%, #aab2cc 25%, #2a2c3a 65%, #06070d 100%);
  box-shadow: 0 0 80px rgba(108,164,255,0.4);
  opacity: 0.85;
}
.apply-aside .small-sphere::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 24px; height: 24px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ffffff, #6ba4ff 35%, #11173b 80%);
  box-shadow: 0 0 20px rgba(140,180,255,0.8);
}
.apply-aside h3 { font-size: 28px; }
.checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; position: relative; z-index: 1; }
.checklist li {
  list-style: none;
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--fg-dim);
}
.checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  margin-top: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  background-image: radial-gradient(circle, var(--accent) 20%, transparent 22%);
  box-shadow: 0 0 0 1px rgba(108,164,255,0.2) inset;
}

.form-card { padding: 36px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: span 2; }
.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(140,180,255,0.6);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(108,164,255,0.10);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.5) 50%), linear-gradient(135deg, rgba(255,255,255,0.5) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 17px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }

.form-foot {
  margin-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.form-foot .note { font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); letter-spacing: 0.04em; }

.success {
  text-align: center;
  padding: 60px 30px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.success .ok-orb {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #6ba4ff 35%, #1b2255 80%);
  box-shadow: 0 0 50px rgba(108,164,255,0.6);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 24px;
  align-items: flex-start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 4px;
  cursor: pointer;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
}
.faq-q .plus {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  transition: transform .25s ease, background .2s;
  flex: 0 0 auto;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: rgba(255,255,255,0.08); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin-top .25s ease, opacity .25s ease;
  opacity: 0;
  color: var(--fg-dim);
  font-size: 15px;
}
.faq-item.open .faq-a { max-height: 220px; opacity: 1; margin-top: 12px; }

/* ---------- Final CTA ---------- */
.final {
  position: relative;
  padding: clamp(120px, 16vw, 220px) 0;
  text-align: center;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 50% 60%, rgba(108,164,255,0.35), transparent 55%),
    radial-gradient(500px 400px at 50% 80%, rgba(140,80,255,0.18), transparent 60%);
  z-index: 0;
}
.final-sphere {
  width: clamp(220px, 26vw, 380px);
  height: clamp(220px, 26vw, 380px);
  margin: 0 auto 56px;
  position: relative;
  animation: floatY 8s ease-in-out infinite;
}
.final-sphere img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 60px 200px rgba(108, 164, 255, 0.55))
    drop-shadow(0 0 80px rgba(180, 210, 255, 0.35));
}
.final h2 { font-size: clamp(48px, 7vw, 96px); max-width: 1100px; margin: 0 auto; }

/* ---------- Footer ---------- */
footer {
  padding: 60px var(--gutter) 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.foot {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.foot h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 14px;
  font-weight: 500;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot ul a { color: var(--fg-dim); font-size: 14px; }
.foot ul a:hover { color: var(--fg); }
.foot-bottom {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .sphere-stage { margin: 0 auto; max-width: 420px; }
  .what-card.a, .what-card.b, .what-card.c, .what-card.d, .what-card.e, .what-card.f { grid-column: span 6; }
  .why-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .what-card.a, .what-card.b, .what-card.c, .what-card.d, .what-card.e, .what-card.f { grid-column: span 12; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
  .foot { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
}


/* ---------- About the Orb ---------- */
.orb-row-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 96px);
}
.orb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.orb-row.flip .orb-row-photo { order: 2; }
.orb-row.flip .orb-row-body { order: 1; }

.orb-row-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.orb-row-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 80px rgba(108,164,255,0.45))
    drop-shadow(0 0 50px rgba(180,210,255,0.25));
  animation: floatY 9s ease-in-out infinite;
}
.orb-row:nth-child(2) .orb-row-photo img { animation-delay: -3s; }
.orb-row:nth-child(3) .orb-row-photo img { animation-delay: -6s; }

.orb-row-glow {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(108,164,255,0.25), rgba(108,164,255,0.05) 45%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
}

.orb-row-body { max-width: 480px; }
.orb-row-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  display: block;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #6b7596 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.orb-row-body h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.orb-row-body p {
  font-size: clamp(15px, 1.2vw, 17px);
  margin: 0;
  max-width: 460px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .orb-row { grid-template-columns: 1fr; gap: 24px; }
  .orb-row.flip .orb-row-photo { order: 0; }
  .orb-row.flip .orb-row-body { order: 0; }
  .orb-row-photo { max-width: 320px; }
}

/* ---------- Operator CTA card ---------- */
.op-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.op-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.op-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 45%;
}
.op-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 40%, rgba(5,5,7,0.4) 100%),
    linear-gradient(180deg, transparent 60%, rgba(5,5,7,0.5) 100%);
  pointer-events: none;
}
.op-photo-tag {
  position: absolute;
  top: 22px; left: 22px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(5,5,7,0.45);
  backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; gap: 8px;
}
.op-photo-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--halo);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.op-body {
  padding: clamp(36px, 5vw, 64px);
  display: flex; flex-direction: column;
  gap: 20px;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(108,164,255,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
}
.op-body h2 { font-size: clamp(34px, 3.8vw, 52px); }
.op-sub { font-size: 16px; max-width: 540px; }
.op-bullets {
  list-style: none; padding: 0; margin: 6px 0 8px;
  display: flex; flex-direction: column; gap: 14px;
}
.op-bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  font-size: 14.5px;
  color: var(--fg-dim);
  line-height: 1.5;
  text-wrap: pretty;
}
.op-bullets li::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-top: 7px;
  background:
    radial-gradient(circle at 35% 30%, #ffffff, #6ba4ff 35%, #1b2255 80%);
  box-shadow: 0 0 10px var(--halo);
}
.op-bullets li strong { color: var(--fg); font-weight: 500; }
.op-cta {
  margin-top: 16px;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.op-cta-sub { font-size: 11px; color: var(--fg-faint); letter-spacing: 0.14em; text-transform: uppercase; }

.btn-xl {
  padding: 20px 32px;
  font-size: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -10px 24px rgba(120,160,255,0.25) inset,
    0 22px 60px rgba(108,164,255,0.35);
}
.btn-xl:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -10px 24px rgba(120,160,255,0.35) inset,
    0 30px 80px rgba(108,164,255,0.5);
}

@media (max-width: 1024px) {
  .orb-split { grid-template-columns: 1fr; }
  .op-card { grid-template-columns: 1fr; }
  .op-photo { min-height: 320px; }
}
@media (max-width: 640px) {
  .orb-step { grid-template-columns: 48px 1fr; gap: 16px; }
}


/* ---------- Featured earnings card ---------- */
.benefit.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  padding: clamp(36px, 5vw, 56px);
  min-height: auto;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(108,164,255,0.14), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(140,90,255,0.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.benefit.feature::before {
  /* faint top hairline */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,210,255,0.4), transparent);
}
.benefit.feature .feature-body {
  display: flex; flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.benefit.feature .tag {
  align-self: flex-start;
}
.benefit.feature h3 {
  font-size: clamp(34px, 4vw, 52px);
  max-width: none;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #c8d0e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.benefit.feature p {
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 500px;
  margin: 0;
}
.feature-cta-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.feature-aside {
  display: flex; flex-direction: column;
  gap: 28px;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
  border-left: 1px dashed var(--border);
}
.feature-phrase {
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, #a8b2d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-pulse {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3px;
  height: 64px;
}
.feature-pulse span {
  flex: 1;
  background: linear-gradient(180deg, rgba(180,210,255,0.9) 0%, rgba(108,164,255,0.2) 100%);
  border-radius: 2px;
  animation: feature-bar 2.4s ease-in-out infinite;
  transform-origin: bottom;
}
@keyframes feature-bar {
  0%, 100% { transform: scaleY(0.15); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.feature-meta {
  display: flex; flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.feature-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px;
  font-size: 14px;
  color: var(--fg);
}
.feature-meta-row .mono {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
  text-transform: uppercase;
}

/* ---------- Supporting benefits row (3-up) ---------- */
.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-row .benefit {
  min-height: 240px;
}

/* Existing .why-row no longer used but kept as alias */
.why-row { display: contents; }

@media (max-width: 1024px) {
  .benefit.feature { grid-template-columns: 1fr; }
  .feature-aside { border-left: 0; border-top: 1px dashed var(--border); padding: 28px 0 0; }
  .benefit-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .benefit-row { grid-template-columns: 1fr; }
}
