/* Noise texture */
svg#noise-svg { position: absolute; width: 0; height: 0; }

body {
  background-color: #0B0F19;
  color: #EDE9E0;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 80px 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: #EDE9E0;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: rgba(237,233,224,0.65);
  max-width: 560px;
  margin: 0 0 60px;
  line-height: 1.7;
}

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

.stat { padding: 0 40px; }
.stat:first-child { padding-left: 0; }

.stat-num {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 44px;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(237,233,224,0.5);
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(237,233,224,0.12);
}

/* Grid art */
.hero-grid-art {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 1;
  opacity: 0.4;
}

.grid-line {
  position: absolute;
  background: rgba(201,168,76,0.25);
}
.grid-line-1 { width: 1px; height: 100%; left: 25%; top: 0; }
.grid-line-2 { width: 1px; height: 100%; left: 50%; top: 0; }
.grid-line-3 { width: 1px; height: 100%; left: 75%; top: 0; }
.grid-line-4 { width: 100%; height: 1px; top: 33%; left: 0; }

.grid-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C9A84C;
}
.grid-dot-1 { top: 20%; left: 25%; }
.grid-dot-2 { top: 50%; left: 50%; }
.grid-dot-3 { top: 80%; left: 75%; }
.grid-dot-4 { top: 33%; left: 33%; }
.grid-dot-5 { top: 66%; left: 66%; }
.grid-dot-6 { top: 50%; left: 25%; width: 5px; height: 5px; }

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 120px 80px;
  background: #0B0F19;
  border-top: 1px solid rgba(201,168,76,0.15);
}

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

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 32px;
}

.manifesto-quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: #EDE9E0;
  margin: 0 0 40px;
  padding-left: 32px;
  border-left: 2px solid #C9A84C;
}

.manifesto-body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(237,233,224,0.6);
  margin: 0 0 40px;
  max-width: 580px;
}

.manifesto-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 6px 16px;
}

/* ---- FEATURES ---- */
.features { padding: 120px 80px; background: #111827; }

.features-inner { max-width: 1200px; }

.features-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 64px;
}

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

.feature-card {
  background: rgba(255,255,255,0.025);
  padding: 48px 48px 52px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.feature-card:hover { background: rgba(255,255,255,0.04); }

.feature-icon { margin-bottom: 24px; }

.feature-title {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  font-weight: 400;
  color: #EDE9E0;
  margin: 0 0 14px;
}

.feature-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(237,233,224,0.5);
  margin: 0 0 28px;
  line-height: 1.65;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-list li {
  font-size: 12px;
  font-weight: 400;
  color: rgba(237,233,224,0.4);
  background: rgba(201,168,76,0.08);
  padding: 4px 12px;
  border-radius: 4px;
}

/* ---- OUTCOMES ---- */
.outcomes { padding: 120px 80px; background: #0B0F19; border-top: 1px solid rgba(201,168,76,0.15); }

.outcomes-inner { max-width: 1200px; }

.outcomes-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 64px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.outcome-item {}

.outcome-num {
  font-family: 'Instrument Serif', serif;
  font-size: 13px;
  color: rgba(201,168,76,0.5);
  margin-bottom: 20px;
}

.outcome-title {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-weight: 400;
  color: #EDE9E0;
  margin: 0 0 14px;
}

.outcome-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(237,233,224,0.5);
  margin: 0;
  line-height: 1.65;
}

/* ---- CLOSING ---- */
.closing {
  padding: 160px 80px;
  text-align: center;
  background: #0B0F19;
  border-top: 1px solid rgba(201,168,76,0.15);
}

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

.closing-statement {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: #EDE9E0;
  margin: 0 0 28px;
  line-height: 1.25;
}

.closing-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(237,233,224,0.3);
  text-transform: uppercase;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #0B0F19;
}

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

.footer-name {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  color: #EDE9E0;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(237,233,224,0.35);
}

.footer-copy {
  font-size: 12px;
  color: rgba(237,233,224,0.25);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero { padding: 100px 32px 80px; }
  .manifesto { padding: 80px 32px; }
  .features { padding: 80px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 80px 32px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .closing { padding: 100px 32px; }
  .site-footer { padding: 40px 32px; }
  .hero-grid-art { display: none; }
  .stat { padding: 0 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-sep { display: none; }
  .manifesto-quote { font-size: 22px; }
}