:root {
  --bg: #080812;
  --bg-surface: #0f0f1f;
  --bg-card: #12121e;
  --fg: #e8e4f0;
  --fg-muted: #9896a8;
  --accent: #c9a84c;
  --accent-dim: rgba(201, 168, 76, 0.15);
  --secondary: #6b5fa3;
  --border: rgba(107, 95, 163, 0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

::selection { background: var(--accent); color: var(--bg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8vw 60px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 70% 45%, rgba(107, 95, 163, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle, rgba(201,168,76,0.25) 0.5px, transparent 0.5px),
    radial-gradient(circle, rgba(107,95,163,0.15) 0.5px, transparent 0.5px);
  background-size: 80px 80px, 120px 120px;
  background-position: 0 0, 40px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 480px;
  font-weight: 300;
}

.hero-constellation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-constellation svg {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 40px rgba(107, 95, 163, 0.2));
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.stat {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.stat-num {
  color: var(--accent);
  font-weight: 600;
  margin-right: 6px;
  font-size: 0.85rem;
}

.hero-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* CONSTELLATION SECTION */
.constellation-section {
  padding: 120px 8vw;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.constellation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.constellation-copy .section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.constellation-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.constellation-copy p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}

.constellation-visual {
  display: flex;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.constellation-visual svg {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 0 30px rgba(107, 95, 163, 0.15));
}

/* FEATURES */
.features {
  padding: 120px 8vw;
  background: var(--bg);
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(18, 18, 30, 0.8);
}

.feature-icon {
  margin-bottom: 20px;
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

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

/* MANIFESTO */
.manifesto {
  padding: 100px 8vw;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.45;
  margin-bottom: 28px;
}

.manifesto-attr {
  font-size: 0.95rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 120px 8vw;
  background: var(--bg);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

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

/* FOOTER */
footer {
  padding: 48px 8vw;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-sub { max-width: 100%; }

  .hero-bottom {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .constellation-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .constellation-visual { order: -1; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero { padding: 60px 6vw 48px; }

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

  .hero-bottom {
    gap: 16px;
  }

  .hero-divider { display: none; }
}
