:root {
  --bg: #0e1014;
  --bg-alt: #131720;
  --bg-card: #1a1f2e;
  --fg: #f0ede6;
  --fg-muted: #8a8f9e;
  --fg-dim: #555a6a;
  --accent: #e8622a;
  --accent-dim: rgba(232, 98, 42, 0.12);
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
}

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

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

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(14, 16, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}
.logo-mark {
  font-size: 22px;
  color: var(--accent);
}
.nav-right {
  display: flex;
  align-items: center;
}
.nav-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-card);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Hero */
.hero {
  padding: 80px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Hero card stack */
.hero-card-stack {
  position: relative;
}
.site-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 12px;
  position: relative;
}
.site-card-1 { border-left: 3px solid var(--accent); }
.site-card-2 { border-left: 3px solid #3b82f6; }
.site-card-3 { border-left: 3px solid #14b8a6; }
.site-card-niche {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.site-card-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 10px;
}
.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.bar-fill-blue { background: #3b82f6; }
.bar-fill-teal { background: #14b8a6; }
.site-card-stat {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.site-card-period {
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
}
.site-card-rent {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.hero-note {
  text-align: center;
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 8px;
  font-style: italic;
}

/* How section */
.how {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.step { position: relative; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: -20px;
  left: 0;
  line-height: 1;
}
.step-icon { margin-bottom: 20px; }
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Numbers */
.numbers {
  padding: 72px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.numbers-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.num-block {
  padding: 0 60px;
  text-align: center;
}
.num-value {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.num-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.num-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* Niches */
.niches {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.niches-sub {
  font-size: 16px;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s;
}
.niche-card:hover {
  border-color: rgba(232, 98, 42, 0.3);
}
.niche-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.niche-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.niche-stat {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Testimonials */
.testimonials {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.test-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.test-quote {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 20px;
}
.test-meta {
  font-size: 12px;
  color: var(--fg-dim);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 48px;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}
.closing-tagline {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 12px;
  color: var(--fg-dim);
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .how-steps { grid-template-columns: 1fr; gap: 48px; }
  .num-block { padding: 16px 24px; }
  .num-divider { display: none; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .niche-grid { grid-template-columns: 1fr; }
  .site-card { padding: 16px; }
}