:root {
  --bg: #0a0a0a;
  --fg: #e8e4df;
  --fg-muted: #8a857e;
  --accent: #d4a053;
  --accent-dim: #b8893f;
  --card-bg: #141414;
  --card-border: #1f1f1f;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  max-width: 1400px;
}

.hero-label {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 0.8rem;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.hero-aside p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 380px;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--fg-muted);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 10rem 8vw;
  border-top: 1px solid var(--card-border);
}

.manifesto-inner {
  max-width: 900px;
}

.manifesto-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  border: 1px solid var(--accent-dim);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--fg);
}

.manifesto h2 em {
  font-style: italic;
  color: var(--accent);
}

.manifesto-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 700px;
}

/* ===== FEATURES ===== */
.features {
  padding: 8rem 8vw;
  border-top: 1px solid var(--card-border);
}

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

.features-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 3rem 2.5rem;
  border-radius: 3px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent-dim);
}

.feature-card-accent {
  border-color: var(--accent-dim);
  background: linear-gradient(135deg, var(--card-bg) 0%, #1a1510 100%);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--fg);
}

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

/* ===== NUMBERS ===== */
.numbers {
  padding: 6rem 8vw;
  border-top: 1px solid var(--card-border);
}

.numbers-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.number-block {
  text-align: center;
}

.number-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.number-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.number-divider {
  width: 1px;
  height: 80px;
  background: var(--card-border);
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 8vw;
  border-top: 1px solid var(--card-border);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--fg);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 8vw;
  border-top: 1px solid var(--card-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-meta a {
  color: var(--accent);
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 0 6vw;
    min-height: 90vh;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .hero-aside {
    padding-bottom: 0;
  }

  .manifesto {
    padding: 5rem 6vw;
  }

  .features {
    padding: 5rem 6vw;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .numbers {
    padding: 4rem 6vw;
  }

  .numbers-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .number-divider {
    width: 60px;
    height: 1px;
  }

  .closing {
    padding: 5rem 6vw;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 2rem 1.5rem;
  }
}