* { box-sizing: border-box; }

:root {
  --bg: #060816;
  --bg2: #0b1022;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f8ff;
  --muted: #b4bdd5;
  --soft: #8591b3;
  --accent: #89a8ff;
  --accent-2: #73f0ff;
  --accent-3: #9d7dff;
  --danger: #ff8f9d;
  --success: #a2ffcf;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --max: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  .chart-line {
    transition: none;
    stroke-dashoffset: 0;
  }

  .impact-item,
  .info-card,
  .news-card,
  .story-card,
  .economics-stat,
  .about-value-card {
    animation: none;
  }

  .impact-item::before,
  .info-card::before,
  .news-card::before,
  .story-card::before,
  .economics-stat::before,
  .about-value-card::before {
    animation: none;
    transition: none;
  }

  .chart-point,
  .chart-label {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .earnings-chart .chart-point.is-final circle,
  .take-chart .chart-point.is-final circle {
    animation: none;
  }
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(115, 240, 255, 0.1), transparent 0 24%),
    radial-gradient(circle at 85% 15%, rgba(137, 168, 255, 0.16), transparent 0 25%),
    radial-gradient(circle at 50% 80%, rgba(157, 125, 255, 0.12), transparent 0 28%),
    linear-gradient(180deg, #050813 0%, #081022 45%, #05070f 100%);
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient-1 { width: 360px; height: 360px; left: -8%; top: 6%; background: var(--accent-2); }
.ambient-2 { width: 460px; height: 460px; right: -12%; top: 12%; background: var(--accent); }
.ambient-3 { width: 380px; height: 380px; left: 35%; bottom: -12%; background: var(--accent-3); }

.grid-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.sticky-join-tab {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 18px;
  border: 1px solid rgba(115, 240, 255, 0.24);
  background: linear-gradient(180deg, rgba(12, 18, 36, 0.92), rgba(15, 26, 48, 0.92));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.sticky-join-tab:hover {
  color: #ffffff;
  border-color: rgba(115, 240, 255, 0.38);
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(9, 12, 24, 0.58);
  box-shadow: var(--shadow);
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
  box-shadow: 0 0 18px rgba(115, 240, 255, 0.55);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-cta {
  color: var(--text) !important;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  padding: 68px 0 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-copy,
.section-head,
.signup-copy {
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dde4f8;
  font-size: 0.84rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(115, 240, 255, 0.8);
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  max-width: 780px;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(135deg, #fff 0%, var(--accent-2) 18%, var(--accent) 60%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 5s linear infinite;
  background-size: 200% auto;
}

.hero-sub {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.12rem;
  line-height: 1.8;
  text-wrap: balance;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

.count-pill {
  padding: 20px 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  min-height: 122px;
}

.count-pill strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.count-label {
  display: block;
  color: var(--soft);
  font-size: 0.78rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.muted-pill strong {
  color: #edf3ff;
}

.accent-pill {
  background: linear-gradient(135deg, rgba(137, 168, 255, 0.18), rgba(115, 240, 255, 0.1));
  border-color: rgba(115, 240, 255, 0.18);
}

.hero-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.chip {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.chip-label {
  display: block;
  color: var(--soft);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 18px;
  padding: 16px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #03101c;
  background: linear-gradient(135deg, #fff, var(--accent-2) 30%, var(--accent) 75%, #d8e3ff);
  box-shadow: 0 14px 36px rgba(137, 168, 255, 0.26);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--soft);
  font-size: 0.93rem;
  justify-content: flex-start;
}

.hero-meta span::before {
  content: "*";
  margin-right: 8px;
  color: var(--accent-2);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 760px;
  padding-top: 220px;
  overflow: visible;
}

.hero-cab {
  position: absolute;
  top: -132px;
  right: -40px;
  z-index: 4;
  width: clamp(352px, 36.8vw, 512px);
  pointer-events: none;
  opacity: 0.98;
  animation: heroCabArrival 3.6s cubic-bezier(0.18, 0.84, 0.24, 1) 0.25s forwards;
  transform: translate3d(calc(100vw + 100%), 0, 0);
}

.hero-cab.drive-in {
  animation: heroCabArrival 3.6s cubic-bezier(0.18, 0.84, 0.24, 1) 0.25s forwards;
}

.hero-cab-asset {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 28px rgba(115, 240, 255, 0.14));
}

.dashboard {
  position: relative;
  width: min(100%, 560px);
  border-radius: 32px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  margin: 0 auto;
}

.dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(circle at top right, rgba(115, 240, 255, 0.1), transparent 28%);
  pointer-events: none;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.dashboard-kicker {
  color: var(--soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.dashboard-top h3 {
  margin: 0;
  font-size: 1.28rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dce4f8;
  font-size: 0.88rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 14px rgba(162, 255, 207, 0.85);
  animation: pulse 2.2s ease-in-out infinite;
}

.metric-card {
  border-radius: 24px;
  padding: 18px 20px;
  background: rgba(6, 9, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-row:last-child { border-bottom: 0; }
.metric-row span { color: var(--muted); }
.metric-row strong { font-size: 1.04rem; }
.metric-row.danger strong { color: var(--danger); }
.metric-row.success strong { color: var(--success); }

.signal-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.signal-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-3));
  animation: fillPulse 3.5s ease-in-out infinite;
}

.floating-note {
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(137, 168, 255, 0.16), rgba(115, 240, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: floaty 5s ease-in-out infinite;
}

.floating-label {
  color: var(--soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.floating-copy {
  font-weight: 700;
  color: #eef5ff;
}

.impact-strip {
  padding: 18px 0 10px;
}

.impact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.impact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(7, 10, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.impact-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.impact-item strong {
  display: block;
  font-size: 1.24rem;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.impact-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 88px 0;
}

.section-head {
  width: 100%;
  max-width: none;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 1080px;
  text-wrap: balance;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
  max-width: 760px;
  text-wrap: balance;
}

.card-grid.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card,
.news-card,
.statement-card,
.signup-card,
.story-card,
.success-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.info-card {
  padding: 24px;
  border-radius: 24px;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
}

.info-card p,
.news-card p,
.statement-card p,
.signup-copy p,
.story-card p,
.success-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.quote-card p {
  font-size: 1.04rem;
  color: #edf3ff;
}

.story-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

.story-card {
  padding: 24px;
  border-radius: 24px;
}

.story-step {
  color: var(--soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.story-value {
  margin-top: 18px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.red-value { color: var(--danger); }
.green-value { color: var(--success); }
.muted-value { color: #dfe7ff; font-size: 1.2rem; }

.story-arrow {
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--accent-2);
  opacity: 0.8;
}

.cost-pressure-card {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 166, 120, 0.22);
  background: linear-gradient(135deg, rgba(255, 166, 120, 0.16), rgba(255, 111, 97, 0.1));
  box-shadow: 0 20px 50px rgba(255, 120, 86, 0.14);
}

.cost-pressure-kicker {
  margin-bottom: 8px;
  color: #ffd2bd;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.cost-pressure-card h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  color: #fff2ea;
}

.cost-pressure-card p {
  margin: 0;
  max-width: 720px;
  color: #ffe2d5;
  font-size: 0.98rem;
  line-height: 1.6;
}

.question-banner {
  margin-top: 28px;
  text-align: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}

.about-grid {
  display: grid;
  gap: 24px;
}

.about-value-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 100%;
}

.about-copy p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-quote {
  text-align: center;
  max-width: 900px;
  margin: 4px auto 0;
}

.about-quote p {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-2) 22%, var(--accent) 68%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: balance;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.signup-copy > p,
.signup-proof p {
  max-width: 760px;
}

.impact-item,
.info-card,
.news-card,
.story-card,
.economics-stat,
.about-value-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: cardFramePulse 14s ease-in-out infinite;
}

.about-value-card {
  padding: 24px;
  border-radius: 24px;
}

.impact-item::before,
.info-card::before,
.news-card::before,
.story-card::before,
.economics-stat::before,
.about-value-card::before {
  content: "";
  position: absolute;
  inset: -24%;
  border-radius: inherit;
  background:
    radial-gradient(circle at center, rgba(115, 240, 255, 0.22), rgba(137, 168, 255, 0.08) 34%, transparent 62%),
    linear-gradient(135deg, transparent 12%, rgba(255, 255, 255, 0.08) 48%, transparent 78%);
  transform: rotate(-10deg) scale(0.92);
  opacity: 0;
  animation: cardShadeSweep 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.about-value-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.about-value-card > * {
  position: relative;
  z-index: 1;
}

.impact-item:hover::before,
.impact-item:focus-within::before,
.info-card:hover::before,
.info-card:focus-within::before,
.news-card:hover::before,
.news-card:focus-within::before,
.story-card:hover::before,
.story-card:focus-within::before,
.economics-stat:hover::before,
.economics-stat:focus-within::before,
.about-value-card:hover::before,
.about-value-card:focus-within::before {
  opacity: 1;
}

.about-value-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.about-value-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.about-value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.impact-strip-grid > *:nth-child(2),
.card-grid.four > *:nth-child(2),
.news-grid > *:nth-child(2),
.economics-stats > *:nth-child(2),
.about-values > *:nth-child(2) {
  animation-delay: 2.2s;
}

.impact-strip-grid > *:nth-child(3),
.card-grid.four > *:nth-child(3),
.news-grid > *:nth-child(3),
.economics-stats > *:nth-child(3),
.about-values > *:nth-child(3) {
  animation-delay: 4.4s;
}

.impact-strip-grid > *:nth-child(4),
.card-grid.four > *:nth-child(4),
.news-grid > *:nth-child(4),
.economics-stats > *:nth-child(4) {
  animation-delay: 6.6s;
}

.story-flow .story-card:nth-of-type(1) {
  animation-delay: 0s;
}

.story-flow .story-card:nth-of-type(2) {
  animation-delay: 2.2s;
}

.story-flow .story-card:nth-of-type(3) {
  animation-delay: 4.4s;
}

.story-flow .story-card:nth-of-type(4) {
  animation-delay: 6.6s;
}

.statement-card {
  border-radius: 28px;
  padding: 28px;
}

.statement-tag {
  color: var(--soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.statement-card blockquote {
  margin: 18px 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.news-card {
  text-decoration: none;
  color: var(--text);
  padding: 24px;
  border-radius: 24px;
}

.news-tag {
  display: inline-flex;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #dde6f8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.news-card h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
}

.news-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-2);
  font-weight: 700;
}

.signup-section {
  padding-bottom: 110px;
}

.signup-section-top {
  padding-top: 34px;
}

.site-footer {
  padding: 28px 0 42px;
}

.admin-body {
  min-height: 100vh;
}

.admin-main {
  padding: 56px 0 72px;
}

.admin-shell {
  display: grid;
  gap: 24px;
}

.admin-auth-card,
.admin-dashboard,
.admin-stat-card,
.admin-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.admin-auth-card,
.admin-dashboard {
  border-radius: 30px;
  padding: 30px;
}

.admin-auth-card {
  max-width: 560px;
}

.admin-auth-card h1,
.admin-dashboard h1 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.admin-auth-card > p,
.admin-dashboard-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-form label {
  display: grid;
  gap: 8px;
}

.admin-form span {
  color: #edf3ff;
  font-size: 0.95rem;
  font-weight: 600;
}

.admin-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(4, 8, 20, 0.65);
  color: var(--text);
  font: inherit;
}

.admin-form input:focus {
  outline: none;
  border-color: rgba(115, 240, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(115, 240, 255, 0.12);
}

.admin-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.admin-stat-card {
  border-radius: 24px;
  padding: 22px;
}

.admin-stat-card span {
  display: block;
  color: var(--soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.admin-stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.05em;
}

.admin-table-wrap {
  overflow: auto;
  border-radius: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table th {
  color: #edf3ff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.admin-table td {
  color: var(--muted);
  line-height: 1.55;
}

.admin-empty {
  text-align: center !important;
  color: var(--soft) !important;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.footer-brand-block {
  display: grid;
  gap: 10px;
}

.footer-brand {
  width: fit-content;
}

.footer-tagline,
.footer-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-tagline {
  font-size: 0.98rem;
}

.footer-copy {
  font-size: 0.92rem;
  text-align: right;
}

.signup-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: start;
}

.signup-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.signup-copy p {
  text-wrap: balance;
}

.signup-proof {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(135deg, rgba(137, 168, 255, 0.14), rgba(115, 240, 255, 0.09));
}

.signup-proof strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.signup-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.signup-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.signup-list li::before {
  content: "+";
  color: var(--accent-2);
}

.signup-panel {
  display: grid;
  gap: 18px;
}

.signup-card,
.success-card {
  border-radius: 28px;
  padding: 22px;
  background: rgba(7, 10, 20, 0.76);
}

.signup-card label {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.signup-card span {
  color: #dee6f8;
  font-size: 0.92rem;
  font-weight: 600;
}

.signup-card input[type="text"],
.signup-card input[type="tel"],
.signup-card input[type="email"] {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
  font: inherit;
}

.signup-card input[type="text"]::placeholder,
.signup-card input[type="tel"]::placeholder,
.signup-card input[type="email"]::placeholder { color: #93a0c2; }

.signup-card input[type="text"]:focus,
.signup-card input[type="tel"]:focus,
.signup-card input[type="email"]:focus {
  border-color: rgba(115, 240, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(115, 240, 255, 0.08);
}

.submit-btn {
  width: 100%;
  margin-top: 8px;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 700;
}

.form-message.error { color: var(--danger); }
.form-message.success { color: var(--success); }

.success-card h3 {
  margin: 8px 0 12px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.success-kicker {
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.success-card .btn {
  width: 100%;
  margin-top: 18px;
}

.success-note {
  margin-top: 14px;
  color: var(--soft);
  font-size: 0.92rem;
}

.signup-choice-group {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.signup-choice-group legend {
  margin-bottom: 10px;
  color: #dee6f8;
  font-size: 0.92rem;
  font-weight: 600;
}

.choice-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.choice-pill {
  position: relative;
  flex: 1 1 0;
  min-width: 120px;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 700;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  cursor: pointer;
}

.choice-pill input:checked + span {
  color: #03101c;
  border-color: rgba(115, 240, 255, 0.5);
  background: linear-gradient(135deg, #fff, var(--accent-2) 30%, var(--accent) 85%);
  box-shadow: 0 12px 28px rgba(115, 240, 255, 0.18);
}

.choice-pill span:hover {
  transform: translateY(-1px);
}

.field-hint {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.economics-section {
  padding-top: 12px;
}

.economics-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(115, 240, 255, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 100, 121, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(10, 14, 28, 0.95), rgba(7, 10, 18, 0.94));
  box-shadow: var(--shadow);
}

.economics-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.economics-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 28px;
}

.economics-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.chart-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 18, 0.74);
}

.chart-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -65% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.22;
  pointer-events: none;
}

.earnings-chart::after {
  background: rgba(255, 100, 121, 0.55);
}

.take-chart::after {
  background: rgba(115, 240, 255, 0.48);
}

.chart-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.chart-copy p {
  max-width: 210px;
  margin: 0;
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: right;
}

.chart-kicker {
  margin-bottom: 8px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.chart-live-value {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.earnings-chart .chart-live-value {
  color: #ffd4db;
}

.take-chart .chart-live-value {
  color: #dbfbff;
}

.chart-surface {
  position: relative;
  min-height: 280px;
}

.economics-svg {
  display: block;
  width: 100%;
  height: auto;
}

.chart-grid-lines line {
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}

.chart-area {
  opacity: 0.88;
}

.chart-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  path-length: 100;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.economics-svg.is-animated .chart-line {
  stroke-dashoffset: 0;
}

.chart-point,
.chart-label {
  opacity: 0;
  transform: translateY(8px);
  transform-box: fill-box;
  transform-origin: center;
}

.economics-svg.is-animated .chart-point,
.economics-svg.is-animated .chart-label {
  animation: chartFadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--point-delay, 0ms);
}

.economics-svg.is-animated .chart-label {
  animation-delay: var(--label-delay, 0ms);
}

.chart-point circle {
  fill: #fff;
  stroke: rgba(8, 12, 22, 0.8);
  stroke-width: 3;
}

.earnings-chart .chart-point.is-final circle {
  fill: #ff8f9d;
  filter: drop-shadow(0 0 10px rgba(255, 143, 157, 0.55));
  animation: endpointPulseRed 2.2s ease-in-out infinite;
}

.take-chart .chart-point.is-final circle {
  fill: #73f0ff;
  filter: drop-shadow(0 0 10px rgba(115, 240, 255, 0.55));
  animation: endpointPulseBlue 2.2s ease-in-out infinite;
}

.chart-year,
.chart-label text,
.chart-timeline {
  fill: #dfe6fb;
  font-size: 11px;
  font-family: "Inter", sans-serif;
}

.chart-year {
  fill: #90a0c5;
}

.chart-label.emphasis text {
  font-weight: 800;
}

.chart-timeline {
  fill: #aeb8d6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.economics-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.economics-stat {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.economics-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}

.economics-stat span {
  color: var(--muted);
  line-height: 1.5;
}

.economics-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.economics-summary-lines,
.economics-movement {
  border-radius: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.economics-summary-lines p,
.economics-movement p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.economics-summary-lines p + p {
  margin-top: 8px;
}

.economics-movement strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.34rem;
  letter-spacing: -0.04em;
}

.economics-note,
.economics-close {
  position: relative;
  z-index: 1;
}

.economics-note {
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 0.88rem;
}

.economics-close {
  margin: 16px 0 0;
  font-size: 1.08rem;
  color: #ecf4ff;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.2s ease;
}

.tilt:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.42);
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(18px, -18px, 0) scale(1.12); }
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.78; }
}

@keyframes fillPulse {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.25) brightness(1.07); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes heroCabArrival {
  0% {
    transform: translate3d(calc(100vw + 100%), 0, 0);
  }
  72% {
    transform: translate3d(-16px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes cardFramePulse {
  0%, 100% {
    box-shadow: var(--shadow);
  }
  8% {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(115, 240, 255, 0.14), 0 0 30px rgba(115, 240, 255, 0.1);
  }
  16% {
    box-shadow: var(--shadow);
  }
}

@keyframes cardShadeSweep {
  0%, 100% {
    opacity: 0;
    transform: rotate(-12deg) scale(0.92);
  }
  6% {
    opacity: 0.9;
  }
  10% {
    opacity: 0.75;
    transform: rotate(7deg) scale(1.02);
  }
  16% {
    opacity: 0;
    transform: rotate(12deg) scale(1.05);
  }
}

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

@keyframes endpointPulseRed {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

@keyframes endpointPulseBlue {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-layout,
  .signup-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    display: grid;
  }

  .hero-proof-row,
  .impact-strip-grid,
  .card-grid.four,
  .economics-stats,
  .about-values,
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard {
    margin-top: 0;
  }

  .hero-visual {
    min-height: 620px;
    padding-top: 180px;
  }

  .hero-cab {
    top: -98px;
    right: -8px;
    width: min(100%, 540px);
  }

  .economics-visual,
  .economics-summary {
    grid-template-columns: 1fr;
  }

  .story-flow {
    grid-template-columns: 1fr;
  }

  .story-arrow {
    transform: rotate(90deg);
    min-height: 30px;
  }
}

@media (max-width: 820px) {
  .nav a:not(.nav-cta) { display: none; }

  .sticky-join-tab {
    top: auto;
    bottom: 18px;
    right: 12px;
    min-height: auto;
    padding: 12px 16px;
    writing-mode: initial;
    text-orientation: initial;
    transform: none;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 580px;
    padding-top: 250px;
    padding-inline: 12px;
    margin-top: 18px;
  }

  .hero-cab {
    top: 22px;
    right: 18px;
    width: clamp(208px, 57.6vw, 304px);
    transform: translate3d(calc(100vw + 100%), 0, 0);
    animation: none;
  }

  .hero-visual .dashboard {
    margin-top: 32px;
  }

  .dashboard {
    width: 100%;
  }

  .hero-proof-row,
  .hero-chips,
  .impact-strip-grid,
  .card-grid.four,
  .news-grid,
  .about-values,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .choice-pills,
  .economics-stats {
    grid-template-columns: 1fr;
  }

  .choice-pills {
    display: grid;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 8.8vw, 3.3rem);
    max-width: 8.8ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 0.92;
    text-wrap: balance;
  }

  .hero-copy,
  .section-head,
  .signup-copy,
  .hero-actions,
  .hero-meta,
  .footer-shell {
    text-align: center;
    justify-content: center;
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 74px 0;
  }

  .hero-meta {
    gap: 10px;
  }

  .btn,
  .hero-actions a {
    width: 100%;
  }

  .admin-dashboard-head {
    display: grid;
  }

  .admin-auth-card,
  .admin-dashboard {
    padding: 22px 20px;
  }

  .footer-brand {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-copy {
    text-align: center;
  }

  .economics-shell {
    padding: 24px 20px;
  }

  .about-value-card {
    padding: 22px 20px;
  }

  .chart-card,
  .economics-stat,
  .economics-summary-lines,
  .economics-movement {
    padding: 18px;
  }

  .chart-copy {
    display: block;
  }

  .chart-copy p {
    max-width: none;
    margin-top: 10px;
    text-align: left;
  }

  .chart-surface {
    min-height: 220px;
  }

}
