:root {
  color-scheme: light;
  --ink: #07111f;
  --ink-soft: #132238;
  --muted: #5f6b7a;
  --muted-strong: #3f4a59;
  --paper: #f7fbff;
  --panel: #ffffff;
  --line: rgba(7, 17, 31, 0.12);
  --line-blue: rgba(0, 140, 255, 0.22);
  --ocean: #0078d7;
  --aqua: #008cff;
  --cyan: #23e0cf;
  --shadow: 0 22px 70px rgba(7, 17, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: var(--ink);
  font-family:
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.section-wrap {
  margin-inline: auto;
  max-width: 1180px;
  padding-inline: 24px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 14px;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.mobile-sticky-cta {
  position: fixed;
  inset-inline: 12px;
  bottom: 12px;
  z-index: 60;
  border-radius: 8px;
  background: linear-gradient(135deg, #00345d, var(--ocean) 58%, var(--cyan));
  box-shadow: 0 20px 55px rgba(7, 17, 31, 0.24);
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: 950;
  padding: 13px 16px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(16px);
}

.site-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1180px;
  padding: 14px 18px;
  position: relative;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(7, 17, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 22px 22px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 280ms ease,
    opacity 200ms ease,
    padding 200ms ease;
}

.nav-menu.is-open {
  max-height: 460px;
  opacity: 1;
  pointer-events: auto;
}

.nav-menu a {
  color: rgba(7, 17, 31, 0.78);
  font-size: 16px;
  font-weight: 850;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(7, 17, 31, 0.07);
}

.nav-menu a:last-child {
  border-bottom: 0;
}

.nav-menu a:hover {
  color: var(--ocean);
}

.nav-menu .nav-cta {
  align-items: center;
  background: linear-gradient(135deg, #00345d, var(--ocean) 58%, var(--cyan));
  border-bottom: 0;
  border-radius: 10px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  margin-top: 14px;
  min-height: 48px;
  padding: 12px 16px;
  text-align: center;
}

.nav-menu .nav-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 10px;
  width: 44px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}

.nav-toggle-bar {
  background: var(--ink);
  border-radius: 2px;
  display: block;
  height: 2px;
  transition:
    transform 240ms ease,
    opacity 200ms ease;
  width: 22px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.header-cta {
  display: none;
}

.primary-cta,
.secondary-cta,
.header-cta,
.inline-cta {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  line-height: 1.15;
  min-height: 44px;
  text-align: center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.primary-cta,
.header-cta,
.inline-cta {
  background: linear-gradient(135deg, #00345d, var(--ocean) 58%, var(--cyan));
  color: #ffffff;
  gap: 8px;
  padding: 12px 15px;
}

.secondary-cta {
  border: 1px solid var(--line-blue);
  color: var(--ink);
  padding: 12px 15px;
}

.primary-cta:hover,
.secondary-cta:hover,
.header-cta:hover,
.inline-cta:hover {
  transform: translateY(-1px);
}

.secondary-cta:hover {
  border-color: rgba(0, 140, 255, 0.42);
  background: #f2f8ff;
}

.hero-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5fbff 66%, #ffffff 100%);
  overflow: hidden;
  padding: 46px 0 64px;
}

.hero-layout {
  display: grid;
  gap: 28px;
}

.hero-content {
  padding-top: 8px;
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: var(--ocean);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  gap: 8px;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow {
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  background: rgba(0, 140, 255, 0.07);
  padding: 8px 11px;
}

.eyebrow svg,
.primary-cta svg,
.inline-cta svg,
.trust-grid svg,
.benefit-grid svg {
  height: 18px;
  width: 18px;
}

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

.hero-content h1 {
  color: var(--ink);
  font-size: clamp(32px, 8.2vw, 54px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 4px 0 0;
  max-width: 760px;
}

.hero-content h1 span {
  display: block;
  margin-top: 8px;
}

.hero-lede {
  color: var(--muted-strong);
  font-size: clamp(15px, 3.7vw, 19px);
  font-weight: 720;
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 700px;
}

.hero-actions {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.urgency-copy {
  color: var(--ocean);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
  margin: 16px 0 0;
}

.hero-proof {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  padding-top: 22px;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 5px;
}

.hero-media {
  border-radius: 8px;
  min-height: 270px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 31, 0.84));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img,
.mentor-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.media-caption {
  bottom: 18px;
  color: #ffffff;
  left: 18px;
  max-width: 260px;
  position: absolute;
  z-index: 1;
}

.media-caption span {
  color: var(--cyan);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.media-caption strong {
  display: block;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.05;
}

.lead-form {
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-form {
  scroll-margin-top: 84px;
}

.form-intro {
  margin-bottom: 15px;
  scroll-margin-top: 84px;
}

.form-intro h2 {
  color: var(--ink);
  font-size: clamp(23px, 5.5vw, 31px);
  font-weight: 950;
  line-height: 1.08;
  margin: 8px 0 0;
}

.form-intro p:last-child,
.form-microcopy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 10px 0 0;
}

.lead-form label {
  display: block;
}

.honeypot-field {
  display: none !important;
}

.lead-form label + label {
  margin-top: 16px;
}

.lead-form span {
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 7px;
}

.lead-form input,
.lead-form select {
  background: #ffffff;
  border: 1px solid rgba(7, 17, 31, 0.16);
  border-radius: 8px;
  color: var(--ink);
  font-size: 15px;
  outline: none;
  padding: 12px 13px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
  width: 100%;
}

.lead-form input::placeholder {
  color: rgba(7, 17, 31, 0.38);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 140, 255, 0.12);
}

.lead-form button {
  background: linear-gradient(135deg, #00345d, var(--ocean) 58%, var(--cyan));
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
  margin-top: 18px;
  padding: 13px 16px;
  width: 100%;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
  margin: 12px 0 0;
  min-height: 22px;
}

.form-status.success {
  color: var(--ocean);
}

.form-status.error {
  color: #bd2b2b;
}

.trust-strip {
  background: var(--ink);
  color: #ffffff;
}

.trust-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px 0;
}

.trust-grid div {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  gap: 12px;
  min-height: 68px;
  padding: 16px 14px;
}

.trust-grid svg {
  color: var(--cyan);
  flex: 0 0 auto;
}

.trust-grid span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.section {
  padding-block: 56px;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(26px, 6.8vw, 44px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 8px 0 0;
}

.section h3 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
  margin: 0;
}

.section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.two-column,
.roadmap-layout,
.mentor-layout,
.proof-layout,
.faq-layout,
.final-layout {
  display: grid;
  gap: 28px;
}

.editorial-section {
  background: #ffffff;
}

.editorial-copy {
  border-left: 3px solid var(--aqua);
  padding-left: 18px;
}

.editorial-copy p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.section-heading p:last-child {
  margin: 12px 0 0;
}

.benefit-section,
.outcomes-section,
.faq-section {
  background: var(--paper);
}

.benefit-grid,
.outcome-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.benefit-grid article,
.outcome-grid article,
.mentor-slots div,
.proof-panel,
.faq-list details,
.contact-details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.benefit-grid article {
  padding: 22px 20px;
}

.benefit-grid svg {
  border: 1px solid var(--line-blue);
  border-radius: 10px;
  background: #f2f8ff;
  color: var(--ocean);
  height: 44px;
  margin-bottom: 16px;
  padding: 10px;
  width: 44px;
}

.benefit-grid p {
  font-size: 14px;
  line-height: 1.65;
  margin: 11px 0 0;
}

.roadmap-section {
  background: #ffffff;
}

.roadmap-intro {
  align-self: start;
}

.roadmap-intro p:not(.section-kicker) {
  margin: 14px 0 0;
}

.inline-cta {
  margin-top: 22px;
}

.roadmap-list {
  display: grid;
  gap: 18px;
  position: relative;
}

.roadmap-list::before {
  background: linear-gradient(180deg, var(--cyan), var(--ocean), transparent);
  content: "";
  inset: 30px auto 30px 21px;
  position: absolute;
  width: 2px;
}

.roadmap-list article {
  display: grid;
  gap: 16px;
  grid-template-columns: 44px minmax(0, 1fr);
  position: relative;
}

.roadmap-list article > span {
  align-items: center;
  background: var(--ink);
  border-radius: 10px;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
  z-index: 1;
}

.roadmap-list article > div {
  border: 1px solid var(--line-blue);
  border-radius: 12px;
  background: #ffffff;
  padding: 18px 18px 20px;
}

.roadmap-list p {
  font-size: 14px;
  line-height: 1.65;
  margin: 9px 0 0;
}

.mentor-section {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.mentor-image {
  border-radius: 8px;
  height: 300px;
  overflow: hidden;
}

.mentor-copy p:not(.section-kicker) {
  margin: 14px 0 0;
}

.mentor-slots {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.mentor-slots div {
  padding: 20px 18px;
}

.mentor-slots strong,
.mentor-slots span {
  display: block;
}

.mentor-slots strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.mentor-slots span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 5px;
}

.outcome-grid article {
  padding: 20px 18px;
}

.outcome-grid span {
  color: var(--ink);
  display: block;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.3;
}

.outcome-grid p {
  font-size: 14px;
  line-height: 1.65;
  margin: 10px 0 0;
}

.proof-section {
  background: #ffffff;
}

.proof-section p:not(.section-kicker) {
  margin: 14px 0 0;
}

.proof-panel {
  border-color: rgba(0, 140, 255, 0.24);
  padding: 24px 22px;
}

.proof-label {
  color: var(--ocean) !important;
  font-size: 12px !important;
  font-weight: 950;
  margin: 0 0 10px !important;
  text-transform: uppercase;
}

.proof-panel blockquote {
  border-left: 3px solid var(--cyan);
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.55;
  margin: 0;
  padding-left: 14px;
}

.proof-panel span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.5;
  margin-top: 14px;
}

.mid-cta {
  background: var(--ink);
  color: #ffffff;
  padding-block: 48px;
}

.mid-cta-layout {
  display: grid;
  gap: 26px;
}

.mid-cta h2 {
  color: #ffffff;
  font-size: clamp(25px, 6.5vw, 39px);
  font-weight: 950;
  line-height: 1.06;
  margin: 8px 0 0;
}

.mid-cta p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
  margin: 12px 0 0;
}

.faq-note {
  margin-top: 12px;
}

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

.faq-list details {
  padding: 20px 18px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.4;
}

.faq-list details p {
  font-size: 14px;
  line-height: 1.65;
  margin: 12px 0 0;
}

.final-section {
  background: #ffffff;
  padding-bottom: 82px;
}

.final-section p:not(.section-kicker) {
  margin: 14px 0 0;
}

.final-section .primary-cta {
  margin-top: 22px;
}

.contact-details {
  align-self: start;
  color: var(--muted);
  font-style: normal;
  padding: 22px 20px;
}

.contact-details p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  margin: 0;
}

.contact-details p + p {
  margin-top: 16px;
}

.contact-details span {
  color: var(--ink);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--ocean);
  text-decoration: underline;
  text-decoration-color: rgba(0, 140, 255, 0.48);
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  padding: 32px 16px;
  text-align: center;
}

.site-footer img {
  height: 36px;
  margin: 0 auto 16px;
  width: auto;
}

.site-footer p {
  margin: 0;
}

.image-credit {
  font-size: 12px;
  margin-top: 10px !important;
}

.image-credit a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 3px;
}

@media (min-width: 520px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .primary-cta,
  .hero-actions .secondary-cta {
    min-width: 210px;
  }

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

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }

  .section-wrap,
  .site-nav {
    padding-inline: 24px;
  }

  .site-nav {
    padding-block: 12px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    border-top: 0;
    box-shadow: none;
    flex-direction: row;
    gap: 26px;
    max-height: none;
    opacity: 1;
    overflow: visible;
    padding: 0;
    pointer-events: auto;
    position: static;
  }

  .nav-menu a {
    border-bottom: 0;
    font-size: 14px;
    padding: 0;
  }

  .nav-menu .nav-cta {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-section {
    padding: 64px 0 80px;
  }

  .hero-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
    grid-template-areas:
      "copy form"
      "media form";
    gap: 36px;
  }

  .hero-content {
    grid-area: copy;
    padding-top: 18px;
  }

  .hero-media {
    grid-area: media;
    min-height: 250px;
  }

  .hero-form {
    grid-area: form;
    position: sticky;
    top: 86px;
  }

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

  .section {
    padding-block: 58px;
  }

  .two-column,
  .roadmap-layout,
  .mentor-layout,
  .proof-layout,
  .faq-layout,
  .final-layout {
    align-items: start;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

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

  .mentor-layout {
    align-items: center;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .mentor-image {
    height: 360px;
  }

  .mid-cta-layout {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mid-cta .primary-cta {
    min-width: 230px;
  }

  .final-section {
    padding-bottom: 58px;
  }
}

@media (min-width: 1024px) {
  .section-wrap,
  .site-nav {
    padding-inline: 32px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  }

  .hero-content h1 {
    max-width: 620px;
  }

  .hero-media {
    min-height: 280px;
  }

  .lead-form {
    padding: 20px;
  }

  .roadmap-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }
}

.not-for-section {
  background: var(--ink);
  color: #ffffff;
}

.not-for-section .section-kicker {
  color: var(--cyan);
}

.not-for-section h2 {
  color: #ffffff;
}

.not-for-section > .section-wrap > p {
  color: rgba(255, 255, 255, 0.65);
}

.not-for-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.not-for-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.not-for-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #ff5f5f;
  margin-top: 2px;
}

.not-for-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.not-for-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .not-for-list {
    grid-template-columns: 1fr 1fr;
  }

  .not-for-list .not-for-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
