/* Fonts */
:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Epilogue', sans-serif;
  --bg: #FAFAF8;
  --bg-alt: #F0EFE9;
  --navy: #0A1628;
  --navy-mid: #152240;
  --amber: #F5A623;
  --amber-dark: #D48A1A;
  --green: #22C55E;
  --red: #EF4444;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --border: #E5E4DF;
}

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

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

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.nav-brand-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--amber);
  text-decoration: none;
  border: 1px solid rgba(245,166,35,0.4);
  padding: 6px 14px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.nav-cta:hover {
  background: rgba(245,166,35,0.08);
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  background: var(--navy);
  color: #fff;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-note {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 16px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  background: var(--amber);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s ease;
  display: inline-block;
}
.hero-cta:hover {
  background: var(--amber-dark);
}

.hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-card-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hero-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,166,35,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.hero-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Stats */
.stats {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.stat {
  flex: 1;
  padding: 36px 32px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* Sections */
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
}

/* Model */
.model {
  padding: 80px 40px;
}
.model-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.model-header {
  margin-bottom: 48px;
}
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.model-card {
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
}
.model-card--old {
  background: #fff;
}
.model-card--new {
  background: var(--navy);
  border-color: var(--navy);
}
.model-card-header {
  margin-bottom: 24px;
}
.model-card-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 4px;
}
.model-card-label--accent {
  color: var(--amber);
  background: rgba(245,166,35,0.15);
}
.model-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.model-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}
.model-list-item--bad {
  color: #555;
}
.model-list-item--good {
  color: rgba(255,255,255,0.85);
}
.model-list-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Process (was proof) */
.process {
  padding: 80px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child {
  border-bottom: none;
}
.process-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 4px;
}
.process-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* Target (was sectors) */
.target {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.target-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.target-content {
  margin-bottom: 48px;
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.target-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.target-card-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.target-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.target-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Sectors */
.sectors {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.sectors-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sectors-content {
  margin-bottom: 40px;
}
.sectors-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sector-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  background: var(--navy);
  color: #fff;
  border-radius: 40px;
  letter-spacing: 0.02em;
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--navy);
  color: #fff;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-stamp {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 10px 20px;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 40px;
  display: inline-block;
}
.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.closing-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  background: var(--amber);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s ease;
}
.closing-cta:hover {
  background: var(--amber-dark);
}
.closing-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* Footer */
.footer {
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
}
.footer-divider {
  color: var(--border);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-link {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; padding: 24px 20px; }
  .stat-divider { display: none; }
  .model-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .target-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; }
  .nav-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .nav, .hero, .model, .process, .target, .closing, .footer { padding-left: 20px; padding-right: 20px; }
}