:root {
  --ink: #111113;
  --ink-2: #1b1b20;
  --paper: #ffffff;
  --muted: #62626c;
  --line: rgba(17, 17, 19, 0.12);
  --lavender: #d9d3ff;
  --violet: #6f54e8;
  --violet-2: #8f7aff;
  --soft: #f5f3ff;
  --panel: #efeef7;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(41, 30, 120, 0.16);
  --radius: 28px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

main,
section,
footer {
  max-width: 100%;
}

section {
  position: relative;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--lavender) 100%);
  color: rgba(17, 17, 19, 0.22);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.loader p {
  margin: 0;
  font-size: clamp(1.4rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.98;
  text-align: center;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(22px, 5vw, 68px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(17, 17, 19, 0.06);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span,
.brand--footer {
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(17, 17, 19, 0.18);
}

.desktop-nav {
  --nav-pill-left: 0px;
  --nav-pill-width: 0px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.93rem;
  font-weight: 800;
  text-transform: uppercase;
  isolation: isolate;
}

.desktop-nav::before {
  content: "";
  position: absolute;
  left: var(--nav-pill-left);
  top: 50%;
  z-index: -1;
  width: var(--nav-pill-width);
  height: 38px;
  border-radius: 999px;
  background: rgba(111, 84, 232, 0.12);
  opacity: 0;
  transform: translateY(-50%) scale(0.92);
  transition:
    left 420ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    transform 260ms ease;
}

.desktop-nav.has-marker::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.desktop-nav a {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  opacity: 0.78;
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  opacity: 1;
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.desktop-nav a.is-clicked,
.menu-panel__inner a.is-clicked {
  animation: navLinkPress 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-panel__inner a.is-active {
  color: var(--violet);
}

.nav-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--violet-2));
  transition: width 120ms linear;
}

.section-focus {
  animation: sectionFocus 920ms ease;
}

.section-arrived:not(.hero)::before {
  content: "";
  position: absolute;
  left: clamp(18px, 6vw, 86px);
  right: clamp(18px, 6vw, 86px);
  top: 0;
  z-index: 2;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--violet-2));
  transform-origin: left;
  animation: sectionLine 980ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-arrived .section-label,
.section-arrived h1,
.section-arrived h2,
.section-arrived .workbook-card,
.section-arrived .phase-card,
.section-arrived .stats-panel,
.section-arrived .contact-form {
  animation: targetRise 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-arrived h1,
.section-arrived h2 {
  animation-delay: 80ms;
}

.section-arrived .workbook-card,
.section-arrived .phase-card,
.section-arrived .stats-panel,
.section-arrived .contact-form {
  animation-delay: 150ms;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  padding: 110px clamp(22px, 7vw, 90px) 48px;
  background: linear-gradient(180deg, #ffffff 0%, var(--lavender) 100%);
  color: var(--ink);
  transform: translateY(-100%);
  transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-open .menu-panel {
  transform: translateY(0);
}

.menu-panel__inner {
  display: grid;
  gap: 20px;
}

.menu-panel__inner a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid rgba(17, 17, 19, 0.14);
  padding-bottom: 20px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.96;
}

.menu-panel__inner span {
  font-family: "Inter", sans-serif;
  color: var(--violet);
  font-size: clamp(0.85rem, 1.7vw, 1.2rem);
}

.menu-panel__footer {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: rgba(17, 17, 19, 0.64);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-lime {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 18%, var(--lavender) 100%);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(680px, 100vh);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 72px);
  overflow: hidden;
  padding: clamp(104px, 7vw, 122px) clamp(22px, 5vw, 68px) clamp(34px, 4.2vw, 58px);
  background: linear-gradient(180deg, #ffffff 0%, #f7f5ff 36%, var(--lavender) 100%);
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -18vw -22vw 35vw;
  height: 50vw;
  min-height: 420px;
  background: radial-gradient(circle, rgba(111, 84, 232, 0.2), transparent 66%);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--violet);
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 900;
  text-transform: uppercase;
}

.section-label {
  color: rgba(17, 17, 19, 0.48);
}

.section-dark .section-label {
  color: rgba(217, 211, 255, 0.78);
}

.hero h1,
.intro h2,
.work h2,
.workflow h2,
.split h2,
.contact h2 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 4.8vw, 5.8rem);
  line-height: 0.92;
}

.hero__subcopy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(17, 17, 19, 0.66);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 28px;
}

.hero-proof div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--violet);
  font-size: clamp(1.6rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 17px 28px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  gap: 12px;
  background: linear-gradient(180deg, var(--violet-2), var(--violet));
  color: var(--white);
  box-shadow: 0 20px 44px rgba(111, 84, 232, 0.36);
}

.button__note {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--violet);
  font-size: 0.78rem;
}

.button--text {
  color: var(--violet);
}

.button--dark {
  width: fit-content;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 20px 54px rgba(17, 17, 19, 0.2);
}

.hero__media {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(100%, 760px);
}

.hero__media img {
  aspect-ratio: 4 / 3.8;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stamp {
  position: absolute;
  right: -16px;
  bottom: 10%;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--violet-2), var(--violet));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-14deg);
  box-shadow: 0 20px 60px rgba(111, 84, 232, 0.34);
}

.intro {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(110px, 0.22fr) minmax(0, 0.82fr) minmax(280px, 0.46fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  padding: clamp(34px, 4vw, 54px) clamp(22px, 7vw, 96px) clamp(42px, 4.8vw, 64px);
}

.intro__text {
  max-width: 960px;
  min-width: 0;
}

.intro__text > p:first-child {
  margin: 0 0 22px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--violet);
  font-weight: 800;
}

.intro h2 {
  max-width: 820px;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  line-height: 0.96;
}

.intro__text > p:last-child {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.55;
}

.intro__panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.intro__panel img {
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.intro__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 19, 0.06), rgba(17, 17, 19, 0.88)),
    radial-gradient(circle at 75% 18%, rgba(111, 84, 232, 0.36), transparent 38%);
}

.intro__panel-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.intro__panel-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro__panel-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  line-height: 1.02;
}

.intro__panel-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.intro__panel-copy a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fit-section {
  padding: clamp(54px, 5.5vw, 76px) clamp(22px, 6vw, 86px);
  background: var(--paper);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.fit-copy h2,
.cost-callout h2,
.templates h2,
.apply-timeline h2,
.operator-note h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.fit-copy p,
.templates__header p,
.timeline-head p,
.operator-note p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

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

.fit-list span {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.cost-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  margin: 0 clamp(22px, 6vw, 86px) clamp(54px, 6vw, 82px);
  padding: clamp(28px, 4.2vw, 52px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cost-callout p {
  grid-column: 1;
  grid-row: 1;
  width: fit-content;
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid rgba(217, 211, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lavender);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 900;
  text-transform: uppercase;
}

.cost-callout h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 760px;
  font-size: clamp(2.9rem, 5vw, 5.6rem);
}

.cost-callout span {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: block;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
  font-weight: 800;
  line-height: 1.48;
}

.work {
  padding: clamp(60px, 6.5vw, 88px) clamp(22px, 5vw, 68px);
  background: var(--soft);
}

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

.work h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 4.4vw, 5.2rem);
  line-height: 0.94;
}

.inline-link {
  padding-bottom: 8px;
  border-bottom: 2px solid currentColor;
  color: var(--violet);
  font-weight: 900;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  grid-auto-rows: minmax(250px, auto);
  gap: 20px;
}

.work-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 60px rgba(41, 30, 120, 0.12);
}

.work-card--tall {
  grid-row: span 2;
}

.work-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(17, 17, 19, 0.82));
}

.work-card div {
  position: absolute;
  left: clamp(20px, 3vw, 34px);
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 34px);
  z-index: 1;
}

.work-card p {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.1vw, 2.35rem);
  font-weight: 900;
  line-height: 0.96;
}

.work-card span {
  display: block;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.templates {
  padding: clamp(60px, 6.5vw, 92px) clamp(22px, 6vw, 86px);
  background: var(--paper);
}

.templates__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.templates__header p {
  margin-top: 0;
}

.showcase-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.showcase-pills span,
.teaser-deliverables span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(111, 84, 232, 0.22);
  border-radius: 999px;
  background: rgba(245, 243, 255, 0.88);
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workbook-suite {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.workbook-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 70px rgba(41, 30, 120, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.workbook-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 90px rgba(41, 30, 120, 0.16);
}

.workbook-card__image {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: var(--panel);
}

.workbook-card__image img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 420ms ease;
}

.workbook-card:hover .workbook-card__image img {
  transform: scale(1.035);
}

.workbook-card__image span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workbook-card__copy {
  padding: 22px;
}

.workbook-card__copy p {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workbook-card__copy h3 {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 1.7vw, 1.68rem);
  line-height: 1.08;
}

.workbook-card__copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
}

.workbook-card__copy li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.workbook-card__copy li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--violet);
}

.video-course {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: clamp(20px, 3.8vw, 46px);
  align-items: center;
  padding: clamp(18px, 3vw, 32px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.course-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(17, 17, 19, 0.28), rgba(17, 17, 19, 0.82)),
    url("assets/hero-creator.jpg") center / cover;
}

.course-thumbnail {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--white);
}

.course-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}

.course-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 19, 0.12), rgba(17, 17, 19, 0.72)),
    radial-gradient(circle at 70% 22%, rgba(111, 84, 232, 0.48), transparent 38%);
}

.course-thumbnail:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.08);
}

.course-thumbnail__label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-thumbnail__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--violet-2), var(--violet));
  box-shadow: 0 22px 60px rgba(111, 84, 232, 0.42);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.course-thumbnail__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--white);
  transform: translate(-50%, -50%);
}

.course-thumbnail:hover .course-thumbnail__play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 26px 76px rgba(111, 84, 232, 0.58);
}

.course-thumbnail__meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.25rem, 2vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
}

.course-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3vw, 3.4rem);
  line-height: 0.98;
}

.course-copy > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.course-lessons {
  display: grid;
  gap: 10px;
}

.course-lessons a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.course-lessons a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.13);
}

.course-lessons span,
.course-lessons em {
  color: var(--lavender);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.course-lessons strong {
  line-height: 1.25;
}

.teaser-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.workflow {
  min-height: auto;
  padding: clamp(62px, 7vw, 92px) clamp(22px, 6vw, 86px);
}

.workflow__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.workflow h2 {
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: 0.94;
}

.workflow__intro p {
  margin: 0;
  max-width: 440px;
  color: rgba(17, 17, 19, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.5;
}

.phase-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.phase-card {
  display: grid;
  grid-template-columns: 130px minmax(220px, 0.72fr) minmax(260px, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
  min-height: 140px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(17, 17, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px);
}

.phase-card span {
  color: var(--violet);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 800;
  line-height: 0.8;
}

.phase-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.1vw, 2.15rem);
  line-height: 1.04;
}

.phase-card p {
  margin: 0;
  color: rgba(17, 17, 19, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.45;
}

.apply-timeline {
  padding: clamp(60px, 6.5vw, 92px) clamp(22px, 6vw, 86px);
  background: var(--paper);
}

.timeline-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.5fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.timeline-head p {
  margin-top: 0;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.timeline-steps article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--soft);
}

.timeline-steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--violet);
  font-size: 1.65rem;
  font-weight: 900;
}

.timeline-steps h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.timeline-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.network {
  padding: clamp(62px, 7vw, 92px) clamp(22px, 6vw, 86px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.75fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
}

.split h2,
.contact h2 {
  font-size: clamp(2.5rem, 4.6vw, 5.4rem);
  line-height: 0.95;
}

.split__copy p:last-child,
.contact__lead p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.stats-panel div {
  min-height: 190px;
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
}

.stats-panel strong {
  display: block;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.6vw, 4.9rem);
  line-height: 0.8;
}

.stats-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.niche-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.niche-row article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.niche-row span {
  color: var(--violet);
  font-weight: 900;
}

.niche-row h3 {
  margin: 42px 0 12px;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.niche-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.operator-note {
  padding: clamp(56px, 6vw, 84px) clamp(22px, 6vw, 86px);
  background: var(--ink);
  color: var(--white);
}

.operator-note .section-label {
  color: rgba(217, 211, 255, 0.78);
}

.operator-note__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 26px;
  align-items: end;
}

.operator-note p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact {
  padding: clamp(48px, 6vw, 78px) clamp(22px, 6vw, 86px);
}

.contact__lead {
  max-width: 900px;
  margin-bottom: 30px;
}

.contact .eyebrow {
  color: rgba(17, 17, 19, 0.5);
}

.contact__lead p {
  color: rgba(17, 17, 19, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 22px;
  align-items: start;
}

.contact-form,
.faq {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 70px rgba(41, 30, 120, 0.14);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 46px);
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: rgba(17, 17, 19, 0.72);
  font-weight: 800;
}

.field-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 18px;
  background: var(--panel);
  color: var(--ink);
  outline: none;
  padding: 18px 18px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  background: var(--white);
}

.contact-form select {
  appearance: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(17, 17, 19, 0.62);
}

.privacy-note {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.faq {
  padding: clamp(22px, 4vw, 42px);
}

.faq h3 {
  margin: 0 0 22px;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  line-height: 0.98;
}

.faq button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  border: 0;
  border-radius: 18px;
  background: var(--panel);
  color: var(--ink);
  padding: 18px 20px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq strong {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.faq button.is-open strong {
  transform: rotate(45deg);
}

.faq p {
  display: none;
  margin: 0;
  padding: 16px 20px 8px;
  color: rgba(17, 17, 19, 0.68);
  line-height: 1.45;
}

.faq p.is-open {
  display: block;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
  gap: 40px;
  padding: clamp(58px, 8vw, 90px) clamp(22px, 6vw, 86px);
  background: #101010;
  color: var(--paper);
}

.brand--footer {
  margin-bottom: 28px;
}

.footer p {
  color: rgba(255, 255, 255, 0.58);
}

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

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--lavender);
  font-weight: 900;
  text-transform: uppercase;
}

.socials--single a {
  width: 54px;
  height: 54px;
  border-color: rgba(217, 211, 255, 0.35);
  background: rgba(217, 211, 255, 0.08);
  font-size: 1.05rem;
}

.socials--single a:hover {
  background: var(--lavender);
  color: var(--ink);
}

.footer nav {
  display: grid;
  gap: 14px;
}

.footer h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.footer nav a {
  color: rgba(255, 255, 255, 0.7);
}

.footer nav a:hover {
  color: var(--lavender);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes navLinkPress {
  0% {
    transform: translateY(0);
  }
  36% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes sectionFocus {
  0% {
    box-shadow: inset 0 0 0 0 rgba(111, 84, 232, 0);
  }
  35% {
    box-shadow: inset 0 0 0 999px rgba(111, 84, 232, 0.045);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(111, 84, 232, 0);
  }
}

@keyframes sectionLine {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes targetRise {
  0% {
    opacity: 0.15;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3rem, 11vw, 5rem);
    line-height: 0.94;
  }

  .hero__media {
    max-width: 620px;
    margin-left: auto;
  }

  .hero__media img {
    aspect-ratio: 16 / 9;
  }

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

  .intro,
  .fit-grid,
  .cost-callout,
  .templates__header,
  .workflow__intro,
  .timeline-head,
  .split,
  .operator-note__inner,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

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

  .work-card--tall {
    grid-row: auto;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 18px 18px;
  }

  .brand span,
  .brand--footer {
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 88px 18px 32px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10vw, 4rem);
    line-height: 0.96;
  }

  .hero__actions {
    align-items: stretch;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-proof div {
    min-height: 74px;
    padding: 12px;
  }

  .stamp {
    width: 104px;
    height: 104px;
    right: 10px;
    font-size: 0.65rem;
  }

  .intro,
  .fit-section,
  .work,
  .templates,
  .workflow,
  .apply-timeline,
  .network,
  .operator-note,
  .contact {
    padding-inline: 18px;
  }

  .intro {
    gap: 18px;
    padding-block: 34px 40px;
  }

  .intro__panel {
    min-height: 300px;
  }

  .intro__panel img {
    min-height: 300px;
  }

  .work,
  .fit-section,
  .templates,
  .workflow,
  .apply-timeline,
  .network,
  .operator-note,
  .contact {
    padding-block: 48px;
  }

  .intro h2,
  .fit-copy h2,
  .cost-callout h2,
  .templates h2,
  .workflow h2,
  .apply-timeline h2,
  .split h2,
  .operator-note h2,
  .contact h2,
  .work h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.98;
  }

  .cost-callout {
    margin: 0 18px 48px;
  }

  .cost-callout h2,
  .cost-callout p,
  .cost-callout span {
    grid-column: 1;
    grid-row: auto;
  }

  .timeline-steps {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .workbook-suite {
    grid-template-columns: minmax(0, 1fr);
  }

  .workbook-card__image {
    height: 260px;
  }

  .video-course {
    padding: 16px;
    border-radius: 22px;
  }

  .course-player {
    min-height: 210px;
    border-radius: 18px;
  }

  .course-lessons a {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .course-lessons a span {
    grid-column: 1 / -1;
  }

  .work__header {
    display: grid;
  }

  .work-card {
    min-height: 280px;
  }

  .work-grid,
  .phase-list {
    gap: 14px;
  }

  .niche-row {
    margin-top: 24px;
  }

  .phase-card {
    border-radius: 20px;
  }

  .stats-panel,
  .niche-row,
  .timeline-steps,
  .contact-form,
  .footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-panel div {
    min-height: 150px;
  }
}

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

  .loader {
    display: none;
  }
}
