:root {
  --ink: #202044;
  --deep: #202044;
  --panel: #ffffff;
  --green: #05c867;
  --green-dark: #00a653;
  --lime: #eefaf4;
  --gold: #f4c84f;
  --cream: #f7f8f6;
  --paper: #ffffff;
  --muted: #64677f;
  --line: #e1e7e3;
  --dark-line: rgba(32, 32, 68, 0.12);
  --shadow: 0 18px 48px rgba(32, 32, 68, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

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

.shell {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 82px;
  padding: 10px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(5, 200, 103, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.92);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  font-weight: 800;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 0;
}

.brand > span {
  font-size: 1.02rem;
}

.site-header nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
  color: #4d506d;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-header nav a:hover {
  color: var(--ink);
  background: rgba(5, 200, 103, 0.12);
}

.menu-toggle {
  display: none;
  position: relative;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(32, 32, 68, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 12px 28px rgba(32, 32, 68, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px) saturate(140%);
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header .btn-primary {
  min-height: 48px;
  padding-inline: 22px;
  box-shadow:
    0 18px 36px rgba(5, 200, 103, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(32, 32, 68, 0.12);
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 42px rgba(5, 200, 103, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(16px) saturate(145%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.btn-primary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    var(--green);
  box-shadow:
    0 16px 34px rgba(22, 199, 132, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(32, 32, 68, 0.12);
}

.btn-primary:hover {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    var(--green-dark);
  box-shadow:
    0 20px 42px rgba(22, 199, 132, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.btn:disabled,
.btn[aria-busy="true"] {
  cursor: wait;
  opacity: 0.86;
  pointer-events: none;
  transform: none;
}

.btn.is-loading {
  gap: 9px;
}

.btn.is-loading::before {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(32, 32, 68, 0.32);
  border-top-color: var(--ink);
  border-radius: 999px;
  content: "";
  animation: spin 780ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(32, 32, 68, 0.14);
  box-shadow:
    0 14px 30px rgba(32, 32, 68, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.btn-secondary:hover {
  border-color: rgba(5, 200, 103, 0.34);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-2px);
}

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

.intro-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 32, 68, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 32, 68, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.42;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ticker-row {
  position: absolute;
  left: -16%;
  display: flex;
  min-width: 132%;
  gap: 48px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
  opacity: 0.08;
}

.ticker-row span {
  padding-block: 8px;
  border-block: 1px solid rgba(32, 32, 68, 0.2);
}

.ticker-row-one {
  top: 88px;
  animation: marketTape 34s linear infinite;
}

.ticker-row-two {
  right: -16%;
  bottom: 84px;
  left: auto;
  justify-content: flex-end;
  animation: marketTapeReverse 38s linear infinite;
}

.chart-field {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 48px;
  width: min(430px, 34vw);
  height: 230px;
  opacity: 0.2;
}

.chart-field::before {
  content: "";
  position: absolute;
  inset: 22px 0 34px;
  border-top: 3px solid rgba(5, 200, 103, 0.5);
  transform: skewY(-12deg);
  transform-origin: left center;
}

.chart-field span {
  position: absolute;
  bottom: 0;
  width: 8px;
  border-radius: 999px;
  background: rgba(32, 32, 68, 0.2);
  transform-origin: bottom center;
  animation: candlePulse 3.2s ease-in-out infinite;
}

.chart-field span:nth-child(1) {
  left: 6%;
  height: 58px;
  animation-delay: 0s;
}

.chart-field span:nth-child(2) {
  left: 20%;
  height: 94px;
  background: var(--green);
  animation-delay: 0.25s;
}

.chart-field span:nth-child(3) {
  left: 35%;
  height: 72px;
  animation-delay: 0.5s;
}

.chart-field span:nth-child(4) {
  left: 50%;
  height: 130px;
  background: var(--green);
  animation-delay: 0.75s;
}

.chart-field span:nth-child(5) {
  left: 64%;
  height: 110px;
  animation-delay: 1s;
}

.chart-field span:nth-child(6) {
  left: 78%;
  height: 158px;
  background: var(--green);
  animation-delay: 1.25s;
}

.chart-field span:nth-child(7) {
  left: 92%;
  height: 126px;
  animation-delay: 1.5s;
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.95fr);
  gap: 34px;
  align-items: center;
  min-height: 610px;
  padding: 34px 0 64px;
}

.intro-copy {
  max-width: 710px;
  padding-bottom: 0;
  text-align: left;
  animation: heroCopyIn 760ms ease both;
}

.intro-copy .eyebrow,
.modal .eyebrow {
  color: var(--green-dark);
}

.intro-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 5.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-copy h1 span {
  display: block;
}

.intro-copy h1 span:nth-child(3),
.intro-copy h1 span:nth-child(4) {
  color: var(--green-dark);
}

.intro-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: #6b6f79;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.mobile-break {
  display: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
  max-width: 720px;
  margin: 26px 0 0;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(5, 200, 103, 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(32, 32, 68, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  backdrop-filter: blur(14px) saturate(140%);
}

.hero-proof span:nth-child(2) {
  color: #fff;
  border-color: rgba(32, 32, 68, 0.1);
  background: var(--deep);
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 560px;
  margin: 0 -28px 0 -18px;
  padding: 8px 0 0;
  overflow: visible;
  animation: heroVisualIn 880ms cubic-bezier(0.2, 0.8, 0.2, 1) 140ms both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 46px;
  width: 78%;
  height: 34%;
  border-radius: 50%;
  background: rgba(5, 200, 103, 0.18);
  filter: blur(46px);
  animation: heroGlowBreathe 5.8s ease-in-out infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -48px -16px -18px;
  z-index: 0;
  background:
    linear-gradient(rgba(5, 200, 103, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 200, 103, 0.048) 1px, transparent 1px),
    radial-gradient(circle at 55% 55%, rgba(5, 200, 103, 0.12), transparent 50%);
  background-size: 38px 38px, 38px 38px, auto;
  mask-image: radial-gradient(ellipse at 54% 56%, #000 0 58%, transparent 78%);
  pointer-events: none;
  animation: heroGridDrift 12s ease-in-out infinite;
}

.hero-visual-person {
  position: relative;
  z-index: 1;
  width: min(96%, 500px);
  filter: drop-shadow(0 26px 36px rgba(32, 32, 68, 0.2));
  transform: translateY(-78px);
  transform-origin: 50% 90%;
  animation: heroPersonFloat 6.4s ease-in-out infinite;
  will-change: transform;
}

.mentor-chip {
  position: absolute;
  right: 5%;
  bottom: 166px;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 260px;
  padding: 13px 16px;
  border: 1px solid rgba(5, 200, 103, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(32, 32, 68, 0.14);
  backdrop-filter: blur(16px) saturate(140%);
  animation: mentorChipFloat 5.6s ease-in-out infinite 520ms;
  will-change: transform;
}

.mentor-chip strong {
  color: var(--green-dark);
  font-size: 0.98rem;
  line-height: 1.16;
}

.mentor-chip span {
  color: #6b6f79;
  font-size: 0.78rem;
  font-weight: 700;
}

.lead-section {
  padding: 26px 0;
  color: #fff;
  background: var(--deep);
  border-bottom: 0;
}

.lead-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
  padding-block: 30px;
  border-top: 0;
  border-bottom: 0;
}

.lead-copy .eyebrow {
  margin-bottom: 8px;
  color: var(--green);
}

.lead-section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.04;
}

.lead-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(150px, 0.95fr) minmax(286px, 1.2fr) minmax(110px, 0.5fr) auto;
  gap: 12px;
  align-items: start;
}

.field-group {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(132px, 0.45fr) minmax(128px, 1fr);
  gap: 8px;
  min-width: 0;
}

.phone-field select,
.phone-field input {
  min-width: 0;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(5, 200, 103, 0.12);
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"] {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.14);
}

.field-error {
  min-height: 17px;
  margin: 0;
  color: #ffb1b1;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.modal-form .field-error {
  color: #c92136;
}

.lead-form .btn {
  min-height: 54px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    var(--green);
}

.lead-section .lead-form input,
.lead-section .lead-form select,
.modal-form input,
.modal-form select {
  color: var(--ink);
  background: #fff;
}

.lead-section .lead-form input::placeholder,
.modal-form input::placeholder {
  color: #87938e;
}

.lead-form input::placeholder {
  color: #87938e;
}

.lead-form select option {
  color: var(--ink);
}

.privacy-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  line-height: 1.45;
}

.privacy-note a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.modal-form .privacy-note {
  color: var(--muted);
}

.modal-form .privacy-note a {
  color: var(--green-dark);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
}

.form-note[data-status="error"] {
  color: #ffb1b1;
}

.modal-form .form-note[data-status="error"] {
  color: #c92136;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 96px;
}

.center-head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.center-head h2,
.app-layout h2,
.benefits-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.center-head p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.feature-section {
  background:
    linear-gradient(180deg, rgba(5, 200, 103, 0.035), transparent 42%),
    var(--cream);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: 76px;
  align-items: start;
}

.feature-section .center-head {
  position: sticky;
  top: 118px;
  max-width: none;
  margin: 0;
  text-align: left;
}

.feature-section .center-head h2 {
  max-width: 520px;
  font-size: clamp(2.4rem, 4.7vw, 5rem);
}

.feature-section .center-head .btn {
  margin-top: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 46px;
}

.feature-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(32, 32, 68, 0.1);
  background: transparent;
  overflow: hidden;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.feature-grid span {
  display: inline-block;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.feature-grid h3 {
  margin: 24px 0 10px;
  font-size: 1.22rem;
  line-height: 1.18;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.feature-grid article:hover::after {
  transform: scaleX(1);
}

.feature-grid article:hover span,
.feature-grid article:hover h3,
.feature-grid article:hover p {
  transform: translateY(-3px);
}

.feature-grid article:hover h3 {
  color: var(--green-dark);
}

.feature-grid article:hover p {
  color: #3f4f49;
}

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

.journey-section,
.syllabus-section,
.benefits-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.journey-list {
  display: grid;
  gap: 0;
  max-width: 980px;
  margin: 42px auto 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.journey-list li {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.journey-list li::before {
  content: "";
  position: absolute;
  top: 82px;
  bottom: -28px;
  left: 27px;
  width: 1px;
  background: linear-gradient(var(--green), rgba(5, 200, 103, 0));
}

.journey-list li:last-child::before {
  display: none;
}

.journey-list span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(5, 200, 103, 0.35);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 28px rgba(32, 32, 68, 0.08);
  font-weight: 700;
  transition:
    transform 220ms ease,
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.journey-list strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.16;
}

.journey-list p {
  max-width: 680px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.journey-list li:hover span {
  transform: translateY(-3px);
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.mentor-section {
  background:
    linear-gradient(180deg, #fff 0%, rgba(238, 250, 244, 0.72) 100%);
  border-block: 1px solid rgba(32, 32, 68, 0.06);
}

.mentor-carousel {
  display: flex;
  gap: 22px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 8px 2px 24px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.mentor-card {
  flex: 0 0 238px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 0;
  background: transparent;
  transition: transform 260ms ease;
}

.mentor-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  background: #eefaf4;
  box-shadow: 0 20px 42px rgba(32, 32, 68, 0.12);
  transform: scale(1);
  transition:
    box-shadow 260ms ease,
    transform 320ms ease;
}

.mentor-card div {
  display: grid;
  gap: 6px;
  padding: 16px 2px 0;
}

.mentor-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
}

.mentor-card span {
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.mentor-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.mentor-card:hover {
  transform: translateY(-6px);
}

.mentor-card:hover img {
  transform: scale(1.04);
  box-shadow: 0 24px 50px rgba(32, 32, 68, 0.16);
}

.syllabus-board {
  border-top: 2px solid var(--ink);
}

.syllabus-board details {
  border-bottom: 1px solid var(--line);
}

.syllabus-board summary {
  padding: 24px 0;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

.syllabus-board ul {
  display: grid;
  gap: 10px;
  margin: -6px 0 26px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.syllabus-board li {
  position: relative;
  padding-left: 22px;
}

.syllabus-board li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.app-layout,
.benefits-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 78px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 118px;
}

.section-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 28px;
  color: var(--muted);
}

.app-flow {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}

.app-flow article {
  display: grid;
  grid-template-columns: 70px minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.app-flow span {
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.app-flow strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.15;
}

.app-flow p,
.enquiry-list p {
  margin: 0;
  color: var(--muted);
}

.enquiry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  border-top: 2px solid var(--ink);
}

.enquiry-list article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.enquiry-list span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-bottom: 54px;
  text-align: center;
}

.proof-section + #faq {
  padding-top: 54px;
}

.review-row {
  display: flex;
  width: 100%;
  gap: 16px;
  padding-bottom: 4px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  text-align: left;
  scrollbar-width: none;
}

.review-row::-webkit-scrollbar {
  display: none;
}

.review-row article {
  flex: 0 0 min(250px, calc(100vw - 64px));
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 2;
  border: 0;
  border-radius: 16px;
  background: var(--ink);
  scroll-snap-align: start;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.review-card {
  position: absolute;
  inset: 0;
  display: block;
  background: #101024;
  color: #fff;
}

.review-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.review-row article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(32, 32, 68, 0.14);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.review-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 32, 68, 0.22);
  transition:
    width 180ms ease,
    background 180ms ease;
}

.review-dots button.is-active {
  width: 24px;
  background: var(--green);
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: list-item;
  padding: 24px 0;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.faq-list p {
  max-width: 820px;
  margin: -6px 0 18px;
  color: var(--muted);
}

.faq-list button {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  color: var(--green-dark);
  background: transparent;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 34px 0;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-grid p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: end;
  margin: 0;
  color: var(--muted);
}

.footer-grid p a {
  color: var(--green-dark);
  font-weight: 700;
}

.privacy-disclosure {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.privacy-disclosure summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.privacy-disclosure p {
  display: block;
  margin: 8px 0 0;
  max-width: 520px;
}

.privacy-disclosure a {
  color: var(--green-dark);
  font-weight: 700;
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 22px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 28px;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  border: 1px solid rgba(32, 32, 68, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 24px rgba(32, 32, 68, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(32, 32, 68, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.modal-form {
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(5, 200, 103, 0.12), rgba(244, 200, 79, 0.14) 44%, transparent 72%),
    var(--cream);
}

.thank-you-page .site-header {
  position: relative;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.thank-you-main {
  min-height: calc(100vh - 82px);
}

.thank-you-hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 56px 0;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.thank-you-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.thank-you-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #4d506d;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.thank-you-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 32, 68, 0.1);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.thank-you-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@keyframes marketTape {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-34%);
  }
}

@keyframes marketTapeReverse {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(34%);
  }
}

@keyframes candlePulse {
  0%,
  100% {
    transform: scaleY(0.88);
  }

  50% {
    transform: scaleY(1.06);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroPersonFloat {
  0%,
  100% {
    transform: translateY(-78px) rotate(0deg);
  }

  50% {
    transform: translateY(-90px) rotate(-0.7deg);
  }
}

@keyframes heroPersonFloatMobile {
  0%,
  100% {
    transform: translateY(-12px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(-0.6deg);
  }
}

@keyframes heroGlowBreathe {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes heroGridDrift {
  0%,
  100% {
    opacity: 0.9;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    transform: translate3d(-8px, 6px, 0);
  }
}

@keyframes mentorChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1040px) {
  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-media {
    max-width: 520px;
  }

  .site-header nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 6px;
    margin-left: 0;
    padding: 12px;
    border: 1px solid rgba(32, 32, 68, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(32, 32, 68, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-menu-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header nav a {
    border-radius: 4px;
    padding: 12px 14px;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .intro-grid,
  .feature-layout,
  .lead-panel,
  .app-layout,
  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .feature-section .center-head,
  .section-copy {
    position: static;
  }

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

}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 126px;
  }

  body.has-mobile-sticky-cta {
    padding-bottom: 88px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(32, 32, 68, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -14px 34px rgba(32, 32, 68, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .mobile-sticky-cta .btn {
    min-width: 0;
    min-height: 50px;
    border-radius: 999px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .mobile-sticky-cta .btn-secondary {
    color: var(--green-dark);
    background: #fff;
    border-color: var(--green-dark);
    box-shadow: none;
  }

  .shell {
    width: calc(100% - 48px);
    margin-inline: auto;
  }

  .site-header {
    position: sticky;
    flex-wrap: wrap;
    gap: 12px 16px;
    min-height: 116px;
    padding: 12px 18px 10px;
  }

  .thank-you-page .site-header {
    min-height: 84px;
  }

  .nav-shell {
    gap: 14px;
  }

  .thank-you-header-cta {
    min-width: max-content;
  }

  .thank-you-page .brand {
    order: 0;
  }

  .brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .brand > span {
    display: block;
    overflow: hidden;
    font-size: 1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brand-tail {
    display: none;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .menu-toggle {
    display: none;
  }

  .site-header .btn {
    display: none;
  }

  .site-header nav {
    position: static;
    order: 3;
    display: flex;
    flex: 0 0 100%;
    gap: 28px;
    width: 100%;
    margin: 0;
    padding: 2px 0 0;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    color: var(--muted);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  .site-header nav a {
    flex: 0 0 auto;
    padding: 0;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .ticker-row {
    gap: 30px;
    font-size: 0.68rem;
    opacity: 0.07;
  }

  .ticker-row-one {
    top: 116px;
  }

  .ticker-row-two {
    bottom: 42px;
  }

  .chart-field {
    right: -84px;
    bottom: 26px;
    width: 230px;
    height: 150px;
    opacity: 0.14;
  }

  .intro-grid {
    min-height: 0;
    gap: 34px;
    padding-block: 26px 46px;
  }

  .intro-copy {
    padding-bottom: 0;
  }

  .intro-copy h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7vw, 2rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .intro-copy .eyebrow {
    max-width: 100%;
    letter-spacing: 0;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .intro-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }

  .intro-actions,
  .section-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intro-copy {
    text-align: left;
  }

  .hero-proof {
    justify-content: start;
    gap: 0;
    margin-top: 20px;
    padding: 0;
  }

  .hero-proof span {
    display: inline;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #5f6677;
    background: transparent;
    box-shadow: none;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.55;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
    backdrop-filter: none;
  }

  .hero-proof span:nth-child(2) {
    color: #5f6677;
    background: transparent;
  }

  .hero-proof span + span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 9px 2px;
    border-radius: 999px;
    background: var(--green);
  }

  .mobile-break {
    display: none;
  }

  .hero-visual {
    min-height: 370px;
    margin: 18px -24px -24px;
    padding: 0;
    overflow: visible;
  }

  .hero-visual::before {
    right: 12%;
    bottom: 44px;
    width: 76%;
    height: 28%;
    filter: blur(34px);
  }

  .hero-visual::after {
    inset: -18px 0 -8px;
    mask-image: radial-gradient(ellipse at 50% 54%, #000 0 62%, transparent 82%);
  }

  .hero-visual-person {
    width: min(90vw, 350px);
    transform: translateY(-12px);
    animation-name: heroPersonFloatMobile;
  }

  .mentor-chip {
    right: 48px;
    bottom: 58px;
    max-width: 172px;
    padding: 10px 12px;
  }

  .mentor-chip strong {
    font-size: 0.84rem;
  }

  .mentor-chip span {
    font-size: 0.7rem;
  }

  .lead-section {
    padding: 26px 0;
  }

  .lead-section h2 {
    text-align: left;
  }

  .lead-panel {
    gap: 22px;
    padding-block: 24px;
  }

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

  .section {
    padding: 64px 0;
  }

  .center-head {
    text-align: left;
  }

  .feature-grid,
  .journey-list {
    grid-template-columns: 1fr;
  }

  .review-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .review-row article {
    flex: 0 0 min(210px, calc(100vw - 64px));
    scroll-snap-align: start;
  }

  .feature-grid article {
    min-height: 0;
    padding: 22px 0 24px;
    border-right: 0;
    border-left: 0;
    background: transparent;
  }

  .feature-section .center-head h2 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .journey-list {
    margin-top: 30px;
  }

  .journey-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .journey-list li::before {
    top: 68px;
    bottom: -22px;
    left: 22px;
  }

  .journey-list span {
    width: 44px;
    height: 44px;
    font-size: 0.86rem;
  }

  .journey-list p {
    font-size: 0.95rem;
  }

  .app-flow article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

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

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

  .footer-grid p {
    justify-content: start;
  }

  .app-layout,
  .benefits-layout {
    gap: 34px;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-panel {
    border-radius: 16px 16px 0 0;
  }

  .faq-list summary {
    padding-left: 2px;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .thank-you-hero {
    min-height: auto;
    padding: 42px 0 56px;
  }

  .thank-you-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .thank-you-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .thank-you-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .thank-you-media {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-delay: 0ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
