@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700;800&display=swap");
/* Plain CSS: no framework or build step. */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--paper);
  color: var(--ink);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
ol,
ul {
  list-style: none;
}
img,
svg {
  display: block;
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
}
button,
summary {
  font: inherit;
  color: inherit;
  border-radius: 0;
  background: transparent;
}
button,
summary,
a[href] {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 2px solid;
  outline-offset: 4px;
}
:root {
  --paper: #f6f3ec;
  --paper-deep: #ebe5d9;
  --ink: #1b1f24;
  --ink-soft: #5a626b;
  --blue: #1747ff;
  --blue-deep: #0d319e;
  --lemon: #ffd84d;
  --line: rgba(27, 31, 36, 0.14);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}
.site-shell {
  overflow: clip;
  background: var(--paper);
}
.section-grid {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 78px);
  padding-right: clamp(24px, 5vw, 78px);
}
.overline,
.eyebrow {
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  font-weight: 800;
}
.overline {
  color: var(--blue);
}
.light-overline {
  color: var(--lemon);
}

/* Navigation */
.topbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(24px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 236, 0.94);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.brand-mark.user-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.brand-text {
  font-family: "Unbounded", sans-serif;
  font-size: 8px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  margin-left: auto;
  margin-right: 18px;
}
.desktop-nav a {
  font-size: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  transition: color 160ms var(--ease-out);
}
.desktop-nav a:hover {
  color: var(--blue);
}
.header-cta,
.mobile-nav button,
.mobile-nav > a:last-child {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: #fff;
  padding: 12px 15px 12px 17px;
  font:
    800 11px/1 "Manrope",
    sans-serif;
  text-decoration: none;
  transition:
    transform 160ms var(--ease-out),
    background 160ms var(--ease-out);
}
.header-cta:hover,
.mobile-nav button:hover,
.mobile-nav > a:last-child:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
.header-cta:active,
.primary-button:active {
  transform: scale(0.97);
}
.mobile-menu-button,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  min-height: 722px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  grid-template-rows: 1fr auto;
  gap: 36px 58px;
  padding-top: clamp(52px, 8vw, 112px);
  padding-bottom: 42px;
  background-image:
    linear-gradient(rgba(27, 31, 36, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 31, 36, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  margin-bottom: 42px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--lemon);
  display: inline-block;
  box-shadow: 4px 4px 0 var(--blue);
}
.hero-author {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: -20px 0 26px;
  padding: 8px 10px;
  background: rgba(255, 253, 248, 0.76);
  border-left: 3px solid var(--blue);
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
}
.hero-author span {
  color: var(--ink);
  font-weight: 800;
}
.hero-index {
  font:
    700 12px/1.1 "Unbounded",
    sans-serif;
  color: var(--blue);
  margin: 0 0 18px;
}
.hero-index span {
  color: var(--ink-soft);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.075em;
  font-weight: 800;
}
h1 {
  max-width: 690px;
  font-size: clamp(38px, 4.9vw, 76px);
  line-height: 1.02;
  margin-bottom: 28px;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
  z-index: 1;
}
h1 em::after {
  content: "";
  position: absolute;
  height: 0.29em;
  background: var(--lemon);
  left: -1.5%;
  right: -1.5%;
  bottom: 0.01em;
  z-index: -1;
  transform: rotate(-1.5deg);
}
.hero-lede {
  max-width: 485px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.primary-button {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: #fff;
  padding: 17px 20px;
  font:
    800 12px/1 "Manrope",
    sans-serif;
  text-decoration: none;
  box-shadow: 7px 7px 0 var(--ink);
  transition:
    transform 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out),
    background 160ms var(--ease-out);
}
.primary-button:hover {
  transform: translate(-2px, -2px);
  background: var(--blue-deep);
  box-shadow: 10px 10px 0 var(--ink);
}
.text-button {
  border: 0;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  padding: 0 0 5px;
  border-bottom: 1px solid var(--ink);
  font:
    800 12px/1 "Manrope",
    sans-serif;
  text-decoration: none;
  transition:
    color 160ms var(--ease-out),
    gap 160ms var(--ease-out);
}
.text-button:hover {
  color: var(--blue);
  gap: 12px;
  border-color: var(--blue);
}
.hero-visual {
  min-height: 480px;
  position: relative;
  align-self: center;
}
.brand-motif {
  position: absolute;
  width: 90px;
  height: 90px;
  pointer-events: none;
}
.brand-motif i {
  position: absolute;
  display: block;
  border: 2px solid currentColor;
  border-right: 0;
  border-radius: 100% 0 0 100%;
  transform: rotate(10deg);
}
.brand-motif i:nth-child(1) {
  width: 33px;
  height: 60px;
  top: 16px;
  left: 11px;
}
.brand-motif i:nth-child(2) {
  width: 43px;
  height: 70px;
  top: 11px;
  left: 21px;
}
.brand-motif i:nth-child(3) {
  width: 53px;
  height: 80px;
  top: 6px;
  left: 31px;
}
.brand-motif b {
  position: absolute;
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lemon);
  right: 1px;
  bottom: 5px;
}
.hero-motif {
  color: var(--blue);
  right: -18px;
  top: 13%;
  opacity: 0.68;
  transform: rotate(-8deg);
}
.hero-photo-frame {
  position: absolute;
  width: min(97%, 660px);
  right: clamp(-22px, -2vw, -10px);
  top: 8%;
  aspect-ratio: 16 / 9;
  background: var(--blue);
  padding: 11px 11px 0 0;
  box-shadow: 12px 15px 26px #1b1f2429;
}
.hero-photo-frame::before {
  content: "";
  background: var(--lemon);
  width: 22%;
  height: 18px;
  position: absolute;
  top: -9px;
  left: -25px;
  transform: rotate(-3deg);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}
.hero-blue-shape {
  position: absolute;
  width: 98px;
  height: 98px;
  z-index: 2;
  color: #fff;
  background: var(--blue);
  left: 0;
  bottom: 5%;
  display: grid;
  place-items: center;
  transform: rotate(-8deg);
  box-shadow: -8px 9px 0 var(--lemon);
}
.hero-proof {
  position: absolute;
  z-index: 3;
  background: #fffdf8;
  color: var(--ink);
  padding: 11px 14px;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  font-weight: 600;
  box-shadow: 5px 5px 0 rgba(27, 31, 36, 0.16);
  transform: rotate(3deg);
}
.hero-proof span {
  color: var(--blue);
}
.proof-one {
  left: 10%;
  top: 5%;
}
.system-card {
  position: absolute;
  z-index: 3;
  width: 210px;
  right: -15px;
  bottom: 0;
  padding: 16px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-2deg);
}
.system-card-kicker {
  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue);
}
.system-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 7px 0 14px;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  letter-spacing: -0.06em;
}
.system-card-line {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.system-card-line::before {
  content: "";
  height: 1px;
  background: var(--ink);
  position: absolute;
  top: 4px;
  left: 5px;
  right: 5px;
}
.system-card-line i {
  display: block;
  width: 9px;
  height: 9px;
  background: var(--lemon);
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.system-card-line i:nth-child(2),
.system-card-line i:nth-child(4) {
  background: var(--blue);
}
.scribble {
  position: absolute;
  z-index: 3;
  left: 3%;
  bottom: -4%;
  color: var(--blue);
  font:
    800 12px/1.2 "Manrope",
    sans-serif;
  transform: rotate(-8deg);
}
.hero-bottom-note {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-soft);
}

/* About Olena: editorial self-introduction, paper structure and direct author voice */
.about-me-section {
  display: grid;
  grid-template-columns: 150px minmax(300px, 0.9fr) minmax(300px, 0.82fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
  padding-top: 130px;
  padding-bottom: 130px;
  background: var(--paper-deep);
}
.about-me-copy h2 {
  margin: 13px 0 22px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
}
.about-me-copy > p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}
.about-me-copy .about-me-lede {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 750;
}
.about-me-link {
  margin-top: 28px;
}
.about-me-card {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 24px;
  color: #fff;
  background: var(--blue);
  box-shadow: 10px 10px 0 var(--ink);
}
.about-me-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 27px 27px;
}
.about-me-card > * {
  position: relative;
  z-index: 1;
}
.about-me-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--lemon);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-me-card-head b {
  font:
    700 10px/1 "Unbounded",
    sans-serif;
  letter-spacing: -0.05em;
}
.about-me-card ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-me-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.29);
}
.about-me-card li > b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: var(--lemon);
  border-radius: 50%;
  font:
    700 8px/1 "Unbounded",
    sans-serif;
}
.about-me-card strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
}
.about-me-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  line-height: 1.45;
  font-weight: 600;
}
.about-me-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 17px;
  color: var(--lemon);
  font-size: 9px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-me-card-foot i {
  display: block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  background: var(--lemon);
  border: 1px solid var(--ink);
  transform: rotate(45deg);
}

/* Shared section language */
.section-number {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font:
    700 11px/1 "Unbounded",
    sans-serif;
  letter-spacing: -0.05em;
}
.section-number i {
  display: inline-block;
  height: 1px;
  width: 30px;
  background: currentColor;
}
.section-number small {
  color: var(--ink-soft);
  font:
    800 9px/1 "Manrope",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.section-number.light {
  color: var(--lemon);
}
.section-number.light small {
  color: rgba(255, 255, 255, 0.7);
}
mark {
  color: inherit;
  background: linear-gradient(
    transparent 55%,
    var(--lemon) 55%,
    var(--lemon) 89%,
    transparent 89%
  );
  padding: 0 0.06em;
}

/* Problem */
.problem-section {
  display: grid;
  grid-template-columns: 150px 1.15fr 0.85fr;
  gap: 48px;
  padding-top: 142px;
  padding-bottom: 132px;
}
.problem-heading h2,
.outcome-main h2,
.format-copy h2,
.method-copy h2,
.faq-heading h2 {
  font-size: clamp(29px, 3vw, 51px);
  line-height: 1.15;
  margin: 12px 0 0;
}
.problem-list {
  border-top: 1px solid var(--ink);
}
.problem-list > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 17px;
}
.problem-list span {
  color: var(--blue);
  font:
    700 13px/1 "Unbounded",
    sans-serif;
}
.problem-list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Principle */
.principle-section {
  min-height: 600px;
  position: relative;
  isolation: isolate;
  background: var(--blue);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
  overflow: hidden;
}
.principle-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.19) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.19) 1px, transparent 1px);
  background-size: 37px 37px;
  opacity: 0.42;
}
.principle-paper {
  padding: clamp(70px, 10vw, 146px) clamp(25px, 8vw, 150px);
  position: relative;
  z-index: 2;
}
.principle-line {
  height: 11px;
  width: 112px;
  background: var(--lemon);
  margin-bottom: 40px;
}
.principle-paper h2 {
  font-size: clamp(35px, 4vw, 64px);
  line-height: 1.08;
  margin-bottom: 29px;
}
.principle-paper h2 span {
  color: var(--lemon);
}
.principle-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}
.principle-equation {
  margin-top: 45px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  font:
    700 10px/1 "Unbounded",
    sans-serif;
  color: var(--lemon);
}
.principle-equation span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 9px 10px;
  color: #fff;
}
.principle-map {
  position: relative;
  z-index: 1;
  min-height: 600px;
  padding: clamp(56px, 8vw, 112px) clamp(28px, 5vw, 70px);
  color: var(--ink);
  background: #f4f7f0;
  background-image:
    linear-gradient(rgba(27, 31, 36, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 31, 36, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.principle-map::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -117px;
  bottom: -111px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  opacity: 0.6;
}
.principle-map-head {
  position: relative;
  z-index: 1;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(27, 31, 36, 0.28);
}
.principle-map-head span {
  color: var(--blue);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.principle-map-head p {
  max-width: 370px;
  margin: 10px 0 0;
  font:
    700 18px/1.32 "Unbounded",
    sans-serif;
  letter-spacing: -0.07em;
}
.principle-route {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
}
.principle-route::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  bottom: 17px;
  width: 1px;
  background: var(--blue);
}
.principle-route li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 56px;
}
.principle-route li > b {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: var(--ink);
  background: var(--lemon);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font:
    700 8px/1 "Unbounded",
    sans-serif;
}
.principle-route li:nth-child(2) > b,
.principle-route li:nth-child(4) > b {
  background: var(--blue);
  color: #fff;
}
.principle-route strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}
.principle-route small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}
.principle-map-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 31, 36, 0.28);
  color: var(--blue);
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.principle-map-foot i {
  flex-shrink: 0;
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
  background: var(--lemon);
  transform: rotate(45deg);
}

/* Outcome */
.outcome-section {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-rows: auto auto;
  gap: 54px 48px;
  padding-top: 135px;
  padding-bottom: 145px;
}
.outcome-main {
  max-width: 770px;
}
.outcome-stack {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}
.proof-point {
  min-height: 220px;
  padding: 10px 21px 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--ink);
  transition:
    background 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}
.proof-point:hover {
  background: #fffdf8;
  transform: translateY(-6px);
}
.proof-point > span {
  color: var(--blue);
  font:
    700 10px/1 "Unbounded",
    sans-serif;
}
.proof-point p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  margin: auto 0 19px;
}
.proof-point svg {
  color: var(--blue);
}
.outcome-quote {
  grid-column: 2;
  max-width: 560px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: -11px;
}
.quote-mark {
  color: var(--lemon);
  font:
    800 68px/0.7 Georgia,
    serif;
}
.outcome-quote p {
  margin: 0;
  font:
    700 15px/1.55 "Manrope",
    sans-serif;
  color: var(--ink-soft);
}

/* Program */
.program-section {
  color: #fff;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 39px 39px;
  padding-top: 122px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 46px 48px;
}
.program-intro {
  max-width: 680px;
}
.program-motif {
  color: rgba(255, 255, 255, 0.26);
  top: -25px;
  right: 7%;
  transform: rotate(13deg);
}
.program-motif b {
  background: var(--lemon);
}
.program-intro h2 {
  font-size: clamp(33px, 4.1vw, 62px);
  line-height: 1.08;
  margin: 14px 0 20px;
}
.program-intro h2 em {
  color: var(--lemon);
}
.program-intro > p:last-child {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}
.program-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.program-card {
  min-height: 315px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 24px 27px;
  display: flex;
  flex-direction: column;
  transition: background 180ms var(--ease-out);
}
.program-card:hover {
  background: #252a30;
}
.program-number {
  color: var(--lemon);
  font:
    700 11px/1 "Unbounded",
    sans-serif;
}
.program-dot {
  position: absolute;
  right: 18px;
  top: 13px;
  color: var(--blue);
}
.program-card h3 {
  position: relative;
  z-index: 1;
  max-width: 290px;
  font:
    700 clamp(18px, 2vw, 26px) / 1.15 "Unbounded",
    sans-serif;
  letter-spacing: -0.07em;
  margin: auto 0 14px;
}
.program-card > p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}
.program-card footer {
  position: relative;
  z-index: 1;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.program-card-band {
  width: 145px;
  height: 145px;
  background: var(--blue);
  position: absolute;
  right: -66px;
  bottom: -70px;
  transform: rotate(30deg);
  transition: transform 300ms var(--ease-out);
}
.program-card:hover .program-card-band {
  transform: rotate(40deg) scale(1.17);
}
.band-2 {
  background: var(--lemon);
}
.band-3 {
  background: #3b5cfe;
  border-radius: 50%;
}
.band-4 {
  background: #ece4d6;
}

/* Course plan */
.plan-section {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 48px;
  padding-top: 140px;
  padding-bottom: 140px;
  background: var(--paper-deep);
  background-image:
    linear-gradient(rgba(27, 31, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 31, 36, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.plan-heading {
  max-width: 780px;
}
.plan-heading h2 {
  font-size: clamp(31px, 3.6vw, 56px);
  line-height: 1.12;
  margin: 13px 0 0;
}
.plan-note {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}
.plan-note strong {
  color: var(--blue);
}
.plan-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
  border-top: 1px solid var(--ink);
}
.plan-step {
  min-height: 306px;
  padding: 22px 23px 20px;
  background: rgba(255, 253, 248, 0.62);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms var(--ease-out),
    background 180ms var(--ease-out);
}
.plan-step:nth-child(odd) {
  border-left: 1px solid var(--line);
}
.plan-step:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}
.plan-step:hover {
  transform: translateY(-7px);
  background: #fffdf8;
}
.plan-step.active {
  background: var(--blue);
  color: #fff;
}
.plan-step > span {
  color: var(--blue);
  font:
    800 9px/1 "Manrope",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.plan-step.active > span {
  color: var(--lemon);
}
.plan-step h3 {
  margin: auto 0 12px;
  font:
    700 20px/1.15 "Unbounded",
    sans-serif;
  letter-spacing: -0.07em;
}
.plan-step p {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
  margin: 0 0 20px;
}
.plan-step.active p {
  color: rgba(255, 255, 255, 0.75);
}
.plan-step b {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font:
    800 9px/1.3 "Manrope",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.plan-step.active b {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--lemon);
}

/* Format */
.format-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(45px, 8vw, 118px);
  padding-top: 140px;
  padding-bottom: 140px;
  align-items: center;
}
.format-photo-wrap {
  position: relative;
  padding: 0 0 30px 30px;
}
.format-photo-wrap::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 0;
  right: 30px;
  background: var(--lemon);
}
.format-photo-wrap img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.04);
  box-shadow: 12px 15px 26px #1b1f2429;
}
.format-photo-tag {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  left: -5px;
  bottom: 0;
  padding: 11px 14px;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}
.format-copy h2 {
  margin-bottom: 36px;
}
.format-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -10px 0 31px;
  background: var(--line);
  border-top: 1px solid var(--ink);
}
.format-stats > div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 61px;
  padding: 9px 8px;
  background: var(--paper);
}
.format-stats b {
  color: var(--blue);
  font:
    700 21px/1 "Unbounded",
    sans-serif;
  letter-spacing: -0.09em;
}
.format-stats span {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.format-items {
  border-top: 1px solid var(--ink);
}
.format-items > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 17px 0;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.format-items b {
  color: var(--blue);
  font:
    700 10px/1.5 "Unbounded",
    sans-serif;
}
.format-items span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}
.format-items strong {
  color: var(--ink);
}

/* Method */
.method-section {
  background: var(--paper-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image:
    linear-gradient(rgba(27, 31, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 31, 36, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
}
.method-copy {
  max-width: 590px;
}
.method-copy h2 {
  margin: 13px 0 23px;
}
.method-copy > p:not(.overline) {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  max-width: 450px;
  margin-bottom: 31px;
}
.dark-text-button {
  color: var(--ink);
}
.method-image-wrap {
  min-height: 440px;
  position: relative;
}
.method-image-backdrop {
  position: absolute;
  width: 77%;
  height: 84%;
  left: 5%;
  top: 8%;
  background: var(--blue);
  transform: rotate(-6deg);
}
.method-image-wrap img {
  position: absolute;
  z-index: 1;
  width: 72%;
  height: 91%;
  object-fit: cover;
  right: 3%;
  top: 4%;
  box-shadow: 12px 12px 0 rgba(27, 31, 36, 0.9);
  transform: rotate(3deg);
}
.method-stamp {
  position: absolute;
  z-index: 2;
  left: 2%;
  bottom: 3%;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--lemon);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font:
    700 10px/1.35 "Unbounded",
    sans-serif;
  transform: rotate(-10deg);
}

/* Reviews */
.reviews-section {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding-top: 135px;
  padding-bottom: 135px;
}
.reviews-copy h2 {
  font-size: clamp(29px, 3.1vw, 50px);
  line-height: 1.15;
  margin: 12px 0 20px;
}
.reviews-copy {
  max-width: 680px;
}
.reviews-copy > p:last-child {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}
.reviews-carousel {
  grid-column: 2;
  margin-top: 8px;
}
.reviews-carousel-inner {
  padding: 0 58px;
}
.reviews-carousel .review-slide {
  flex-basis: calc((100% - 18px) / 2);
  padding-left: 18px;
}
.reviews-carousel-nav {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.reviews-carousel .reviews-previous,
.reviews-carousel .reviews-next {
  position: static;
  transform: none;
  pointer-events: auto;
  min-width: 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
}
.reviews-carousel .reviews-previous::after {
  content: none;
}
.reviews-carousel .reviews-next {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.reviews-carousel .reviews-next::after {
  content: none;
}
.reviews-carousel .reviews-previous:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.reviews-carousel .reviews-next:hover {
  color: var(--ink);
  background: var(--lemon);
  border-color: var(--lemon);
}
.reviews-carousel .reviews-previous:focus-visible,
.reviews-carousel .reviews-next:focus-visible {
  outline: 3px solid var(--lemon);
  outline-offset: 3px;
}
.reviews-carousel .reviews-previous:disabled,
.reviews-carousel .reviews-next:disabled {
  opacity: 0.35;
}
.review-screenshot {
  display: block;
  width: 100%;
  aspect-ratio: 1437 / 2048;
  overflow: hidden;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(27, 31, 36, 0.18);
  box-shadow: 6px 6px 0 rgba(27, 31, 36, 0.14);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}
.review-screenshot:hover {
  transform: translateY(-5px);
  box-shadow: 9px 9px 0 var(--blue);
}
.review-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card {
  height: 100%;
}
.review-quote {
  min-height: 48px;
  margin: 15px 8px 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}
.reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.reviews-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(27, 31, 36, 0.25);
  transition:
    width 180ms var(--ease-out),
    border-radius 180ms var(--ease-out),
    background 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}
.reviews-dots button:hover {
  background: var(--blue);
  transform: scale(1.15);
}
.reviews-dots button.active {
  width: 27px;
  border-radius: 999px;
  background: var(--blue);
}
.reviews-dots button:focus-visible {
  outline: 3px solid var(--lemon);
  outline-offset: 3px;
}

/* FAQ */
.faq-section {
  display: grid;
  grid-template-columns: 150px minmax(230px, 0.62fr) minmax(0, 1.38fr);
  gap: 46px;
  padding-top: 145px;
  padding-bottom: 135px;
}
.faq-heading h2 {
  margin-top: 11px;
}
.faq-list {
  border-top: 1px solid var(--ink);
}
.faq-list .faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-list .faq-question {
  font:
    700 14px/1.4 "Manrope",
    sans-serif;
  text-align: left;
  padding: 20px 0;
  gap: 16px;
}
.faq-list .faq-question svg {
  color: var(--blue);
}
.faq-list .faq-answer {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
  max-width: 630px;
  padding-bottom: 20px;
}

/* Application */
.apply-section {
  min-height: 650px;
  background: var(--blue);
  color: #fff;
  padding-top: 110px;
  padding-bottom: 105px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  overflow: hidden;
}
.apply-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 39px 39px;
}
.apply-title-wrap,
.apply-card {
  position: relative;
  z-index: 1;
}
.apply-title-wrap h2 {
  font-size: clamp(35px, 4.2vw, 65px);
  line-height: 1.1;
  margin: 17px 0 22px;
}
.apply-title-wrap h2 em {
  color: var(--lemon);
}
.apply-title-wrap > p:last-child {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}
.apply-title-wrap .apply-author {
  display: inline-block;
  margin-top: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--lemon);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.025em;
}
.apply-author strong {
  color: var(--lemon);
}
.purchase-start {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 24px 0 4px;
  color: var(--lemon);
}
.purchase-start span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.purchase-start strong {
  font:
    700 16px/1 "Unbounded",
    sans-serif;
  letter-spacing: -0.06em;
}
.apply-card {
  width: min(100%, 425px);
  justify-self: end;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(27, 31, 36, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 31, 36, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--ink);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 12px 12px 0 var(--ink);
}
.apply-card form {
  display: flex;
  flex-direction: column;
}
.purchase-card h3 {
  margin: 0 0 16px;
  font:
    700 19px/1.25 "Unbounded",
    sans-serif;
  letter-spacing: -0.065em;
}
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 17px;
}
.tariff-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  padding: 13px 12px;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(27, 31, 36, 0.18);
}
.tariff-card.featured {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.tariff-card.mentorship {
  grid-column: 1 / -1;
  min-height: 121px;
  background: var(--lemon);
  border-color: var(--ink);
}
.tariff-card > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.tariff-card.featured > span {
  color: var(--lemon);
}
.mentor-slots {
  width: max-content;
  margin-top: 7px;
  padding: 4px 6px;
  background: var(--ink);
  color: var(--lemon);
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.tariff-card h4 {
  margin: 11px 0 9px;
  font:
    700 12px/1.25 "Unbounded",
    sans-serif;
  letter-spacing: -0.065em;
}
.tariff-card > strong {
  margin-top: auto;
  font:
    800 20px/1 "Unbounded",
    sans-serif;
  letter-spacing: -0.08em;
}
.tariff-card > strong small {
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 0;
}
.tariff-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.35;
  font-weight: 700;
}
.tariff-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}
.tariff-card.mentorship h4 {
  margin: 8px 0 7px;
}
.mentor-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-top: 12px;
  padding-bottom: 3px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 160ms var(--ease-out),
    gap 160ms var(--ease-out);
}
.mentor-cta:hover {
  color: var(--blue);
  gap: 9px;
  border-color: var(--blue);
}
.purchase-instruction {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 18px;
}
.form-proof-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 17px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--ink);
  font:
    800 8px/1 "Manrope",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
}
.form-proof-header b {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.form-proof-header b::before {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--ink);
  left: 0;
  right: 0;
  top: 4px;
}
.form-proof-header i {
  display: block;
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  background: var(--paper);
  border-radius: 50%;
}
.form-proof-header i:last-child {
  background: var(--lemon);
}
.apply-motif {
  color: rgba(255, 255, 255, 0.36);
  left: 42%;
  top: -48px;
  transform: rotate(-14deg);
}
.apply-card label:not(.consent) {
  color: var(--ink);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin-bottom: 8px;
}
.apply-card input:not([type="checkbox"]) {
  border: 0;
  border-bottom: 1px solid rgba(27, 31, 36, 0.32);
  background: transparent;
  padding: 10px 0;
  font:
    600 14px/1.4 "Manrope",
    sans-serif;
  color: var(--ink);
  margin-bottom: 24px;
  border-radius: 0;
}
.apply-card input::placeholder {
  color: #83868b;
}
.apply-card input:focus {
  outline: none;
  border-color: var(--blue);
}
.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 25px;
}
.consent input {
  margin-top: 2px;
  accent-color: var(--blue);
}
.form-button {
  justify-content: center;
  width: 100%;
  box-shadow: 5px 5px 0 var(--ink);
}
.form-note {
  color: var(--ink-soft);
  text-align: center;
  font-size: 9px;
  line-height: 1.4;
  font-weight: 600;
  margin: 16px 0 0;
}
.form-success {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  background: var(--lemon);
  color: var(--ink);
  border-radius: 50%;
  margin-bottom: 16px;
}
.form-success h3 {
  margin: 0 0 10px;
  font:
    700 21px/1.25 "Unbounded",
    sans-serif;
  letter-spacing: -0.06em;
}
.form-success p {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
}
.form-success button {
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0 0 4px;
  width: max-content;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font:
    800 11px/1 "Manrope",
    sans-serif;
}
.apply-decoration {
  position: absolute;
  right: 42%;
  top: -1px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.19);
}
.apply-decoration span {
  font:
    800 390px/0.55 "Unbounded",
    sans-serif;
}
.apply-decoration i {
  position: absolute;
  width: 300px;
  height: 1px;
  background: var(--lemon);
  top: 147px;
  left: -20px;
  transform: rotate(-15deg);
}
.apply-decoration b {
  position: absolute;
  color: var(--lemon);
  top: 270px;
  right: -22px;
  font:
    600 78px/1 "Unbounded",
    sans-serif;
}

/* Footer */
.footer {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto minmax(290px, 1fr) auto auto;
  align-items: center;
  gap: 26px;
  padding: 28px clamp(24px, 5vw, 78px);
  background: var(--ink);
  color: #fff;
}
.footer-brand {
  color: #fff;
}
.footer .brand-mark.user-logo {
  background: #fff;
  padding: 4px;
}
.footer-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-contacts a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms var(--ease-out);
}
.footer-contacts a:first-child {
  color: var(--lemon);
}
.footer-contacts a:hover {
  color: #fff;
}
.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
}
.footer .back-to-top {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border: 0;
  background: none;
  color: var(--lemon);
  padding: 4px;
  font:
    800 10px/1 "Manrope",
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms var(--ease-out);
}
.footer-legal a:hover {
  color: var(--lemon);
}
.footer-legal-links span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}
.footer-legal p {
  width: auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  line-height: 1.4;
  font-weight: 600;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual {
    animation: enter-up 500ms var(--ease-out) both;
  }
  .hero-visual {
    animation-delay: 90ms;
  }
  @keyframes enter-up {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 930px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .mobile-menu-button {
    display: grid;
    place-items: center;
    border: 0;
    background: var(--ink);
    color: #fff;
    width: 42px;
    height: 42px;
    margin-left: auto;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    z-index: 3;
    top: 82px;
    left: 0;
    right: 0;
    padding: 26px clamp(24px, 5vw, 78px) 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 25px rgba(27, 31, 36, 0.12);
  }
  .mobile-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }
  .mobile-nav button {
    width: max-content;
    margin-top: 4px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-visual {
    min-height: 480px;
    width: min(650px, 100%);
    justify-self: end;
  }
  .hero-photo-frame {
    width: min(95%, 610px);
  }
  .problem-section {
    grid-template-columns: 110px 1fr;
  }
  .problem-list {
    grid-column: 2;
    max-width: 640px;
  }
  .outcome-section {
    grid-template-columns: 110px 1fr;
  }
  .program-section {
    grid-template-columns: 110px 1fr;
  }
  .about-me-section {
    grid-template-columns: 110px minmax(0, 1fr) minmax(280px, 0.85fr);
    gap: 34px;
  }
  .plan-section {
    grid-template-columns: 110px 1fr;
  }
  .format-section {
    gap: 48px;
  }
  .faq-section {
    grid-template-columns: 100px 1fr;
  }
  .faq-list {
    grid-column: 2;
  }
  .apply-section {
    gap: 48px;
  }
}

@media (max-width: 650px) {
  .section-grid {
    padding-left: 22px;
    padding-right: 22px;
  }
  .topbar {
    height: 71px;
    padding: 0 22px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .brand-mark.user-logo {
    width: 36px;
    height: 36px;
  }
  .hero {
    padding-top: 62px;
    padding-bottom: 27px;
    gap: 24px;
    background-size: 28px 28px;
  }
  .eyebrow {
    margin-bottom: 31px;
    font-size: 9px;
  }
  .hero-author {
    margin: -15px 0 22px;
    font-size: 9px;
  }
  h1 {
    font-size: clamp(35px, 11vw, 52px);
    margin-bottom: 21px;
  }
  .hero-lede {
    font-size: 15px;
    margin-bottom: 27px;
  }
  .hero-actions {
    gap: 20px;
  }
  .primary-button {
    padding: 15px 17px;
  }
  .hero-visual {
    min-height: 355px;
    margin-top: 10px;
  }
  .hero-photo-frame {
    width: 98%;
    aspect-ratio: 16 / 9;
    top: 10%;
    box-shadow: 8px 10px 18px #1b1f2424;
  }
  .hero-blue-shape {
    width: 72px;
    height: 72px;
    left: 0;
    bottom: 7%;
  }
  .hero-blue-shape svg {
    width: 29px;
  }
  .proof-one {
    left: 5%;
    top: 4%;
  }
  .system-card {
    width: 177px;
    right: 1px;
    padding: 13px;
  }
  .scribble {
    left: 1%;
    bottom: -9%;
    font-size: 10px;
  }
  .hero-bottom-note {
    flex-direction: column;
    font-size: 11px;
    padding-top: 16px;
  }
  .problem-section,
  .outcome-section,
  .program-section,
  .faq-section,
  .about-me-section {
    display: block;
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .plan-section,
  .reviews-section {
    display: block;
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .section-number {
    margin-bottom: 32px;
  }
  .about-me-copy .about-me-lede {
    font-size: 15px;
  }
  .about-me-card {
    margin-top: 40px;
    padding: 24px 20px 21px;
    box-shadow: 7px 7px 0 var(--ink);
  }
  .problem-heading h2,
  .outcome-main h2,
  .format-copy h2,
  .method-copy h2,
  .faq-heading h2 {
    font-size: 30px;
  }
  .problem-list {
    margin-top: 38px;
  }
  .principle-section {
    display: block;
    min-height: 0;
  }
  .principle-paper {
    padding: 80px 22px;
  }
  .principle-paper h2 {
    font-size: 35px;
  }
  .principle-map {
    min-height: 0;
    padding: 52px 22px 59px;
  }
  .principle-map-head p {
    font-size: 16px;
  }
  .outcome-stack {
    display: block;
    margin-top: 37px;
    border-left: 0;
  }
  .proof-point {
    min-height: 0;
    padding: 17px 0;
    border-right: 0;
    display: grid;
    grid-template-columns: 34px 1fr 25px;
    align-items: center;
    gap: 10px;
  }
  .proof-point p {
    margin: 0;
    font-size: 13px;
  }
  .outcome-quote {
    margin-top: 36px;
  }
  .program-intro h2 {
    font-size: 34px;
  }
  .program-grid {
    display: block;
    margin-top: 38px;
    background: transparent;
  }
  .program-card {
    min-height: 285px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 22px 0;
  }
  .program-card h3 {
    font-size: 22px;
  }
  .program-dot {
    right: 0;
  }
  .program-card-band {
    right: -68px;
  }
  .plan-list {
    display: block;
    margin-top: 36px;
  }
  .plan-step,
  .plan-step:nth-child(odd),
  .plan-step:nth-child(n + 3) {
    min-height: 250px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .reviews-copy > p:last-child {
    margin-bottom: 34px;
  }
  .reviews-carousel .review-slide {
    flex-basis: 100%;
    padding-left: 12px;
  }
  .reviews-carousel-inner {
    padding: 0 46px;
  }
  .reviews-carousel .reviews-previous,
  .reviews-carousel .reviews-next {
    min-width: 40px;
    width: 40px;
    height: 40px;
    box-shadow: 2px 2px 0 var(--ink);
  }
  .review-screenshot {
    padding: 4px;
    box-shadow: 3px 3px 0 rgba(27, 31, 36, 0.14);
  }
  .review-quote {
    min-height: 54px;
    margin: 12px 4px 0;
    font-size: 11px;
  }
  .reviews-dots {
    margin-top: 19px;
  }
  .format-section,
  .method-section,
  .apply-section {
    display: block;
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .format-photo-wrap {
    margin-bottom: 58px;
  }
  .format-copy h2 {
    margin-bottom: 28px;
  }
  .format-stats {
    margin-bottom: 27px;
  }
  .format-stats > div {
    min-height: 57px;
    gap: 7px;
    padding: 8px 6px;
  }
  .format-stats b {
    font-size: 18px;
  }
  .format-stats span {
    font-size: 8px;
  }
  .method-copy {
    margin-bottom: 52px;
  }
  .method-image-wrap {
    min-height: 350px;
  }
  .method-image-wrap img {
    height: 88%;
    width: 78%;
  }
  .method-image-backdrop {
    width: 84%;
    height: 83%;
  }
  .faq-list {
    margin-top: 35px;
  }
  .apply-title-wrap h2 {
    font-size: 35px;
  }
  .purchase-start {
    margin-top: 20px;
  }
  .purchase-start strong {
    font-size: 14px;
  }
  .apply-card {
    width: 100%;
    margin-top: 46px;
    padding: 27px 23px;
  }
  .tariff-card {
    min-height: 154px;
  }
  .apply-decoration {
    right: -13%;
    top: 17%;
  }
  .apply-decoration span {
    font-size: 270px;
  }
  .apply-decoration i {
    width: 220px;
    top: 98px;
  }
  .apply-decoration b {
    top: 187px;
  }
  .footer {
    min-height: 190px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 20px;
  }
  .footer-contacts {
    width: 100%;
    justify-content: flex-start;
    order: 3;
    gap: 9px 14px;
  }
  .footer p {
    width: calc(100% - 76px);
    order: 4;
  }
  .footer-legal {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    order: 5;
    padding-top: 14px;
  }
  .footer-legal p {
    width: auto;
  }
}

/* Moodle learning flow */
.moodle-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  padding-top: 130px;
  padding-bottom: 130px;
  background: #f4f7f0;
}
.moodle-heading h2 {
  font-size: clamp(30px, 3.45vw, 54px);
  line-height: 1.13;
  margin: 13px 0 22px;
}
.moodle-heading > p:last-child {
  max-width: 440px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}
.moodle-board {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(27, 31, 36, 0.17);
  box-shadow: 9px 9px 0 var(--ink);
}
.moodle-board-head {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 62px;
  padding: 12px 17px;
  background: #93b982;
  color: #173216;
}
.moodle-board-head strong {
  margin-right: auto;
  font:
    700 13px/1.2 "Unbounded",
    sans-serif;
  letter-spacing: -0.065em;
}
.moodle-board-head b {
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.moodle-mark {
  display: flex;
  gap: 3px;
  align-items: end;
  width: 18px;
  height: 18px;
}
.moodle-mark i {
  display: block;
  width: 4px;
  background: #1747ff;
}
.moodle-mark i:nth-child(1) {
  height: 7px;
}
.moodle-mark i:nth-child(2) {
  height: 12px;
}
.moodle-mark i:nth-child(3) {
  height: 18px;
  background: var(--lemon);
}
.moodle-modules {
  padding: 8px 17px 16px;
}
.moodle-modules article {
  display: grid;
  grid-template-columns: 31px 1fr 10px;
  gap: 10px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(27, 31, 36, 0.13);
}
.moodle-modules article > span {
  color: var(--blue);
  font:
    700 10px/1 "Unbounded",
    sans-serif;
}
.moodle-modules b {
  display: block;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
}
.moodle-modules small {
  display: block;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.35;
  font-weight: 700;
  margin-top: 3px;
}
.moodle-modules article > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93b982;
}
.moodle-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 9px;
  align-items: center;
  padding: 17px;
  background: var(--paper-deep);
  border-top: 1px solid rgba(27, 31, 36, 0.16);
}
.moodle-flow span {
  color: var(--blue);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.moodle-flow p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.4;
  font-weight: 700;
}
.moodle-flow > svg {
  color: var(--blue);
}
.moodle-section {
  display: block;
  padding-top: 88px;
  padding-bottom: 88px;
}
.moodle-heading > p:last-child {
  margin-bottom: 34px;
}
.moodle-board-head {
  min-height: 54px;
  padding: 11px 13px;
}
.moodle-board-head strong {
  font-size: 10px;
}
.moodle-board-head b {
  font-size: 7px;
  padding: 5px;
}
.moodle-modules {
  padding: 7px 13px 13px;
}
.moodle-flow {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px;
}
.moodle-flow > svg {
  display: none;
}
.moodle-flow > div {
  padding: 7px 0;
  border-bottom: 1px solid rgba(27, 31, 36, 0.12);
}
.moodle-flow > div:last-child {
  border-bottom: 0;
}

/* Small native replacements for the original UI components. */
.reviews-carousel-inner {
  position: relative;
}
.reviews-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}
.reviews-viewport::-webkit-scrollbar {
  display: none;
}
.reviews-track {
  display: flex;
  margin-left: -16px;
}
.review-slide {
  min-width: 0;
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.reviews-previous,
.reviews-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reviews-previous svg,
.reviews-next svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-question {
  display: flex;
  align-items: start;
  justify-content: space-between;
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question:hover {
  text-decoration: underline;
}
.faq-question svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform: translateY(2px);
  transition: transform 200ms;
}
.faq-item[open] .faq-question svg {
  transform: translateY(2px) rotate(180deg);
}
.faq-answer-body {
  padding-bottom: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.footer .back-to-top {
  display: inline-flex;
}
@media (max-width: 650px) {
  .mobile-nav {
    top: 71px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  ::before,
  ::after {
    animation: none !important;
    transition: none !important;
  }
}
