:root {
  --bg: #0f0d0b;
  --bg-card: #1a1714;
  --bg-section: #141210;
  --fg: #f0ebe3;
  --fg-muted: #9a9088;
  --accent: #c8703a;
  --accent-soft: rgba(200, 112, 58, 0.12);
  --border: rgba(240, 235, 227, 0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 96px;
  max-width: 900px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 112, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
  display: inline-block;
}

/* How it works */
.how {
  background: var(--bg-section);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-header {
  max-width: 600px;
  margin-bottom: 72px;
}

.overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.how-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  max-width: 900px;
}

.step-number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--fg);
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Features */
.features {
  padding: 96px 48px;
}

.features-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(200, 112, 58, 0.3);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--fg);
}

.feature-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  background: var(--bg-section);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  max-width: 900px;
  align-items: center;
}

.pricing-text {
  flex: 1;
  min-width: 260px;
}

.pricing-text h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
}

.pricing-text p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.pricing-card {
  flex: 0 0 auto;
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.price-tier {
  margin-bottom: 24px;
}

.price-tag {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.price-tag span {
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-label {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  text-align: left;
}

.price-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.free-tier {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.free-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.free-note {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  padding: 96px 48px;
}

.closing-inner {
  max-width: 680px;
}

.closing-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-statement {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.closing-vibe {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--fg);
  line-height: 1.4;
}

.closing-vibe strong {
  color: var(--accent);
  font-weight: 700;
}

/* Footer */
footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.footer-bottom {
  display: flex;
  gap: 24px;
  max-width: 900px;
  font-size: 11px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 640px) {
  .hero { padding: 80px 24px 72px; }
  .how, .features, .pricing, .closing { padding: 64px 24px; }
  footer { padding: 40px 24px; }
  .hero-tagline { display: none; }
  .pricing-inner { flex-direction: column; }
  .pricing-card { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* Selection */
::selection { background: rgba(200, 112, 58, 0.25); color: var(--fg); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2520; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3a3530; }
