:root {
  --bg: #faf9f6;
  --bg-alt: #f2efe9;
  --fg: #1a1a2e;
  --fg-muted: #5a5a7a;
  --accent: #e8420a;
  --accent-warm: #f05a1a;
  --accent-light: #fff0e8;
  --gold: #d4920a;
  --navy: #1a1a2e;
  --teal: #0a6e6e;
  --teal-light: #e8f4f4;
  --white: #ffffff;
  --border: #e0ddd5;
  --radius: 6px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  background: var(--navy);
  color: var(--white);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232,66,10,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(10,110,110,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,66,10,0.15);
  border: 1px solid rgba(232,66,10,0.35);
  color: #ffb89a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 720px;
}
.hero-lede {
  font-size: 19px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-price {
  display: flex;
  flex-direction: column;
}
.hero-price-tag {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-price-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.hero-discount {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
}

/* System Cards */
.hero-visual {
  overflow-x: auto;
}
.system-card-stack {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
  min-width: max-content;
}
.system-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 18px 20px;
  width: 180px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.system-card:hover { border-color: rgba(255,255,255,0.3); }
.system-card-icon {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 10px;
}
.system-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.system-card-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* SYSTEMS */
.systems {
  padding: 90px 24px;
  background: var(--white);
}
.systems-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.systems-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
  color: var(--navy);
}
.systems-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.sys-item {
  background: var(--white);
  padding: 28px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.2s;
}
.sys-item:hover { background: var(--accent-light); }
.sys-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.sys-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.sys-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* VAULT */
.vault {
  background: var(--navy);
  color: var(--white);
  padding: 90px 24px;
}
.vault-inner { max-width: 820px; margin: 0 auto; }
.vault-badge {
  display: inline-block;
  background: rgba(212,146,10,0.2);
  border: 1px solid rgba(212,146,10,0.4);
  color: #f0c040;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.vault-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}
.vault-subhead {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  max-width: 580px;
  line-height: 1.7;
}
.vault-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.vault-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
}
.vault-check {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 2px;
}
.vault-pricing { display: flex; justify-content: flex-start; }
.vault-price-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px 36px;
  text-align: center;
}
.vault-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.vault-price-label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.vault-price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.vault-discount-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  margin-top: 14px;
}

/* WHAT'S INSIDE / PROCESS */
.whatsinside {
  padding: 90px 24px;
  background: var(--bg-alt);
}
.whatsinside-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.whatsinside-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--navy);
}
.process-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  align-items: stretch;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 30px;
  position: relative;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px;
}
.step-rule {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 0 auto 20px;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* TESTIMONIAL */
.testimonial-section {
  padding: 90px 24px;
  background: var(--white);
}
.testimonial-block {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.testimonial-quote-mark {
  font-size: 80px;
  color: var(--accent);
  font-family: var(--font-display);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.5;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 32px;
}
.testimonial-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-role {
  font-size: 13px;
  color: var(--fg-muted);
}
.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* LEADERSHIP PILLARS */
.leadership-pillars {
  padding: 90px 24px;
  background: var(--teal-light);
}
.pillars-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.pillars-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
}
.pillars-sub {
  text-align: center;
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 52px;
}
.pillars-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid rgba(10,110,110,0.1);
}
.pillar-icon {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 16px;
}
.pillar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--navy);
  color: var(--white);
  padding: 100px 24px;
}
.closing-inner { max-width: 860px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 52px;
}
.closing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.closing-price { display: flex; flex-direction: column; gap: 4px; }
.closing-price-tag {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
}
.closing-price-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.closing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
}
.closing-brand-mark {
  font-size: 18px;
  color: var(--accent);
}

/* FOOTER */
.footer {
  background: #0f0f1e;
  color: rgba(255,255,255,0.4);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 70px; }
  .systems-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonial-stats { flex-direction: column; gap: 32px; align-items: center; }
  .closing-footer { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .vault-price-box { padding: 24px 28px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .nav-tagline { display: none; }
  .system-card-stack { gap: 8px; }
  .system-card { width: 150px; padding: 14px 16px; }
}