:root {
  --bg: #080e1a;
  --bg-alt: #0c1627;
  --fg: #f0ece6;
  --fg-muted: #9aa3b1;
  --accent: #e8732e;
  --accent-dim: rgba(232, 115, 46, 0.12);
  --danger: #e84c3d;
  --warning: #f0a500;
  --border: rgba(240, 236, 230, 0.08);
  --card-bg: rgba(255,255,255,0.03);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.header-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Hero */
.hero {
  padding: 140px 32px 80px;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stat-row {
  display: flex;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}

/* Widget */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tariff-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 340px;
}
.widget-header {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.widget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.widget-row:last-of-type { border-bottom: none; }
.widget-label { font-size: 13px; color: var(--fg-muted); }
.widget-val { font-size: 14px; font-weight: 500; color: var(--fg); }
.widget-val.alert { color: var(--danger); font-weight: 700; font-size: 16px; }
.widget-val.warning { color: var(--warning); font-weight: 700; font-size: 16px; }
.widget-row.highlight { background: rgba(232, 76, 61, 0.08); border-radius: 8px; margin: 8px 0; padding: 10px 12px; border: none; }
.widget-bar {
  height: 6px;
  background: rgba(232, 115, 46, 0.2);
  border-radius: 99px;
  margin-top: 16px;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #e8732e, #e84c3d);
  border-radius: 99px;
}

/* Proof */
.proof {
  background: var(--accent-dim);
  border-top: 1px solid rgba(232, 115, 46, 0.15);
  border-bottom: 1px solid rgba(232, 115, 46, 0.15);
  padding: 48px 32px;
  text-align: center;
}
.proof-inner { max-width: 700px; margin: 0 auto; }
.proof-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 16px;
}
.proof-source { font-size: 13px; color: var(--fg-muted); }

/* Features */
.features {
  padding: 100px 32px;
  max-width: 1160px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  color: var(--fg);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(232, 115, 46, 0.3); }
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--fg);
}
.feature-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* Process */
.process {
  background: var(--bg-alt);
  padding: 100px 32px;
}
.process .section-headline { margin-bottom: 64px; }
.process-steps {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* Pricing */
.pricing {
  padding: 100px 32px;
  max-width: 1160px;
  margin: 0 auto;
}
.pricing .section-headline { margin-bottom: 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(232, 115, 46, 0.06);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
}
.plan-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  margin-bottom: 8px;
}
.plan-price {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--accent);
  margin-bottom: 4px;
}
.plan-period { font-size: 16px; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; }
.plan-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; min-height: 42px; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Closing */
.closing {
  background: linear-gradient(135deg, var(--accent-dim), rgba(8, 14, 26, 0));
  border-top: 1px solid rgba(232, 115, 46, 0.15);
  padding: 100px 32px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--fg);
}
.closing p { font-size: 17px; color: var(--fg-muted); line-height: 1.65; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-brand .wordmark {
  display: block;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; color: var(--fg-muted); }
.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-meta span { font-size: 12px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 100px 20px 60px; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stat-row { gap: 20px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-meta { text-align: left; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stat-row { flex-direction: column; gap: 16px; }
}