/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0F0F0F;
  --surface: #171717;
  --surface-2: #1F1F1F;
  --amber: #F59E0B;
  --amber-dim: #B47208;
  --text: #F5F5F0;
  --text-dim: #A8A8A0;
  --text-muted: #6B6B65;
  --border: #2A2A2A;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 8vw;
  gap: 4vw;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(245,158,11,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1.5rem;
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 em {
  font-style: normal;
  color: var(--amber);
}

.lede {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 48ch;
  font-weight: 300;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

.stat:last-child { border-bottom: 1px solid var(--border); }

.stat-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-image-wrap {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

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

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.manifesto h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.manifesto p {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.8;
  font-weight: 300;
  max-width: 46ch;
}

.manifesto-image-wrap {
  height: 55vh;
  overflow: hidden;
}

.manifesto-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 10vw 8vw;
  border-bottom: 1px solid var(--border);
}

.how-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.how-it-works h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.system-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.system-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
}

.system-card h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.system-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
  margin-top: auto;
}

/* === OUTCOMES === */
.outcomes {
  padding: 10vw 8vw;
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.outcomes-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.outcome-stats {
  display: flex;
  flex-direction: column;
}

.outcome-stat {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.outcome-stat:last-child { border-bottom: 1px solid var(--border); }

.outcome-num {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--amber);
}

.outcome-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.outcomes-image-wrap {
  height: 55vh;
  overflow: hidden;
}

.outcomes-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* === CLOSING === */
.closing {
  padding: 12vw 8vw;
  text-align: center;
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.closing-statement {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.closing-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.closing-targets span {
  font-size: 0.8125rem;
  color: var(--text-dim);
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: 0.04em;
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 6rem 6vw 4rem; }
  .hero-image-wrap { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-image-wrap { display: none; }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-inner { grid-template-columns: 1fr; }
  .outcomes-image-wrap { display: none; }
}

@media (max-width: 640px) {
  .hero, .manifesto, .how-it-works, .outcomes, .closing { padding-left: 5vw; padding-right: 5vw; }
  footer { padding-left: 5vw; padding-right: 5vw; }
  .systems-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat { flex: 1; min-width: 140px; }
  .stat-num { font-size: 1.4rem; }
  .outcome-stats { flex-direction: row; flex-wrap: wrap; }
  .outcome-stat { flex: 1; min-width: 140px; }
  .outcome-num { font-size: 1.5rem; }
}