:root {
  --bg: #0d0d0f;
  --bg-2: #131318;
  --bg-3: #1a1a20;
  --fg: #f5f0e8;
  --fg-muted: #8a8a9a;
  --fg-dim: #5a5a6a;
  --accent: #ff8c42;
  --accent-2: #ffb347;
  --accent-dim: rgba(255, 140, 66, 0.12);
  --surface: #18181d;
  --border: rgba(255,255,255,0.08);
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,15,0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 12px; }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--fg); }
.nav-badge { font-size: 0.7rem; font-weight: 600; background: var(--accent-dim); color: var(--accent); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(255,140,66,0.2); letter-spacing: 0.05em; text-transform: uppercase; }

/* HERO */
.hero { padding: 100px 48px 80px; background: var(--bg); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,140,66,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 20px; }
.hero-headline { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: var(--fg-muted); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
.hero-rule { width: 60px; height: 2px; background: var(--accent); margin-bottom: 32px; }
.hero-proof { display: flex; gap: 36px; }
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.75rem; color: var(--accent); line-height: 1; }
.proof-label { font-size: 0.75rem; color: var(--fg-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-graphic { position: relative; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; }
.graphic-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,140,66,0.2); }
.graphic-ring-1 { width: 280px; height: 280px; animation: spin 20s linear infinite; border-style: dashed; }
.graphic-ring-2 { width: 200px; height: 200px; border-color: rgba(255,140,66,0.3); animation: spin 14s linear infinite reverse; }
.graphic-ring-3 { width: 130px; height: 130px; background: rgba(255,140,66,0.06); border: 1px solid rgba(255,140,66,0.4); }
.graphic-center { position: absolute; display: flex; align-items: center; justify-content: center; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* SHARED SECTION STYLES */
.section-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 16px; }

/* PROBLEM */
.problem { padding: 100px 48px; background: var(--bg-2); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-headline { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; letter-spacing: -0.02em; max-width: 600px; margin-bottom: 56px; color: var(--fg); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: border-color 0.3s; }
.problem-card:hover { border-color: rgba(255,140,66,0.3); }
.problem-icon { width: 48px; height: 48px; background: var(--accent-dim); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.problem-stat { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--fg); margin-bottom: 10px; }
.problem-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* FEATURES */
.features { padding: 100px 48px; background: var(--bg); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-headline { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; letter-spacing: -0.02em; max-width: 560px; margin-bottom: 56px; color: var(--fg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature-card { background: var(--bg-2); padding: 36px 32px; border: 1px solid var(--border); transition: background 0.3s; position: relative; }
.feature-card:hover { background: var(--surface); }
.feature-card-main { grid-row: span 2; background: linear-gradient(135deg, rgba(255,140,66,0.08) 0%, transparent 60%); border-color: rgba(255,140,66,0.2); }
.feature-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 16px; }
.feature-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--fg); margin-bottom: 12px; }
.feature-body { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.7; }

/* HOW IT WORKS */
.how { padding: 100px 48px; background: var(--bg-2); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-headline { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; letter-spacing: -0.02em; max-width: 560px; margin-bottom: 64px; color: var(--fg); }
.steps { display: flex; align-items: stretch; gap: 0; }
.step { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; position: relative; }
.step-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2.5rem; color: rgba(255,140,66,0.15); line-height: 1; margin-bottom: 16px; }
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--fg); margin-bottom: 10px; }
.step-body { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }
.step-connector { width: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.step-connector::after { content: ''; display: block; width: 100%; height: 1px; background: var(--border); }

/* PRICING */
.pricing { padding: 100px 48px; background: var(--bg); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-headline { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; letter-spacing: -0.02em; max-width: 560px; margin-bottom: 56px; color: var(--fg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; position: relative; }
.pricing-card-featured { border-color: rgba(255,140,66,0.4); background: linear-gradient(135deg, rgba(255,140,66,0.06) 0%, var(--bg-2) 50%); }
.pricing-badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); background: var(--accent-dim); padding: 4px 12px; border-radius: 100px; display: inline-block; margin-bottom: 16px; }
.pricing-tier { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 12px; }
.pricing-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 3rem; color: var(--fg); line-height: 1; margin-bottom: 8px; }
.pricing-period { font-size: 1rem; font-weight: 400; color: var(--fg-muted); }
.pricing-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 28px; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 0.88rem; color: var(--fg-muted); padding-left: 20px; position: relative; }
.pricing-features li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 0.8rem; }

/* CLOSING */
.closing { padding: 120px 48px; background: var(--bg-2); position: relative; overflow: hidden; }
.closing::before { content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(255,140,66,0.07) 0%, transparent 70%); pointer-events: none; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 24px; }
.closing-body { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7; max-width: 560px; margin: 0 auto 48px; }
.cta-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--fg); margin-bottom: 8px; }
.cta-sub { font-size: 0.9rem; color: var(--fg-muted); }

/* FOOTER */
.footer { padding: 48px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--fg); margin-bottom: 8px; }
.footer-desc { font-size: 0.82rem; color: var(--fg-dim); max-width: 280px; line-height: 1.6; }
.footer-copy { font-size: 0.78rem; color: var(--fg-dim); }

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 72px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .hero-proof { gap: 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-main { grid-row: auto; }
  .steps { flex-direction: column; gap: 16px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
}