:root {
  --navy: #0f172a;
  --blue: #1e3a8a;
  --teal: #2dd4bf;
  --sky: #38bdf8;
  --purple: #673ab7;
  --gold: #fbbf24;
  --gold-dark: #b7791f;
  --paper: #f8fafc;
  --cream: #fdfbf7;
  --support: #fff7df;
  --warm: #fff7df;
  --text: #020617;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
  --shadow-soft: 0 16px 38px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 86% 4%, rgba(45, 212, 191, 0.2), transparent 28rem),
    radial-gradient(circle at 8% 18%, rgba(56, 189, 248, 0.16), transparent 26rem),
    radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.11), transparent 30rem),
    linear-gradient(180deg, var(--cream), var(--paper) 48rem);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  margin: 0;
  overflow-x: clip;
}

body::before {
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--teal), var(--gold));
  content: "";
  display: block;
  height: 4px;
}

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

.site-header,
.hero,
.section,
.campaign-box,
.b2b-box,
.final-cta,
.site-footer {
  margin-inline: auto;
  max-width: 1160px;
  width: min(calc(100% - 32px), 1160px);
}

.site-header {
  align-items: center;
  background: rgba(253, 251, 247, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  letter-spacing: -0.01em;
}

.brand-lockup {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  letter-spacing: -0.01em;
}

.brand-mark {
  align-items: center;
  background:
    radial-gradient(circle at 68% 35%, var(--teal) 0 9%, transparent 10%),
    linear-gradient(135deg, var(--purple), var(--blue) 56%, var(--teal));
  border-radius: 6px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  padding: 8px 10px;
}

.site-nav a:hover {
  background: rgba(45, 212, 191, 0.12);
  color: var(--navy);
}

.site-nav .nav-cta {
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  padding-inline: 14px;
}

.site-nav .nav-cta:hover {
  background: var(--blue);
  color: var(--white);
}

.hero {
  align-items: center;
  position: relative;
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  min-height: clamp(720px, calc(100vh - 76px), 860px);
  padding: clamp(28px, 3.5vw, 52px) 0 clamp(44px, 6vw, 76px);
}

.hero::before {
  background-image:
    radial-gradient(circle, rgba(30, 58, 138, 0.12) 0 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(45, 212, 191, 0.06) 1px, transparent 1px);
  background-position: 0 0, 0 0, 0 0;
  background-size: 34px 34px, 110px 110px, 110px 110px;
  content: "";
  inset: 0 -4vw;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-copy,
.section-heading,
.course-intro,
.campaign-panel,
.info-card,
.course-card,
.price-model-card,
.faq-grid article {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: break-word;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.032em;
  max-width: 11.8ch;
}

.headline-line {
  display: block;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
}

.hero-lead {
  color: var(--navy);
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 750;
  line-height: 1.35;
  margin: 18px 0 12px;
  max-width: 780px;
}

.hero-text,
.section p,
.campaign-box p,
.b2b-box p,
.final-cta p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}

.hero-text {
  max-width: 720px;
}

.mobile-line {
  display: inline;
}

.hero-campaign-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 247, 223, 0.94), rgba(255, 255, 255, 0.86)),
    var(--support);
  border: 1px solid rgba(251, 191, 36, 0.46);
  border-left: 5px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  color: var(--navy);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(190px, 0.58fr) minmax(0, 1fr);
  margin: 20px 0 0;
  max-width: 760px;
  padding: 14px 16px;
}

.hero-campaign-card span,
.campaign-deadline {
  color: var(--gold-dark);
  font-weight: 900;
}

.hero-campaign-card strong {
  color: var(--navy);
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-campaign-card p {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 750;
  margin: 0;
}

.hero-campaign-card > * {
  min-width: 0;
}

.exam-note {
  color: var(--text);
  font-weight: 750;
  margin: 0 0 22px;
  max-width: 660px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 4px;
  max-width: 720px;
}

.hero-badges span {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 7px 9px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-choice-strip {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  max-width: 760px;
}

.hero-choice-strip a {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
  color: var(--navy);
  display: flex;
  font-size: 0.88rem;
  font-weight: 850;
  justify-content: center;
  min-height: 44px;
  padding: 9px 10px;
  text-align: center;
}

.hero-choice-strip a:hover {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.35);
  color: var(--blue);
}

.hero-actions.centered {
  justify-content: center;
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(45, 212, 191, 0.08);
  color: var(--white);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--blue), #1646a6);
  box-shadow: 0 18px 38px rgba(30, 58, 138, 0.24), 0 0 0 3px rgba(45, 212, 191, 0.14);
}

.button.secondary {
  background: var(--white);
  border: 1px solid rgba(30, 58, 138, 0.28);
  color: var(--blue);
}

.button.secondary:hover {
  background: rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.42);
}

.button.secondary.quiet {
  box-shadow: none;
  color: rgba(18, 62, 110, 0.82);
}

.button.light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.trust-line {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 22px 0 0;
  max-width: 720px;
}

.hero-visual {
  min-height: 520px;
  position: relative;
}

.learning-scene {
  background:
    radial-gradient(circle at 72% 14%, rgba(251, 191, 36, 0.22), transparent 18%),
    radial-gradient(circle at 18% 26%, rgba(45, 212, 191, 0.3), transparent 22%),
    radial-gradient(circle at 86% 82%, rgba(56, 189, 248, 0.24), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.94));
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.learning-scene::before {
  background-image:
    radial-gradient(circle, rgba(30, 58, 138, 0.12) 0 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 58, 138, 0.05) 1px, transparent 1px);
  background-size: 34px 34px, 92px 92px, 92px 92px;
  content: "";
  inset: 0;
  opacity: 0.56;
  position: absolute;
}

.scene-glow {
  border-radius: 999px;
  filter: blur(18px);
  position: absolute;
}

.scene-glow-one {
  background: rgba(45, 212, 191, 0.32);
  height: 190px;
  right: 36px;
  top: 32px;
  width: 190px;
}

.scene-glow-two {
  background: rgba(251, 191, 36, 0.22);
  bottom: 56px;
  height: 160px;
  left: 48px;
  width: 160px;
}

.analysis-window {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 10px;
  padding: 18px;
  position: absolute;
  z-index: 2;
}

.window-primary {
  right: 42px;
  top: 54px;
  width: min(54%, 320px);
}

.window-dot {
  background: var(--teal);
  border-radius: 999px;
  display: inline-block;
  height: 8px;
  margin-right: 4px;
  width: 8px;
}

.screen-line {
  background: rgba(30, 58, 138, 0.18);
  border-radius: 999px;
  height: 10px;
  width: 84%;
}

.screen-line.strong {
  background: rgba(30, 58, 138, 0.72);
  width: 58%;
}

.screen-line.short {
  background: rgba(45, 212, 191, 0.36);
  width: 68%;
}

.chart-bars {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  height: 82px;
  margin-top: 8px;
}

.chart-bars i {
  background: linear-gradient(180deg, var(--teal), var(--blue));
  border-radius: 8px 8px 3px 3px;
  display: block;
}

.chart-bars i:nth-child(1) { height: 46%; }
.chart-bars i:nth-child(2) { height: 72%; }
.chart-bars i:nth-child(3) { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); height: 92%; }
.chart-bars i:nth-child(4) { height: 58%; }

.researcher-figure {
  bottom: 82px;
  height: 250px;
  left: 78px;
  position: absolute;
  width: 190px;
  z-index: 3;
}

.figure-head {
  background: #f2c7a7;
  border-radius: 48% 48% 44% 44%;
  box-shadow: inset -8px -4px 0 rgba(120, 53, 15, 0.12);
  height: 72px;
  left: 72px;
  position: absolute;
  top: 0;
  width: 64px;
}

.figure-hair {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 46px 42px 26px 24px;
  height: 58px;
  left: 58px;
  position: absolute;
  top: -8px;
  transform: rotate(-8deg);
  width: 82px;
}

.figure-body {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(226, 232, 240, 0.98)),
    linear-gradient(180deg, #ffffff, #e2e8f0);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 28px 28px 18px 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
  height: 150px;
  left: 42px;
  position: absolute;
  top: 72px;
  width: 126px;
}

.figure-body::before {
  background: linear-gradient(180deg, var(--teal), var(--blue));
  border-radius: 999px;
  content: "";
  height: 108px;
  left: 54px;
  position: absolute;
  top: 22px;
  width: 16px;
}

.figure-arm {
  background: #f2c7a7;
  border-radius: 999px;
  height: 24px;
  left: 128px;
  position: absolute;
  top: 138px;
  transform: rotate(24deg);
  width: 92px;
}

.laptop {
  bottom: 66px;
  height: 130px;
  left: 206px;
  position: absolute;
  width: 240px;
  z-index: 4;
}

.laptop-screen {
  background: linear-gradient(145deg, #0f172a, #1e3a8a);
  border: 7px solid #111827;
  border-radius: 12px;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.22);
  display: grid;
  gap: 8px;
  height: 112px;
  padding: 18px;
  width: 220px;
}

.laptop-screen span {
  background: rgba(45, 212, 191, 0.82);
  border-radius: 999px;
  height: 8px;
}

.laptop-screen span:nth-child(2) {
  background: rgba(56, 189, 248, 0.68);
  width: 72%;
}

.laptop-screen span:nth-child(3) {
  background: rgba(251, 191, 36, 0.78);
  width: 46%;
}

.laptop-base {
  background: linear-gradient(180deg, #cbd5e1, #94a3b8);
  border-radius: 0 0 24px 24px;
  height: 18px;
  left: -18px;
  position: absolute;
  top: 106px;
  width: 258px;
}

.dna-ribbon {
  height: 260px;
  left: 30px;
  opacity: 0.72;
  position: absolute;
  top: 42px;
  width: 150px;
  z-index: 1;
}

.dna-ribbon::before,
.dna-ribbon::after {
  border: 2px solid rgba(30, 58, 138, 0.2);
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  height: 240px;
  position: absolute;
  top: 8px;
  width: 80px;
}

.dna-ribbon::before {
  left: 20px;
  transform: rotate(12deg);
}

.dna-ribbon::after {
  right: 20px;
  transform: rotate(-12deg);
}

.dna-ribbon span {
  background: rgba(45, 212, 191, 0.45);
  border-radius: 999px;
  height: 3px;
  left: 44px;
  position: absolute;
  width: 70px;
}

.dna-ribbon span:nth-child(1) { top: 44px; transform: rotate(18deg); }
.dna-ribbon span:nth-child(2) { top: 82px; transform: rotate(-15deg); }
.dna-ribbon span:nth-child(3) { top: 124px; transform: rotate(17deg); }
.dna-ribbon span:nth-child(4) { top: 166px; transform: rotate(-14deg); }
.dna-ribbon span:nth-child(5) { top: 206px; transform: rotate(15deg); }

.scene-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  position: absolute;
  z-index: 5;
}

.scene-card span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.scene-card strong {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.2;
}

.card-deadline {
  border-color: rgba(251, 191, 36, 0.5);
  bottom: 36px;
  left: 34px;
}

.card-deadline strong {
  color: var(--gold-dark);
}

.card-support {
  right: 30px;
  top: 210px;
}

.card-support strong {
  color: var(--blue);
}

.card-progress {
  bottom: 52px;
  right: 46px;
  max-width: 210px;
}

.visual-badge,
.card-number {
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 6px;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 900;
  justify-self: start;
  padding: 6px 9px;
}

.campaign-box,
.b2b-box,
.final-cta {
  border-radius: 14px;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
}

.campaign-box {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 247, 223, 0.92), rgba(255, 255, 255, 0.98)),
    var(--support);
  border: 1px solid rgba(251, 191, 36, 0.34);
  border-left: 6px solid var(--gold);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.campaign-box h2,
.campaign-box p + p,
.b2b-box p,
.final-cta p {
  margin-top: 12px;
}

.campaign-highlight {
  color: var(--navy) !important;
  font-size: clamp(1.16rem, 2vw, 1.45rem) !important;
  font-weight: 850;
  line-height: 1.35;
  max-width: 820px;
}

.campaign-points {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.campaign-points li {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 8px;
  color: var(--text);
  display: flex;
  gap: 8px;
  padding: 10px 12px;
}

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

.support-note {
  border-top: 1px solid rgba(251, 191, 36, 0.28);
  font-size: 0.96rem !important;
  padding-top: 14px;
}

.exam-support-box {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(48, 166, 179, 0.22);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  margin: 22px auto 0;
  max-width: 1160px;
  padding: clamp(22px, 3vw, 34px);
  width: min(calc(100% - 32px), 1160px);
}

.exam-support-box p:last-child {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 750;
  margin: 0;
}

.learning-steps {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.learning-steps span {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 10px;
  color: var(--navy);
  display: flex;
  font-size: 0.92rem;
  font-weight: 850;
  gap: 9px;
  min-height: 48px;
  padding: 10px 12px;
}

.learning-steps span::before {
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18);
  content: "";
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

.section {
  padding: 72px 0 0;
}

.section-heading {
  margin-bottom: 22px;
  max-width: 720px;
}

.card-grid,
.feature-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.faq-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(18, 62, 110, 0.055);
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.info-card,
.path-card,
.course-card,
.faq-grid article,
.feature-grid p {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.info-card:hover,
.path-card:hover,
.course-card:hover {
  border-color: rgba(45, 212, 191, 0.38);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.11);
  transform: translateY(-2px);
}

.info-card h3,
.faq-grid h3 {
  margin-top: 14px;
}

.info-card p,
.faq-grid p {
  color: var(--muted);
  margin: 10px 0 0;
}

.price-model-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-model-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.price-model-card span {
  align-items: center;
  background: rgba(48, 166, 179, 0.12);
  border-radius: 6px;
  color: var(--teal);
  display: inline-flex;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  margin-bottom: 16px;
  width: 32px;
}

.price-model-card.featured {
  background: linear-gradient(180deg, rgba(255, 247, 223, 0.78), #ffffff 72%);
  border-color: rgba(251, 191, 36, 0.36);
}

.price-model-card h3,
.course-card h3 {
  margin-bottom: 10px;
}

.path-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  position: relative;
}

.path-card::before {
  background: linear-gradient(90deg, var(--teal), var(--sky));
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 0;
}

.path-card.wide {
  grid-column: span 2;
}

.path-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.path-card h3 {
  margin-bottom: 18px;
}

.path-card a {
  align-items: center;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 6px;
  color: var(--navy);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: auto;
  min-height: 42px;
  padding: 9px 12px;
}

.path-card a:hover {
  background: var(--teal);
  color: var(--white);
}

.split-section {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.split-section .button {
  margin-top: 22px;
}

.course-section {
  display: grid;
  gap: 22px;
}

.course-intro {
  max-width: 820px;
}

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

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

.course-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(18, 62, 110, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  position: relative;
}

.course-card::before {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 12px 12px 0 0;
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.price-box {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), #ffffff);
  border: 1px solid rgba(18, 62, 110, 0.1);
  border-radius: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 20px;
  padding: 12px;
}

.price-box div {
  background: var(--white);
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  padding: 10px;
}

.price-box span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.price-box strong {
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.1;
}

.course-level {
  align-self: flex-start;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 6px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  margin-bottom: 14px;
  padding: 5px 8px;
}

.course-card p,
.price-model-card p {
  color: var(--muted);
  margin: 0;
}

.course-card ul {
  color: var(--text);
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 20px;
  padding: 0;
}

.course-card li {
  align-items: flex-start;
  display: flex;
  font-size: 0.92rem;
  font-weight: 750;
  gap: 8px;
}

.course-card li::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  flex: 0 0 7px;
  height: 7px;
  margin-top: 9px;
  width: 7px;
}

.course-link {
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 6px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: auto;
  min-height: 44px;
  padding: 10px 12px;
}

.course-link:hover {
  background: linear-gradient(135deg, var(--blue), #1646a6);
  box-shadow: 0 12px 24px rgba(30, 58, 138, 0.18);
}

.other-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.other-courses span {
  background: rgba(247, 248, 250, 0.95);
  border: 1px solid rgba(18, 62, 110, 0.1);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 800;
  padding: 10px 12px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.legal-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
}

.legal-note a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(48, 166, 179, 0.35);
  text-underline-offset: 3px;
}

.course-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(18, 62, 110, 0.06);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 20px;
}

.course-list li {
  align-items: center;
  background: rgba(247, 248, 250, 0.84);
  border: 1px solid rgba(18, 62, 110, 0.08);
  border-radius: 8px;
  color: var(--navy);
  display: flex;
  font-weight: 800;
  gap: 10px;
  min-height: 58px;
  padding: 12px;
}

.course-list li::before,
.feature-grid p::before {
  background: var(--teal);
  border-radius: 999px;
  content: "";
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid p {
  align-items: flex-start;
  background: linear-gradient(180deg, #ffffff, rgba(248, 250, 252, 0.82));
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  display: flex;
  font-weight: 750;
  gap: 12px;
  margin: 0;
  padding: 18px;
}

.feature-grid p:hover {
  border-color: rgba(45, 212, 191, 0.3);
}

.b2b-box {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(18, 62, 110, 0.98), rgba(31, 119, 180, 0.9)),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.b2b-box h2,
.b2b-box p,
.b2b-box .eyebrow {
  color: var(--white);
}

.b2b-box p {
  opacity: 0.86;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.final-cta {
  background:
    radial-gradient(circle at 18% 20%, rgba(45, 212, 191, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 24%, rgba(251, 191, 36, 0.14), transparent 22rem),
    linear-gradient(135deg, #020617, #0f172a 68%, #102a62);
  border: 1px solid rgba(45, 212, 191, 0.22);
  box-shadow: var(--shadow);
  margin-bottom: 64px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.final-cta::before {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta p {
  color: #cbd5e1 !important;
}

.final-cta p {
  margin-inline: auto;
  max-width: 760px;
}

.final-cta .button.primary {
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(251, 191, 36, 0.22);
  color: var(--navy);
}

.final-cta .button.primary:hover {
  background: #ffd772;
  box-shadow: 0 18px 40px rgba(251, 191, 36, 0.28);
}

.final-cta .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(203, 213, 225, 0.42);
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 26px 0 38px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 750;
}

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

.legal-body {
  background: linear-gradient(180deg, #ffffff, var(--paper));
}

.legal-header {
  min-height: 70px;
}

.legal-page {
  margin-inline: auto;
  max-width: 960px;
  padding: clamp(34px, 5vw, 72px) 0 64px;
  width: min(calc(100% - 32px), 960px);
}

.legal-hero {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
  max-width: 16ch;
}

.legal-hero p {
  color: var(--muted);
  margin: 16px 0 0;
  overflow-wrap: anywhere;
}

.legal-hero a,
.legal-content a {
  color: var(--blue);
  display: inline-block;
  font-weight: 750;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(31, 119, 180, 0.25);
  text-underline-offset: 3px;
  word-break: break-word;
}

.legal-hero a {
  word-break: break-all;
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(18, 62, 110, 0.06);
  color: var(--text);
  padding: clamp(24px, 4vw, 46px);
}

.legal-content h2,
.legal-content h3 {
  color: var(--navy);
  letter-spacing: -0.01em;
}

.legal-content h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  margin: 0 0 18px;
}

.legal-content h3 {
  font-size: 1.08rem;
  margin: 28px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-nav {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    width: 100%;
  }

  .hero,
  .hero-campaign-card,
  .hero-choice-strip,
  .campaign-box,
  .split-section,
  .b2b-box,
  .card-grid.three,
  .learning-steps,
  .path-grid,
  .price-model-grid,
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow { order: 1; }
  .hero-copy h1 { order: 2; }
  .hero-lead { order: 3; }
  .hero-text { order: 4; }
  .hero-campaign-card { order: 5; }
  .hero-actions { order: 6; }
  .hero-visual { order: 7; }
  .hero-choice-strip { order: 8; }
  .hero-badges { order: 9; }
  .trust-line { order: 10; }

  h1 {
    max-width: 13ch;
  }

  .hero-visual {
    min-height: 420px;
  }

  .learning-scene {
    min-height: 420px;
  }

  .window-primary {
    right: 24px;
    top: 30px;
    width: min(58%, 280px);
  }

  .researcher-figure {
    bottom: 62px;
    left: 46px;
    transform: scale(0.9);
    transform-origin: bottom left;
  }

  .laptop {
    bottom: 52px;
    left: 190px;
    transform: scale(0.9);
    transform-origin: bottom left;
  }

  .card-support {
    right: 22px;
    top: 172px;
  }

  .card-progress {
    bottom: 32px;
    right: 28px;
  }

  .campaign-box,
  .b2b-box {
    align-items: start;
  }

  .campaign-box .button,
  .b2b-box .button {
    justify-self: start;
  }

  .course-list {
    grid-template-columns: 1fr;
  }

  .exam-support-box {
    grid-template-columns: 1fr;
  }

  .featured-courses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .campaign-box,
  .exam-support-box,
  .b2b-box,
  .final-cta,
  .legal-page,
  .site-footer {
    margin-left: 12px;
    margin-right: 12px;
    width: auto;
  }

  .site-header {
    gap: 12px;
    padding: 12px 0;
  }

  .site-nav {
    gap: 6px;
  }

  .footer-links {
    justify-content: center;
  }

  .site-nav a {
    font-size: 0.86rem;
    padding: 7px 6px;
  }

  .site-nav .nav-cta {
    flex: 1 1 100%;
    min-height: 42px;
    max-width: calc(100vw - 24px);
  }

  .hero-actions,
  .button {
    max-width: calc(100vw - 24px);
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .hero-visual {
    aspect-ratio: auto;
    min-height: 330px;
  }

  .learning-scene {
    border-radius: 20px;
    min-height: 330px;
  }

  .featured-courses,
  .course-price-grid,
  .learning-steps,
  .hero-choice-strip,
  .hero-campaign-card,
  .price-box {
    grid-template-columns: 1fr;
  }

  .hero-choice-strip a {
    justify-content: flex-start;
    text-align: left;
  }

  .analysis-window {
    padding: 12px;
  }

  .window-primary {
    right: 14px;
    top: 16px;
    width: 58%;
  }

  .chart-bars {
    height: 48px;
  }

  .researcher-figure {
    bottom: 38px;
    left: 24px;
    transform: scale(0.66);
  }

  .laptop {
    bottom: 34px;
    left: 128px;
    transform: scale(0.68);
  }

  .dna-ribbon {
    left: -8px;
    top: 18px;
    transform: scale(0.72);
    transform-origin: top left;
  }

  .scene-card {
    padding: 9px 10px;
  }

  .scene-card span {
    font-size: 0.68rem;
  }

  .scene-card strong {
    font-size: 0.8rem;
  }

  .card-deadline {
    bottom: 12px;
    left: 12px;
  }

  .card-support {
    display: none;
  }

  .card-progress {
    display: none;
  }

  .hero-badges span,
  .other-courses span {
    width: 100%;
  }

  h1 {
    font-size: clamp(2rem, 8.9vw, 2.36rem);
    max-width: 100%;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .path-card,
  .course-card,
  .price-box {
    width: 100%;
  }

  .hero-lead .mobile-line,
  .hero-text .mobile-line,
  .exam-note .mobile-line {
    display: block;
  }

  .hero-copy > *,
  .section-heading,
  .course-intro,
  .campaign-box > *,
  .exam-support-box > *,
  .b2b-box > *,
  .final-cta > *,
  .legal-note {
    max-width: calc(100vw - 48px);
  }

  .hero-lead,
  .hero-text,
  .exam-note,
  .trust-line,
  .hero-campaign-card,
  .hero-choice-strip {
    width: calc(100vw - 48px);
  }
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body {
    background: #ffffff !important;
    color: var(--text) !important;
  }

  body::before {
    display: none;
  }

  .site-header {
    background: #ffffff !important;
    position: static;
  }

  .hero-visual,
  .campaign-box,
  .exam-support-box,
  .b2b-box,
  .final-cta,
  .course-card,
  .info-card,
  .price-model-card,
  .faq-grid article {
    box-shadow: none !important;
  }
}

/* Conversion pass: hero, pricing, pathfinder, FAQ, and mobile CTA */
.hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
}

.hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
  max-width: 12ch;
}

.hero-lead {
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  max-width: 680px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.14rem);
  max-width: 720px;
}

.hero-microcopy {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 850;
  margin: 10px 0 0;
}

.hero-fact-line {
  align-items: center;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 14px;
}

.hero-fact-line span {
  align-items: center;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 8px;
}

.hero-fact-line span::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

.countdown {
  align-items: center;
  background: rgba(255, 247, 223, 0.88);
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
}

.hero-countdown {
  margin-top: 14px;
}

.countdown-label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.countdown-time {
  color: var(--gold-dark);
  font-weight: 950;
}

.campaign-actions {
  align-items: flex-start;
  display: grid;
  gap: 14px;
  justify-items: start;
}

.hero-visual {
  min-height: 520px;
}

.hero-image-frame {
  background:
    radial-gradient(circle at 16% 18%, rgba(45, 212, 191, 0.28), transparent 22rem),
    radial-gradient(circle at 80% 12%, rgba(251, 191, 36, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.92));
  border: 1px solid rgba(30, 58, 138, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-image-frame::before {
  background-image:
    radial-gradient(circle, rgba(30, 58, 138, 0.14) 0 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 58, 138, 0.05) 1px, transparent 1px);
  background-size: 34px 34px, 96px 96px, 96px 96px;
  content: "";
  inset: 0;
  opacity: 0.5;
  position: absolute;
}

.hero-image {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 250, 252, 0.08)),
    url("assets/hero-bioinformatics-learning.webp"),
    radial-gradient(circle at 68% 28%, rgba(56, 189, 248, 0.24), transparent 15rem),
    radial-gradient(circle at 34% 58%, rgba(45, 212, 191, 0.28), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(226, 232, 240, 0.88));
  background-position: center;
  background-size: cover;
  border-radius: 22px;
  inset: 26px;
  overflow: hidden;
  position: absolute;
}

.hero-image::before {
  background:
    linear-gradient(130deg, transparent 0 42%, rgba(30, 58, 138, 0.16) 42% 42.5%, transparent 43% 100%),
    repeating-linear-gradient(90deg, rgba(30, 58, 138, 0.08) 0 1px, transparent 1px 54px);
  content: "";
  inset: 0;
  opacity: 0.55;
  position: absolute;
}

.hero-image::after {
  background:
    radial-gradient(circle at 38% 36%, #f2c7a7 0 28px, transparent 29px),
    radial-gradient(circle at 38% 28%, #0f172a 0 36px, transparent 37px),
    linear-gradient(180deg, transparent 0 46%, rgba(255, 255, 255, 0.95) 46% 70%, transparent 70%),
    linear-gradient(145deg, transparent 0 58%, #0f172a 58% 80%, transparent 80%);
  border-radius: 20px;
  content: "";
  inset: 0;
  position: absolute;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  color: var(--navy);
  font-weight: 950;
  padding: 12px 14px;
  position: absolute;
  z-index: 2;
}

.hero-badge-primary {
  border-color: rgba(251, 191, 36, 0.55);
  color: var(--gold-dark);
  right: 24px;
  top: 28px;
}

.hero-badge-secondary {
  bottom: 28px;
  left: 24px;
}

.pathfinder {
  scroll-margin-top: 90px;
}

.path-tabs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.path-tab {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(30, 58, 138, 0.16);
  border-radius: 10px;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  min-height: 58px;
  padding: 12px;
  text-align: left;
}

.path-tab.is-active {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.path-panels {
  display: grid;
  gap: 14px;
}

.path-panel {
  background: var(--white);
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 3vw, 30px);
}

.js-enabled .path-panel {
  display: none;
}

.js-enabled .path-panel.is-open {
  display: block;
}

.path-course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.path-course-list li {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 850;
  padding: 8px 10px;
}

.path-cta {
  align-items: center;
  background: var(--navy);
  border-radius: 6px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  min-height: 44px;
  padding: 10px 14px;
}

.price-block {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 14px;
}

.price-tier {
  background: linear-gradient(180deg, #ffffff, rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 12px;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.price-tier > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.old-price {
  color: #94a3b8;
  font-size: 0.86rem;
  font-weight: 800;
}

.new-price {
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.05;
}

.saving-badge {
  align-self: start;
  background: rgba(251, 191, 36, 0.17);
  border: 1px solid rgba(251, 191, 36, 0.38);
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  padding: 5px 7px;
}

.seat-note,
.card-microcopy,
.certificate-note,
.final-seat-note,
.final-microcopy {
  color: var(--navy) !important;
  font-size: 0.9rem !important;
  font-weight: 850;
}

.seat-note {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 8px;
  margin: 0 0 12px !important;
  padding: 8px 10px;
}

.card-microcopy {
  margin-top: 10px !important;
  text-align: center;
}

.certificate-note {
  background: rgba(255, 247, 223, 0.72);
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: 10px;
  margin: 10px auto 0 !important;
  max-width: 840px;
  padding: 12px 14px;
  text-align: center;
}

.research-note {
  background: var(--white);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  margin: 44px auto 0;
  max-width: 1160px;
  padding: clamp(24px, 4vw, 42px);
  width: min(calc(100% - 32px), 1160px);
}

.research-note-title {
  max-width: 760px;
}

.research-citation {
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  margin-top: 16px !important;
  padding-top: 14px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(18, 62, 110, 0.055);
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 900;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 18px;
  text-align: left;
  width: 100%;
}

.faq-question::after {
  color: var(--teal);
  content: "+";
  font-size: 1.35rem;
  font-weight: 900;
}

.faq-item.is-open .faq-question::after {
  content: "–";
}

.faq-answer {
  padding: 0 18px 18px;
}

.js-enabled .faq-answer {
  display: none;
}

.js-enabled .faq-item.is-open .faq-answer {
  display: block;
}

.final-countdown {
  margin: 18px auto 0;
}

.final-microcopy {
  color: #cbd5e1 !important;
  margin-top: 14px !important;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .hero {
    padding-inline: 24px;
    width: 100%;
  }

  .hero-inner,
  .hero-copy {
    max-width: calc(100vw - 48px);
    min-width: 0;
    width: calc(100vw - 48px);
  }

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

  .hero-copy {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.45rem);
    max-width: 100%;
  }

  .hero-image-frame,
  .hero-visual {
    min-height: 320px;
  }

  .hero-image {
    inset: 14px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 9px 10px;
  }

  .hero-badge-primary {
    right: 20px;
    top: 20px;
  }

  .hero-badge-secondary {
    bottom: 20px;
    left: 20px;
  }

  .hero-fact-line,
  .countdown {
    align-items: flex-start;
    flex-direction: column;
  }

  .path-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .path-tab {
    flex: 0 0 min(82vw, 280px);
    scroll-snap-align: start;
  }

  .price-block {
    grid-template-columns: 1fr;
  }

  .research-note {
    margin-left: 12px;
    margin-right: 12px;
    width: auto;
  }

  .mobile-sticky-cta {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    bottom: 0;
    box-shadow: 0 -16px 34px rgba(15, 23, 42, 0.12);
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .mobile-sticky-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .mobile-sticky-copy strong {
    color: var(--navy);
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .mobile-sticky-copy span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
  }

  .mobile-sticky-button {
    background: var(--navy);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 950;
    padding: 10px 12px;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    display: block;
  }
}

/* Conversion flow refresh */
.site-header {
  max-width: none;
  width: 100%;
  padding: 0;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1160px;
  min-height: 68px;
  padding: 10px 16px;
  width: min(100%, 1160px);
}

.brand-logo {
  align-items: center;
  background:
    radial-gradient(circle at 68% 35%, var(--teal) 0 9%, transparent 10%),
    linear-gradient(135deg, var(--purple), var(--blue) 56%, var(--teal));
  border-radius: 6px;
  color: var(--white);
  display: inline-flex;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.brand-text {
  color: var(--navy);
  font-weight: 900;
}

.nav {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.nav-link,
.nav-cta {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 780;
  padding: 8px 10px;
}

.nav-link:hover {
  background: rgba(45, 212, 191, 0.12);
  color: var(--navy);
}

.nav-cta {
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  color: var(--white);
  padding-inline: 14px;
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.hero {
  display: block;
  min-height: auto;
  padding: clamp(42px, 7vw, 86px) 0 clamp(34px, 5vw, 62px);
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  position: relative;
  width: 100%;
}

.hero-eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-title {
  color: var(--text);
  font-size: clamp(2.55rem, 5.6vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 760px;
}

.hero-support {
  color: var(--blue) !important;
  font-size: clamp(1.22rem, 2vw, 1.55rem) !important;
  font-weight: 950;
  line-height: 1.25;
  margin: 20px 0 12px !important;
  max-width: 680px;
}

.hero-lead {
  color: var(--muted) !important;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem) !important;
  font-weight: 650 !important;
  line-height: 1.65;
  margin: 0 !important;
  max-width: 690px;
}

.hero-final-note {
  background: linear-gradient(135deg, rgba(255, 247, 223, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  color: var(--navy);
  display: grid;
  gap: 3px;
  margin-top: 18px;
  max-width: 650px;
  padding: 13px 15px;
}

.hero-final-note strong {
  font-size: 1rem;
  font-weight: 950;
}

.hero-final-note span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 720;
}

.hero-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.24);
  color: var(--white);
}

.hero-secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 58, 138, 0.28);
  color: var(--blue);
}

.hero-microcopy {
  color: var(--navy) !important;
  font-size: 0.94rem !important;
  font-weight: 850;
  margin: 12px 0 0 !important;
}

.hero-offer {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-offer-header {
  background:
    radial-gradient(circle at 85% 20%, rgba(45, 212, 191, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 24px;
}

.hero-offer-eyebrow {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.hero-offer-discount {
  color: var(--gold);
  display: block;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-offer-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.hero-offer-row {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 12px;
}

.hero-offer-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-offer-value {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 950;
  text-align: right;
}

.hero-offer-note {
  color: var(--muted) !important;
  font-size: 0.94rem !important;
  margin: 0 !important;
}

.hero-offer-cta {
  background: var(--navy);
  border-radius: 6px;
  color: var(--white);
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-inline: auto;
  max-width: 1160px;
  padding: 14px 16px;
}

.trust-strip-item {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.trust-strip-item::before {
  color: var(--teal);
  content: "✓";
  font-weight: 950;
  margin-right: 7px;
}

.campaign-summary,
.certificate-section,
.research-section,
.audience-section {
  margin-inline: auto;
  max-width: 1160px;
  width: min(calc(100% - 32px), 1160px);
}

.campaign-summary {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  margin-top: 38px;
  padding: clamp(22px, 4vw, 38px);
}

.campaign-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.campaign-card {
  background: var(--paper);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 12px;
  padding: 16px;
}

.campaign-card-title {
  color: var(--blue);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.campaign-card-text {
  color: var(--navy) !important;
  font-size: 0.96rem !important;
  font-weight: 780;
}

.countdown {
  align-items: center;
  background: var(--navy);
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 14px;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: 20px;
  padding: 14px 16px;
}

.countdown-label {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 850;
}

.countdown-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(54px, 1fr));
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  display: grid;
  min-width: 58px;
  padding: 7px 8px;
  text-align: center;
}

.countdown-number {
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
}

.countdown-caption {
  color: #cbd5e1;
  font-size: 0.68rem;
  font-weight: 780;
}

.countdown.is-expired .countdown-grid {
  display: none;
}

.pathfinder {
  margin-top: 54px;
}

.pathfinder-header {
  max-width: 760px;
}

.pathfinder-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.path-card {
  background: var(--white);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  display: grid;
  gap: 12px;
  padding: 22px;
}

.path-card-title {
  color: var(--navy);
  font-size: 1.15rem;
}

.path-card-text,
.path-card-list {
  color: var(--muted) !important;
  font-size: 0.98rem !important;
}

.path-card-list strong {
  color: var(--navy);
}

.path-card-cta {
  align-self: end;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 6px;
  color: var(--blue);
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
}

.audience-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 212, 191, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy), #111c3d);
  border-radius: 20px;
  color: var(--white);
  margin-top: 54px;
  overflow: hidden;
}

.audience-inner {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  padding: clamp(26px, 5vw, 48px);
}

.audience-copy h2,
.audience-copy p,
.audience-copy li {
  color: var(--white) !important;
}

.audience-copy p {
  color: #cbd5e1 !important;
  margin-top: 12px !important;
}

.audience-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
}

.audience-list li {
  list-style: none;
}

.audience-list li::before {
  color: var(--gold);
  content: "✓";
  font-weight: 950;
  margin-right: 8px;
}

.audience-grid {
  display: grid;
  gap: 10px;
}

.audience-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: var(--white);
  font-weight: 850;
  padding: 13px 14px;
}

.pricing {
  margin-top: 58px;
}

.pricing-header {
  max-width: 820px;
}

.pricing-note {
  background: rgba(255, 247, 223, 0.74);
  border: 1px solid rgba(251, 191, 36, 0.32);
  border-radius: 10px;
  color: var(--navy) !important;
  font-weight: 820;
  margin-top: 14px !important;
  padding: 12px 14px;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.course-card {
  position: relative;
}

.course-card-header {
  align-items: start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.course-seat-badge {
  background: rgba(251, 191, 36, 0.16);
  border: 1px solid rgba(251, 191, 36, 0.38);
  border-radius: 999px;
  color: var(--gold-dark);
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 950;
  padding: 5px 8px;
}

.price-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 16px 0;
}

.price-box {
  background: var(--paper);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 12px;
  display: grid;
  gap: 6px;
  padding: 13px;
}

.price-label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.old-price {
  color: #94a3b8;
  font-size: 0.92rem;
  font-weight: 760;
}

.new-price {
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 950;
  line-height: 1;
}

.course-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 6px;
  color: var(--white);
  display: flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
}

.course-microcopy {
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  font-weight: 780;
  margin-top: 9px !important;
  text-align: center;
}

.anchor-offset {
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: -90px;
  width: 1px;
}

.certificate-section {
  margin-top: 54px;
}

.certificate-inner {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 28px;
  grid-template-columns: 220px minmax(0, 1fr);
  padding: clamp(24px, 5vw, 42px);
}

.certificate-visual {
  aspect-ratio: 1;
  background: var(--paper);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px;
}

.certificate-visual span {
  background: var(--navy);
  border-radius: 5px;
}

.certificate-visual span:nth-child(3n) {
  background: var(--teal);
}

.certificate-visual span:nth-child(5n) {
  background: var(--gold);
}

.certificate-copy p {
  color: var(--muted) !important;
}

.certificate-note {
  text-align: left;
}

.research-section {
  margin-top: 38px;
}

.research-inner {
  background:
    radial-gradient(circle at 92% 20%, rgba(45, 212, 191, 0.18), transparent 30%),
    linear-gradient(135deg, #111827, var(--navy));
  border-radius: 18px;
  color: var(--white);
  padding: clamp(24px, 5vw, 42px);
}

.research-title,
.research-text,
.research-citation {
  color: var(--white) !important;
}

.research-text {
  color: #dbeafe !important;
  max-width: 850px;
}

.research-citation {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #cbd5e1 !important;
  font-size: 0.9rem !important;
  margin-top: 16px !important;
  padding-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.final-cta {
  max-width: none;
  width: 100%;
}

.final-cta-inner {
  margin-inline: auto;
  max-width: 920px;
  text-align: center;
}

.final-cta-title,
.final-cta-text,
.final-cta-note {
  color: var(--white) !important;
}

.final-cta-text {
  color: #cbd5e1 !important;
}

.final-cta-button {
  background: var(--gold);
  border-radius: 6px;
  color: var(--navy);
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  margin-top: 18px;
  min-height: 50px;
  padding: 13px 18px;
}

.final-countdown {
  color: #cbd5e1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.final-countdown strong {
  color: var(--gold);
}

.mobile-sticky-copy {
  min-width: 0;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .mobile-menu-button {
    background: var(--white);
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 6px;
    color: var(--navy);
    display: inline-flex;
    font: inherit;
    font-weight: 850;
    padding: 8px 10px;
  }

  .mobile-menu {
    background: rgba(253, 251, 247, 0.98);
    border-top: 1px solid var(--line);
    display: none;
    gap: 8px;
    padding: 0 16px 14px;
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    border-radius: 6px;
    color: var(--navy);
    font-weight: 850;
    padding: 10px 8px;
  }

  .hero-inner,
  .audience-inner,
  .certificate-inner {
    grid-template-columns: 1fr;
  }

  .campaign-grid,
  .pricing-grid,
  .pathfinder-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 62px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-title {
    font-size: clamp(2.05rem, 10vw, 2.65rem);
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
  }

  .hero-offer-row {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-offer-value {
    text-align: left;
  }

  .countdown {
    align-items: stretch;
  }

  .countdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .countdown-unit {
    min-width: 0;
    padding-inline: 4px;
  }

  .countdown-number {
    font-size: 1.05rem;
  }

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

  .course-card-header {
    flex-direction: column;
  }

  .certificate-visual {
    margin-inline: auto;
    max-width: 220px;
    width: 100%;
  }

  .mobile-sticky-cta {
    display: grid;
  }
}

/* Example-inspired final visual direction */
body {
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.22), transparent 34rem),
    linear-gradient(180deg, #f8fafc 0%, #f8fafc 62%, #ffffff 100%);
  padding-bottom: 0;
}

body::before {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 70;
}

[id] {
  scroll-margin-top: 92px;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.06);
  position: fixed;
  top: 4px;
  z-index: 60;
}

.site-header + main {
  padding-top: 86px;
}

.header-inner {
  max-width: 1280px;
  min-height: 76px;
  padding-inline: 24px;
}

.brand-logo {
  border-radius: 10px;
  height: 40px;
  width: 40px;
}

.brand-text {
  display: grid;
  font-size: 1.2rem;
  gap: 0;
  line-height: 1.05;
}

.brand-text small {
  color: #64748b;
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
}

.nav {
  gap: 22px;
}

.nav-link {
  color: #475569;
  font-size: 0.92rem;
}

.nav-cta {
  background: #0369a1;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.22);
  padding: 10px 20px;
}

.nav-cta:hover {
  background: #0c4a6e;
}

.mobile-menu {
  margin-inline: auto;
  max-width: 1280px;
  width: 100%;
}

.hero {
  max-width: 1280px;
  padding: clamp(46px, 7vw, 92px) 24px clamp(44px, 6vw, 78px);
  width: 100%;
}

.hero::before {
  background-image:
    radial-gradient(circle, rgba(14, 165, 233, 0.13) 0 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
  background-size: 36px 36px, 120px 120px, 120px 120px;
  inset: 0;
  opacity: 0.68;
}

.hero::after {
  background: rgba(14, 165, 233, 0.14);
  border-radius: 999px;
  content: "";
  filter: blur(70px);
  height: 380px;
  pointer-events: none;
  position: absolute;
  right: 4%;
  top: 4%;
  width: 520px;
  z-index: -1;
}

.hero-inner {
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  max-width: 1280px;
}

.hero-eyebrow {
  align-items: center;
  background: rgba(224, 242, 254, 0.72);
  border: 1px solid #bae6fd;
  border-radius: 999px;
  color: #0369a1;
  display: inline-flex;
  font-size: 0.78rem;
  gap: 8px;
  padding: 7px 11px;
}

.hero-eyebrow::before {
  content: "◆";
  color: #0284c7;
  font-size: 0.8rem;
}

.hero-title {
  font-size: clamp(3rem, 5.2vw, 5.75rem);
  line-height: 1.06;
  margin-top: 24px;
  max-width: 780px;
}

.hero-title span {
  background: linear-gradient(90deg, #0369a1, #38bdf8);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-title .hero-title-middle {
  background: none;
  color: inherit;
  -webkit-background-clip: initial;
}

.hero-support {
  border-left: 4px solid #0ea5e9;
  color: #1e3a8a !important;
  margin-top: 24px !important;
  padding-left: 16px;
}

.hero-lead {
  max-width: 760px;
}

.hero-final-note {
  background: #fffbeb;
  border-color: #fde68a;
  border-radius: 14px;
  border-left-color: #f59e0b;
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.08);
  display: block;
  padding: 16px 18px;
}

.hero-final-note strong {
  display: block;
  margin-bottom: 2px;
}

.hero-actions {
  gap: 16px;
  margin-top: 26px;
}

.button,
.hero-primary,
.hero-secondary,
.course-cta,
.hero-offer-cta,
.final-cta-button,
.path-card-cta {
  border-radius: 12px;
}

.hero-primary {
  background: #0369a1;
  box-shadow: 0 18px 34px rgba(14, 165, 233, 0.26);
  font-size: 1.05rem;
  min-height: 58px;
  padding: 16px 24px;
}

.hero-primary::after {
  content: " →";
}

.hero-secondary {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #334155;
  font-size: 1.05rem;
  min-height: 58px;
  padding: 16px 24px;
}

.hero-microcopy {
  align-items: center;
  color: #475569 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px !important;
}

.hero-microcopy::before {
  color: #0ea5e9;
  content: "✓";
  font-weight: 950;
}

.hero-offer {
  border-color: #f1f5f9;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
  position: relative;
}

.hero-offer::before {
  background: linear-gradient(90deg, #0ea5e9, #f59e0b);
  border-radius: 24px;
  content: "";
  filter: blur(12px);
  inset: -5px;
  opacity: 0.2;
  position: absolute;
  z-index: -1;
}

.hero-offer-header {
  background: #0f172a;
  padding: 26px;
  text-align: center;
}

.hero-offer-eyebrow {
  color: #7dd3fc;
}

.hero-offer-discount {
  color: #ffffff;
}

.hero-offer-row {
  border-color: #f1f5f9;
  padding-bottom: 16px;
}

.hero-offer-label::before {
  color: #0ea5e9;
  content: "●";
  font-size: 0.72rem;
  margin-right: 8px;
}

.hero-offer-cta {
  background: #0f172a;
  min-height: 56px;
}

.trust-strip {
  box-shadow: 0 1px 0 rgba(226, 232, 240, 0.9);
}

.trust-strip-inner {
  max-width: 1280px;
  padding-block: 20px;
}

.campaign-summary {
  background: transparent;
  border: 0;
  box-shadow: none;
  max-width: 920px;
  text-align: center;
}

.campaign-summary .section-heading {
  margin-inline: auto;
  max-width: 720px;
}

.campaign-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.campaign-card {
  align-items: flex-start;
  background: #ffffff;
  border-color: #f1f5f9;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
  display: grid;
  gap: 5px;
  padding: 20px;
  text-align: left;
}

.campaign-card::before {
  color: #0ea5e9;
  content: "●";
  font-size: 1.25rem;
  line-height: 1;
}

.countdown {
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
  display: inline-flex;
  margin-top: 34px;
  padding: 22px;
}

.countdown-grid {
  gap: 12px;
}

.countdown-unit {
  background: transparent;
  border: 0;
  min-width: 72px;
}

.countdown-number {
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.pathfinder,
.pricing {
  padding-block: 72px;
}

.pathfinder-header,
.pricing-header {
  margin-inline: auto;
  max-width: 820px;
  text-align: center;
}

.pathfinder-grid {
  gap: 24px;
  margin-top: 42px;
}

.path-card {
  background: #f8fafc;
  border-color: #e2e8f0;
  border-radius: 22px;
  box-shadow: none;
  min-height: 100%;
  padding: 30px;
}

.path-card::before {
  align-items: center;
  background: #dbeafe;
  border-radius: 14px;
  color: #0369a1;
  content: "✓";
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 950;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.path-card-title {
  font-size: 1.3rem;
}

.path-card-cta {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #334155;
  min-height: 48px;
}

.path-card-cta:hover {
  border-color: #0ea5e9;
  color: #0369a1;
}

.audience-section {
  border-radius: 0;
  max-width: none;
  width: 100%;
}

.audience-inner {
  margin-inline: auto;
  max-width: 1280px;
}

.audience-card {
  align-items: center;
  display: flex;
  gap: 12px;
}

.audience-card::before {
  background: rgba(14, 165, 233, 0.16);
  border-radius: 10px;
  color: #7dd3fc;
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.pricing {
  background: #f8fafc;
  max-width: none;
  width: 100%;
}

.pricing-header,
.pricing-grid,
.legal-note {
  margin-inline: auto;
  max-width: 1280px;
  width: min(calc(100% - 32px), 1280px);
}

.pricing-header .eyebrow {
  background: #e0f2fe;
  border-radius: 999px;
  color: #0369a1;
  display: inline-flex;
  padding: 6px 11px;
}

.pricing-note {
  display: inline-block;
}

.pricing-grid {
  gap: 28px;
  margin-top: 44px;
}

.course-card {
  border-color: #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  padding: 30px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.course-card:hover {
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
  transform: translateY(-2px);
}

.course-card-header h3 {
  font-size: 1.45rem;
}

.course-seat-badge {
  background: #f1f5f9;
  border: 0;
  color: #475569;
  white-space: nowrap;
}

.course-seat-badge::before {
  content: "● ";
  color: #0ea5e9;
}

.price-box {
  background: #f8fafc;
  border-color: #f1f5f9;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.saving-badge {
  background: #fef3c7;
  border: 0;
  border-radius: 0 0 0 10px;
  color: #92400e;
  font-size: 0.68rem;
  padding: 5px 7px;
  position: absolute;
  right: 0;
  top: 0;
}

.price-label {
  color: #334155;
  margin-top: 12px;
}

.new-price {
  color: #0369a1;
}

.course-cta {
  background: #0f172a;
  min-height: 56px;
}

.certificate-section {
  background: #ffffff;
  border-block: 1px solid #e2e8f0;
  max-width: none;
  padding-block: 58px;
  width: 100%;
}

.certificate-inner {
  border: 0;
  box-shadow: none;
  margin-inline: auto;
  max-width: 980px;
}

.research-section {
  background: #1e293b;
  max-width: none;
  text-align: center;
  width: 100%;
}

.research-inner {
  background: transparent;
  margin-inline: auto;
  max-width: 900px;
}

.faq-section {
  background: #ffffff;
  max-width: none;
  padding-block: 72px;
  width: 100%;
}

.faq-section .section-heading,
.faq-list {
  margin-inline: auto;
  max-width: 820px;
  width: min(calc(100% - 32px), 820px);
}

.faq-item {
  background: #f8fafc;
  border-color: #e2e8f0;
  border-radius: 14px;
  box-shadow: none;
}

.faq-question {
  color: #020617;
  min-height: 64px;
}

.final-cta {
  background: linear-gradient(135deg, #0c4a6e, #0f172a);
  padding-block: 84px;
}

.final-cta-button {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  color: #0c4a6e;
  font-size: 1.12rem;
  min-height: 64px;
  padding-inline: 30px;
}

.site-footer {
  background: #020617;
  color: #94a3b8;
  max-width: none;
  padding: 48px 24px;
  width: 100%;
}

.site-footer p,
.footer-links {
  margin-inline: auto;
  max-width: 1280px;
}

.footer-links a {
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .site-header + main {
    padding-top: 70px;
  }

  .hero {
    padding-inline: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-offer {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .header-inner {
    padding-inline: 16px;
  }

  .mobile-menu-button {
    font-size: 1.45rem;
    height: 42px;
    justify-content: center;
    width: 42px;
  }

  .mobile-menu {
    padding: 8px 16px 16px;
  }

  .hero-title {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 1.08;
    max-width: 100%;
    word-break: break-word;
  }

  .hero-title span {
    display: block;
  }

  .hero-support,
  .hero-lead,
  .hero-final-note,
  .hero-microcopy {
    max-width: calc(100vw - 48px) !important;
    overflow-wrap: anywhere;
    width: calc(100vw - 48px) !important;
    word-break: break-word;
  }

  .hero-support {
    font-size: 1.24rem !important;
  }

  .hero-lead {
    font-size: 1.02rem !important;
  }

  .hero-offer-header {
    padding: 22px;
  }

  .hero-offer-discount {
    font-size: clamp(2rem, 9vw, 2.35rem);
    overflow-wrap: anywhere;
  }

  .hero-offer,
  .hero-offer-body,
  .campaign-summary,
  .path-card,
  .course-card,
  .certificate-inner,
  .research-inner,
  .final-cta-inner {
    max-width: 100%;
    min-width: 0;
  }

  .trust-strip-inner {
    justify-content: flex-start;
  }

  .campaign-grid,
  .pathfinder-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .campaign-summary {
    width: min(calc(100% - 24px), 920px);
  }

  .campaign-card,
  .price-box,
  .course-cta,
  .path-card-cta,
  .hero-primary,
  .hero-secondary {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .countdown {
    display: grid;
    width: 100%;
  }

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

  .mobile-sticky-cta {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -12px 24px rgba(15, 23, 42, 0.14);
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-sticky-button {
    background: #0369a1;
    font-size: 0.82rem;
    padding-inline: 10px;
  }
}

/* Final sales QA polish */
.nav-cta,
.hero-primary,
.hero-offer-cta,
.course-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
}

.nav-cta:hover,
.hero-primary:hover,
.hero-offer-cta:hover,
.course-cta:hover {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 16px 34px rgba(30, 58, 138, 0.24), 0 0 0 3px rgba(45, 212, 191, 0.13);
}

.hero-title span {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-title .hero-title-middle {
  background: none;
  color: inherit;
  -webkit-background-clip: initial;
}

.hero-support {
  border-left-color: var(--teal);
  color: var(--blue) !important;
}

.hero-offer::before {
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0.18;
}

.hero-offer-eyebrow,
.hero-offer-label::before,
.trust-strip-item::before,
.campaign-card::before,
.path-card::before,
.course-seat-badge::before,
.hero-microcopy::before {
  color: var(--teal);
}

.countdown {
  margin-top: 24px;
  padding: 16px 18px;
}

.countdown-number {
  color: var(--gold);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.campaign-summary {
  margin-top: 32px;
  padding-block: clamp(18px, 3vw, 28px);
}

.campaign-grid {
  gap: 12px;
  margin-top: 18px;
}

.campaign-card {
  padding: 16px;
}

.saving-badge {
  background: rgba(251, 191, 36, 0.22);
  color: #7c4a00;
}

.new-price {
  color: var(--blue);
}

.research-section {
  background: transparent;
  margin-top: 42px;
  padding: 0;
}

.research-inner {
  background:
    radial-gradient(circle at 92% 8%, rgba(45, 212, 191, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-left: 5px solid var(--teal);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  padding: clamp(22px, 4vw, 36px);
  text-align: left;
}

.research-title {
  color: var(--navy) !important;
}

.research-text {
  color: var(--muted) !important;
  font-size: 1.04rem !important;
}

.research-citation {
  border-top-color: rgba(15, 23, 42, 0.1);
  color: #64748b !important;
}

.final-cta-button {
  background: var(--white);
  color: var(--navy);
}

.mobile-sticky-button {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

@media (max-width: 760px) {
  .campaign-summary {
    padding: 18px 14px;
  }

  .campaign-card {
    padding: 14px;
  }

  .countdown {
    padding: 14px 12px;
  }

  .research-inner {
    text-align: left;
  }
}
