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

:root {
  --bg: #07090F;
  --fg: #F5F2EB;
  --fg-muted: rgba(245, 242, 235, 0.55);
  --accent: #F7A823;
  --accent-dim: rgba(247, 168, 35, 0.12);
  --accent-border: rgba(247, 168, 35, 0.25);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Lexend', sans-serif;
}

html { scroll-behavior: smooth; }

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

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

.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 90vw;
  height: 80vh;
  background: radial-gradient(ellipse at 30% 50%, rgba(247, 168, 35, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 50vw;
  height: 60vh;
  background: radial-gradient(ellipse at 70% 60%, rgba(247, 168, 35, 0.04) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 10rem 6rem 8rem;
  max-width: 1100px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 3rem;
}

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

/* === MANIFESTO === */
.manifesto {
  border-top: 1px solid rgba(245, 242, 235, 0.08);
  border-bottom: 1px solid rgba(245, 242, 235, 0.08);
  padding: 7rem 6rem;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.manifesto-text {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 1.8rem;
}

.manifesto-text:last-child { margin-bottom: 0; }

/* === EXECUTION === */
.execution {
  padding: 8rem 6rem;
}

.execution-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.exec-header {
  margin-bottom: 5rem;
}

.exec-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.exec-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 700px;
}

.exec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245, 242, 235, 0.07);
  border: 1px solid rgba(245, 242, 235, 0.07);
}

.exec-card {
  padding: 3rem 3rem 3.5rem;
  background: var(--bg);
  position: relative;
  transition: background 0.3s;
}

.exec-card:hover { background: rgba(247, 168, 35, 0.03); }

.exec-card-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.8rem;
}

.exec-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

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

/* === OUTCOMES === */
.outcomes {
  border-top: 1px solid rgba(245, 242, 235, 0.08);
  padding: 7rem 6rem;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(247,168,35,0.02) 50%, var(--bg) 100%);
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid rgba(245, 242, 235, 0.1);
}

.stat {
  flex: 1;
  padding: 3rem 2.5rem;
}

.stat-divider {
  width: 1px;
  background: rgba(245, 242, 235, 0.1);
  flex-shrink: 0;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 300;
}

.outcomes-body p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 10rem 6rem 8rem;
  border-top: 1px solid rgba(245, 242, 235, 0.08);
}

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

.closing-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* === FOOTER === */
footer {
  border-top: 1px solid rgba(245, 242, 235, 0.06);
  padding: 3rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer span {
  font-size: 0.8rem;
  color: rgba(245, 242, 235, 0.3);
  font-weight: 300;
}

footer a {
  color: rgba(245, 242, 235, 0.3);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 300;
  transition: color 0.2s;
}

footer a:hover { color: var(--accent); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner,
  .manifesto,
  .execution,
  .outcomes,
  .closing { padding-left: 2rem; padding-right: 2rem; }

  .hero-title { font-size: 3.5rem; }
  .hero-inner { padding-top: 8rem; padding-bottom: 6rem; }

  .manifesto { padding-top: 4rem; padding-bottom: 4rem; }
  .manifesto-text { font-size: 1.1rem; }

  .execution { padding-top: 5rem; padding-bottom: 5rem; }
  .exec-grid { grid-template-columns: 1fr; }
  .exec-card { padding: 2rem; }

  .outcomes { padding-top: 4rem; padding-bottom: 4rem; }
  .outcomes-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }

  .closing { padding-top: 6rem; padding-bottom: 5rem; }

  footer { padding: 2rem; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}