:root {
  --navy: #0b1d3a;
  --navy-2: #07152d;
  --cobalt: #2563eb;
  --cobalt-2: #1d4ed8;
  --teal: #14b8a6;
  --teal-2: #0f9f92;
  --white: #ffffff;
  --gray-25: #fbfdff;
  --gray-50: #f3f5f8;
  --gray-100: #e8eef7;
  --gray-200: #d8e2f0;
  --text: #10213f;
  --muted: #59677d;
  --shadow: 0 24px 70px rgba(11, 29, 58, .12);
  --shadow-soft: 0 16px 40px rgba(11, 29, 58, .09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, rgba(20, 184, 166, .12), transparent 30%), linear-gradient(180deg, #fbfdff 0%, #f4f8fd 55%, #ffffff 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 226, 240, .72);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img {
  width: 205px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #33445f;
}

.nav-links a {
  position: relative;
}

.nav-links a:hover {
  color: var(--cobalt);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 14px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cobalt), var(--cobalt-2));
  box-shadow: 0 16px 34px rgba(37, 99, 235, .25);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(37, 99, 235, .34);
}

.btn-secondary {
  color: var(--cobalt);
  background: var(--white);
  border-color: rgba(37, 99, 235, .32);
}

.btn-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 20px 46px rgba(11, 29, 58, .24);
}

.btn-teal {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(37, 99, 235, .22);
  border-radius: 999px;
  color: var(--cobalt);
  background: rgba(37, 99, 235, .07);
  font-weight: 850;
  font-size: 13px;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, .13);
}

.hero {
  padding: 86px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  color: var(--navy);
  margin: 18px 0 22px;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(11, 29, 58, .06);
  color: #33445f;
  font-weight: 700;
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  padding: 16px;
  border-radius: 36px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(216, 226, 240, .9);
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  border-radius: 28px;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 44px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-eyebrow {
  color: var(--cobalt);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

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

.metric-card, .feature-card, .step-card, .pricing-card, .faq-item, .content-card, .compare-card {
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(216, 226, 240, .88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf2ff;
  color: var(--cobalt);
  font-weight: 900;
  font-size: 22px;
  flex: 0 0 auto;
}

.metric-card strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
}

.metric-card span {
  color: var(--muted);
  font-weight: 650;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card, .content-card {
  padding: 26px;
}

.feature-card h3, .content-card h3 {
  color: var(--navy);
  line-height: 1.12;
  margin: 18px 0 10px;
  font-size: 21px;
  letter-spacing: -.025em;
}

.feature-card p, .content-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.process-box {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.process-box img {
  display: block;
  width: 100%;
}

.dark-band {
  padding: 72px 0;
  background: radial-gradient(circle at 10% 10%, rgba(20, 184, 166, .28), transparent 35%), linear-gradient(135deg, #06142c, #0b1d3a 54%, #123b7b);
  color: var(--white);
  border-radius: 44px;
  margin: 40px auto;
  width: min(1240px, calc(100% - 28px));
  overflow: hidden;
}

.dark-band h2 {
  color: var(--white);
}

.dark-band .section-sub {
  color: rgba(255, 255, 255, .78);
}

.academy-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 34px;
  align-items: center;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.module {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}

.module strong {
  display: block;
  color: var(--white);
}

.module span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  margin-top: 4px;
}

.academy-visual {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 34px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

.comparison {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

th, td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
  font-size: 14px;
  overflow-wrap: anywhere;
}

th {
  color: var(--navy);
  background: #f7faff;
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

td:first-child {
  font-weight: 850;
  color: var(--navy);
}

.winner {
  background: rgba(37, 99, 235, .06);
  color: var(--navy);
  font-weight: 850;
}

.check {
  color: var(--teal);
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 24px;
  justify-content: center;
}

.pricing-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid var(--cobalt);
  transform: translateY(-8px);
}

.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: var(--cobalt);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.pricing-card.featured .price-content {
  padding-top: 28px;
}

.price-name {
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.035em;
}

.price {
  font-size: 58px;
  line-height: 1;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -.06em;
  margin: 10px 0;
}

.once {
  color: var(--muted);
  font-weight: 750;
}

.list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: #33445f;
  font-weight: 650;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-item {
  padding: 24px;
}

.faq-item h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 19px;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
}

.cta {
  margin: 70px 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy), #123b7b);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(11, 29, 58, .24);
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 8px;
  letter-spacing: -.04em;
}

.cta-box p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

.footer {
  padding: 38px 0;
  border-top: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, .72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.page-hero {
  padding: 84px 0 44px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -.055em;
  color: var(--navy);
  margin: 16px 0 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.card-padded {
  padding: 30px;
}

.kicker-list {
  display: grid;
  gap: 14px;
}

.kicker {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(11, 29, 58, .05);
}

.kicker strong {
  color: var(--navy);
}

.kicker span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.form-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

input {
  min-height: 50px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 0 15px;
  font: inherit;
  color: var(--text);
}

.progress {
  height: 12px;
  background: var(--gray-100);
  border-radius: 99px;
  overflow: hidden;
  margin: 18px 0;
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cobalt), var(--teal));
  transition: width .4s ease;
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(20, 184, 166, .1);
  color: #0f766e;
  font-weight: 750;
}

@media (max-width: 980px) {
  .hero-grid, .academy-grid, .split {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: var(--gray-50);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .metrics, .grid-4, .faq-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .section-head, .cta-box, .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding-top: 48px;
  }

  .nav-actions .btn {
    display: none;
  }

  .logo img {
    width: 170px;
  }

  .metric-card {
    align-items: flex-start;
  }

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

  .hero-actions, .trust-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cta-box {
    padding: 28px;
  }

  .comparison {
    overflow-x: visible;
  }

  table {
    min-width: 0;
    table-layout: fixed;
  }

  th, td {
    padding: 12px 8px;
    font-size: 12px;
    line-height: 1.35;
  }
}


.checkout-message {
  margin: 22px auto 0;
  width: min(860px, 100%);
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(245, 158, 11, .12);
  border: 1px solid rgba(245, 158, 11, .32);
  color: #8a4b00;
  font-weight: 750;
}

.checkout-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #f7faff;
  border: 1px solid var(--gray-200);
  color: var(--muted);
  font-size: 14px;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, .18);
  font-size: 13px;
  font-weight: 800;
}

.success-panel {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 70px 0;
}

.success-card {
  width: min(760px, 100%);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 42px;
  text-align: center;
}

.success-card h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 16px;
}

.success-card p {
  color: var(--muted);
  font-size: 18px;
}


/* Live integration additions */
.footer-links { flex-wrap: wrap; }
.checkout-message:not([hidden]) { margin-top: 18px; padding: 14px 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); color: var(--text); font-weight: 700; }
