:root {
  --bg: #020617;
  --bg-soft: rgba(255,255,255,0.05);
  --bg-card: rgba(15, 23, 42, 0.9);
  --border: rgba(255,255,255,0.10);
  --text: #ffffff;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.12);
  --blue: #60a5fa;
  --blue-2: #3b82f6;
  --emerald: #34d399;
  --shadow: 0 30px 80px rgba(8, 47, 73, 0.35);
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
}

.orb-1 {
  left: 50%;
  top: 0;
  width: 30rem;
  height: 30rem;
  transform: translateX(-50%);
  background: rgba(6, 182, 212, 0.15);
}

.orb-2 {
  left: 8%;
  top: 36rem;
  width: 18rem;
  height: 18rem;
  background: rgba(59, 130, 246, 0.10);
}

.orb-3 {
  right: 8%;
  top: 12rem;
  width: 20rem;
  height: 20rem;
  background: rgba(59, 130, 246, 0.10);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(2, 6, 23, 0.9);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.28);
  border-bottom-color: rgba(255,255,255,0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.25);
  box-shadow: 0 10px 24px rgba(8, 145, 178, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #a5f3fc;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #67e8f9;
}

.brand-sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  color: #cbd5e1;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(8, 47, 73, 0.16);
}

.btn-primary {
  background: var(--cyan);
  color: #082f49;
  border-color: transparent;
}

.btn-primary:hover {
  background: #67e8f9;
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.18);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
}

.btn-ghost-cyan {
  background: rgba(34, 211, 238, 0.10);
  color: #bae6fd;
  border-color: rgba(34, 211, 238, 0.25);
}

.btn-ghost-cyan:hover {
  background: rgba(34, 211, 238, 0.18);
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.18);
}

.btn-white {
  background: #fff;
  color: #0f172a;
  border-color: #fff;
}

.btn-white:hover {
  background: #f8fafc;
}

.hero {
  padding: 64px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  color: #bae6fd;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.18);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #67e8f9;
  flex: 0 0 auto;
}

.hero-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.gradient-text {
  display: block;
  background: linear-gradient(90deg, #a5f3fc, #7dd3fc, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 720px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted-2);
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  font-size: 14px;
}

.proof-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: #67e8f9;
  font-size: 12px;
  margin-top: 1px;
  flex: 0 0 auto;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.stats-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card,
.feature-card,
.step-card,
.audience-card,
.dual-card,
.cta-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  will-change: transform, opacity;
}

.stat-card {
  padding: 18px;
  border-radius: 24px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
}

.stat-label {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.hero-preview-col {
  position: relative;
}

.preview-glow {
  position: absolute;
  inset: -24px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(34,211,238,0.22), rgba(59,130,246,0.08));
  filter: blur(28px);
  z-index: 0;
}

.preview-shell {
  position: relative;
  z-index: 1;
  padding: 16px;
  border-radius: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(8, 47, 73, 0.35);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.preview-shell:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 90px rgba(8, 47, 73, 0.42);
}

.preview-panel {
  padding: 20px;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid var(--border);
}

.preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.preview-label {
  font-size: 14px;
  color: var(--muted);
}

.preview-title {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 700;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(52, 211, 153, 0.20);
  background: rgba(52, 211, 153, 0.10);
  color: #86efac;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.metric-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.60);
  border: 1px solid var(--border);
}

.metric-label {
  font-size: 14px;
  color: var(--muted);
}

.metric-value {
  margin-top: 10px;
  font-size: 36px;
  font-weight: 700;
}

.metric-sub {
  margin-top: 8px;
  font-size: 13px;
}

.metric-sub-green { color: #86efac; }
.metric-sub-sky { color: #7dd3fc; }
.metric-sub-cyan { color: #67e8f9; }
.metric-sub-violet { color: #c4b5fd; }

.health-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.60);
  border: 1px solid var(--border);
}

.health-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.health-title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
}

.health-last {
  font-size: 12px;
  color: var(--muted);
}

.health-item {
  margin-bottom: 14px;
}

.health-item:last-child {
  margin-bottom: 0;
}

.health-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  margin-bottom: 8px;
  color: #cbd5e1;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-2));
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading-tight {
  margin-bottom: 0;
  max-width: 840px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #67e8f9;
}

.section-eyebrow-soft {
  color: #bae6fd;
}

.section-title {
  margin: 14px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-copy {
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted-2);
}

.features-grid,
.audience-grid,
.dual-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 26px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.30);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(15, 23, 42, 1);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #dbeafe;
  margin-bottom: 16px;
}

.feature-card h3,
.step-card h3,
.audience-card h3,
.dual-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-card p,
.step-card p,
.audience-card p,
.dual-card p {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted-2);
}

.how-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 16px;
}

.step-card {
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.step-card:hover,
.audience-card:hover,
.dual-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.24);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--cyan);
  color: #082f49;
  font-weight: 800;
  font-size: 14px;
}

.who-wrap {
  padding: 40px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
}

.audience-grid,
.dual-grid,
.pricing-grid {
  margin-top: 38px;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-card,
.dual-card {
  padding: 24px;
  background: rgba(2, 6, 23, 0.40);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.dual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dual-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
}

.dual-note-cyan {
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.dual-note-dark {
  background: rgba(2, 6, 23, 0.50);
  border: 1px solid var(--border);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: rgba(34, 211, 238, 0.10);
  border-color: rgba(34, 211, 238, 0.18);
}

.cta-title {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.cta-copy {
  max-width: 780px;
  margin-top: 14px;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.8;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.82);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-copy {
  max-width: 660px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.footer-links-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-links a:hover {
  color: #67e8f9;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing */
.pricing-card {
  position: relative;
}

.pricing-card-featured {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 18px 40px rgba(8, 47, 73, 0.18);
}

.pricing-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #082f49;
  background: #67e8f9;
  white-space: nowrap;
}

.pricing-badge-dark {
  background: rgba(255,255,255,0.08);
  color: #cbd5e1;
}

.pricing-price {
  margin-top: 22px;
  display: flex;
  align-items: end;
  gap: 6px;
}

.pricing-amount {
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.pricing-period {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 6px;
}

.pricing-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted-2);
  line-height: 1.6;
}

.pricing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #67e8f9;
  font-weight: 700;
}

.pricing-footnote {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.pricing-footnote p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .hero-grid,
  .how-grid,
  .features-grid,
  .audience-grid,
  .dual-grid,
  .pricing-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .preview-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    flex: 1 1 0;
  }

  .hero {
    padding: 42px 0 64px;
  }

  .section {
    padding: 64px 0;
  }

  .who-wrap {
    padding: 26px;
  }

  .cta-panel {
    padding: 24px;
  }

  .preview-panel,
  .preview-shell,
  .feature-card,
  .step-card,
  .audience-card,
  .dual-card,
  .stat-card {
    border-radius: 22px;
  }

  .stats-grid,
  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .metric-value,
  .pricing-amount {
    font-size: 30px;
  }

  .feature-card h3,
  .step-card h3,
  .audience-card h3,
  .dual-card h3 {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .feature-card,
  .step-card,
  .audience-card,
  .dual-card,
  .stat-card,
  .cta-panel,
  .btn,
  .site-header,
  .preview-shell,
  .brand-icon,
  .proof-check,
  .status-badge,
  .site-nav a::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}