:root {
  --bg: #060610;
  --bg-surface: #0c0c1e;
  --bg-raised: #111128;
  --fg: #f0ebe0;
  --fg-muted: #7a756b;
  --fg-faint: #3d3a32;
  --accent: #c9a84c;
  --accent-dim: #8a7040;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --border: rgba(201, 168, 76, 0.12);
  --section-gap: 120px;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbital rings */
.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orbital-ring-1 { width: 300px; height: 300px; animation: spin 20s linear infinite; }
.orbital-ring-2 { width: 420px; height: 420px; animation: spin 35s linear infinite reverse; }
.orbital-ring-3 { width: 540px; height: 540px; animation: spin 50s linear infinite; }

@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Star field */
.star-field { position: absolute; inset: 0; }
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--fg);
  border-radius: 50%;
  opacity: 0.4;
}
.star-1 { top: 12%; left: 30%; opacity: 0.6; }
.star-2 { top: 25%; left: 75%; opacity: 0.3; }
.star-3 { top: 60%; left: 15%; opacity: 0.5; }
.star-4 { top: 78%; left: 65%; opacity: 0.4; }
.star-5 { top: 40%; left: 85%; opacity: 0.7; }
.star-6 { top: 88%; left: 40%; opacity: 0.3; }
.star-7 { top: 5%; left: 55%; opacity: 0.5; }
.star-8 { top: 50%; left: 10%; opacity: 0.6; }

/* Planet orb */
.planet-orb {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a1f4e, #0a0520, #020108);
  box-shadow:
    0 0 60px rgba(100, 70, 200, 0.2),
    inset -20px -10px 40px rgba(0,0,0,0.6),
    inset 10px 5px 20px rgba(201,168,76,0.08);
  position: relative;
  z-index: 2;
}

.planet-surface {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(201,168,76,0.12), transparent 60%);
}

/* PROVENANCE */
.provenance {
  padding: var(--section-gap) 8vw;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.provenance-header {
  margin-bottom: 72px;
}

.section-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.provenance-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 600px;
}

.provenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.provenance-item {}

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

.provenance-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.provenance-item p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: var(--section-gap) 8vw;
  background: var(--bg);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
}

.manifesto-star {
  width: 120px; height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.manifesto-star-glow {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

.manifesto-quote {
  grid-column: 2;
  margin-bottom: 40px;
}

.manifesto-quote p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.manifesto-body {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

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

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

.closing-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.05;
}

.closing-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.closing-cta-btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  margin-bottom: 40px;
  transition: background 0.2s;
}
.closing-cta-btn:hover { background: var(--accent-dim); }

.closing-aspirational {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

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

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
}

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

.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-faint);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-body { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 320px; }
  .orbital-ring-1 { width: 200px; height: 200px; }
  .orbital-ring-2 { width: 280px; height: 280px; }
  .orbital-ring-3 { width: 360px; height: 360px; }
  .planet-orb { width: 110px; height: 110px; }
  .provenance-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-star { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 6vw; }
  .provenance { padding: 80px 6vw; }
  .manifesto { padding: 80px 6vw; }
  .closing { padding: 80px 6vw; }
  .footer { padding: 32px 6vw; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}