/* ─── Variables ───────────────────────────────────────────────── */
:root {
  --bg:        #08080f;
  --bg-card:   #0e0e1a;
  --surface:   #14142a;
  --gold:      #e8a427;
  --gold-light:#f4c85a;
  --gold-dim:  rgba(232, 164, 39, 0.12);
  --navy:      #0b0b20;
  --text:      #eeeef5;
  --text-muted:#9898b8;
  --border:    rgba(232, 164, 39, 0.15);
  --glow:      rgba(232, 164, 39, 0.07);
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }

/* ─── Section Label ─────────────────────────────────────────── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,15,0.85);
  backdrop-filter: blur(16px);
}
.nav__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--gold); text-decoration: none; letter-spacing: 0.02em; }
.nav__tagline { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
}
.hero__bg-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 2rem;
}
.hero__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); display: block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--text);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero__headline em { color: var(--gold); font-style: italic; }
.hero__lede {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 620px; margin-bottom: 3.5rem;
  line-height: 1.7;
}
.hero__stats {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--gold); line-height: 1; }
.hero__stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.25rem; letter-spacing: 0.05em; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ─── Problem ────────────────────────────────────────────────── */
.problem {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}
.problem__inner { max-width: 1100px; margin: 0 auto; }
.problem__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  max-width: 700px;
  margin-bottom: 3.5rem;
  line-height: 1.25;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.problem__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, background 0.3s;
}
.problem__card:hover { border-color: rgba(232,164,39,0.35); background: var(--surface); }
.problem__icon { color: var(--gold); margin-bottom: 1.25rem; }
.problem__card h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 0.6rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.problem__card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Solution ───────────────────────────────────────────────── */
.solution {
  padding: 7rem 2rem;
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.solution__inner { max-width: 1100px; margin: 0 auto; }
.solution__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text); margin: 0.5rem 0 1.5rem;
}
.solution__subtitle { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; margin-bottom: 3.5rem; }
.solution__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}
.solution__pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.solution__pillar:hover { background: var(--surface); }
.solution__pillar-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: var(--gold-dim);
  margin-bottom: 1rem; line-height: 1;
}
.solution__pillar h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.75rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.solution__pillar p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Services ────────────────────────────────────────────────── */
.services {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}
.services__inner { max-width: 1100px; margin: 0 auto; }
.services__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text); margin: 0.5rem 0 3rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.services__item {
  background: var(--bg-card);
  padding: 2rem;
  transition: background 0.3s;
}
.services__item:hover { background: var(--surface); }
.services__item-icon { color: var(--gold); margin-bottom: 1rem; }
.services__item h3 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.75rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.services__item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Process ────────────────────────────────────────────────── */
.process {
  padding: 7rem 2rem;
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.process__inner { max-width: 900px; margin: 0 auto; }
.process__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text); margin: 0.5rem 0 3.5rem;
}
.process__steps { display: flex; flex-direction: column; gap: 0; }
.process__step {
  display: flex; gap: 2.5rem; align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.process__step:last-child { border-bottom: none; }
.process__step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: var(--gold);
  line-height: 1; flex-shrink: 0;
  min-width: 60px;
}
.process__step-body h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 0.6rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.process__step-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.process__step-connector { width: 1px; height: 0; }

/* ─── Manifesto ─────────────────────────────────────────────── */
.manifesto {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, var(--navy) 0%, #0d0d20 100%);
}
.manifesto__inner { max-width: 720px; margin: 0 auto; }
.manifesto__quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--gold);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.75rem;
}
.manifesto__attribution { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 3rem; padding-left: 1.75rem; }
.manifesto__body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.manifesto__body p:last-child { color: var(--text); }

/* ─── Closing ────────────────────────────────────────────────── */
.closing {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing__inner { max-width: 700px; margin: 0 auto; }
.closing__seal {
  width: 90px; height: 90px; margin: 0 auto 2.5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.closing__seal-ring {
  position: absolute; inset: 6px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.closing__seal-text { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--gold); }
.closing__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text); margin-bottom: 1.25rem;
}
.closing__body { font-size: 1rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.closing__sectors { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.closing__sectors span {
  font-size: 0.75rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer__inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.footer__logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--gold); }
.footer__tagline { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
.footer__meta p { font-size: 0.78rem; color: var(--text-muted); }
.footer__meta p:last-child { margin-top: 0.75rem; opacity: 0.5; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero__stats { gap: 1.25rem; }
  .hero__stat-divider { display: none; }
  .problem, .solution, .services, .process, .manifesto, .closing { padding: 5rem 1.5rem; }
  .process__step { gap: 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }
}