/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg: #161c0d; /* Deep Metallic Olive Base */
  --surface: rgba(45, 60, 25, 0.65); /* Glossy Surface */
  --surface-2: #111; /* Locked*/
  --border: rgba(150, 180, 100, 0.15); /* Metallic Highlight */
  --border-m: rgba(150, 180, 100, 0.25);
  --neon: #39ff14;
  --neon-dim: rgba(57, 255, 20, 0.12);
  --neon-glow: rgba(57, 255, 20, 0.4);
  --text: #fdfdfd;
  --muted: #a3b89b; /* Readable Grey-Green */
  --muted-2: #6a7a5f;
  --font-display: "Roboto", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

/* ─── LIGHT MODE TOKENS ──────────────────────────────── */
[data-theme="light"] {
  --bg: #f5f5f0;
  --surface: rgba(230, 235, 220, 0.75);
  --surface-2: #e8e8e3;
  --border: rgba(60, 80, 40, 0.12);
  --border-m: rgba(60, 80, 40, 0.2);
  --neon: #1a8a0e;
  --neon-dim: rgba(26, 138, 14, 0.1);
  --neon-glow: rgba(26, 138, 14, 0.25);
  --text: #1a1a1a;
  --muted: #5a6b52;
  --muted-2: #8a9880;
}

/* ─── LIGHT MODE — Body & Backgrounds ────────────────── */
[data-theme="light"] body {
  background:
    radial-gradient(circle at 50% -20%, rgba(200, 220, 180, 0.25) 0%, transparent 70%),
    radial-gradient(circle at 0% 0%, rgba(210, 225, 190, 0.15) 0%, transparent 50%),
    var(--bg);
}

/* ─── LIGHT MODE — Text Gradient ─────────────────────── */
[data-theme="light"] .text-gradient {
  background: linear-gradient(135deg, #1a8a0e 0%, #2db51e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LIGHT MODE — Navbar ────────────────────────────── */
[data-theme="light"] #main-nav.scrolled {
  background: rgba(245, 245, 240, 0.92);
}
[data-theme="light"] .nav-cta {
  color: #fff;
}
[data-theme="light"] .btn-ghost:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

/* ─── LIGHT MODE — Mobile Menu ───────────────────────── */
[data-theme="light"] .mobile-menu {
  background: rgba(245, 245, 240, 0.98);
}

/* ─── LIGHT MODE — Hero ──────────────────────────────── */
[data-theme="light"] .hero-radial {
  background: radial-gradient(ellipse, rgba(26, 138, 14, 0.06) 0%, transparent 65%);
}
[data-theme="light"] .btn-primary {
  color: #fff;
}
[data-theme="light"] .btn-primary:hover {
  color: #fff;
  box-shadow: 0 8px 32px rgba(26, 138, 14, 0.2);
}

/* ─── LIGHT MODE — Dashboard Mockup ──────────────────── */
[data-theme="light"] .dashboard {
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(26, 138, 14, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .db-titlebar {
  background: rgba(245, 245, 240, 0.95);
}
[data-theme="light"] .db-metric {
  background: var(--surface-2);
}
[data-theme="light"] .db-chart-area {
  background: rgba(245, 245, 240, 0.8);
}
[data-theme="light"] .db-bar {
  background: rgba(26, 138, 14, 0.15);
}
[data-theme="light"] .db-bar:hover {
  background: rgba(26, 138, 14, 0.28);
}
[data-theme="light"] .db-bar.active {
  box-shadow: 0 0 12px rgba(26, 138, 14, 0.3);
}
[data-theme="light"] .db-station-row {
  background: var(--surface-2);
}
[data-theme="light"] .db-station-bar-wrap {
  background: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .db-status-badge {
  background: rgba(26, 138, 14, 0.08);
  border-color: rgba(26, 138, 14, 0.18);
}
[data-theme="light"] .db-chart-tag {
  background: rgba(26, 138, 14, 0.1);
}
[data-theme="light"] .badge-green {
  background: rgba(26, 138, 14, 0.1);
}
[data-theme="light"] .badge-yellow {
  background: rgba(200, 150, 0, 0.1);
  color: #b38600;
}
[data-theme="light"] .badge-red {
  background: rgba(200, 50, 50, 0.1);
  color: #c03030;
}
[data-theme="light"] .ticker-item .val {
  text-shadow: none;
}
[data-theme="light"] .ticker-item .dn {
  color: #c03030;
}
[data-theme="light"] .ticker-item .warning {
  color: #b38600;
}

/* ─── LIGHT MODE — Pulse Bar ─────────────────────────── */
[data-theme="light"] .pulse-bar {
  background: #eeeee8;
}

/* ─── LIGHT MODE — Founder Quote ─────────────────────── */
[data-theme="light"] .founder-blockquote::before {
  color: rgba(26, 138, 14, 0.15);
}

/* ─── LIGHT MODE — Features Grid ─────────────────────── */
[data-theme="light"] .feature-cell {
  background: var(--bg);
}
[data-theme="light"] .feature-cell:hover {
  background: rgba(230, 240, 220, 0.6);
}
[data-theme="light"] .feature-cell::before {
  background: linear-gradient(90deg, transparent, rgba(26, 138, 14, 0.08), transparent);
}

/* ─── LIGHT MODE — How It Works ──────────────────────── */
[data-theme="light"] .hiw-proof-strip {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .hiw-benefit {
  background: rgba(26, 138, 14, 0.04);
}
[data-theme="light"] .hiw-num {
  background: var(--surface);
}
[data-theme="light"] .hiw-num::before {
  background: var(--bg);
}

/* ─── LIGHT MODE — Calculator ────────────────────────── */
[data-theme="light"] .calc-card {
  background: rgba(255, 255, 255, 0.85);
}
[data-theme="light"] .calc-card::before {
  background: radial-gradient(ellipse, rgba(26, 138, 14, 0.04) 0%, transparent 70%);
}
[data-theme="light"] .calc-metric {
  background: rgba(245, 245, 240, 0.9);
}
[data-theme="light"] .toggle-pill {
  background: var(--surface-2);
}
[data-theme="light"] .toggle-opt.active {
  color: #fff;
}

/* ─── LIGHT MODE — Waitlist ──────────────────────────── */
[data-theme="light"] #waitlist::before {
  background: radial-gradient(ellipse, rgba(26, 138, 14, 0.04) 0%, transparent 70%);
}
[data-theme="light"] .waitlist-card {
  background: rgba(255, 255, 255, 0.9);
}
[data-theme="light"] .wl-form input,
[data-theme="light"] .wl-form select {
  background: rgba(245, 245, 240, 0.8);
}
[data-theme="light"] .form-control-dark {
  background: var(--surface-2);
}
[data-theme="light"] .form-control-dark option {
  background: #f5f5f0;
}

/* ─── LIGHT MODE — Pricing ───────────────────────────── */
[data-theme="light"] .pricing-card {
  background: rgba(255, 255, 255, 0.8);
}
[data-theme="light"] .pricing-card.featured {
  background: rgba(240, 250, 235, 0.85);
  border-color: rgba(26, 138, 14, 0.25);
}
[data-theme="light"] .pricing-card.featured:hover {
  border-color: rgba(26, 138, 14, 0.4);
}
[data-theme="light"] .pricing-badge {
  color: #fff;
}
[data-theme="light"] .pricing-cta.featured-cta {
  color: #fff;
}
[data-theme="light"] .pricing-cta.featured-cta:hover {
  box-shadow: 0 4px 20px rgba(26, 138, 14, 0.2);
}

/* ─── LIGHT MODE — Utilities ─────────────────────────── */
[data-theme="light"] .text-warning {
  color: #b38600;
}
[data-theme="light"] .text-error {
  color: #c03030;
}
[data-theme="light"] .bg-surface {
  background: rgba(235, 240, 228, 0.75) !important;
}
[data-theme="light"] .mockup-glow {
  background: radial-gradient(ellipse at 50% 50%, rgba(26, 138, 14, 0.05) 0%, transparent 70%);
}

/* ─── THEME TOGGLE BUTTON ────────────────────────────── */
.theme-toggle {
  background: none;
  border: 1px solid var(--border-m);
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.theme-icon-sun,
.theme-icon-moon {
  width: 18px;
  height: 18px;
}
/* Dark mode: show sun icon to switch to light */
.theme-icon-moon { display: none; }
/* Light mode: show moon icon to switch to dark */
[data-theme="light"] .theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-moon { display: block; }

/* ─── RESET ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background:
    radial-gradient(circle at 50% -20%, #2d381c 0%, transparent 70%),
    /* Center Gloss */
    radial-gradient(circle at 0% 0%, #1a230d 0%, transparent 50%),
    /* Side Sheen */ var(--bg); /* Deep Base */
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────── */
.font-display {
  font-family: var(--font-display);
}
.font-mono {
  font-family: var(--font-mono);
}
.text-neon {
  color: var(--neon);
}
.text-muted-c {
  color: var(--muted);
}

.text-gradient {
  background: linear-gradient(135deg, var(--neon) 0%, #a8ff78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ──────────────────────────────────────────── */
.section-pad {
  padding: 100px 0;
}
.section-pad-sm {
  padding: 72px 0;
}
.container-tight {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--neon);
}

/* ─── NAVBAR ──────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition:
    padding 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
#main-nav.scrolled {
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-icon {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 5px var(--neon));
  animation: pulse-icon 2.4s ease-in-out infinite;
}
@keyframes pulse-icon {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(0.92);
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  background: var(--neon);
  color: #000;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.7px, 4.7px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.7px, -4.7px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--neon);
}

/* ─── HERO ────────────────────────────────────────────── */
#hero {
  padding: 160px 0 60px; /* Reduced bottom padding */
  position: relative;
  overflow: visible; /* Changed from hidden to allow overlap */
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-radial {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(
    ellipse,
    rgba(57, 255, 20, 0.06) 0%,
    transparent 65%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 70% 30%,
    black 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 70% 30%,
    black 0%,
    transparent 70%
  );
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-m);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-eyebrow .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon);
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon);
  color: #000;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(57, 255, 20, 0.25);
  color: #000;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 7px;
  border: 1px solid var(--border-m);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted-2);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted-2);
}

/* ─── DASHBOARD MOCKUP ────────────────────────────────── */
.mockup-wrap {
  position: relative;
  margin-bottom: -120px; /* Overlap into the next section */
  z-index: 20;
}
.mockup-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(57, 255, 20, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.dashboard {
  background: rgba(14, 20, 10, 0.95);
  border: 1px solid var(--border-m);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(57, 255, 20, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.7);
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.db-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 6, 0.9);
}
.db-dots {
  display: flex;
  gap: 5px;
}
.db-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.db-dot-r {
  background: #ff5f57;
}
.db-dot-y {
  background: #febc2e;
}
.db-dot-g {
  background: #28c840;
}
.db-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted-2);
  margin-left: 6px;
}
.db-status-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--neon);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.18);
  padding: 2px 8px;
  border-radius: 100px;
}
.db-status-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.db-body {
  padding: 16px;
}

.db-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.db-metric {
  background: #111; /* Surface-2 */
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.db-metric-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.db-metric-value {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.db-metric-value.neon {
  color: var(--neon);
}
.db-metric-delta {
  font-size: 9px;
  color: var(--neon);
  margin-top: 2px;
}

.db-chart-area {
  background: rgba(10, 14, 6, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}
.db-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.db-chart-title {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.db-chart-tag {
  font-size: 9px;
  font-family: var(--font-mono);
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon);
  padding: 2px 7px;
  border-radius: 4px;
}
.db-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 56px;
}
.db-bar {
  flex: 1;
  background: rgba(57, 255, 20, 0.18);
  border-radius: 2px 2px 0 0;
  position: relative;
  transition: background 0.3s;
  animation: bar-grow 0.8s ease both;
}
.db-bar:hover {
  background: rgba(57, 255, 20, 0.32);
}
.db-bar.active {
  background: var(--neon);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}
@keyframes bar-grow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.db-stations {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.db-station-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.db-station-name {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  flex: 1;
}
.db-station-bar-wrap {
  flex: 2;
  height: 3px;
  background: #222;
  border-radius: 2px;
  overflow: hidden;
}
.db-station-bar-fill {
  height: 100%;
  border-radius: 2px;
  animation: fill-bar 1s ease both;
}
@keyframes fill-bar {
  from {
    width: 0 !important;
  }
}
.db-station-badge {
  font-size: 9px;
  font-family: var(--font-mono);
  padding: 2px 7px;
  border-radius: 4px;
}
.badge-green {
  background: rgba(57, 255, 20, 0.12);
  color: var(--neon);
}
.badge-yellow {
  background: rgba(255, 200, 0, 0.12);
  color: #ffc800;
}
.badge-red {
  background: rgba(255, 60, 60, 0.12);
  color: #ff3c3c;
}

/* ─── LIVE OPERATIONS PULSE (ANIMATED TICKER) ────────── */
.pulse-bar {
  background: #060606;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marquee 60s linear infinite;
  padding-left: 100%; /* Initial offset */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* Scrolls half-way since we double the content in JS */
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-item .val {
  color: var(--neon);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.25);
}

.ticker-item .up {
  color: var(--neon);
  font-size: 10px;
}
.ticker-item .dn {
  color: #ff5050;
  font-size: 10px;
  font-weight: 700;
}
.ticker-item .warning {
  color: #ffc800;
  font-weight: 700;
}
.ticker-item .stable {
  color: var(--muted);
  font-size: 10px;
}

.ticker-sep {
  color: var(--muted-2);
  opacity: 0.4;
  margin: 0 10px;
}

/* ─── FOUNDER QUOTE ───────────────────────────────────── */
.founder-quote {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.founder-blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
  position: relative;
}
.founder-blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 60px;
  color: var(--neon-dim);
  opacity: 0.4;
}
.founder-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.founder-line {
  width: 40px;
  height: 2px;
  background: var(--neon);
}
.founder-name {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ─── FEATURES ────────────────────────────────────────── */
#features {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-cell {
  background: var(--bg);
  padding: 40px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-cell:hover {
  background: rgba(50, 70, 30, 0.2);
}
.feature-cell:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--neon-dim);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--neon);
}
.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-2);
}

/* ─── HOW IT WORKS ────────────────────────────────────── */
#how-it-works {
  background: var(--surface);
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Vertical line connecting steps */
.hiw-steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--border-m) 10%,
    var(--border-m) 90%,
    transparent
  );
}

.hiw-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hiw-step {
  position: relative;
  z-index: 2;
}

.hiw-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  width: fit-content;
  padding-right: 12px;
}

.hiw-num::before {
  content: "";
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-m);
  border-radius: 50%;
  background: var(--bg);
  position: absolute;
  left: -20px;
  z-index: -1;
}

.hiw-step-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hiw-step-h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  display: block;
}

.hiw-step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Benefit / So What Section */
.hiw-benefit {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--neon);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
}

.hiw-benefit-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 6px;
  display: block;
}

.hiw-benefit-text {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

/* Proof Strips (Visuals) */
.hiw-visual-wrap {
  position: relative;
}

.hiw-visual-wrap::before {
  content: "";
  position: absolute;
  inset: -15px;
  background: radial-gradient(
    circle at center,
    var(--neon-dim) 0%,
    transparent 70%
  );
  opacity: 0.6;
  pointer-events: none;
}

.hiw-proof-strip {
  border: 1px solid var(--border-m);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hiw-row:nth-child(even) .hiw-proof-strip {
  transform: perspective(1000px) rotateY(8deg) rotateX(4deg);
}

/* Swap column order for even rows to alternate visuals */
.hiw-row:nth-child(even) .hiw-step {
  grid-column: 2;
}

.hiw-row:nth-child(even) .hiw-visual-wrap {
  grid-column: 1;
  grid-row: 1;
}

.hiw-row:hover .hiw-proof-strip {
  transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02);
}

.hiw-proof-strip img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── CALCULATOR ──────────────────────────────────────── */
#calculator {
  background: var(--bg);
}
.calc-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.calc-card {
  background: rgba(22, 28, 13, 0.8);
  border: 1px solid var(--border-m);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.calc-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    ellipse,
    rgba(57, 255, 20, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.calc-slider-label span:first-child {
  font-size: 13px;
  color: var(--muted);
}
.calc-count {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.03em;
}
.calc-count .unit {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

#station-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--border-m);
  border-radius: 2px;
  outline: none;
  margin-bottom: 40px;
}
#station-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neon);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.15);
  transition: box-shadow 0.2s;
}
#station-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 7px rgba(57, 255, 20, 0.12);
}
#station-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neon);
  border: none;
  cursor: pointer;
}

.calc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.calc-metric {
  background: rgba(10, 14, 6, 0.85);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.3s;
}
.calc-metric:hover {
  border-color: rgba(57, 255, 20, 0.2);
}
.calc-metric-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  margin-bottom: 10px;
}
.calc-metric-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.calc-metric-sub {
  font-size: 11px;
  color: var(--muted-2);
}

.calc-toggle-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 24px;
}
.calc-toggle-label {
  font-size: 12px;
  color: var(--muted);
}
.toggle-pill {
  display: flex;
  background: #111;
  border: 1px solid var(--border-m);
  border-radius: 100px;
  overflow: hidden;
}
.toggle-opt {
  padding: 5px 14px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  border-radius: 100px;
}
.toggle-opt.active {
  background: var(--neon);
  color: #000;
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--muted-2);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-style: italic;
}

/* ─── WAITLIST ────────────────────────────────────────── */
#waitlist {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
#waitlist::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(57, 255, 20, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.waitlist-card {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(14, 20, 10, 0.85); /* Glossy Dark Olive */
  border: 1px solid var(--border-m);
  border-radius: 16px;
  padding: 48px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.waitlist-h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.waitlist-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wl-form .input-group {
  margin-bottom: 0;
}
.wl-form input,
.wl-form select {
  width: 100%;
  background: rgba(10, 14, 6, 0.6);
  border: 1px solid var(--border-m);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.wl-form input:focus,
.wl-form select:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.1);
}
.wl-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b6b6b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
}
.w-full {
  width: 100%;
}
.mt-12 {
  margin-top: 12px;
}
.mt-24 {
  margin-top: 24px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-24 {
  margin-bottom: 24px;
}
.text-start {
  text-align: left;
}
.ms-12 {
  margin-left: 12px;
}
.me-2 {
  margin-right: 8px;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.form-control-dark {
  width: 100%;
  background: #111;
  border: 1px solid var(--border-m);
  border-radius: 7px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control-dark:focus {
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.08);
}
.form-control-dark::placeholder {
  color: var(--muted-2);
}
select.form-control-dark {
  cursor: pointer;
}
select.form-control-dark option {
  background: #111;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  background: var(--neon);
  color: #000;
  border: none;
  border-radius: 7px;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition:
    opacity 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  letter-spacing: -0.01em;
}
.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(57, 255, 20, 0.3);
}
.submit-btn:active {
  transform: translateY(0);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success .success-icon {
  width: 56px;
  height: 56px;
  background: var(--neon-dim);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.form-success p {
  font-size: 14px;
  color: var(--muted);
}

/* ─── PRICING ─────────────────────────────────────────── */
#pricing {
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(22, 28, 13, 0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pricing-card:hover {
  border-color: var(--neon-dim);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: rgba(57, 255, 20, 0.3);
  background: rgba(30, 45, 10, 0.75);
}
.pricing-card.featured:hover {
  border-color: rgba(57, 255, 20, 0.5);
}
.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon);
  color: #000;
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-price .period {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--muted);
  letter-spacing: 0;
}
.pricing-price .period {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--muted);
  letter-spacing: 0;
}
.pricing-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.pricing-features li .check {
  color: var(--neon);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-m);
  background: transparent;
  color: var(--muted);
  transition: all 0.2s;
}
.pricing-cta:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}
.pricing-cta.featured-cta {
  background: var(--neon);
  color: #000;
  border-color: transparent;
}
.pricing-cta.featured-cta:hover {
  opacity: 0.88;
  box-shadow: 0 4px 20px rgba(57, 255, 20, 0.25);
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.logo-os-accent {
  color: var(--neon);
  font-size: 1.25em;
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-m);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.footer-social:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 48px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted-2);
  font-family: var(--font-mono);
}
.footer-made {
  font-size: 12px;
  color: var(--muted-2);
  font-family: var(--font-mono);
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 {
  transition-delay: 0.1s;
}
.fade-up.delay-2 {
  transition-delay: 0.2s;
}
.fade-up.delay-3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 48px;
  }
  .mockup-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hiw-steps {
    gap: 64px;
  }
  .hiw-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hiw-benefit-text {
    width: 100%;
  }
  .hiw-connector {
    display: none;
  }

  /* ── 5. HIW: Cancel even-row column swap in single-column ── */
  .hiw-row:nth-child(even) .hiw-step {
    grid-column: auto;
  }
  .hiw-row:nth-child(even) .hiw-visual-wrap {
    grid-column: auto;
    grid-row: auto;
  }

  /* ── 5. HIW: Cancel 3D perspective on proof strips ── */
  .hiw-proof-strip,
  .hiw-row:nth-child(even) .hiw-proof-strip {
    transform: none;
  }
  .hiw-row:hover .hiw-proof-strip {
    transform: scale(1.02);
  }

  /* ── 5. HIW: Reposition vertical connecting line ── */
  .hiw-steps::before {
    left: 12px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .calc-metrics {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {

  /* ── 1. Hero Section ────────────────────────────────── */
  #hero {
    padding: 120px 0 80px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .hero-trust-dot {
    display: none;
  }
  .mockup-wrap {
    margin-bottom: -60px;
  }
  .dashboard {
    animation: none;
  }
  .hero-h1 {
    font-size: 36px;
  }

  /* ── 2. Ticker / Pulse Bar ──────────────────────────── */
  .pulse-bar {
    padding: 14px 0;
  }
  .ticker-item {
    font-size: 10px;
    gap: 8px;
  }

  /* ── 3. Founder Quote ───────────────────────────────── */
  .founder-blockquote {
    font-size: 20px;
  }
  .founder-blockquote::before {
    font-size: 40px;
    top: -10px;
    left: -8px;
  }

  /* ── 4. Features Grid ───────────────────────────────── */
  .feature-cell {
    padding: 28px;
  }
  .feature-title {
    font-size: 17px;
  }
  .feature-desc {
    font-size: 13px;
    line-height: 1.7;
  }
  .feature-number {
    font-size: 10px;
    bottom: 14px;
    right: 16px;
  }

  /* ── 5. How It Works ────────────────────────────────── */
  .hiw-steps {
    gap: 48px;
  }
  .hiw-step-title {
    font-size: 22px;
  }
  .hiw-step-desc {
    font-size: 14px;
  }
  .hiw-benefit {
    padding: 12px 16px;
  }

  /* ── 6. ROI Calculator ──────────────────────────────── */
  .calc-card {
    padding: 28px 24px;
  }
  .calc-metric {
    padding: 16px;
  }
  .calc-metric-value {
    font-size: 20px;
  }
  .calc-metric-label {
    font-size: 10px;
  }
  .calc-count {
    font-size: 20px;
  }
  .calc-slider-label span:first-child {
    font-size: 12px;
  }
  .calc-toggle-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* ── 7. Waitlist Form ───────────────────────────────── */
  .waitlist-card {
    padding: 32px 24px;
  }
  .waitlist-h {
    font-size: 24px;
  }
  .waitlist-sub {
    font-size: 13px;
  }
  .wl-form input,
  .wl-form select {
    padding: 14px 16px;
    font-size: 15px;
  }
  .btn-primary.w-full {
    min-height: 50px;
    font-size: 15px;
  }
  .form-success {
    padding: 24px 0;
  }
  .form-success h3 {
    font-size: 20px;
  }
  .success-steps {
    font-size: 13px;
  }

  /* ── 8. Pricing ─────────────────────────────────────── */
  .pricing-card {
    padding: 28px 24px;
  }
  .pricing-price {
    font-size: 30px;
  }
  .pricing-features li {
    font-size: 13px;
  }
  .pricing-grid {
    max-width: 100%;
  }

  /* ── 9. Footer ──────────────────────────────────────── */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .footer-bottom {
    padding: 20px 24px 0;
  }
  .footer-links a {
    padding: 6px 0;
    display: inline-block;
  }
  .footer-social {
    width: 36px;
    height: 36px;
  }

  /* ── 10. Global Mobile Polish ───────────────────────── */
  .section-pad {
    padding: 72px 0;
  }
  .section-intro {
    font-size: 14px;
    max-width: 100%;
  }
  #features,
  #how-it-works,
  #calculator,
  #waitlist,
  #pricing {
    scroll-margin-top: 80px;
  }

  /* Touch Targets */
  .btn-primary,
  .btn-ghost {
    min-height: 48px;
  }
  .nav-cta {
    min-height: 44px;
  }
  .hamburger {
    display: flex;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
  }

  /* Navbar & Mobile Menu */
  .nav-links,
  .nav-cta {
    display: none;
  }
  .mobile-menu a {
    font-size: 26px;
  }
  .mobile-menu a.text-accent {
    font-weight: 700;
  }
  .mobile-link:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
}

/* ── 480px — Extra-small screen refinements ──────────── */
@media (max-width: 480px) {
  .mockup-wrap {
    margin-bottom: 0;
  }
  .db-metric-value {
    font-size: 13px;
  }
  .db-station-name {
    font-size: 9px;
  }
  .db-metrics {
    gap: 6px;
  }
  .section-h2 {
    font-size: 26px;
  }
}

/* ─── UTILITIES & ACCENTS ─────────────────────────────── */
.text-accent {
  color: var(--neon);
}
.text-warning {
  color: #ffc800;
}
.text-error {
  color: #ff5050;
}
.text-muted {
  color: var(--muted);
}
.bg-surface {
  background: var(--surface) !important;
}

.container-wide {
  max-width: 1100px !important;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.justify-center {
  justify-content: center;
}

.mb-52 {
  margin-bottom: 52px;
}
.mb-48 {
  margin-bottom: 48px;
}
.fs-14 {
  font-size: 14px;
}
.fs-28 {
  font-size: 28px;
}

.hero-check {
  color: var(--neon);
  font-size: 11px;
  font-weight: bold;
}
.db-unit {
  font-size: 10px;
  color: var(--muted);
  margin-left: 2px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-h2.mb-lg {
  margin-bottom: 56px;
}
.section-h2.mb-md {
  margin-bottom: 12px;
}

.section-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.75;
}
.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
}
.section-intro.mb-sm {
  margin-bottom: 0;
}

.db-station-bar-fill.warning {
  background: #ffc800 !important;
}
.db-station-bar-fill.neon {
  background: var(--neon) !important;
}
.db-station-bar-fill.on-track {
  width: 72% !important;
  background: var(--neon);
}
.db-station-bar-fill.exceeds {
  width: 88% !important;
  background: var(--neon);
}
.db-station-bar-fill.near {
  width: 41% !important;
  background: #ffc800;
}

/* ── ADDITIONAL UTILITIES ────────────────────────────── */
.mt-48 {
  margin-top: 48px;
}
.calc-unit-small {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  margin-left: 2px;
}
