:root {
  --bg: #0a0a0f;
  --bg-secondary: #12121a;
  --fg: #f0ece4;
  --fg-muted: #9e9a91;
  --accent: #c9a87c;
  --accent-light: #dfc9a8;
  --accent-glow: rgba(201, 168, 124, 0.15);
  --rose: #b56576;
  --rose-light: #e8a0b0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-accent {
  color: var(--fg);
}

.hero-os {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto;
}

.hero-gradient {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ========== STATS ========== */
.stats {
  padding: 4rem 2rem;
  border-top: 1px solid rgba(201, 168, 124, 0.12);
  border-bottom: 1px solid rgba(201, 168, 124, 0.12);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 124, 0.25);
}

/* ========== FEATURES ========== */
.features {
  padding: 6rem 2rem;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(201, 168, 124, 0.08);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(201, 168, 124, 0.25);
  transform: translateY(-2px);
}

.feature-card-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(201, 168, 124, 0.06) 100%);
  border-color: rgba(201, 168, 124, 0.15);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
}

/* ========== EDGE ========== */
.edge {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.edge-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.edge-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.edge-text em {
  color: var(--accent);
  font-style: italic;
}

.edge-text p {
  color: var(--fg-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}

.price-scale {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

.price-point {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--bg);
}

.price-point.price-sweet {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg) 0%, var(--accent-glow) 100%);
  transform: scale(1.05);
}

.price-tag {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  min-width: 70px;
}

.price-sweet .price-tag {
  color: var(--accent-light);
}

.price-budget .price-tag,
.price-luxury .price-tag {
  color: var(--fg-muted);
}

.price-name {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.price-sweet .price-name {
  color: var(--fg);
  font-weight: 500;
}

/* ========== CLOSING ========== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.closing-accent {
  color: var(--accent);
  font-style: italic;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(201, 168, 124, 0.08);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
}

.footer-sep {
  opacity: 0.4;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: auto;
  }

  .edge-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .closing h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 85vh;
    padding: 2rem 1.5rem;
  }

  .features {
    padding: 4rem 1.5rem;
  }

  .edge {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }
}
