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

:root {
  --bg: #101014;
  --surface: #18181D;
  --surface-2: #202027;
  --iron: #D4883A;
  --iron-dim: rgba(212, 136, 58, 0.15);
  --text: #F0EBE1;
  --text-dim: #8A8890;
  --text-muted: #555560;
  --border: rgba(240, 235, 225, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(16, 16, 20, 0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.12em;
  color: var(--text);
}
.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--iron);
  font-weight: 500;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 80px 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212, 136, 58, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212, 136, 58, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 700px; }
.hero-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--iron);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--iron);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stat-row {
  display: flex;
  gap: 48px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--iron);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-aside {
  display: flex;
  align-items: center;
  padding-right: 0;
}
.hero-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--iron);
  margin-bottom: 16px;
  font-weight: 500;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.manifesto-header { padding-top: 8px; }
.manifesto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--text);
}
.manifesto-body p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body p:last-child { color: var(--text); font-weight: 500; }
.manifesto-quote {
  margin-top: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--iron);
}
.quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--iron);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}
.manifesto-quote p {
  font-size: 1.15rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

/* PILLARS */
.pillars {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.pillars-header { margin-bottom: 60px; }
.pillars-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pillar {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.2s;
}
.pillar:hover { background: var(--surface); }
.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  opacity: 0.9;
}
.pillar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--iron);
  margin-bottom: 16px;
}
.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* WHO IS IT FOR */
.whoisitfor {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.whoisitfor-inner { max-width: 1200px; margin: 0 auto; }
.who-grid { margin-top: 16px; display: flex; flex-direction: column; gap: 0; }
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.who-item:last-child { border-bottom: none; }
.who-check {
  font-size: 1rem;
  color: var(--iron);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.who-item p { font-size: 1rem; color: var(--text-dim); line-height: 1.6; }

/* CLOSING */
.closing {
  padding: 120px 32px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.closing::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--iron), transparent);
  margin-bottom: 60px;
}
.closing-inner { position: relative; }
.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--iron), transparent);
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--text);
  margin-top: 60px;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.8;
}
.closing-statement p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--iron);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
  text-align: center;
  background: var(--surface);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--iron);
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 48px; }
  .hero-aside { display: none; }
  .hero-headline { font-size: clamp(4rem, 16vw, 6rem); }
  .hero-stat-row { gap: 32px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 24px; }
  .closing { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .hero-stat-row { flex-wrap: wrap; gap: 24px; }
  .hero-stat-num { font-size: 2rem; }
}