:root {
  --navy: #0B1628;
  --navy-mid: #0E1E36;
  --navy-card: #122040;
  --blue: #1C6EFF;
  --blue-hover: #1557D0;
  --blue-light: rgba(28,110,255,0.12);
  --green: #00D4AA;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --text-body: #CBD5E1;
  --text-dim: #64748B;
  --border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--navy);
  line-height: 1.6;
}

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-hover) !important; color: var(--white) !important; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

.btn-white {
  background: var(--white);
  color: var(--blue);
  padding: 15px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ─── SECTION LABELS ────────────────────────────────────────── */
.section-label {
  text-align: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 140px 48px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(28,110,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(28,110,255,0.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p {
  color: var(--text-body);
  font-size: clamp(16px, 2.2vw, 20px);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── PHILOSOPHY ────────────────────────────────────────────── */
.philosophy {
  background: var(--navy-mid);
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-inner { max-width: 780px; margin: 0 auto; }
.philosophy blockquote {
  color: var(--text-body);
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.philosophy blockquote strong { color: var(--white); font-style: normal; }
.philosophy cite {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.5px;
}

/* ─── FRAMEWORK ─────────────────────────────────────────────── */
.framework {
  padding: 100px 48px;
  background: var(--off-white);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.pillar-num {
  width: 46px; height: 46px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}
.pillar-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pillar-card p { color: var(--text-dim); font-size: 15px; line-height: 1.7; }

/* ─── EMAIL CAPTURE ─────────────────────────────────────────── */
.email-capture {
  background: var(--navy);
  padding: 90px 48px;
  border-top: 1px solid var(--border);
}
.email-capture-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.email-capture h2 {
  color: var(--white);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.email-capture p {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ConvertKit overrides */
[data-uid="c18507f72b"] .formkit-form,
[data-uid="c18507f72b"] [data-sv-form] {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}
[data-uid="c18507f72b"] .formkit-field input,
[data-uid="c18507f72b"] input[type="email"],
[data-uid="c18507f72b"] input[type="text"] {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-size: 16px !important;
  padding: 14px 18px !important;
  font-family: 'Inter', sans-serif !important;
}
[data-uid="c18507f72b"] input::placeholder { color: rgba(255,255,255,0.4) !important; }
[data-uid="c18507f72b"] .formkit-submit,
[data-uid="c18507f72b"] button[type="submit"] {
  background: var(--blue) !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  font-family: 'Inter', sans-serif !important;
  width: 100% !important;
  margin-top: 10px !important;
}
[data-uid="c18507f72b"] .formkit-guarantee,
[data-uid="c18507f72b"] .formkit-powered-by-convertkit-container { display: none !important; }

/* ─── PROGRAM SECTION ───────────────────────────────────────── */
.program-section { padding: 100px 48px; background: var(--white); }
.program-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border: 1px solid var(--border);
}
.prog-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.program-card h3 {
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.program-card .desc {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.prog-price {
  color: var(--white);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.prog-price span { font-size: 16px; font-weight: 400; color: var(--text-dim); }
.prog-benefits {
  list-style: none;
  margin-bottom: 32px;
}
.prog-benefits li {
  color: var(--text-body);
  font-size: 15px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}
.prog-benefits li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about-section { background: var(--off-white); padding: 100px 48px; }
.about-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-card);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-label,
.about-text .section-title { text-align: left; }
.about-text .section-title { font-size: clamp(24px, 3.5vw, 36px); }
.about-text p {
  color: #475569;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-text strong { color: var(--navy); }
.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-item strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item span { font-size: 13px; color: var(--text-dim); }

/* ─── FINAL CTA ─────────────────────────────────────────────── */
.final-cta {
  background: var(--blue);
  padding: 90px 48px;
  text-align: center;
}
.final-cta h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #060D1A;
  padding: 64px 48px 36px;
}
.footer-inner { max-width: 980px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand a {
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-brand a span { color: var(--blue); }
.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: 13px;
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 48px 80px;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero p {
  color: var(--text-body);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── PROGRAMS PAGE ─────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.prog-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.prog-card-top {
  background: var(--navy);
  padding: 32px;
}
.prog-card-top h3 { color: var(--white); font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.prog-card-top p { color: var(--text-body); font-size: 14px; line-height: 1.6; }
.prog-card-bottom { padding: 28px 32px; }
.prog-card-bottom .price {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.prog-card-bottom .price span { font-size: 14px; font-weight: 400; color: var(--text-dim); }
.prog-card-bottom ul {
  list-style: none;
  margin-bottom: 24px;
}
.prog-card-bottom ul li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 6px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.prog-card-bottom ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.coming-soon-card {
  background: var(--off-white);
  border-radius: 16px;
  border: 2px dashed rgba(0,0,0,0.12);
  padding: 48px 32px;
  text-align: center;
}
.coming-soon-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.coming-soon-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.coming-badge {
  display: inline-block;
  background: rgba(0,212,170,0.12);
  color: var(--green);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 48px;
}
.contact-form-wrap h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.contact-form-wrap p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 0; }
  .nav-links li:not(:last-child) { display: none; }

  .hero { padding: 110px 24px 60px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .philosophy { padding: 60px 24px; }
  .framework { padding: 60px 24px; }
  .email-capture { padding: 60px 24px; }
  .program-section { padding: 60px 24px; }
  .about-section { padding: 60px 24px; }
  .final-cta { padding: 70px 24px; }

  .program-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }
  .about-inner { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16/9; }
  .about-stats { gap: 24px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 48px 24px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .page-hero { padding: 110px 24px 60px; }
  .contact-form-wrap { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
