:root {
  --bg: #0B1628;
  --bg-alt: #0F1E33;
  --fg: #E8ECF4;
  --fg-muted: #8A9BB5;
  --accent: #00B4A0;
  --accent-dim: rgba(0, 180, 160, 0.12);
  --navy: #162844;
  --amber: #F0B429;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Barlow', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(11, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--fg);
}

.nav-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 2px;
}

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

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 160, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 160, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 48px 100px;
  width: 100%;
}

.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--fg);
  margin-bottom: 36px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 60px;
}

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

.proof-item {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.proof-item:first-child { padding-left: 0; }

.proof-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--fg);
  letter-spacing: 1px;
}

.proof-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ── Outcomes ── */
.outcomes {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 100px 0;
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.outcome {
  padding: 0 48px 0 0;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.outcome:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}

.outcome:nth-child(2) {
  padding-left: 48px;
}

.outcome-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.outcome-title {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.3;
}

.outcome-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ── Platform ── */
.platform {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.platform-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.platform-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px 36px;
  position: relative;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-card:hover::before { opacity: 1; }

.card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.card-title {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.25;
}

.card-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ── Manifesto ── */
.manifesto {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--fg);
  font-style: italic;
  position: relative;
  padding: 0 40px;
}

.manifesto-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.manifesto-attr {
  margin-top: 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── Closing ── */
.closing {
  padding: 120px 0;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
  background: var(--bg-alt);
}

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

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--fg);
}

.footer-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .hero-inner { padding: 120px 24px 80px; }
  .outcomes-inner { padding: 0 24px; }
  .platform-inner { padding: 0 24px; }
  .manifesto-inner { padding: 0 24px; }
  .closing-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; flex-direction: column; gap: 12px; text-align: center; }

  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 0 0 48px; }
  .outcome:last-child { border-bottom: none; padding: 48px 0 0; }
  .outcome:nth-child(2) { padding: 48px 0; }

  .platform-grid { grid-template-columns: 1fr; }

  .hero-proof { flex-direction: column; align-items: flex-start; gap: 24px; }
  .proof-divider { display: none; }
  .proof-item { padding: 0; }

  .hero-headline { font-size: 56px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 44px; }
  .manifesto-quote { font-size: 20px; padding: 0; }
  .manifesto-quote::before { font-size: 60px; }
}