:root {
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-2: #f1f4ef;
  --ink: #0f1721;
  --muted: #5c6676;
  --line: #dee4da;
  --accent: #111111;
  --teal: #0d9488;
  --teal-soft: #e7f6f4;
  --blue-soft: #eaf2ff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 16px 38px rgba(14, 21, 33, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background:
    radial-gradient(1000px 420px at 110% -8%, rgba(9, 146, 136, 0.1), transparent 70%),
    radial-gradient(840px 350px at -16% 14%, rgba(27, 109, 198, 0.08), transparent 70%),
    var(--bg);
}

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

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

.container {
  width: min(1120px, calc(100% - 2.1rem));
  margin: 0 auto;
}

.section {
  padding: 5.4rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.86));
  border-top: 1px solid rgba(222, 228, 218, 0.82);
  border-bottom: 1px solid rgba(222, 228, 218, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 247, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(222, 228, 218, 0.95);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
}

.header-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
}

.header-nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
}

.header-nav a:hover {
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(1.45rem, 2.9vw, 2.25rem);
}

h3 {
  font-size: 1.13rem;
}

p {
  margin: 0 0 1rem;
}

.kicker {
  margin-bottom: 0.95rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #315c8b;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

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

.hero-subtext {
  max-width: 780px;
  font-size: 1.05rem;
  color: #273243;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 1.05rem;
}

.hero-badges span {
  border: 1px solid #dce4d9;
  background: #fdfefd;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.83rem;
  color: #39475a;
}

.hero-note {
  max-width: 840px;
  border: 1px solid #d8e4df;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  background: #fbfffe;
  padding: 0.9rem 1rem;
  color: #2f3c4e;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.qualifier {
  margin-top: 0.95rem;
  font-size: 0.92rem;
  color: #3f4b5e;
}

.hero-focus-card {
  border: 1px solid #dce4d9;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(280px 140px at 8% 8%, rgba(13, 148, 136, 0.14), transparent 75%),
    radial-gradient(240px 140px at 92% 100%, rgba(37, 99, 235, 0.09), transparent 72%),
    #ffffff;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.focus-label {
  margin-bottom: 0.45rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2e628f;
}

.hero-focus-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.hero-focus-card ul {
  margin: 0 0 0.9rem;
  padding-left: 1rem;
}

.hero-focus-card li {
  color: #2f3d51;
  margin-bottom: 0.46rem;
}

.focus-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.focus-metrics article {
  border: 1px solid #dce4d9;
  border-radius: var(--radius-sm);
  background: #fcfefd;
  padding: 0.58rem 0.46rem;
  text-align: center;
}

.metric-number {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #16263a;
}

.metric-text {
  margin: 0;
  color: #4d5a6d;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.focus-footnote {
  margin: 0.62rem 0 0;
  color: #4a596e;
  font-size: 0.82rem;
  text-align: center;
}

.logo-band {
  padding: 1.25rem 0;
  border-top: 1px solid #dee4da;
  border-bottom: 1px solid #dee4da;
  background: linear-gradient(180deg, rgba(252, 254, 251, 0.8), rgba(249, 252, 248, 0.95));
}

.logo-band-inner {
  display: grid;
  gap: 0.65rem;
}

.logo-title {
  margin: 0;
  font-size: 0.84rem;
  color: #4f5b6f;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.logo-marquee-shell {
  overflow: hidden;
  position: relative;
  border: 1px solid #dbe3d8;
  border-radius: 999px;
  background: #fbfdfa;
  padding: 0.45rem;
}

.logo-marquee {
  display: flex;
  width: max-content;
  animation: company-scroll 22s linear infinite;
}

.logo-marquee:hover {
  animation-play-state: paused;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-right: 0.45rem;
}

.company-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 148px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #d8dfd4;
  background: #fff;
  padding: 0.42rem 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2b3649;
}

.company-logo-card img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.company-logo-fallback {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #edf3ea;
  color: #3a4b60;
  font-size: 0.72rem;
  font-weight: 700;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.section-head p {
  color: #3c4759;
}

.batch-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.batch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.batch-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.3rem 0.68rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #2c5e90;
  background: var(--blue-soft);
}

.batch-intro {
  max-width: 860px;
  color: #344154;
}

.batch-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.batch-module {
  border: 1px solid #dbe3d8;
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: #fcfefa;
}

.module-title {
  margin-bottom: 0.55rem;
  font-weight: 700;
  color: #182233;
}

.batch-module ul {
  margin: 0;
  padding-left: 1rem;
}

.batch-module li {
  margin-bottom: 0.42rem;
  color: #344254;
}

.batch-list {
  margin: 1rem 0 1.2rem;
  padding-left: 1.1rem;
}

.batch-list li {
  color: #2d3a4c;
  margin-bottom: 0.4rem;
}

.ticker-shell {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fbfcfa;
  padding: 0.9rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: proof-scroll 18s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  gap: 0.85rem;
  padding: 0 0.85rem;
}

.proof-card {
  width: 280px;
  min-height: 166px;
  border: 1px solid #e0e7dd;
  border-radius: var(--radius-md);
  background: #ffffff;
  font: inherit;
  text-align: left;
  padding: 0.9rem;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0.35rem;
}

.proof-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #dfe6db;
  background: #eef2ec;
}

.proof-card.is-video {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.proof-card.is-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 20, 35, 0.1);
}

.proof-company {
  width: fit-content;
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2f648f;
  background: var(--blue-soft);
}

.proof-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.proof-role {
  margin: 0;
  color: #586274;
  font-size: 0.84rem;
}

.proof-outcome {
  margin: 0;
  font-size: 0.9rem;
  color: #1f2e43;
}

.proof-action {
  margin-top: 0.3rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: #0c7e74;
}

.ticker-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.ticker-mask-left {
  left: 0;
  background: linear-gradient(90deg, #fbfcfa 20%, rgba(251, 252, 250, 0));
}

.ticker-mask-right {
  right: 0;
  background: linear-gradient(270deg, #fbfcfa 20%, rgba(251, 252, 250, 0));
}

.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mentor-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.2rem;
}

.mentor-photo {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  border: 1px solid #dfe5da;
  background:
    radial-gradient(400px 180px at 20% 20%, rgba(13, 148, 136, 0.16), transparent 70%),
    radial-gradient(320px 140px at 80% 80%, rgba(37, 99, 235, 0.12), transparent 70%),
    #f6faf8;
  background-size: cover;
  background-position: center;
  margin-bottom: 0.85rem;
}

.mentor-photo.has-photo {
  background-color: #f1f6f2;
}

.mentor-photo.photo-fallback {
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2f5b7f;
}

.mentor-role {
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.value-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 1rem;
}

.value-grid p {
  margin: 0;
  color: #3a4558;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid #dbe2d8;
  background: linear-gradient(120deg, #ffffff, #f4f8f4);
  padding: 1.35rem;
}

.booking-panel,
.waitlist-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.25rem;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.badge-good {
  color: #106741;
  background: #daf2e6;
}

.badge-warn {
  color: #924a0f;
  background: #fff0d8;
}

.calendly-root {
  min-height: 690px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e3e8de;
  margin-top: 0.8rem;
}

.faq-grid {
  display: grid;
  gap: 0.65rem;
}

.faq-grid details {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-grid p {
  margin-top: 0.68rem;
  margin-bottom: 0.2rem;
  color: #374354;
}

.site-footer {
  border-top: 1px solid #dde2d8;
  background: #eff2ed;
}

.footer-inner {
  padding: 1.35rem 0 5.4rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.2);
}

.btn-primary:hover {
  background: #000000;
}

.btn-ghost {
  color: #212b38;
  background: #ffffff;
  border: 1px solid #d8ded3;
}

.btn-ghost:hover {
  background: #f7f9f5;
}

.btn,
.btn-ghost,
.btn-primary {
  padding: 0.8rem 1.12rem;
  font-size: 0.92rem;
}

.btn-xl {
  padding: 0.93rem 1.32rem;
  font-size: 0.98rem;
}

.full-width {
  width: 100%;
}

.footnote {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 17, 28, 0.7);
}

.modal-card {
  width: min(760px, 100%);
  background: #fcfefc;
  border: 1px solid #dce2d8;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(10, 17, 28, 0.35);
  padding: 1.2rem;
  position: relative;
}

.video-modal-card {
  width: min(900px, 100%);
}

.icon-btn {
  position: absolute;
  right: 0.8rem;
  top: 0.7rem;
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf1ea;
  color: #384558;
  font-size: 1.2rem;
  cursor: pointer;
}

.form-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.76rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #2a3445;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d4dbcf;
  background: #ffffff;
  padding: 0.66rem 0.7rem;
  font: inherit;
  color: #1e2736;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(13, 148, 136, 0.18);
  border-color: #41a79d;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.form-error {
  margin: 0;
  min-height: 1.05rem;
  color: #a93f16;
  font-size: 0.84rem;
  grid-column: 1 / -1;
}

.video-frame-wrap {
  margin-top: 0.7rem;
  margin-bottom: 0.8rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dfe5da;
}

.video-frame-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.mobile-cta {
  display: none;
}

@keyframes proof-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes company-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

  .hero-wrap {
    max-width: 100%;
  }

  .batch-grid,
  .mentor-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .mentor-photo {
    height: 240px;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 4.2rem 0;
  }

  .header-nav a {
    display: none;
  }

  .batch-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-focus-card {
    padding: 1rem;
  }

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

  .ticker-shell,
  .logo-marquee-shell {
    overflow-x: auto;
    padding-bottom: 0.45rem;
  }

  .ticker-shell::-webkit-scrollbar,
  .logo-marquee-shell::-webkit-scrollbar {
    height: 7px;
  }

  .ticker-shell::-webkit-scrollbar-thumb,
  .logo-marquee-shell::-webkit-scrollbar-thumb {
    background: #cfd7ca;
    border-radius: 999px;
  }

  .ticker-track,
  .logo-marquee {
    animation: none;
  }

  .ticker-group[aria-hidden="true"],
  .logo-group[aria-hidden="true"] {
    display: none;
  }

  .ticker-mask {
    display: none;
  }

  .proof-card {
    width: 250px;
  }

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

  .modal-card {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: block;
    padding: 0.6rem 0.85rem;
    border-top: 1px solid rgba(213, 219, 210, 0.95);
    background: rgba(246, 247, 244, 0.95);
    backdrop-filter: blur(8px);
  }

  .footer-inner {
    padding-bottom: 5.8rem;
  }
}

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

  .ticker-track,
  .logo-marquee,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}
