:root {
  --bg: #0c1018;
  --bg-2: #131a24;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-2: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f9fc;
  --muted: rgba(247, 249, 252, 0.74);
  --muted-2: rgba(247, 249, 252, 0.48);
  --lime: #b5ff00;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(181,255,0,0.10), transparent 18%),
    radial-gradient(circle at 90% 12%, rgba(255,255,255,0.06), transparent 16%),
    linear-gradient(180deg, #0c1018 0%, #111824 50%, #0d131d 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
}

.orb-a {
  width: 280px;
  height: 280px;
  background: rgba(181,255,0,0.14);
  top: -4%;
  left: -6%;
}

.orb-b {
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.08);
  top: 8%;
  right: -4%;
}

.site-header,
.hero,
.platform-bar,
.feature-section,
.split-section,
.cta-band,
.waitlist-section,
.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 10px;
}

.brand-logo {
  width: 340px;
  max-width: 100%;
  display: block;
}

.hero-wordmark {
  width: min(100%, 460px);
  display: block;
  margin: 10px 0 18px;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover { color: var(--text); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 46px 0 24px;
}

.hero-copy,
.dashboard-shell,
.platform-bar,
.feature-card,
.visual-card,
.cta-band,
.waitlist-section {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-copy,
.dashboard-shell,
.visual-card,
.cta-band,
.waitlist-section {
  border-radius: 32px;
}

.hero-copy {
  padding: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.eyebrow.lime { color: var(--lime); }

.hero-copy h1,
.section-head h2,
.split-copy h2,
.cta-band h2,
.waitlist-copy h2,
.hero-stat-card h2,
.feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.92;
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-btn,
.secondary-btn {
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.primary-btn {
  background: linear-gradient(135deg, var(--lime), #d8ff74);
  color: #09110a;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-badges span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-shell {
  padding: 22px;
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot.green { background: var(--lime); }
.dot.white { background: #ffffff; }
.dot.lime { background: #d8ff74; }

.hero-stat-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.small-label {
  margin: 0 0 10px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-stat-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
}

.hero-stat-card p:last-child,
.feature-card p,
.split-copy p,
.waitlist-copy p,
.cta-band p,
.form-note,
.metric-lines span {
  color: var(--muted);
  line-height: 1.8;
}

.dashboard-grid,
.feature-grid,
.split-section,
.waitlist-section {
  display: grid;
}

.dashboard-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.dashboard-grid article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.dashboard-grid strong,
.dashboard-grid span {
  display: block;
}

.dashboard-grid strong {
  font-size: 1.1rem;
}

.dashboard-grid span {
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.platform-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 8px;
  padding: 18px;
  border-radius: 999px;
  text-align: center;
  color: var(--muted-2);
  font-weight: 700;
}

.feature-section {
  padding-top: 28px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-head h2,
.split-copy h2,
.cta-band h2,
.waitlist-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 0.96;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.feature-card h3 {
  font-size: 1.55rem;
  line-height: 1;
}

.split-section {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
}

.visual-card {
  padding: 24px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 180px;
  margin: 22px 0;
}

.chart-bars span {
  flex: 1;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, var(--lime), rgba(181,255,0,0.22));
}

.chart-bars span:nth-child(1) { height: 44%; }
.chart-bars span:nth-child(2) { height: 70%; }
.chart-bars span:nth-child(3) { height: 56%; }
.chart-bars span:nth-child(4) { height: 88%; }
.chart-bars span:nth-child(5) { height: 62%; }
.chart-bars span:nth-child(6) { height: 96%; }

.metric-lines {
  display: grid;
  gap: 14px;
}

.metric-lines div {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.metric-lines strong,
.metric-lines span {
  display: block;
}

.metric-lines strong {
  margin-bottom: 6px;
}

.split-copy ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.split-copy li {
  margin: 10px 0;
}

.cta-band {
  margin-top: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.waitlist-section {
  margin-top: 24px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 16px;
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.subscribe-form input::placeholder { color: var(--muted-2); }

.subscribe-form button {
  border: 0;
  border-radius: 14px;
  padding: 16px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  color: #09110a;
  background: linear-gradient(135deg, var(--lime), #d8ff74);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 40px;
  color: var(--muted-2);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 680ms ease forwards;
}

.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 240ms; }
.delay-3 { animation-delay: 360ms; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

@media (max-width: 1040px) {
  .hero,
  .feature-grid,
  .split-section,
  .cta-band,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .platform-bar {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 28px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .platform-bar,
  .feature-section,
  .split-section,
  .cta-band,
  .waitlist-section,
  .site-footer {
    width: min(100% - 20px, 1200px);
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-copy,
  .dashboard-shell,
  .feature-card,
  .visual-card,
  .cta-band,
  .waitlist-section {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .platform-bar,
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .subscribe-form {
    flex-direction: column;
  }
}

