:root {
  --bg: #0F1B2E;
  --surface: #162338;
  --surface-2: #1D2E47;
  --amber: #F59E0B;
  --amber-dim: rgba(245,158,11,0.12);
  --amber-glow: rgba(245,158,11,0.06);
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.55);
  --text-dim: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1120px;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,27,46,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-body);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.hero-orb-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
}
.hero-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-stat-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-stat {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--amber);
  margin-bottom: 16px;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -2px;
}
.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4;
}
.hero-stat-sub {
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid rgba(245,158,11,0.4);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-em {
  font-style: normal;
  color: var(--amber);
}
.hero-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* SECTION SHARED */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-label--light { color: rgba(245,158,11,0.7); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 56px;
}

/* FEATURES */
.features {
  padding: 120px 0;
  background: var(--surface);
}
.section-header {
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface-2); }
.feature-icon {
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  padding: 120px 0;
  background: var(--bg);
}
.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-top: 16px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.outcome-item {
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--amber);
}
.outcome-big {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.outcome-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.outcomes-quote {
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--amber);
}
.quote-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-style: normal;
  margin-bottom: 16px;
}
.quote-cite {
  font-size: 13px;
  color: var(--text-dim);
  font-style: normal;
}

/* PRICING */
.pricing {
  padding: 120px 0;
  background: var(--surface);
}
.pricing-card {
  max-width: 560px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.pricing-card-header {
  padding: 48px;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
}
.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -3px;
  line-height: 1;
}
.pricing-period {
  font-size: 18px;
  color: var(--text-muted);
}
.pricing-setup {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing-setup-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-muted);
}
.pricing-setup-label {
  font-size: 14px;
  color: var(--text-dim);
}
.pricing-divider {
  height: 1px;
  background: var(--border);
}
.pricing-includes {
  list-style: none;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-card-footer {
  padding: 28px 48px 40px;
  border-top: 1px solid var(--border);
}
.pricing-math {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-dim);
}
.pricing-math strong { color: var(--amber); font-weight: 700; }

/* CLOSING */
.closing {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing-bg-shape {
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 56px;
}
.closing-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--amber);
}
.step-content {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-content strong { color: var(--text); }

/* FOOTER */
.footer {
  padding: 80px 0 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-col span {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stat-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stat-sub { margin-bottom: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-stat-col { grid-template-columns: 1fr; }
  .section-title { margin-bottom: 36px; }
  .features, .outcomes, .pricing, .closing { padding: 80px 0; }
  .pricing-amount { font-size: 56px; }
}