:root {
  --bg: #0a0908;
  --bg-2: #111009;
  --bg-3: #191611;
  --fg: #f0ece4;
  --fg-muted: #a09a8e;
  --fg-subtle: #5c5750;
  --accent: #C9A84C;
  --accent-dim: #8a6f30;
  --accent-glow: rgba(201, 168, 76, 0.08);
  --border: rgba(201, 168, 76, 0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 2px; }

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

/* Focus */
:focus-visible { outline: 1.5px solid var(--accent); outline-offset: 3px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 64px;
  gap: 48px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 60% 50%, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-glyph {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glyph svg { width: 100%; max-width: 380px; animation: rotate 60s linear infinite; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

/* FEATURES */
.features {
  background: var(--bg-2);
  padding: 100px 64px;
  border-top: 1px solid var(--border);
}

.features-header { margin-bottom: 64px; }

.features-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
}

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

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

.feature-card:hover {
  border-color: var(--accent-dim);
  background: rgba(201, 168, 76, 0.04);
}

.feature-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

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

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

.manifesto blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  line-height: 1.45;
  color: var(--fg-muted);
  margin-bottom: 40px;
  border-left: 2px solid var(--accent);
  padding-left: 28px;
}

.manifesto-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.manifesto-divider span { flex: 1; height: 1px; background: var(--border); }
.divider-mark { font-size: 12px; color: var(--accent); }

.manifesto-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* OUTCOMES */
.outcomes {
  background: var(--bg-2);
  padding: 100px 64px;
  border-top: 1px solid var(--border);
}

.outcomes .section-tag { display: block; margin-bottom: 56px; }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.outcome {
  display: flex;
  gap: 24px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-collapse: collapse;
  margin: -0.5px;
  background: var(--bg-3);
}

.outcome-num {
  font-family: 'Instrument Serif', serif;
  font-size: 36px;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.outcome h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.outcome p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

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

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

.closing h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
}

.closing-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.closing-tagline {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

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

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

.footer-brand { display: flex; align-items: center; gap: 12px; }

.footer-name {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: var(--fg);
}

.footer-slug {
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-subtle);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 32px;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .hero-glyph { display: none; }
  .features { padding: 80px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 80px 32px; }
  .outcomes { padding: 80px 32px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 32px; }
  .footer { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }
  .features-grid { gap: 1px; }
  .feature-card { padding: 28px 24px; }
  .outcome { padding: 28px 24px; }
}