:root {
  --midnight: #0C1B33;
  --navy: #152747;
  --ivory: #F7F5F0;
  --warm-gray: #E8E4DC;
  --amber: #D4A843;
  --amber-dark: #B8922E;
  --text-dark: #0C1B33;
  --text-light: #F7F5F0;
  --text-muted: #6B7280;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  background: var(--midnight);
  color: var(--text-light);
  padding: 120px 8vw 80px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
  flex-shrink: 0;
}

.eyebrow-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.5);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(247,245,240,0.7);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--midnight);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-cta-primary:hover { background: var(--amber-dark); }

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(247,245,240,0.8);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(247,245,240,0.25);
  transition: border-color 0.15s, color 0.15s;
}

.btn-cta-secondary:hover {
  border-color: rgba(247,245,240,0.5);
  color: rgba(247,245,240,1);
}

/* ── Stats ── */
.stats {
  background: var(--navy);
  color: var(--text-light);
  padding: 56px 8vw;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0 40px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(247,245,240,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(247,245,240,0.15);
  flex-shrink: 0;
}

/* ── Problem ── */
.problem {
  padding: 100px 8vw;
  background: var(--ivory);
}

.problem-inner { max-width: 1200px; margin: 0 auto; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 56px;
  max-width: 700px;
}

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

.problem-col {
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--warm-gray);
  border-radius: 4px;
  transition: box-shadow 0.2s;
}

.problem-col:hover { box-shadow: 0 8px 40px rgba(12,27,51,0.08); }

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--midnight);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--amber);
}

.problem-col h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-col p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Framework ── */
.framework {
  background: var(--midnight);
  color: var(--text-light);
  padding: 100px 8vw;
}

.framework-inner { max-width: 1200px; margin: 0 auto; }

.framework .section-heading { color: var(--text-light); }

.framework-intro {
  font-size: 18px;
  color: rgba(247,245,240,0.55);
  margin-bottom: 64px;
  margin-top: -40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.step {
  border-left: 2px solid rgba(212,168,67,0.3);
  padding-left: 24px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.step p {
  font-size: 14px;
  color: rgba(247,245,240,0.55);
  line-height: 1.7;
}

.framework-quote {
  border-top: 1px solid rgba(247,245,240,0.1);
  padding-top: 48px;
}

.framework-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: rgba(247,245,240,0.8);
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.framework-quote cite {
  font-size: 13px;
  color: rgba(247,245,240,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-style: normal;
}

/* ── Outcomes ── */
.outcomes {
  padding: 100px 8vw;
  background: white;
}

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

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

.outcome-stat {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 16px;
}

.outcome h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.outcome p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Enterprise ── */
.enterprise {
  background: var(--warm-gray);
  padding: 100px 8vw;
}

.enterprise-inner { max-width: 1200px; margin: 0 auto; }

.enterprise-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  border: 1px solid var(--amber-dark);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 40px;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.enterprise-col h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.enterprise-col > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.enterprise-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ef-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.ef-item svg { color: var(--amber-dark); flex-shrink: 0; }

/* ── Closing ── */
.closing {
  background: var(--midnight);
  color: var(--text-light);
  padding: 120px 8vw;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--text-light);
}

.closing p {
  font-size: 17px;
  color: rgba(247,245,240,0.6);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 24px;
}

.closing-final {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--amber) !important;
  font-weight: 400;
}

.closing-cta {
  margin-top: 48px;
}

/* ── Footer ── */
footer {
  background: #081426;
  color: rgba(247,245,240,0.35);
  padding: 48px 8vw;
  font-size: 13px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
}

.footer-tagline {
  font-size: 12px;
  color: rgba(247,245,240,0.35);
  margin-top: 2px;
  display: block;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: rgba(247,245,240,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 80px 6vw 60px; min-height: auto; }
  .stats { padding: 48px 6vw; flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .enterprise-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section-heading { font-size: 26px; }
  .hero-headline { font-size: 36px; }
  .stat-value { font-size: 40px; }
  .outcome-stat { font-size: 44px; }
}