/* ═══════════════════════════════════════════════════════════
   WEFORADS — QUIET PREMIUM
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* canvas */
  --bg: #050b14;
  --bg-elev: #0a1220;
  --bg-elev-2: #0f1a2c;

  /* text (on dark) — low-saturation off-whites */
  --fg: oklch(0.97 0.008 220);
  --fg-2: oklch(0.82 0.012 220);
  --fg-3: oklch(0.62 0.015 220);
  --fg-4: oklch(0.46 0.018 220);
  --fg-5: oklch(0.32 0.018 220);

  /* hairlines */
  --line: oklch(0.25 0.02 220 / 0.55);
  --line-2: oklch(0.28 0.025 220 / 0.35);
  --line-strong: oklch(0.40 0.03 220 / 0.6);

  /* accent (logo teal, desaturated) */
  --acc: oklch(0.82 0.12 180);
  --acc-hover: oklch(0.88 0.13 180);
  --acc-dim: oklch(0.82 0.12 180 / 0.14);
  --acc-line: oklch(0.82 0.12 180 / 0.32);
  --acc-rgb: 94, 234, 212;

  /* type */
  --f-serif: 'Instrument Serif', 'Times New Roman', serif;
  --f-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-mono: 'Geist Mono', ui-monospace, 'SF Mono', monospace;

  /* spacing (8pt) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --radius: 10px;
  --radius-lg: 14px;

  --pad-x: clamp(20px, 5vw, 80px);
  --max: 1280px;
}

/* accent variants */
body[data-accent="amber"] {
  --acc: oklch(0.78 0.14 70);
  --acc-hover: oklch(0.84 0.15 70);
  --acc-dim: oklch(0.78 0.14 70 / 0.14);
  --acc-line: oklch(0.78 0.14 70 / 0.32);
  --acc-rgb: 244, 168, 78;
}
body[data-accent="neutral"] {
  --acc: oklch(0.94 0.005 220);
  --acc-hover: oklch(0.98 0.005 220);
  --acc-dim: oklch(0.94 0.005 220 / 0.12);
  --acc-line: oklch(0.94 0.005 220 / 0.32);
  --acc-rgb: 226, 232, 240;
}

/* direction variants */
body[data-direction="bold"] {
  --bg: #020508;
  --bg-elev: #0a1220;
  --line: oklch(0.30 0.03 220 / 0.6);
}
body[data-direction="editorial"] {
  --bg: #0b0f14;
  --bg-elev: #11161d;
}

html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.mono { font-family: var(--f-mono); font-feature-settings: 'ss01'; letter-spacing: -0.01em; }
.accent { color: var(--acc); }
.dim { color: var(--fg-4); font-weight: 400; }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s;
}
.nav.stuck { border-bottom-color: var(--line); padding-top: 14px; padding-bottom: 14px; }

.nav-logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-sans);
  font-size: 16px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-mark { width: 26px; height: 26px; color: var(--acc); object-fit: contain; }
.nav-wordmark { height: 34px; width: auto; display: block; object-fit: contain; }

.nav-links {
  display: flex; gap: 4px; list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px; font-weight: 450;
  color: var(--fg-2);
  border-radius: 8px;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--fg); background: color-mix(in oklab, var(--fg) 5%, transparent); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-login { font-size: 13.5px; color: var(--fg-2); transition: color .18s; }
.nav-login:hover { color: var(--fg); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  font-family: var(--f-sans);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .12s;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-primary {
  background: var(--acc); color: #041817;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 10px 30px -10px rgba(var(--acc-rgb), 0.35);
}
.btn-primary:hover { background: var(--acc-hover); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: color-mix(in oklab, var(--fg) 4%, transparent); border-color: var(--fg-4); }

.btn-arrow { display: inline-block; transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: 148px var(--pad-x) 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 25%, rgba(var(--acc-rgb), 0.06), transparent 60%),
    radial-gradient(ellipse 90% 60% at 10% 85%, rgba(var(--acc-rgb), 0.03), transparent 65%);
  pointer-events: none;
}
/* subtle grid — only in 'bold' direction */
body[data-direction="bold"] .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 75%);
}

.hero-inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
}

/* eyebrow pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  font-size: 12.5px; font-weight: 450; letter-spacing: -0.005em;
  color: var(--fg-2);
  background: color-mix(in oklab, var(--fg) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 3px rgba(var(--acc-rgb), 0.16);
  animation: eyePulse 2s ease-in-out infinite;
}
@keyframes eyePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* headline */
.hero-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--fg);
}
.hero-title em {
  font-style: italic;
  color: var(--fg);
}
body[data-heading="sans"] .hero-title,
body[data-heading="sans"] .section-title {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.035em;
}
body[data-heading="sans"] .hero-title em,
body[data-heading="sans"] .section-title em {
  font-style: normal; font-weight: 400; color: var(--fg-2);
}
body[data-direction="bold"] .hero-title {
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-family: var(--f-sans);
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-3);
  max-width: 520px;
  line-height: 1.6;
  margin: 0 0 36px;
}

.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-proof {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in oklab, var(--acc) 20%, var(--bg-elev)), var(--bg-elev));
  border: 2px solid var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; letter-spacing: 0;
  color: var(--fg-2);
  margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.proof-text { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fg-3); }
.proof-text strong { color: var(--fg); font-weight: 500; }
.proof-stars { display: inline-flex; gap: 1px; color: var(--acc); }

/* ═══ HERO DASHBOARD — REFINED ═══ */
.hero-right { display: flex; flex-direction: column; gap: 14px; }

.dash {
  position: relative;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--bg-elev) 92%, transparent),
    color-mix(in oklab, var(--bg) 96%, transparent));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 0 color-mix(in oklab, var(--fg) 5%, transparent) inset,
    0 40px 80px -30px rgba(0,0,0,0.5),
    0 0 0 1px color-mix(in oklab, var(--fg) 2%, transparent);
}

.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg) 40%, transparent);
}
.dash-head-left { display: flex; align-items: center; gap: 9px; }
.dash-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 4px rgba(var(--acc-rgb), 0.15), 0 0 10px var(--acc);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.dash-label {
  font-size: 11.5px; font-weight: 500;
  color: var(--fg-2);
  letter-spacing: -0.005em;
}
.dash-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--fg-4);
}
.dash-sep { color: var(--fg-5); }

/* lanes */
.dash-lanes {
  padding: 12px 12px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.lane {
  display: grid;
  grid-template-columns: 28px 108px 1fr 64px;
  align-items: center; gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .3s ease;
}
.lane:hover { background: color-mix(in oklab, var(--fg) 3%, transparent); }
.lane.winner {
  background: color-mix(in oklab, var(--acc) 10%, transparent);
}

.lane-avatar {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: -0.03em;
  font-family: var(--f-sans);
}
.lane-name {
  font-size: 13px; font-weight: 450;
  color: var(--fg-2);
  letter-spacing: -0.005em;
}
.lane.winner .lane-name { color: var(--fg); font-weight: 500; }

.lane-bar-track {
  position: relative;
  height: 6px;
  background: color-mix(in oklab, var(--fg) 5%, transparent);
  border-radius: 3px;
  overflow: hidden;
}
.lane-bar {
  position: absolute; inset: 0 auto 0 0;
  width: 2%;
  background: var(--lane-color, var(--fg-4));
  border-radius: 3px;
  transition: width .9s cubic-bezier(.16, 1, .3, 1);
}
.lane.winner .lane-bar {
  background: linear-gradient(90deg, var(--lane-color, var(--acc)), var(--acc));
  box-shadow: 0 0 12px rgba(var(--acc-rgb), 0.35);
}

.lane-val {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--fg-3);
  text-align: right;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.lane.winner .lane-val { color: var(--fg); font-weight: 500; }

/* winner card */
.dash-winner {
  margin: 4px 12px 12px;
  padding: 14px 16px;
  background: color-mix(in oklab, var(--acc) 8%, transparent);
  border: 1px solid var(--acc-line);
  border-radius: 10px;
  opacity: 0; transform: translateY(4px);
  transition: opacity .4s, transform .4s;
}
.dash-winner.show { opacity: 1; transform: translateY(0); }
.dash-winner-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.dash-winner-label {
  font-size: 10.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-4);
  margin-bottom: 4px;
}
.dash-winner-val {
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.dash-winner-unit { color: var(--fg-4); font-size: 13px; font-weight: 400; margin-left: 3px; }
.dash-winner-bidder { display: flex; align-items: center; gap: 10px; }
.dash-winner-avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #4285F4;
  color: #fff;
  font-size: 13px; font-weight: 700;
  transition: background .3s;
}
.dash-winner-name { font-size: 13.5px; font-weight: 500; color: var(--fg); }
.dash-winner-lift { font-size: 11.5px; color: var(--acc); font-family: var(--f-mono); margin-top: 2px; }

/* foot stats */
.dash-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.dash-foot-item {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}
.dash-foot-item:last-child { border-right: none; }
.dash-foot-label {
  font-size: 10.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-4);
  margin-bottom: 6px;
}
.dash-foot-val {
  font-family: var(--f-mono);
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.dash-caption {
  font-size: 12.5px;
  color: var(--fg-4);
  line-height: 1.6;
  padding: 0 4px;
}
.dash-caption .mono { color: var(--fg-3); margin-right: 8px; }

/* ═══ MARQUEE ═══ */
.marquee {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-label {
  text-align: center;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-4);
  margin-bottom: 28px;
}
.marquee-track {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-inner {
  display: inline-flex; align-items: center; gap: 36px;
  padding-right: 36px;
  animation: mqScroll 42s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes mqScroll { to { transform: translateX(-100%); } }
.mq-item {
  font-family: var(--f-sans);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-3);
  transition: color .2s;
}
.mq-item:hover { color: var(--fg); }
.mq-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fg-5); flex-shrink: 0; }

/* ═══ SECTION BASE ═══ */
.section {
  position: relative;
  padding: 128px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.section-head { margin-bottom: 72px; max-width: 700px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--acc);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.section-title em { font-style: italic; color: var(--fg-3); }
.section-sub {
  font-size: 17px;
  color: var(--fg-3);
  max-width: 620px;
  line-height: 1.6;
  margin: 0;
}

/* ═══ SOLUTIONS ═══ */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .sol-grid { grid-template-columns: 1fr; } }

.sol-card {
  position: relative;
  padding: 40px 32px 36px;
  background: var(--bg);
  display: flex; flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  transition: background .3s;
}
.sol-card:hover { background: var(--bg-elev); }
.sol-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  transform: scaleX(0);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.sol-card:hover::after { transform: scaleX(1); }

.sol-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: color-mix(in oklab, var(--acc) 10%, transparent);
  border: 1px solid var(--acc-line);
  color: var(--acc);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
body[data-icons="emoji"] .sol-icon { background: none; border: none; font-size: 26px; }
.sol-index {
  font-family: var(--f-mono);
  position: absolute; top: 24px; right: 28px;
  font-size: 11px; color: var(--fg-5);
}
.sol-title {
  font-family: var(--f-sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--fg);
}
.sol-desc {
  font-size: 14.5px;
  color: var(--fg-3);
  line-height: 1.6;
  margin: 0 0 24px;
  flex-grow: 1;
}
.sol-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--acc);
}
.sol-link .arr { transition: transform .2s; }
.sol-card:hover .sol-link .arr { transform: translateX(3px); }

.sol-mini-metric {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.sol-mini-val {
  font-family: var(--f-mono);
  font-size: 22px; font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.sol-mini-label { font-size: 12px; color: var(--fg-4); }

/* ═══ PROCESS ═══ */
.proc-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) { .proc-layout { grid-template-columns: 1fr; } }

.proc-steps { display: flex; flex-direction: column; }
.proc-step {
  position: relative;
  padding: 24px 0 24px 56px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.proc-step:last-child { border-bottom: 1px solid var(--line); }
.proc-num {
  position: absolute;
  left: 0; top: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--acc);
  font-weight: 500;
}
.proc-title {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.proc-desc { font-size: 14px; color: var(--fg-3); margin: 0; line-height: 1.55; }
.proc-time {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--fg-4);
  padding: 4px 10px;
  background: color-mix(in oklab, var(--fg) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}

.proc-visual {
  position: sticky; top: 100px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 360px;
}
.proc-visual-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fg-4); margin-bottom: 24px;
}
.proc-flow {
  display: grid; grid-template-rows: repeat(4, 1fr);
  gap: 10px;
}
.flow-node {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .3s, background .3s;
}
.flow-node.active {
  border-color: var(--acc-line);
  background: color-mix(in oklab, var(--acc) 6%, var(--bg));
}
.flow-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--fg-5);
  flex-shrink: 0;
}
.flow-node.active .flow-dot { background: var(--acc); box-shadow: 0 0 0 4px rgba(var(--acc-rgb), 0.15); }
.flow-label { font-size: 13.5px; font-weight: 450; color: var(--fg-2); flex-grow: 1; }
.flow-node.active .flow-label { color: var(--fg); }
.flow-status {
  font-family: var(--f-mono); font-size: 11px; color: var(--fg-4);
}
.flow-node.active .flow-status { color: var(--acc); }

/* ═══ IMPACT / BIG STATS ═══ */
.impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  padding: 96px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .impact { grid-template-columns: 1fr; gap: 40px; } }

.impact-item { }
.impact-val {
  font-family: var(--f-serif);
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin: 0;
  font-weight: 400;
}
body[data-heading="sans"] .impact-val { font-family: var(--f-sans); font-weight: 400; letter-spacing: -0.04em; }
.impact-val sup { font-size: 0.4em; vertical-align: 0.7em; color: var(--fg-3); font-weight: 400; margin-right: 2px; }
.impact-val .unit { font-size: 0.35em; color: var(--fg-3); font-weight: 400; margin-left: 4px; letter-spacing: -0.02em; }

.impact-label {
  font-size: 13.5px; font-weight: 500;
  color: var(--fg);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.impact-label::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--acc);
}
.impact-desc {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 8px;
  line-height: 1.55;
}

/* ═══ TESTIMONIAL — editorial ═══ */
.testimonial {
  position: relative;
  padding: 128px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .testimonial { grid-template-columns: 1fr; gap: 48px; } }

.testi-left { }
.testi-label {
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--acc);
  margin-bottom: 20px;
}
.testi-stars {
  display: inline-flex; gap: 2px; color: var(--acc);
  margin-bottom: 20px;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px;
}
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in oklab, var(--acc) 20%, var(--bg-elev)), var(--bg-elev));
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  color: var(--fg-2);
}
.testi-name { font-size: 14px; font-weight: 500; }
.testi-role { font-size: 12.5px; color: var(--fg-4); margin-top: 2px; }

.testi-right { }
.testi-quote {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0;
}
body[data-heading="sans"] .testi-quote {
  font-family: var(--f-sans); font-weight: 400; letter-spacing: -0.025em;
}
.testi-quote em { font-style: italic; color: var(--acc); }

.testi-nav {
  display: flex; gap: 10px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  align-items: center; justify-content: space-between;
}
.testi-nav-dots { display: flex; gap: 6px; }
.testi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fg-5); border: none; cursor: pointer; transition: background .2s, width .2s; }
.testi-dot.active { background: var(--acc); width: 20px; border-radius: 3px; }
.testi-arrows { display: flex; gap: 6px; }
.testi-arr {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  color: var(--fg-2); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
.testi-arr:hover { color: var(--fg); border-color: var(--fg-4); }

/* ═══ WHY ═══ */
.why {
  padding: 128px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 32px 28px;
  background: var(--bg);
  transition: background .3s;
}
.why-card:hover { background: var(--bg-elev); }
.why-icon {
  width: 34px; height: 34px;
  color: var(--acc);
  margin-bottom: 24px;
}
body[data-icons="emoji"] .why-icon { font-size: 28px; width: auto; }
.why-title {
  font-family: var(--f-sans);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.why-desc { font-size: 13.5px; color: var(--fg-3); margin: 0; line-height: 1.6; }

/* ═══ FAQ ═══ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 128px var(--pad-x);
}
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head .section-title { margin-left: auto; margin-right: auto; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 24px 0;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--acc); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 28px; font-size: 14.5px; color: var(--fg-3); line-height: 1.65; max-width: 680px; }

/* ═══ CTA ═══ */
.cta {
  position: relative;
  padding: 128px var(--pad-x);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 50%, rgba(var(--acc-rgb), 0.07), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 680px; margin: 0 auto;
}
.cta-eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--acc);
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
body[data-heading="sans"] .cta-title { font-family: var(--f-sans); font-weight: 500; letter-spacing: -0.04em; }
.cta-title em { font-style: italic; color: var(--acc); }
.cta-sub {
  font-size: 17px;
  color: var(--fg-3);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-buttons {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px var(--pad-x) 40px;
  max-width: var(--max); margin: 0 auto;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 800px) { .ft-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.ft-brand { font-size: 13.5px; color: var(--fg-3); line-height: 1.6; max-width: 320px; }
.ft-brand-logo { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--fg); font-weight: 600; }
.ft-brand-logo svg { color: var(--acc); }
.ft-brand-addr { margin-top: 14px; font-size: 12px; color: var(--fg-4); line-height: 1.7; }
.ft-brand-addr strong { color: var(--fg-2); font-weight: 500; }

.ft-col h6 {
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fg-4);
  margin: 0 0 16px;
}
.ft-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { font-size: 13.5px; color: var(--fg-2); transition: color .18s; }
.ft-col a:hover { color: var(--fg); }

.ft-bot {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--fg-4);
  flex-wrap: wrap; gap: 16px;
}
.ft-soc { display: flex; gap: 10px; }
.ft-soc a {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-3);
  transition: color .2s, border-color .2s;
}
.ft-soc a:hover { color: var(--acc); border-color: var(--acc-line); }

/* ═══ TWEAKS PANEL ═══ */
.tweaks-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  color: var(--fg-2);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
  transition: color .2s, border-color .2s;
}
.tweaks-toggle:hover { color: var(--fg); border-color: var(--acc-line); }

.tweaks {
  position: fixed; bottom: 80px; right: 24px; z-index: 101;
  width: 280px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.7);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.tweaks[hidden] { display: none; }
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.tweaks-title {
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-2);
}
.tweaks-close {
  background: none; border: none;
  color: var(--fg-3); cursor: pointer;
  font-size: 22px; line-height: 1;
  padding: 0; width: 24px; height: 24px;
}
.tweaks-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 16px; }
.tweak-group { }
.tweak-label {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg-4);
  margin-bottom: 8px;
}
.tweak-opts { display: flex; gap: 4px; flex-wrap: wrap; }
.tweak-opts button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  font-family: var(--f-sans);
  font-size: 12px; font-weight: 450;
  background: transparent;
  color: var(--fg-2);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  transition: color .18s, border-color .18s, background .18s;
}
.tweak-opts button:hover { color: var(--fg); border-color: var(--fg-4); }
.tweak-opts button.active {
  background: color-mix(in oklab, var(--acc) 12%, transparent);
  border-color: var(--acc-line);
  color: var(--acc);
}
.tw-swatch { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* ═══ REVEAL ═══ */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.rv.on { opacity: 1; transform: none; }
/* home-v2.css — Premium 3D edition. Builds on home.css via cascade. */

:root {
  --depth-shadow: 0 30px 80px -20px rgba(0,0,0,0.55), 0 60px 120px -40px rgba(0,0,0,0.4);
  --glow: 0 0 60px rgba(var(--acc-rgb), 0.15), 0 0 120px rgba(var(--acc-rgb), 0.08);
}

/* ═══ GLOBAL 3D CONTEXT ═══ */
body { perspective: 2000px; }

/* Animated gradient mesh background (global) */
.mesh-bg {
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.mesh-bg::before, .mesh-bg::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: meshFloat 28s ease-in-out infinite;
}
.mesh-bg::before {
  background: radial-gradient(circle, rgba(var(--acc-rgb), 0.6), transparent 60%);
  top: -200px; left: -200px;
}
.mesh-bg::after {
  background: radial-gradient(circle, rgba(80, 150, 255, 0.35), transparent 60%);
  bottom: -200px; right: -200px;
  animation-delay: -14s;
}
@keyframes meshFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(200px, 150px) scale(1.1); }
  66% { transform: translate(-100px, 200px) scale(0.9); }
}

.noise-layer {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ═══ HERO 3D SCENE ═══ */
.hero { min-height: 100vh; padding-top: 180px; }
.hero-inner { transform-style: preserve-3d; grid-template-columns: 1.1fr 1fr !important; gap: 72px !important; }
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr !important; }
}

/* Glow orbs behind title */
.hero-left { position: relative; }
.hero-orb {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--acc-rgb), 0.18), transparent 55%);
  top: -100px; left: -200px;
  filter: blur(40px);
  z-index: -1;
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-title {
  font-size: clamp(48px, 6vw, 84px) !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}
.hero-title em {
  background: linear-gradient(135deg, var(--acc) 0%, #7dd3fc 50%, #c084fc 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  font-style: italic;
}
.hero-title em .w {
  background: inherit;
  background-size: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══ HERO DASH — floating 3D card with tilt ═══ */
.hero-right {
  perspective: 1400px;
  transform-style: preserve-3d;
}
.dash {
  transform-style: preserve-3d;
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
  box-shadow:
    var(--depth-shadow),
    var(--glow),
    0 0 0 1px rgba(var(--acc-rgb), 0.15) inset;
  background: linear-gradient(180deg,
    rgba(15, 26, 44, 0.9),
    rgba(5, 11, 20, 0.95));
  backdrop-filter: blur(20px);
}
.hero-right:hover .dash {
  transform: rotateY(-2deg) rotateX(2deg) translateY(-4px);
}
.dash::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(var(--acc-rgb), 0.35),
    transparent 30%,
    transparent 70%,
    rgba(var(--acc-rgb), 0.18));
  z-index: -1;
  filter: blur(2px);
}

/* Floating decorative chips around dash */
.hero-right { position: relative; }
.float-chip {
  position: absolute;
  padding: 10px 16px;
  background: rgba(10, 18, 32, 0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(var(--acc-rgb), 0.2);
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.5);
  z-index: 2;
  font-size: 12px;
  color: var(--fg-2);
  animation: chipFloat 6s ease-in-out infinite;
}
.float-chip .chip-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: color-mix(in oklab, var(--acc) 15%, transparent);
  color: var(--acc);
  display: flex; align-items: center; justify-content: center;
}
.float-chip strong { color: var(--fg); font-weight: 500; }
.float-chip .chip-val { font-family: var(--f-mono); color: var(--acc); font-weight: 500; }

.float-chip.fc-1 {
  top: -28px; right: 20px;
  animation-delay: 0s;
}
.float-chip.fc-2 {
  bottom: -24px; left: 30px;
  animation-delay: -3s;
}
.float-chip.fc-3 {
  top: 40%; right: -68px;
  animation-delay: -1.5s;
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 1200px) {
  .float-chip.fc-3 { display: none; }
}
@media (max-width: 1024px) {
  .float-chip { display: none; }
  .dash { transform: none; }
}

/* ═══ BENTO / 3D CARD GRID FOR SOLUTIONS ═══ */
.sol-grid { perspective: 1600px; background: transparent !important; border: none !important; gap: 16px !important; }
.sol-card {
  transform-style: preserve-3d;
  background: linear-gradient(180deg,
    rgba(15, 26, 44, 0.7),
    rgba(10, 18, 32, 0.8)) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-lg) !important;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.3s, box-shadow 0.3s !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.sol-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(var(--acc-rgb), 0.3) !important;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(var(--acc-rgb), 0.15) inset;
}
.sol-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(var(--acc-rgb), 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}
.sol-card:hover::after { opacity: 1; }

.sol-icon {
  width: 52px !important; height: 52px !important;
  background: linear-gradient(135deg,
    rgba(var(--acc-rgb), 0.18),
    rgba(var(--acc-rgb), 0.05)) !important;
  border: 1px solid rgba(var(--acc-rgb), 0.25) !important;
  box-shadow: 0 8px 20px -8px rgba(var(--acc-rgb), 0.3), 0 0 0 1px rgba(255,255,255,0.05) inset;
  transform: translateZ(30px);
}
.sol-icon svg { width: 24px; height: 24px; }

/* ═══ 3D GLOBE VISUAL ═══ */
.globe-section {
  position: relative;
  padding: 128px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: visible;
}
@media (max-width: 900px) { .globe-section { grid-template-columns: 1fr; } }

.globe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  margin: 0 auto;
  perspective: 1400px;
}
.globe {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: globeRotate 40s linear infinite;
}
@keyframes globeRotate {
  from { transform: rotateY(0deg) rotateX(-8deg); }
  to { transform: rotateY(360deg) rotateX(-8deg); }
}
.globe-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(var(--acc-rgb), 0.18);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.globe-ring:nth-child(1) { transform: rotateY(0deg); border-style: solid; border-color: rgba(var(--acc-rgb), 0.22); }
.globe-ring:nth-child(2) { transform: rotateY(30deg); }
.globe-ring:nth-child(3) { transform: rotateY(60deg); }
.globe-ring:nth-child(4) { transform: rotateY(90deg); border-style: solid; border-color: rgba(var(--acc-rgb), 0.22); }
.globe-ring:nth-child(5) { transform: rotateY(120deg); }
.globe-ring:nth-child(6) { transform: rotateY(150deg); }
.globe-ring.horiz:nth-child(7)  { transform: rotateX(90deg) rotateZ(0deg); border-style: solid; border-color: rgba(var(--acc-rgb), 0.25); }
.globe-ring.horiz:nth-child(8)  { transform: rotateX(90deg) scale(0.95); }
.globe-ring.horiz:nth-child(9)  { transform: rotateX(90deg) scale(0.75); }
.globe-ring.horiz:nth-child(10) { transform: rotateX(90deg) scale(0.5); border-color: rgba(var(--acc-rgb), 0.35); }

.globe-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0%, var(--acc) 25%, transparent 70%);
  filter: blur(2px);
  opacity: 0.95;
  animation: corePulse 3s ease-in-out infinite;
  box-shadow:
    0 0 60px rgba(var(--acc-rgb), 0.6),
    0 0 120px rgba(var(--acc-rgb), 0.3);
}
.globe-core::after {
  content: '';
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--acc-rgb), 0.4), transparent 65%);
  filter: blur(20px);
  animation: corePulse 3s ease-in-out infinite reverse;
}
@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Brand mark at globe center — sits in front of core on the wrap (not rotating with globe) */
.globe-brand {
  position: absolute;
  top: 50%; left: 50%;
  width: 84px; height: 84px;
  margin: -42px 0 0 -42px;
  z-index: 5;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(10,18,32,0.85) 0%, rgba(10,18,32,0.4) 65%, transparent 100%);
  backdrop-filter: blur(4px);
}
.globe-brand::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(var(--acc-rgb), 0.35);
  box-shadow:
    0 0 20px rgba(var(--acc-rgb), 0.35) inset,
    0 0 30px rgba(var(--acc-rgb), 0.2);
  animation: brandRingPulse 3s ease-in-out infinite;
}
.globe-brand svg,
.globe-brand img {
  width: 56px; height: 56px;
  color: #fff;
  position: relative;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(var(--acc-rgb), 0.95))
    drop-shadow(0 0 22px rgba(var(--acc-rgb), 0.55))
    drop-shadow(0 2px 3px rgba(0,0,0,0.7));
  animation: brandPulse 3s ease-in-out infinite;
}
@keyframes brandPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes brandRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Connection lines from core to nodes */
.globe-line {
  position: absolute;
  top: 50%; left: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--acc-rgb), 0.5), transparent);
  transform-origin: 0 0;
  opacity: 0.4;
  pointer-events: none;
}

/* Orbiting particle */
.globe-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px #fff, 0 0 24px var(--acc);
  transform-style: preserve-3d;
}

.globe-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(20, 32, 50, 0.95), rgba(8, 14, 24, 0.98));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--node-c, var(--acc));
  box-shadow:
    0 10px 24px -6px rgba(0,0,0,0.6),
    0 0 24px -4px var(--node-c, var(--acc)),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform-style: preserve-3d;
  transform: translate3d(var(--x, 0px), var(--y, 0px), var(--z, 0px));
  backdrop-filter: blur(8px);
}
.globe-node::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, var(--node-c, var(--acc)), transparent 60%);
  opacity: 0.18;
  pointer-events: none;
}
.globe-node svg { position: relative; z-index: 1; filter: drop-shadow(0 0 6px currentColor); }

.globe-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(var(--acc-rgb), 0.15), transparent 55%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.globe-copy .section-eyebrow { color: var(--acc); }
.globe-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.gm-card {
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(15,26,44,0.6), rgba(5,11,20,0.8));
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.25s, border-color 0.25s;
}
.gm-card:hover { transform: translateY(-3px); border-color: rgba(var(--acc-rgb), 0.3); }
.gm-val {
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 500;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.gm-label { font-size: 12px; color: var(--fg-4); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ═══ PROCESS — 3D STEP CARDS ═══ */
.proc-steps { perspective: 1400px; }
.proc-step {
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), background 0.3s;
  border-radius: 12px;
  padding: 24px 24px 24px 64px !important;
  margin-bottom: 4px;
  border-top: none !important;
}
.proc-step:last-child { border-bottom: none !important; }
.proc-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s, border-color 0.3s;
}
.proc-step:hover { transform: translateX(8px); background: rgba(15,26,44,0.4); }
.proc-step:hover::before { opacity: 1; border-color: rgba(var(--acc-rgb), 0.25); }
.proc-step .proc-num { left: 24px !important; }

/* ═══ IMPACT — layered 3D cards ═══ */
.impact { perspective: 1600px; background: transparent !important; padding: 96px var(--pad-x) !important; }
.impact-item {
  position: relative;
  padding: 48px 36px;
  background: linear-gradient(180deg, rgba(15,26,44,0.6), rgba(5,11,20,0.85));
  border: 1px solid var(--line);
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
  overflow: hidden;
}
.impact-item:hover {
  transform: translateY(-10px) rotateX(4deg);
}
.impact-item::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 60%;
  background: linear-gradient(90deg, transparent, rgba(var(--acc-rgb), 0.08), transparent);
  transform: rotate(25deg);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) rotate(25deg); opacity: 0; }
  50% { transform: translateX(100%) rotate(25deg); opacity: 1; }
}
.impact-val {
  background: linear-gradient(135deg, var(--fg) 0%, var(--acc) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(72px, 10vw, 120px) !important;
}

/* ═══ TESTIMONIAL — depth ═══ */
.testimonial {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(15,26,44,0.3));
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 40px; left: var(--pad-x);
  font-family: var(--f-serif);
  font-size: 240px;
  line-height: 0.7;
  color: var(--acc);
  opacity: 0.1;
  pointer-events: none;
}
.testi-quote {
  font-size: clamp(32px, 4vw, 48px) !important;
  line-height: 1.2 !important;
}

/* ═══ WHY — 3D glass cards ═══ */
.why-grid { perspective: 1400px; gap: 16px !important; background: transparent !important; border: none !important; }
.why-card {
  background: linear-gradient(180deg, rgba(15,26,44,0.55), rgba(10,18,32,0.75)) !important;
  border: 1px solid var(--line);
  border-radius: 14px;
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: rgba(var(--acc-rgb), 0.3);
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 44px !important; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.18), rgba(var(--acc-rgb), 0.05));
  border: 1px solid rgba(var(--acc-rgb), 0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(var(--acc-rgb), 0.3);
  margin-bottom: 24px;
  color: var(--acc);
}
.why-icon svg { width: 22px; height: 22px; }

/* ═══ CTA — premium spotlight ═══ */
.cta {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(var(--acc-rgb), 0.15), transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 40%, rgba(120, 100, 255, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 60%, rgba(var(--acc-rgb), 0.1), transparent 70%) !important;
  animation: ctaPulse 10s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  margin: -400px 0 0 -400px;
  border-radius: 50%;
  border: 1px solid rgba(var(--acc-rgb), 0.08);
  animation: ringExpand 6s ease-out infinite;
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 500px; height: 500px;
  margin: -250px 0 0 -250px;
  border-radius: 50%;
  border: 1px solid rgba(var(--acc-rgb), 0.15);
  animation: ringExpand 6s ease-out infinite 2s;
  pointer-events: none;
}
@keyframes ringExpand {
  0% { transform: scale(0.3); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.cta-title {
  font-size: clamp(56px, 7vw, 92px) !important;
}
.cta-title em {
  background: linear-gradient(135deg, var(--acc), #7dd3fc, #c084fc);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

/* Premium button */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--acc), color-mix(in oklab, var(--acc) 80%, #c084fc));
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 10px 30px -10px rgba(var(--acc-rgb), 0.5),
    0 0 0 1px rgba(var(--acc-rgb), 0.4);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }

/* Nav glass premium */
.nav {
  background: color-mix(in oklab, var(--bg) 50%, transparent);
  backdrop-filter: blur(20px) saturate(150%);
}
.nav.stuck {
  background: color-mix(in oklab, var(--bg) 85%, transparent);
}

/* Section title — serif/sans swap with gradient on italic */
.section-title em {
  background: linear-gradient(135deg, var(--acc), #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tilt-reactive surfaces ambient light */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(.22,1,.36,1);
}

/* ═══ HERO FX CANVAS — bid-stream particle bg ═══ */
.hero-fx-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.85;
  mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.hero { position: relative; overflow: hidden; }
.hero-inner { position: relative; z-index: 1; }

/* ═══ DASH UPGRADE — glass reflection + inner glow ═══ */
.dash {
  position: relative;
  overflow: hidden;
}
.dash::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(var(--acc-rgb), 0.6),
    rgba(255,255,255,0.4),
    rgba(var(--acc-rgb), 0.6),
    transparent);
  opacity: 0.8;
  z-index: 2;
  pointer-events: none;
}
.dash-sheen {
  position: absolute;
  top: -50%; left: -50%;
  width: 70%; height: 200%;
  background: linear-gradient(100deg,
    transparent 0%,
    transparent 40%,
    rgba(var(--acc-rgb), 0.08) 48%,
    rgba(255,255,255,0.12) 50%,
    rgba(var(--acc-rgb), 0.08) 52%,
    transparent 60%,
    transparent 100%);
  transform: translateX(-100%) rotate(12deg);
  animation: dashSheen 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
@keyframes dashSheen {
  0%, 100% { transform: translateX(-120%) rotate(12deg); }
  50% { transform: translateX(220%) rotate(12deg); }
}

/* Inner corner accent glows */
.dash::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--acc-rgb), 0.35), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(192, 132, 252, 0.2), transparent 30%),
    linear-gradient(135deg,
      rgba(var(--acc-rgb), 0.35),
      transparent 30%,
      transparent 70%,
      rgba(var(--acc-rgb), 0.18));
  z-index: -1;
  filter: blur(2px);
}

/* Floating chips: add inner ring and premium polish */
.float-chip {
  position: absolute;
  padding: 11px 16px 11px 12px;
  background: linear-gradient(180deg, rgba(18, 30, 48, 0.92), rgba(10, 18, 32, 0.95));
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(var(--acc-rgb), 0.25);
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow:
    0 20px 50px -15px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(255,255,255,0.08) inset;
  z-index: 2;
  font-size: 12px;
  color: var(--fg-2);
  animation: chipFloat 6s ease-in-out infinite;
}
.float-chip::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0%, rgba(var(--acc-rgb), 0.15), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.float-chip .chip-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.25), rgba(var(--acc-rgb), 0.08));
  border: 1px solid rgba(var(--acc-rgb), 0.35);
  color: var(--acc);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px -2px rgba(var(--acc-rgb), 0.4);
}
.float-chip strong { color: var(--fg); font-weight: 500; display: block; font-size: 11px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--fg-3); }
.float-chip .chip-val { font-family: var(--f-mono); color: var(--acc); font-weight: 500; font-size: 14px; margin-top: 1px; }

/* Hero orb more premium — layered glows */
.hero-orb {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--acc-rgb), 0.22), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(192, 132, 252, 0.12), transparent 60%);
  top: -140px; left: -240px;
  filter: blur(50px);
  z-index: 0;
  animation: orbPulse 7s ease-in-out infinite, orbDrift 20s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

/* Dash hover: lift + stronger glow */
.hero-right:hover .dash {
  box-shadow:
    var(--depth-shadow),
    0 0 80px rgba(var(--acc-rgb), 0.25),
    0 0 160px rgba(var(--acc-rgb), 0.12),
    0 0 0 1px rgba(var(--acc-rgb), 0.3) inset;
}

/* Premium button — magnetic-ready */
.btn-primary {
  will-change: transform;
  transition: box-shadow 0.3s;
}
.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 16px 40px -12px rgba(var(--acc-rgb), 0.7),
    0 0 0 1px rgba(var(--acc-rgb), 0.5),
    0 0 60px rgba(var(--acc-rgb), 0.3);
}

/* Accent RGB variable needed for various effects */
body[data-accent="teal"] { --acc-rgb: 94, 234, 212; }
body[data-accent="amber"] { --acc-rgb: 245, 166, 35; }
body[data-accent="neutral"] { --acc-rgb: 226, 232, 240; }
/* home-v3.css — Cinematic hero scene: mini-globe + orbiting cards + floating dash + word-reveal headline */

/* ═══ SCENE WRAPPER ═══ */
.scene {
  position: relative;
  width: 100%;
  min-height: 620px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

/* ═══ MINI-GLOBE (background of scene) ═══ */
.scene-globe {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}
.scene-globe::before {
  content: '';
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--acc-rgb), 0.18), rgba(192, 132, 252, 0.06) 45%, transparent 70%);
  filter: blur(30px);
}
.sg-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(var(--acc-rgb), 0.2);
  animation: sgSpin 40s linear infinite;
}
.sg-ring.r2 { width: 340px; height: 340px; border-style: dashed; border-color: rgba(var(--acc-rgb), 0.18); animation-duration: 30s; animation-direction: reverse; }
.sg-ring.r3 { width: 260px; height: 260px; border-color: rgba(var(--acc-rgb), 0.25); animation-duration: 22s; }
.sg-ring.r4 { width: 480px; height: 120px; border-radius: 50%; border-color: rgba(var(--acc-rgb), 0.14); transform: rotate(-8deg); animation: sgTilt 18s ease-in-out infinite; }
.sg-ring.r5 { width: 520px; height: 90px; border-radius: 50%; border-color: rgba(192, 132, 252, 0.18); border-style: dashed; transform: rotate(12deg); animation: sgTiltRev 24s ease-in-out infinite; }
@keyframes sgSpin {
  to { transform: rotate(360deg); }
}
@keyframes sgTilt {
  0%, 100% { transform: rotate(-8deg) scaleX(1); }
  50% { transform: rotate(-8deg) scaleX(1.08); }
}
@keyframes sgTiltRev {
  0%, 100% { transform: rotate(12deg) scaleX(1); }
  50% { transform: rotate(12deg) scaleX(0.92); }
}
.sg-core {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.5), var(--acc) 30%, transparent 70%);
  filter: blur(4px);
  animation: sgCore 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(var(--acc-rgb), 0.6), 0 0 80px rgba(var(--acc-rgb), 0.3);
}
@keyframes sgCore {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ═══ ORBITING CARDS ═══ */
.scene-orbit {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}
.orbit-card {
  position: absolute;
  padding: 12px 16px;
  min-width: 132px;
  background: linear-gradient(180deg, rgba(18, 30, 48, 0.95), rgba(10, 18, 32, 0.98));
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(var(--acc-rgb), 0.22);
  border-radius: 14px;
  box-shadow:
    0 20px 50px -15px rgba(0,0,0,0.7),
    0 0 24px -8px rgba(var(--acc-rgb), 0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(255,255,255,0.08) inset;
  color: var(--fg);
  font-size: 12px;
  transform-style: preserve-3d;
}
.orbit-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0%, rgba(var(--acc-rgb), 0.18), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}
.oc-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-4);
  font-weight: 500;
}
.oc-val {
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 500;
  margin-top: 4px;
  background: linear-gradient(180deg, #fff, var(--acc));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.oc-u { font-size: 13px; color: var(--fg-3); -webkit-text-fill-color: var(--fg-3); margin-left: 2px; }
.oc-spark { display: block; width: 60px; height: 18px; color: var(--acc); margin-top: 6px; stroke-linecap: round; stroke-linejoin: round; opacity: 0.9; }
.oc-bars { display: flex; gap: 3px; margin-top: 8px; height: 14px; align-items: flex-end; }
.oc-bars i { flex: 1; background: linear-gradient(180deg, var(--acc), rgba(var(--acc-rgb),0.3)); border-radius: 1px; animation: ocBars 1.4s ease-in-out infinite; }
.oc-bars i:nth-child(1) { height: 40%; animation-delay: 0s; }
.oc-bars i:nth-child(2) { height: 80%; animation-delay: 0.15s; }
.oc-bars i:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.oc-bars i:nth-child(4) { height: 95%; animation-delay: 0.45s; }
.oc-bars i:nth-child(5) { height: 70%; animation-delay: 0.6s; }
@keyframes ocBars {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}
.oc-ring-mini { width: 40px; height: 40px; margin-top: 6px; color: var(--acc); }
.oc-ring-mini svg { width: 100%; height: 100%; filter: drop-shadow(0 0 4px rgba(var(--acc-rgb), 0.5)); }
.oc-dots { display: grid; grid-template-columns: repeat(8, 1fr); gap: 3px; margin-top: 8px; }
.oc-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); opacity: 0.8; animation: ocDot 2s ease-in-out infinite; }
.oc-dots i:nth-child(2n) { background: rgba(125, 211, 252, 0.8); animation-delay: 0.1s; }
.oc-dots i:nth-child(3n) { background: rgba(192, 132, 252, 0.7); animation-delay: 0.2s; }
.oc-dots i:nth-child(5n) { animation-delay: 0.3s; }
@keyframes ocDot {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(0.6); opacity: 0.3; }
}

/* Orbit positions — corners, outside dash footprint */
.oc-1 {
  top: 0;
  right: -8%;
  transform: rotate(2deg);
  animation: orbitFloat1 9s ease-in-out infinite;
}
.oc-2 {
  bottom: 2%;
  right: -10%;
  transform: rotate(-3deg);
  animation: orbitFloat2 11s ease-in-out infinite -3s;
}
.oc-3 {
  bottom: 0;
  left: -10%;
  transform: rotate(3deg);
  animation: orbitFloat3 10s ease-in-out infinite -1.5s;
}
.oc-4 {
  top: 2%;
  left: -12%;
  transform: rotate(-4deg);
  animation: orbitFloat4 13s ease-in-out infinite -5s;
}

@keyframes orbitFloat1 {
  0%, 100% { transform: rotate(2deg) translate(0, 0); }
  50% { transform: rotate(1deg) translate(-8px, -12px); }
}
@keyframes orbitFloat2 {
  0%, 100% { transform: rotate(-3deg) translate(0, 0); }
  50% { transform: rotate(-2deg) translate(-10px, 10px); }
}
@keyframes orbitFloat3 {
  0%, 100% { transform: rotate(3deg) translate(0, 0); }
  50% { transform: rotate(4deg) translate(10px, -8px); }
}
@keyframes orbitFloat4 {
  0%, 100% { transform: rotate(-4deg) translate(0, 0); }
  50% { transform: rotate(-3deg) translate(8px, 10px); }
}

/* ═══ SCENE FLOW — subtle vertical energy stream behind ═══ */
.scene-flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
}
.scene-flow::before, .scene-flow::after {
  content: '';
  position: absolute;
  top: -10%; bottom: -10%;
  width: 2px;
  background: linear-gradient(180deg,
    transparent,
    rgba(var(--acc-rgb), 0.4) 20%,
    rgba(var(--acc-rgb), 0.8) 50%,
    rgba(var(--acc-rgb), 0.4) 80%,
    transparent);
  filter: blur(1px);
  animation: flowSlide 6s linear infinite;
  opacity: 0.4;
}
.scene-flow::before { left: 20%; animation-delay: 0s; }
.scene-flow::after  { left: 75%; animation-delay: -2s; background: linear-gradient(180deg, transparent, rgba(192,132,252,0.35) 30%, rgba(192,132,252,0.7) 50%, rgba(192,132,252,0.35) 70%, transparent); }
@keyframes flowSlide {
  0% { transform: translateY(-30%); opacity: 0; }
  20% { opacity: 0.5; }
  80% { opacity: 0.5; }
  100% { transform: translateY(30%); opacity: 0; }
}

/* ═══ DASH — sits as focal, slightly smaller to let scene breathe ═══ */
.scene .dash {
  position: relative;
  z-index: 5;
  margin: 40px auto;
  max-width: 420px;
  transform: rotateY(-8deg) rotateX(5deg) translateZ(30px);
  animation: dashFloat 6s ease-in-out infinite;
}
@keyframes dashFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(5deg) translateZ(30px) translateY(0); }
  50% { transform: rotateY(-7deg) rotateX(4deg) translateZ(30px) translateY(-8px); }
}
.scene .dash:hover {
  animation-play-state: paused;
}

/* Hero right container — ensure scene has space */
.hero-right { gap: 0; min-height: 640px; }
.hero-right .dash-caption {
  margin-top: 24px;
  text-align: left;
}

/* ═══ WORD-BY-WORD HEADLINE REVEAL ═══ */
.hero-title .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(-40deg);
  filter: blur(8px);
  transform-origin: 50% 100%;
  animation: wordIn 0.9s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-title .w:nth-child(1) { animation-delay: 0.1s; }
.hero-title em .w:nth-child(1) { animation-delay: 0.55s; }
.hero-title em .w:nth-child(2) { animation-delay: 0.75s; }
.hero-title > .w:nth-child(2) { animation-delay: 0.25s; }
.hero-title > .w:nth-child(3) { animation-delay: 0.4s; }
@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

/* Nicer title tracking & size */
.hero-title {
  font-size: clamp(52px, 6.2vw, 92px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em !important;
  text-wrap: balance;
  perspective: 1000px;
}

/* Remove old float-chip artifact (if any still present) */
.float-chip { display: none !important; }

/* Responsive */
@media (max-width: 1200px) {
  .orbit-card { min-width: 108px; padding: 9px 11px; }
  .oc-val { font-size: 17px; }
  .oc-label { font-size: 9px; }
  .scene .dash { max-width: 380px; }
  .sg-ring { width: 360px; height: 360px; }
  .sg-ring.r2 { width: 290px; height: 290px; }
  .sg-ring.r3 { width: 220px; height: 220px; }
  .sg-ring.r4 { width: 400px; height: 100px; }
  .sg-ring.r5 { width: 440px; height: 80px; }
  .scene-globe::before { width: 440px; height: 440px; }
  .scene { min-height: 560px; }
  .hero-right { min-height: 580px; }
}
@media (max-width: 960px) {
  .orbit-card { min-width: 96px; padding: 8px 10px; }
  .oc-val { font-size: 15px; }
  .scene .dash { max-width: 340px; }
  .sg-ring { width: 300px; height: 300px; }
  .sg-ring.r2 { width: 240px; height: 240px; }
  .sg-ring.r3 { width: 180px; height: 180px; }
  .sg-ring.r4 { width: 340px; height: 85px; }
  .sg-ring.r5 { width: 380px; height: 70px; }
  .scene-globe::before { width: 380px; height: 380px; }
  .oc-1 { top: 2%; right: 2%; }
  .oc-2 { top: 44%; right: -2%; }
  .oc-3 { bottom: 4%; left: -2%; }
  .oc-4 { top: 14%; left: -4%; }
  .scene { min-height: 520px; }
  .hero-right { min-height: 540px; }
}
@media (max-width: 760px) {
  .orbit-card { display: none; }
  .scene-globe { opacity: 0.35; }
  .scene .dash { transform: none; animation: none; max-width: 100%; margin: 0 auto; }
  .scene { min-height: auto; }
  .hero-right { min-height: auto; }
}
/* home-v4.css — Demand-partner network visualization (radar + chips + live ticker) */

/* ═══ WRAP ═══ */
.ntw-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 600px;
  margin: 0 auto;
}
.ntw-stage {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--acc-rgb), 0.08) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(10, 18, 32, 0.4) 30%, transparent 70%);
}

/* Ambient glow behind */
.ntw-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(var(--acc-rgb), 0.14), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  animation: ntwGlow 6s ease-in-out infinite;
}
@keyframes ntwGlow {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* ═══ RINGS ═══ */
.ntw-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--s);
  height: var(--s);
  margin-top: calc(var(--s) / -2);
  margin-left: calc(var(--s) / -2);
  border: 1px dashed rgba(var(--acc-rgb), 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.ntw-ring:nth-child(odd) {
  border-style: solid;
  border-color: rgba(var(--acc-rgb), 0.12);
}

/* ═══ CROSSHAIR LINES ═══ */
.ntw-cross {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(var(--acc-rgb), 0.12), transparent);
  pointer-events: none;
}
.ntw-cross-h { top: 50%; left: 5%; right: 5%; height: 1px; transform: translateY(-0.5px); }
.ntw-cross-v { left: 50%; top: 5%; bottom: 5%; width: 1px; transform: translateX(-0.5px); background: linear-gradient(180deg, transparent, rgba(var(--acc-rgb), 0.12), transparent); }
.ntw-cross.ntw-diag-1 { top: 50%; left: 5%; right: 5%; height: 1px; transform: translateY(-0.5px) rotate(45deg); opacity: 0.6; }
.ntw-cross.ntw-diag-2 { top: 50%; left: 5%; right: 5%; height: 1px; transform: translateY(-0.5px) rotate(-45deg); opacity: 0.6; }

/* ═══ RADAR SWEEP ═══ */
.ntw-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 2;
}
.ntw-sweep::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--acc-rgb), 0.7), transparent);
  transform-origin: 0 50%;
  animation: ntwSweep 5s linear infinite;
  filter: blur(1px);
}
.ntw-sweep::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 50%;
  height: 80%;
  background: conic-gradient(from 0deg at 0 50%,
    rgba(var(--acc-rgb), 0.25),
    rgba(var(--acc-rgb), 0.08) 8deg,
    transparent 20deg,
    transparent 360deg);
  transform-origin: 0 50%;
  animation: ntwSweep 5s linear infinite;
  opacity: 0.65;
  mix-blend-mode: screen;
  border-radius: 0 100% 100% 0;
}
@keyframes ntwSweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══ CHIPS (demand partners) ═══ */
.ntw-chip {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18, 30, 48, 0.95), rgba(10, 18, 32, 0.98));
  border: 1px solid rgba(var(--acc-rgb), 0.22);
  box-shadow:
    0 10px 24px -10px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 0 14px -4px rgba(var(--acc-rgb), 0.4);
  backdrop-filter: blur(10px);
  font-size: 11.5px;
  line-height: 1;
  white-space: nowrap;
  color: var(--fg);
  z-index: 3;
  animation: ntwChipFloat 6s ease-in-out infinite;
}
.ntw-chip .ntw-name {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ntw-chip .ntw-bid {
  font-family: var(--f-mono);
  color: var(--acc);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  padding: 2px 6px;
  background: rgba(var(--acc-rgb), 0.12);
  border-radius: 999px;
}
.ntw-chip.is-hot {
  border-color: rgba(var(--acc-rgb), 0.55);
  box-shadow:
    0 12px 30px -10px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 22px -2px rgba(var(--acc-rgb), 0.55);
}
.ntw-chip.is-hot .ntw-bid {
  background: linear-gradient(90deg, rgba(var(--acc-rgb), 0.22), rgba(192, 132, 252, 0.22));
  color: #fff;
}
.ntw-t1 { font-size: 12.5px; padding: 7px 12px; z-index: 5; }
.ntw-t2 { font-size: 11px; opacity: 0.95; }
.ntw-t3 { font-size: 10.5px; opacity: 0.82; padding: 5px 9px; }

@keyframes ntwChipFloat {
  0%, 100% { margin-top: 0; }
  50%      { margin-top: -4px; }
}

/* ═══ BEAMS from center to each chip ═══ */
.ntw-beam {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--r);
  height: 2px;
  transform-origin: 0 50%;
  transform: rotate(var(--a));
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ntw-beam::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(var(--acc-rgb), 0) 0%,
    rgba(var(--acc-rgb), 0.5) 30%,
    rgba(var(--acc-rgb), 0.85) 100%);
  animation: ntwBeamPulse 3s ease-in-out infinite;
  filter: blur(0.5px);
}
.ntw-beam::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -20%;
  width: 40%;
  height: 6px;
  background: radial-gradient(ellipse at center, rgba(var(--acc-rgb), 0.9), transparent 70%);
  filter: blur(2px);
  animation: ntwBeamTravel 3s ease-in-out infinite;
}
@keyframes ntwBeamPulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.9; }
}
@keyframes ntwBeamTravel {
  0%   { left: -20%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ═══ CORE (WeForAds engine) ═══ */
.ntw-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 140px; height: 140px;
  margin-top: -70px;
  margin-left: -70px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(var(--acc-rgb), 0.35) 0%, rgba(10, 18, 32, 0.9) 50%, rgba(10, 18, 32, 0.98) 100%);
  border: 1px solid rgba(var(--acc-rgb), 0.45);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 40px rgba(var(--acc-rgb), 0.4),
    0 0 80px rgba(var(--acc-rgb), 0.2),
    0 20px 50px -15px rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  animation: ntwCorePulse 4s ease-in-out infinite;
}
.ntw-core::before {
  content: '';
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1px solid rgba(var(--acc-rgb), 0.3);
  animation: ntwCoreRing 4s ease-out infinite;
}
.ntw-core::after {
  content: '';
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  border: 1px solid rgba(var(--acc-rgb), 0.18);
  animation: ntwCoreRing 4s ease-out infinite 1s;
}
@keyframes ntwCorePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}
@keyframes ntwCoreRing {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.ntw-core img {
  width: 38px; height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(var(--acc-rgb), 0.7));
  margin-bottom: 6px;
}
.ntw-core-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.ntw-core-label span {
  font-size: 9.5px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
}

/* ═══ LIVE TICKER ═══ */
.ntw-ticker {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18, 30, 48, 0.95), rgba(10, 18, 32, 0.98));
  border: 1px solid rgba(var(--acc-rgb), 0.3);
  box-shadow:
    0 10px 30px -10px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 20px -4px rgba(var(--acc-rgb), 0.4);
  backdrop-filter: blur(10px);
  font-size: 11.5px;
  z-index: 11;
  white-space: nowrap;
}
.ntw-tick-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  padding: 3px 8px;
  background: rgba(220, 38, 38, 0.28);
  border: 1px solid rgba(220, 38, 38, 0.55);
  border-radius: 999px;
  letter-spacing: 0.12em;
}
.ntw-tick-label::before {
  content: '';
  width: 6px; height: 6px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.9);
  animation: ntwTickDot 1s ease-in-out infinite;
}
@keyframes ntwTickDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.ntw-tick-val {
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(180deg, #fff, var(--acc));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.15s ease;
  letter-spacing: -0.02em;
  min-width: 50px;
}
.ntw-tick-meta {
  font-size: 10.5px;
  color: var(--fg-3);
  font-family: var(--f-mono);
  letter-spacing: 0.01em;
}

/* ═══ HIDE legacy globe classes (just in case stale) ═══ */
.ntw-section .globe-wrap,
.ntw-section .globe-brand,
.ntw-section .globe,
.ntw-section .globe-ring,
.ntw-section .globe-core,
.ntw-section .globe-node,
.ntw-section .globe-glow { display: none !important; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .ntw-wrap { max-width: 500px; }
  .ntw-core { width: 120px; height: 120px; margin-top: -60px; margin-left: -60px; }
  .ntw-chip { font-size: 10.5px; padding: 5px 9px; }
  .ntw-t1 { font-size: 11.5px; padding: 6px 10px; }
}
@media (max-width: 760px) {
  .ntw-wrap { max-width: 420px; }
  .ntw-core { width: 100px; height: 100px; margin-top: -50px; margin-left: -50px; }
  .ntw-core img { width: 30px; height: 30px; }
  .ntw-core-label { font-size: 10px; }
  .ntw-core-label span { font-size: 8.5px; }
  .ntw-chip { font-size: 9.5px; padding: 4px 7px; gap: 5px; }
  .ntw-t1 { font-size: 10px; padding: 5px 8px; }
  .ntw-chip .ntw-bid { font-size: 9px; padding: 2px 4px; }
  .ntw-ticker { font-size: 10px; padding: 6px 10px; gap: 6px; }
  .ntw-tick-val { font-size: 12px; }
}
/* home-mobile.css — comprehensive mobile optimization (overrides home.css + v2/v3/v4) */

/* ═══ GLOBAL OVERFLOW GUARDRAIL ═══
   Kills horizontal scroll sitewide. `overflow-x: clip` is stronger than hidden
   — content truly cannot escape the container's box (hidden still allows
   programmatic scroll which some browsers/CSS effects triggered). */
html, body {
  overflow-x: clip !important;
  max-width: 100vw;
}
body { position: relative; }

/* Every major section — constrain to viewport width so stray wide children
   (3D transforms, absolute-positioned blobs, orbit cards) can't bleed past. */
.hero, .marquee, .section, .impact, .testimonial, .why, .faq, .cta, .footer, .globe-section {
  max-width: 100vw;
  overflow-x: clip;
}

/* ═══ HAMBURGER BUTTON ═══ */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 9px;
  border: 1px solid var(--line-strong);
  background: color-mix(in oklab, var(--bg) 60%, transparent);
  color: var(--fg-2);
  cursor: pointer;
  align-items: center; justify-content: center;
  padding: 0;
  transition: color .2s, border-color .2s;
}
.nav-burger:hover { color: var(--fg); border-color: var(--fg-4); }
.nav-burger svg { width: 20px; height: 20px; }
.nav-burger .icon-x { display: none; }
.nav-burger.open .icon-menu { display: none; }
.nav-burger.open .icon-x { display: block; }

/* ═══ MOBILE DRAWER ═══ */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 92vw);    /* wider — drawer covers most of the screen */
  height: 100dvh;
  background: var(--bg-elev);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  z-index: 90;
  padding: 88px 24px 32px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: -20px 0 60px -10px rgba(0,0,0,0.6);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 2px; }
.nav-drawer li a {
  display: block;
  padding: 14px 14px;
  font-size: 16px; font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  border-radius: 8px;
  border-bottom: 1px solid var(--line-2);
  transition: background .18s, color .18s;
}
.nav-drawer li a:hover,
.nav-drawer li a:active { background: color-mix(in oklab, var(--fg) 5%, transparent); color: var(--acc); }
.nav-drawer .drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.nav-drawer .drawer-actions .btn { width: 100%; justify-content: center; padding: 14px 18px; font-size: 14px; }
.nav-drawer .drawer-actions .nav-login {
  text-align: center;
  padding: 13px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--fg);
}

.nav-overlay {
  position: fixed; inset: 0; z-index: 89;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

body.drawer-open { overflow: hidden; position: fixed; width: 100%; }

/* ═══ BELOW 880px — show hamburger, hide inline nav ═══ */
@media (max-width: 880px) {
  .nav-burger { display: inline-flex; }
  .nav-links { display: none; }
  .nav-actions .nav-login,
  .nav-actions .btn-primary { display: none; }
  .nav { padding: 14px var(--pad-x); }
  .nav-logo { font-size: 15px; }
}

/* ═══ BELOW 760px — tighten hero + typography ═══ */
@media (max-width: 760px) {
  /* hero — force single column + no padding overflow */
  .hero { padding-top: 120px !important; padding-bottom: 64px; min-height: auto !important; padding-left: var(--pad-x) !important; padding-right: var(--pad-x) !important; }
  .hero-inner {
    grid-template-columns: 1fr !important;   /* belt-and-braces vs home-v2's !important */
    gap: 40px !important;
    max-width: 100%;
  }
  .hero-left, .hero-right { min-width: 0; max-width: 100%; }

  /* Kill the word-reveal animation on mobile. The translateY + rotateX + blur
     keyframes briefly push letters off-viewport during animation, triggering
     transient horizontal scroll. Mobile doesn't need the flourish. */
  .hero-title .w {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    display: inline !important;       /* was inline-block — simpler word wrap */
  }
  .hero-title {
    font-size: clamp(38px, 9vw, 52px) !important;
    letter-spacing: -0.03em !important;
    line-height: 1.05 !important;
    text-wrap: balance;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero-sub { font-size: 15.5px; margin-bottom: 28px; max-width: 100%; }
  .eyebrow { font-size: 11.5px; margin-bottom: 20px; }
  .hero-orb {
    width: 320px !important; height: 320px !important;
    top: -60px !important; left: -80px !important;     /* tightened so orb doesn't extend past viewport */
  }
  .hero-cta { flex-wrap: wrap; }
  .hero-cta .btn { padding: 12px 18px; font-size: 13px; }
  .hero-proof { padding-top: 20px; gap: 12px; flex-wrap: wrap; }
  .proof-text { font-size: 12px; min-width: 0; }

  /* scene / dash */
  .scene-flow { display: none; }
  .scene-globe::before { width: 280px !important; height: 280px !important; }
  .sg-ring { width: 240px !important; height: 240px !important; }
  .sg-ring.r2 { width: 190px !important; height: 190px !important; }
  .sg-ring.r3 { width: 150px !important; height: 150px !important; }
  .sg-ring.r4 { width: 260px !important; height: 70px !important; }
  .sg-ring.r5 { width: 290px !important; height: 55px !important; }
  .sg-core { width: 60px !important; height: 60px !important; }
  .dash { max-width: 100% !important; }
  .dash-head { padding: 12px 14px; }
  .dash-label { font-size: 11px; }
  .dash-meta { font-size: 11px; gap: 6px; }
  .dash-lanes { padding: 10px 8px 12px; }
  .lane { grid-template-columns: 24px 82px 1fr 52px; gap: 8px; padding: 6px 8px; }
  .lane-avatar { width: 20px; height: 20px; font-size: 10px; border-radius: 5px; }
  .lane-name { font-size: 12px; }
  .lane-val { font-size: 11.5px; }
  .dash-winner { margin: 4px 8px 10px; padding: 12px 14px; }
  .dash-winner-val { font-size: 22px; }
  .dash-winner-avatar { width: 28px; height: 28px; font-size: 12px; border-radius: 7px; }
  .dash-winner-name { font-size: 12.5px; }
  .dash-winner-lift { font-size: 11px; }
  .dash-foot-item { padding: 12px 10px; }
  .dash-foot-label { font-size: 9.5px; }
  .dash-foot-val { font-size: 15px; }
  .dash-caption { font-size: 11.5px; }

  /* marquee */
  .marquee { padding: 32px 0 40px; }
  .marquee-label { font-size: 10.5px; margin-bottom: 18px; }
  .mq-item { font-size: 14px; }
  .marquee-inner { gap: 24px; padding-right: 24px; }

  /* section base */
  .section { padding: 72px var(--pad-x); }
  .section-head { margin-bottom: 44px; }
  .section-title { font-size: clamp(30px, 7.2vw, 40px) !important; line-height: 1.1 !important; }
  .section-sub { font-size: 15px; }
  .section-eyebrow { font-size: 10.5px; margin-bottom: 14px; }

  /* solutions */
  .sol-grid { gap: 12px !important; }
  .sol-card { padding: 28px 22px 24px !important; min-height: auto; }
  .sol-icon { width: 42px !important; height: 42px !important; margin-bottom: 18px; }
  .sol-icon svg { width: 20px !important; height: 20px !important; }
  .sol-title { font-size: 17px; }
  .sol-desc { font-size: 13.5px; margin-bottom: 18px; }
  .sol-mini-val { font-size: 18px; }

  /* network radar */
  .globe-section { padding: 72px var(--pad-x) !important; gap: 40px !important; }
  .ntw-wrap { max-width: 340px; }
  .ntw-core { width: 90px; height: 90px; margin-top: -45px; margin-left: -45px; }
  .ntw-core img { width: 28px; height: 28px; }
  .ntw-core-label { font-size: 9.5px; }
  .ntw-core-label span { font-size: 8px; }
  .ntw-chip { font-size: 9px; padding: 3px 6px; gap: 4px; }
  .ntw-t1 { font-size: 9.5px; padding: 4px 7px; }
  .ntw-chip .ntw-bid { font-size: 8.5px; padding: 1px 4px; }
  .ntw-ticker { font-size: 10px; padding: 6px 10px; gap: 6px; }
  .ntw-tick-val { font-size: 11.5px; min-width: 44px; }
  .ntw-tick-label { font-size: 9px; padding: 2px 6px; }
  .ntw-tick-meta { font-size: 9.5px; }
  .globe-metrics { grid-template-columns: 1fr 1fr !important; gap: 10px; margin-top: 28px; }
  .gm-card { padding: 16px 18px; }
  .gm-val { font-size: 22px; }
  .gm-label { font-size: 10.5px; }

  /* process */
  .proc-layout { gap: 40px !important; }
  .proc-step { padding: 20px 20px 20px 56px !important; grid-template-columns: 1fr !important; }
  .proc-step .proc-num { top: 22px !important; left: 20px !important; }
  .proc-title { font-size: 16px; }
  .proc-desc { font-size: 13.5px; }
  .proc-time { justify-self: start; margin-top: 8px; font-size: 11px; }

  /* impact */
  .impact { padding: 64px var(--pad-x) !important; gap: 32px !important; }
  .impact-item { padding: 32px 24px !important; }
  .impact-val { font-size: clamp(54px, 14vw, 84px) !important; }
  .impact-val sup { font-size: 0.42em; }
  .impact-val .unit { font-size: 0.38em; }
  .impact-label { font-size: 13px; }
  .impact-desc { font-size: 12.5px; }

  /* testimonial */
  .testimonial { padding: 72px var(--pad-x) !important; gap: 32px !important; }
  .testimonial::before { font-size: 160px !important; top: 20px !important; }
  .testi-quote { font-size: clamp(22px, 5.5vw, 30px) !important; line-height: 1.3 !important; }
  .testi-av { width: 40px; height: 40px; font-size: 12px; }

  /* why */
  .why { padding: 72px var(--pad-x); }
  .why-grid { gap: 12px !important; margin-top: 40px; }
  .why-card { padding: 24px 20px !important; }
  .why-icon { width: 38px !important; height: 38px !important; margin-bottom: 18px; }
  .why-icon svg { width: 18px !important; height: 18px !important; }
  .why-title { font-size: 14.5px; }
  .why-desc { font-size: 12.5px; }

  /* faq */
  .faq { padding: 72px var(--pad-x); }
  .faq-head { margin-bottom: 36px; }
  .faq-q { font-size: 14.5px; padding: 20px 0; gap: 14px; }
  .faq-a-inner { font-size: 13.5px; padding-bottom: 22px; }

  /* cta */
  .cta { padding: 80px var(--pad-x); }
  .cta-title { font-size: clamp(36px, 9vw, 56px) !important; }
  .cta-sub { font-size: 15px; margin-bottom: 28px; }

  /* footer */
  .footer { padding: 48px var(--pad-x) 32px; }
  .ft-top { grid-template-columns: 1fr 1fr !important; gap: 28px !important; margin-bottom: 40px; }
  .ft-brand { grid-column: 1 / -1; font-size: 13px; max-width: none; }
  .ft-col h6 { font-size: 11px; margin-bottom: 12px; }
  .ft-col a { font-size: 13px; }
  .ft-bot { font-size: 11.5px; padding-top: 22px; }
}

/* ═══ BELOW 480px — extra tightening for small phones ═══ */
@media (max-width: 480px) {
  :root { --pad-x: 18px; }
  .nav { padding: 12px var(--pad-x); }
  .nav-wordmark { height: 28px; }
  .nav-mark { width: 30px; height: 30px; }

  .hero { padding-top: 100px !important; }
  .hero-title { font-size: clamp(32px, 9.5vw, 42px) !important; }
  .hero-cta { gap: 8px; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-sub { font-size: 14.5px; }
  .proof-av { width: 26px; height: 26px; font-size: 9px; }
  .hero-orb { width: 280px !important; height: 280px !important; left: -60px !important; }

  /* hide dash caption on very small to save space */
  .dash-caption { display: none; }

  /* stack network copy + viz vertically with radar on top */
  .globe-section { grid-template-columns: 1fr !important; }
  .ntw-wrap { max-width: 280px; order: -1; }

  /* stack impact stats */
  .impact { grid-template-columns: 1fr !important; }

  /* why grid 2-col even on small */
  .why-grid { grid-template-columns: 1fr !important; }

  /* hide mesh-bg blobs for perf on small devices */
  .mesh-bg::before, .mesh-bg::after { opacity: 0.18 !important; filter: blur(80px) !important; }
  .noise-layer { opacity: 0.02; }
}

/* ═══ BELOW 380px — tiny phones ═══ */
@media (max-width: 380px) {
  .hero-title { font-size: 30px !important; }
  .section-title { font-size: 26px !important; }
  .impact-val { font-size: 48px !important; }
  .cta-title { font-size: 32px !important; }
  .ft-top { grid-template-columns: 1fr !important; }
}

/* ═══ TOUCH — kill hover lifts that feel bad on touch ═══ */
@media (hover: none) {
  .sol-card:hover { transform: none !important; }
  .impact-item:hover { transform: none !important; }
  .why-card:hover { transform: none !important; }
  .proc-step:hover { transform: none !important; }
  .gm-card:hover { transform: none !important; }
  .hero-right:hover .dash { transform: none !important; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .mesh-bg::before, .mesh-bg::after { animation: none !important; }
  .hero-title .w { opacity: 1 !important; transform: none !important; filter: none !important; }
}
