:root {
  --ink: #0e1020;
  --muted-ink: rgba(14, 16, 32, 0.66);
  --paper: #f8f8f2;
  --lavender: #eee7dc;
  --lavender-2: #e4d8c9;
  --quiet: #eee6da;
  --quiet-2: #d7c6b2;
  --quiet-3: #f7f1e8;
  --quiet-bg:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, var(--quiet-3), var(--quiet) 48%, var(--quiet-2));
  --underlay-art:
    repeating-linear-gradient(24deg, rgba(88, 62, 35, 0.2) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(114deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 34px),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.98), transparent 16%),
    radial-gradient(circle at 78% 72%, rgba(177, 128, 76, 0.52), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #ead7bd 46%, #b9854d 100%);
  --deep: #090b18;
  --deep-2: #151235;
  --violet: #352b76;
  --soft-violet: #8e85f7;
  --mint: #d8ece6;
  --white: #ffffff;
  --max: 1160px;
  --gutter: clamp(20px, 4vw, 54px);
  --radius: 18px;
  --radius-soft: 28px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--lavender);
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--lavender);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #d8ece6, #8e85f7, #090b18);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px var(--gutter);
  color: var(--white);
  pointer-events: none;
  transition: color 360ms var(--ease), padding 360ms var(--ease);
}

.site-header > * {
  pointer-events: auto;
}

.site-header.is-light {
  color: var(--ink);
}

.header-actions {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0.92;
}

.brand__word {
  max-width: 230px;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 66px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: -0.035em;
  transition: transform 450ms var(--ease), box-shadow 450ms var(--ease), background 450ms var(--ease);
  will-change: transform;
}

.button:hover {
  transform: translateY(-3px) scale(1.012);
}

.button--dark {
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 18px 46px rgba(9, 11, 24, 0.24);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(9, 11, 24, 0.12);
}

.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 900;
  letter-spacing: -0.015em;
  color: currentColor;
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}

.header-link:hover {
  opacity: 0.68;
  transform: translateY(-1px);
}

.header-about {
  padding: 0;
  color: currentColor;
  border: 0;
  background: transparent;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  cursor: pointer;
  opacity: 0.74;
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}

.header-about:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.arrow {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 2px;
  background: currentColor;
}

.arrow::after,
.arrow::before {
  position: absolute;
  right: 0;
  width: 11px;
  height: 2px;
  content: "";
  background: currentColor;
  transform-origin: right center;
}

.arrow::after {
  transform: rotate(45deg);
}

.arrow::before {
  transform: rotate(-45deg);
}

.container {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
}

.container--narrow {
  max-width: 980px;
}

.section-dark {
  color: var(--white);
  background: var(--deep);
}

.lavender {
  background: var(--lavender);
}

.white-section {
  background: var(--paper);
}

.white-flow {
  position: relative;
  overflow: visible;
  background: var(--paper);
}

.white-flow .white-section {
  background: transparent;
}

.result-flow {
  position: relative;
  isolation: isolate;
}

.result-flow .container {
  position: relative;
  z-index: 1;
}

.quiet-luxury {
  background: var(--quiet-bg);
}

.quiet-flow {
  position: relative;
  overflow: hidden;
  background: var(--quiet-bg);
}

.quiet-flow .quiet-luxury {
  background: transparent;
}

.scene {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.quiet-flow #intro {
  overflow: visible;
  z-index: 2;
}

.quiet-flow .intro--promise {
  z-index: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: -10vh -4vw;
}

.hero__media {
  inset: 0 -4vw -10vh;
  z-index: -6;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0 28%, rgba(0, 0, 0, 0.42) 46%, rgba(0, 0, 0, 0.03) 72%, rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.24)),
    url("./hero-bg.png");
  background-position: center top;
  background-size: cover;
  filter: saturate(0.94) contrast(1.04);
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
}

.hero__shade {
  z-index: -3;
  background:
    radial-gradient(ellipse at 17% 44%, rgba(9, 11, 24, 0.5), transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42));
}

.hero__content {
  position: relative;
  z-index: 3;
  align-self: end;
  width: min(700px, 100% - var(--gutter));
  margin: 0 auto 17vh var(--gutter);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero__kicker,
.hero__title {
  display: block;
}

.hero__kicker {
  margin-bottom: 10px;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.24vw, 20px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.015em;
  opacity: 1;
}

.hero__title {
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2,
.display {
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1.14;
  letter-spacing: -0.065em;
}

h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

p {
  font-size: clamp(18px, 1.48vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.hero__content > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.24vw, 20px);
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.hero__actions {
  display: flex;
  align-items: center;
}

.hero__about {
  position: absolute;
  right: var(--gutter);
  bottom: calc(17vh + 33px);
  z-index: 4;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  border: 0;
  background: transparent;
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: color 300ms var(--ease), opacity 300ms var(--ease), transform 300ms var(--ease);
}

.hero__about:hover {
  color: var(--white);
  opacity: 0.78;
  transform: translateY(-1px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  display: grid;
  gap: 14px;
  justify-items: center;
  width: min(520px, calc(100% - 40px));
  color: var(--white);
  text-align: center;
  transform: translateX(-50%);
}

.scroll-cue span {
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.scroll-cue i {
  display: block;
  width: 28px;
  height: 28px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(45deg);
  animation: cue-glow 1.45s var(--ease) infinite;
}

@keyframes cue-glow {
  0%,
  100% {
    opacity: 0.36;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: translateY(0) rotate(45deg);
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 16px rgba(216, 236, 230, 0.95));
    transform: translateY(9px) rotate(45deg);
  }
}

.intro {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 170px 0;
}

.lead {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.intro__sublead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(14, 16, 32, 0.66);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.035em;
  text-align: left;
}

.intro:not(.intro--promise) .intro__sublead:first-child {
  max-width: none;
  margin-top: 0;
  white-space: nowrap;
}

.course-mark {
  color: rgba(82, 61, 42, 0.98);
  font-weight: 800;
  letter-spacing: -0.028em;
  box-shadow: inset 0 -0.28em rgba(198, 177, 148, 0.32);
}

.intro--promise {
  position: relative;
  isolation: isolate;
  min-height: 72svh;
  align-items: start;
  background: transparent;
  border-top: 0;
  padding-top: clamp(86px, 13vh, 118px);
  padding-bottom: clamp(82px, 12vh, 112px);
}

.intro--promise::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: transparent;
  pointer-events: none;
}

.intro--promise .container {
  position: relative;
  z-index: 4;
}

.intro--promise .intro__sublead {
  max-width: 760px;
  margin-top: 0;
}

.promise-underlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: none;
  pointer-events: none;
  background: var(--underlay-art);
  background-attachment: fixed;
  background-position: center;
  background-size: 260px 260px, 420px 420px, 1200px 900px, 1200px 900px, 100% 100%;
}

.model {
  min-height: 225svh;
  padding: 0;
  overflow: visible;
}

.model__grid,
.result__grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(42px, 9vw, 130px);
  align-items: start;
}

.model__grid {
  position: sticky;
  top: 0;
  min-height: 100svh;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 74px);
  align-content: start;
  justify-items: stretch;
  padding-top: clamp(72px, 9vh, 114px);
}

.model__copy h2 {
  max-width: 980px;
  margin: 0;
  padding-top: 0;
  font-size: clamp(37px, 4.08vw, 61px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-align: left;
}

.model__copy h2 span {
  display: block;
  white-space: nowrap;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-list--model {
  width: min(920px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stack-list--model p {
  opacity: 0;
  transform: translateY(88px);
  transition:
    opacity 620ms var(--ease),
    transform 760ms var(--ease);
  will-change: opacity, transform;
}

.stack-list--model p.is-fixed {
  opacity: 1;
  transform: translateY(0);
}

.stack-list p,
.mini-grid span {
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(9, 11, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 70px rgba(54, 45, 98, 0.08);
  backdrop-filter: blur(16px);
}

.stack-list--compact p {
  padding: 14px 18px;
  font-size: clamp(16px, 1.2vw, 19px);
}

.truth {
  padding: 90px 0 230px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: clamp(46px, 8vw, 120px);
  align-items: start;
}

.split--reversed {
  grid-template-columns: 0.86fr 1fr;
}

.split__copy h2 {
  max-width: 760px;
}

.split__copy p {
  max-width: 660px;
  color: var(--muted-ink);
}

.statement-card {
  min-height: 500px;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: 42px;
  color: var(--white);
  border-radius: var(--radius-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--deep), var(--deep-2));
  box-shadow: 0 34px 92px rgba(9, 11, 24, 0.2);
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.statement-card p {
  margin: 0;
  font-size: clamp(36px, 4.1vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  text-align: left;
}

.blocks {
  position: relative;
  overflow: hidden;
  padding: 0 0 170px;
}

.blocks-stack {
  position: relative;
}

.blocks .square {
  z-index: 0;
}

.blocks .container {
  position: relative;
  z-index: 1;
}

.blocks__intro {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.04fr);
  gap: clamp(34px, 5vw, 72px);
  align-content: center;
  align-items: stretch;
}

.blocks__intro:first-child {
  transform: translateY(-5vh);
}

.blocks__title {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.blocks__summary {
  max-width: 520px;
  margin: clamp(26px, 4vw, 48px) 0 0;
  color: rgba(14, 16, 32, 0.66);
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.blocks__summary + .blocks__summary {
  margin-top: clamp(20px, 3vw, 34px);
}

.blocks__intro--lesson {
  margin-top: clamp(48px, 6.7vw, 90px);
}

.square--blocks-a {
  --size: min(470px, 35vw);
  right: clamp(86px, 11vw, 176px);
  top: calc(50svh - min(235px, 17.5vw) - 12vh);
  opacity: 0.42;
}

.square--blocks-b {
  --size: 172px;
  left: clamp(88px, 13vw, 190px);
  top: calc(50svh - 86px + 8vh);
  opacity: 0.54;
}

.quote-square {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(520px, 100%);
  aspect-ratio: 1;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 4.4vw, 58px);
  border-radius: var(--radius-soft);
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.42), rgba(5, 6, 10, 0.78)),
    url("./quote-bg.png") center / cover;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -120px 160px rgba(0, 0, 0, 0.44),
    0 42px 92px rgba(9, 11, 24, 0.34),
    0 12px 28px rgba(9, 11, 24, 0.22);
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(var(--parallax-rotate, 0deg));
  will-change: transform;
}

.quote-square::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.36), transparent 44%);
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
}

.quote-square::after {
  position: absolute;
  top: clamp(18px, 3vw, 36px);
  left: clamp(24px, 3.5vw, 46px);
  z-index: -1;
  content: "“";
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(96px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.8;
}

.quote-square blockquote {
  margin: 0;
}

.quote-square p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16.5px, 1.5vw, 22.5px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.04em;
  text-align: left;
}

.quote-square p + p {
  margin-top: clamp(18px, 2.4vw, 30px);
}

.quote-panel {
  justify-self: end;
  position: relative;
  width: min(640px, 100%);
  display: grid;
  align-items: center;
  align-self: stretch;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(9, 11, 24, 0.08);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 30px 90px rgba(54, 45, 98, 0.1);
  backdrop-filter: blur(18px);
}

.quote-panel::before {
  display: none;
}

.quote-panel blockquote {
  position: relative;
  margin: 0;
}

.quote-panel blockquote::before {
  display: none;
}

.quote-panel p {
  position: relative;
  margin: 0;
  color: rgba(14, 16, 32, 0.66);
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.035em;
  text-align: left;
}

.quote-panel .course-mark {
  color: rgba(82, 61, 42, 0.98);
  box-shadow: inset 0 -0.28em rgba(198, 177, 148, 0.32);
}

.quote-panel p + p {
  margin-top: clamp(18px, 2.4vw, 30px);
}

.quote-panel__bonus {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin-top: clamp(28px, 3vw, 42px);
  padding-top: clamp(22px, 2.4vw, 30px);
  border-top: 1px solid rgba(9, 11, 24, 0.1);
}

.quote-panel__bonus-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(145deg, rgba(206, 184, 151, 0.92), rgba(132, 102, 68, 0.76));
  box-shadow: 0 16px 34px rgba(82, 61, 42, 0.18);
}

.quote-panel__bonus h3 {
  margin: 0 0 10px;
  color: rgba(82, 61, 42, 0.98);
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.quote-panel__bonus p {
  margin: 0;
  color: rgba(14, 16, 32, 0.58);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.block-card,
.lesson-card,
.wrong-card,
.choice-card,
.price-card {
  border: 1px solid rgba(9, 11, 24, 0.08);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 30px 90px rgba(54, 45, 98, 0.1);
  backdrop-filter: blur(18px);
}

.block-card--large {
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  padding: clamp(28px, 5vw, 64px);
}

.block-card p:last-child,
.lesson-card p:last-child,
.choice-card p:last-child,
.wrong-card p:last-child {
  margin-bottom: 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 30px 0;
}

.mini-grid--summary {
  margin-top: 22px;
}

.mini-grid span {
  display: block;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.mini-grid--summary span {
  color: var(--ink);
  font-size: clamp(18px, 1.48vw, 22px);
  font-weight: 400;
  line-height: 1.45;
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 100px;
}

.lesson-card {
  min-height: 640px;
  padding: clamp(28px, 4vw, 46px);
}

.lesson-card__num {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
  color: var(--white);
  border-radius: 14px;
  background: var(--deep);
  font-weight: 900;
}

.lesson-card h3 {
  margin-bottom: 30px;
}

.lesson-card p {
  font-size: clamp(16px, 1.2vw, 19px);
}

.result {
  isolation: isolate;
  position: relative;
  overflow: visible;
  padding: 170px 0;
}

.result .container {
  position: relative;
  z-index: 1;
}

.result h2 {
  position: static;
}

.result .formats__sticky {
  position: sticky;
  top: 140px;
  z-index: 2;
}

.switch {
  overflow: hidden;
  padding: clamp(120px, 15vh, 180px) 0;
}

.switch__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.94fr) minmax(72px, 0.18fr) minmax(390px, 1.28fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: end;
}

.switch__side {
  display: grid;
  align-content: start;
}

.switch__side--order {
  transform: translateX(clamp(18px, 2.8vw, 48px));
}

.switch__side-copy {
  margin-bottom: clamp(24px, 3vw, 42px);
}

.switch__side-copy--right {
  text-align: left;
  margin-left: clamp(10px, 2vw, 34px);
}

.switch__side-copy .eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
}

.switch__side-copy h2 {
  max-width: 430px;
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.switch__copy {
  position: relative;
  z-index: 2;
  min-height: 1px;
  text-align: center;
}

.switch__copy .eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.64);
}

.switch h2 {
  max-width: 620px;
  margin: 0 auto 0;
  color: var(--white);
  font-size: clamp(24px, 2.45vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.switch .switch__side-copy h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(19px, 1.55vw, 28px);
}

.switch__side-copy--right h2 {
  max-width: 760px;
}

.switch__line {
  width: 100%;
  height: 1px;
  margin: clamp(40px, 6vw, 74px) 0;
  background: rgba(255, 255, 255, 0.2);
}

.chaos-map,
.order-map {
  position: relative;
  min-height: clamp(230px, 22vw, 300px);
}

.chaos-map svg,
.order-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chaos-map path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.chaos-card,
.order-node,
.order-core {
  position: absolute;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(12px, 0.88vw, 15px);
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.chaos-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(117, 86, 58, 0.96), rgba(62, 47, 36, 0.96));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.92);
}

.chaos-card--one { left: 8%; top: 9%; transform: rotate(-12deg); }
.chaos-card--two { right: 4%; top: 10%; transform: rotate(9deg); }
.chaos-card--three { left: 40%; top: 30%; transform: rotate(-4deg); }
.chaos-card--four { left: 0; top: 46%; transform: rotate(13deg); }
.chaos-card--five { right: 0; top: 45%; transform: rotate(-10deg); }
.chaos-card--six { left: 16%; bottom: 6%; transform: rotate(8deg); }
.chaos-card--seven { right: 10%; bottom: 2%; transform: rotate(-6deg); }

.switch__arrows {
  position: relative;
  align-self: stretch;
  min-height: 100%;
}

.switch__arrow {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62));
  transform: translateX(-50%);
}

.switch__arrow--text {
  top: clamp(50px, 7vw, 92px);
}

.switch__arrow--visual {
  bottom: calc(clamp(230px, 22vw, 300px) / 2);
}

.switch__arrow::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 14px;
  height: 14px;
  content: "";
  border-top: 2px solid rgba(255, 255, 255, 0.62);
  border-right: 2px solid rgba(255, 255, 255, 0.62);
  transform: translateY(-50%) rotate(45deg);
}

.order-map svg line {
  stroke: rgba(255, 255, 255, 0.38);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.order-core {
  left: 50%;
  top: 50%;
  min-width: 86px;
  min-height: 86px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: clamp(15px, 1.08vw, 19px);
  transform: translate(-50%, -50%);
}

.order-node {
  min-height: 40px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.14);
  font-size: clamp(11px, 0.82vw, 14px);
}

.order-node--model { left: 50%; top: 8%; transform: translateX(-50%); }
.order-node--funnel { right: 5%; top: 38%; transform: translateY(-50%); }
.order-node--ads { right: 20%; bottom: 8%; }
.order-node--profit { left: 20%; bottom: 8%; }
.order-node--team { left: 5%; top: 38%; transform: translateY(-50%); }

.price {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 12vw, 178px) 0;
}

.price--blue {
  color: var(--white);
  background: var(--deep);
}

.price__head {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.price__head .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.price__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 186px 126px auto 286px auto auto;
  row-gap: 10px;
  align-items: start;
  min-height: 0;
  padding: clamp(24px, 3vw, 36px);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 241, 246, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.price-card--featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(219, 233, 242, 0.92));
  transform: none;
}

.price-card__top {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  margin-bottom: clamp(14px, 2vw, 24px);
}

.price-card__label {
  display: block;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-transform: capitalize;
}

.price-card__price {
  display: grid;
  gap: 2px;
}

.price-card__price s {
  color: rgba(14, 16, 32, 0.38);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.price-card__price strong {
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.price-card__meta {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.price-card__meta p {
  margin: 0;
  color: rgba(14, 16, 32, 0.74);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.35;
}

.price-card__meta span {
  display: block;
  margin-bottom: 4px;
  color: rgba(14, 16, 32, 0.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__section-title {
  margin: 0;
  color: rgba(14, 16, 32, 0.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__list {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card__section-title + .price-card__list:not(.price-card__list--bonus) {
  min-height: 186px;
}

.price-card__list li {
  position: relative;
  padding-left: 20px;
  color: rgba(14, 16, 32, 0.82);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.28;
}

.price-card__list li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: #0d2b55;
  border-radius: 2px;
}

.price-card__list--bonus {
  min-height: 0;
  margin-bottom: 0;
}

.price-card .button {
  width: 100%;
}

.price-card__feedback {
  min-height: 0;
  margin: 0;
  color: rgba(14, 16, 32, 0.82);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.28;
}

.price-card__feedback--empty {
  visibility: hidden;
}

.price-card__feedback span {
  display: block;
  margin-bottom: 12px;
  color: rgba(14, 16, 32, 0.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__access {
  margin: 0;
  color: rgba(14, 16, 32, 0.72);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.35;
}

.price-card__access span {
  display: block;
  margin-bottom: 4px;
  color: rgba(14, 16, 32, 0.36);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-for {
  padding: 170px 0 140px;
}

.not-for .formats__title {
  position: sticky;
  top: 140px;
  align-self: start;
}

.formats__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  gap: clamp(54px, 12vw, 170px);
}

.formats__sticky {
  position: sticky;
  top: 140px;
  align-self: start;
}

.formats__title {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 1.15;
}

.formats__sticky p {
  max-width: 430px;
  margin: 0;
  color: rgba(14, 16, 32, 0.66);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.format-list {
  display: grid;
  gap: 38px;
}

.format-item {
  padding: 0 0 36px;
  border-bottom: 1px solid rgba(9, 11, 24, 0.14);
}

.format-list--crossed {
  gap: 38px;
}

.format-list--crossed .format-item {
  padding-bottom: 0;
  border-bottom: 0;
}

.format-list--crossed .format-item--crossed {
  padding-bottom: 36px;
}

.format-item--crossed p {
  position: relative;
  display: inline;
  background-image: linear-gradient(rgba(82, 61, 42, 0.62), rgba(82, 61, 42, 0.62));
  background-position: 0 58%;
  background-repeat: repeat-x;
  background-size: 100% 0.08em;
}

.format-item--plain {
  margin-top: calc(clamp(28px, 3.4vw, 44px) - 74px);
  padding-top: clamp(28px, 3.4vw, 44px);
  border-top: 1px solid rgba(9, 11, 24, 0.14);
}

.format-item--plain p {
  color: rgba(14, 16, 32, 0.72);
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.035em;
}

.format-item p {
  max-width: 720px;
  margin-bottom: 14px;
}

.fit {
  padding: 170px 0;
}

.fit-board {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, #d8ece6, #e9e5ef 54%, #f8f8f2);
  box-shadow: 0 30px 90px rgba(54, 45, 98, 0.1);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  overflow: hidden;
}

.fit-board span {
  position: absolute;
  padding: 14px 20px;
  border-radius: 14px;
  color: var(--white);
  background: var(--deep);
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow: 0 18px 40px rgba(9, 11, 24, 0.16);
}

.fit-board span:nth-child(1) { left: 10%; top: 14%; }
.fit-board span:nth-child(2) { right: 9%; top: 22%; }
.fit-board span:nth-child(3) { left: 24%; top: 45%; font-size: 28px; }
.fit-board span:nth-child(4) { right: 12%; bottom: 20%; }
.fit-board span:nth-child(5) { left: 12%; bottom: 16%; }

.fit-wrong-flow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fit-wrong-flow .lavender {
  position: relative;
  z-index: 1;
  background: transparent;
}

.fit-wrong-flow__stop {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.wrong {
  padding: 150px 0 170px;
}

.wrong-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 74px;
}

.wrong-card {
  min-height: 260px;
  padding: 24px;
}

.wrong-card p {
  font-size: clamp(16px, 1.18vw, 19px);
}

.wide-copy {
  max-width: 820px;
  margin-top: 72px;
  color: var(--muted-ink);
}

.price-reason {
  display: grid;
  align-items: center;
  min-height: 82svh;
  padding: clamp(84px, 8vw, 118px) 0;
}

.price-choice-flow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.price-choice-flow .white-section {
  position: relative;
  z-index: 1;
  background: transparent;
}

.price-choice-flow__stop {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.price-reason--second {
  padding-top: clamp(62px, 6vw, 90px);
}

.price-reason__head {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  gap: clamp(42px, 9vw, 120px);
  align-items: start;
  margin-bottom: clamp(28px, 4.2vw, 52px);
}

.price-reason__head p {
  max-width: 700px;
  margin: 0;
  color: rgba(14, 16, 32, 0.72);
  font-size: clamp(22px, 1.9vw, 32px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.price-reason__head--solo {
  display: block;
  max-width: 980px;
}

.price-reason__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}

.price-reason__cards--dense {
  align-items: stretch;
}

.price-reason__card {
  min-height: 210px;
  padding: clamp(20px, 2.3vw, 28px);
  border: 1px solid rgba(9, 11, 24, 0.08);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 30px 90px rgba(54, 45, 98, 0.08);
  backdrop-filter: blur(18px);
}

.price-reason__card--wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.price-reason__card--accent {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--deep), var(--deep-2));
}

.price-reason__card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(20px, 3vw, 38px);
  color: var(--ink);
  border-radius: 12px;
  background: var(--lavender-2);
  font-size: 14px;
  font-weight: 900;
}

.price-reason__card p {
  margin: 0;
  color: rgba(14, 16, 32, 0.72);
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.price-reason__card p + p {
  margin-top: 12px;
}

.price-reason__card p:first-child {
  color: var(--ink);
  font-weight: 850;
}

.price-reason__card--accent p,
.price-reason__card--accent p:first-child {
  color: rgba(255, 255, 255, 0.82);
}

.price-reason__deal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(20px, 3.2vw, 42px);
  align-items: stretch;
}

.price-reason__plain {
  display: grid;
  align-content: start;
  gap: clamp(18px, 2vw, 26px);
  padding-top: clamp(8px, 1vw, 14px);
}

.price-reason__plain p,
.price-reason__bottom p {
  margin: 0;
  color: rgba(14, 16, 32, 0.72);
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.price-reason__plain p:first-child,
.price-reason__bottom p:first-child {
  color: var(--ink);
  font-weight: 850;
}

.price-reason__deal-card {
  display: grid;
  align-content: center;
  gap: clamp(18px, 2vw, 26px);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(9, 11, 24, 0.08);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 30px 90px rgba(54, 45, 98, 0.1);
  backdrop-filter: blur(18px);
}

.price-reason__deal-card p {
  margin: 0;
  color: rgba(14, 16, 32, 0.72);
  font-size: clamp(19px, 1.42vw, 25px);
  font-weight: 750;
  line-height: 1.24;
  letter-spacing: -0.045em;
}

.price-reason__deal-card p:first-child {
  color: var(--ink);
}

.price-reason__bottom {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  max-width: 940px;
  margin-top: clamp(18px, 3vw, 34px);
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(9, 11, 24, 0.12);
}

.choices {
  padding: clamp(92px, 8vw, 124px) 0 clamp(130px, 10vw, 170px);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(42px, 5vw, 64px);
}

.choice-card {
  min-height: 620px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
}

.choice-card span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
  border-radius: 14px;
  background: var(--lavender-2);
  font-weight: 900;
}

.choice-card--accent {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--deep), var(--deep-2));
}

.choice-card--accent span {
  color: var(--ink);
  background: var(--white);
}

.choice-card p {
  font-size: clamp(16px, 1.16vw, 18px);
}

.join {
  position: relative;
  min-height: 930px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.join__content {
  max-width: 1000px;
}

.join h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(68px, 9vw, 118px);
}

.join p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.join .course-mark {
  color: var(--white);
  box-shadow: inset 0 -0.28em rgba(198, 177, 148, 0.42);
}

.join .button {
  margin-top: clamp(18px, 2.6vw, 34px);
}

.final-copy {
  max-width: 820px;
  margin-top: 80px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.final-copy a {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
  padding: clamp(42px, 6vw, 74px) 0;
}

.site-footer__eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__requisites p {
  margin: 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}

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

.site-footer__links a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}

.site-footer__links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease);
}

.about-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.about-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 24, 0.72);
  backdrop-filter: blur(10px);
}

.about-modal__dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(86svh, 920px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-soft);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 231, 220, 0.96));
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.34);
  transform: translateY(20px) scale(0.98);
  transition: transform 320ms var(--ease);
}

.about-modal.is-open .about-modal__dialog {
  transform: translateY(0) scale(1);
}

.about-modal__close {
  position: sticky;
  top: 18px;
  z-index: 3;
  float: right;
  width: 46px;
  height: 46px;
  margin: 18px 18px 0 0;
  color: var(--white);
  border: 0;
  border-radius: 12px;
  background: var(--deep);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.about-modal__content {
  padding: clamp(30px, 5vw, 64px);
}

.about-modal__intro {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.about-modal__intro h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.6vw, 68px);
}

.about-modal__intro p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(14, 16, 32, 0.72);
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 650;
  line-height: 1.36;
}

.about-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.about-modal__card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(9, 11, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
}

.about-modal__card span {
  display: block;
  margin-bottom: 32px;
  color: rgba(14, 16, 32, 0.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-modal__card p {
  margin: 0;
  color: rgba(14, 16, 32, 0.74);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 650;
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.about-modal__card a {
  color: rgba(82, 61, 42, 0.98);
  font-weight: 900;
  box-shadow: inset 0 -0.28em rgba(198, 177, 148, 0.32);
}

.about-modal__case {
  grid-column: 1 / -1;
  padding: clamp(26px, 3.6vw, 42px);
  color: var(--white);
  border-radius: var(--radius-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--deep), var(--deep-2));
  box-shadow: 0 30px 90px rgba(9, 11, 24, 0.18);
}

.about-modal__case span {
  display: block;
  margin-bottom: clamp(22px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-modal__case h3 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(32px, 3.8vw, 56px);
}

.about-modal__case p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 650;
  line-height: 1.38;
}

.about-modal__reviews {
  display: grid;
  gap: 16px;
}

.about-modal__reviews h3 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 42px);
}

.review-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.review-screens img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(9, 11, 24, 0.16);
}

body.modal-open {
  overflow: hidden;
}

.square,
.join__shape {
  position: absolute;
  z-index: -1;
  width: var(--size, 340px);
  aspect-ratio: 1;
  border-radius: var(--radius-soft);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(145deg, rgba(250, 244, 235, 0.9), rgba(222, 207, 187, 0.82) 46%, rgba(158, 137, 113, 0.62));
  box-shadow:
    inset -34px -30px 74px rgba(92, 68, 44, 0.34),
    inset 28px 24px 66px rgba(255, 255, 255, 0.62),
    0 42px 92px rgba(78, 54, 31, 0.28),
    0 12px 28px rgba(78, 54, 31, 0.18);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) rotate(calc(var(--rotate, 0deg) + var(--parallax-rotate, 0deg)));
  will-change: transform;
}

.square::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
    repeating-linear-gradient(
      135deg,
      rgba(105, 76, 47, 0.16) 0 1px,
      transparent 1px 15px
    );
  opacity: 0.42;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.square--hero-a {
  --size: min(176px, 14vw);
  z-index: -2;
  right: 43vw;
  bottom: 16vh;
  opacity: 0.32;
}

.square--hero-b {
  --size: 92px;
  z-index: -2;
  right: 52vw;
  top: 21vh;
  opacity: 0.3;
}

.square--intro-a {
  --size: 142px;
  top: 16vh;
  right: auto;
  left: clamp(260px, 34vw, 460px);
  opacity: 0.72;
}

.square--intro-b {
  --size: min(470px, 36vw);
  right: clamp(76px, 9vw, 128px);
  top: clamp(430px, 62vh, 520px);
  opacity: 0.56;
}

.square--promise-a {
  --size: min(540px, 56vw);
  right: -16vw;
  bottom: -22vh;
  opacity: 0.32;
}

.cutout-square {
  position: absolute;
  z-index: 3;
  width: var(--size, 340px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(74, 50, 27, 0.16);
  border-radius: 6px;
  background: transparent;
  box-shadow:
    inset 28px 28px 68px rgba(48, 31, 16, 0.42),
    inset -26px -26px 58px rgba(255, 255, 255, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, 0.44),
    0 30px 78px rgba(74, 50, 27, 0.12);
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(calc(var(--rotate, 0deg) + var(--parallax-rotate, 0deg)));
  will-change: transform;
}

.cutout-square::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--underlay-art);
  background-attachment: fixed;
  background-position: center;
  background-size: 260px 260px, 420px 420px, 1200px 900px, 1200px 900px, 100% 100%;
  filter: saturate(1.06) contrast(1.04);
}

.cutout-square::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(47, 31, 17, 0.38), transparent 30%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.34), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 14%, transparent 86%, rgba(62, 39, 20, 0.12));
  box-shadow:
    inset 36px 36px 78px rgba(48, 31, 16, 0.42),
    inset -34px -34px 72px rgba(255, 255, 255, 0.44);
}

.cutout-square--promise-a {
  --size: clamp(236px, 21vw, 300px);
  left: clamp(46px, 8vw, 120px);
  bottom: clamp(70px, 12vh, 110px);
  border-radius: var(--radius-soft);
  border: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(145deg, rgba(250, 244, 235, 0.9), rgba(222, 207, 187, 0.82) 46%, rgba(158, 137, 113, 0.62));
  box-shadow:
    inset -34px -30px 74px rgba(92, 68, 44, 0.34),
    inset 28px 24px 66px rgba(255, 255, 255, 0.62),
    0 42px 92px rgba(78, 54, 31, 0.28),
    0 12px 28px rgba(78, 54, 31, 0.18);
}

.cutout-square--promise-a::before {
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
    repeating-linear-gradient(
      135deg,
      rgba(105, 76, 47, 0.16) 0 1px,
      transparent 1px 15px
    );
  background-attachment: scroll;
  background-size: auto;
  opacity: 0.42;
  mix-blend-mode: multiply;
  filter: none;
}

.cutout-square--promise-a::after {
  display: none;
}

.cutout-square--promise-b {
  --size: 150px;
  right: clamp(170px, 22vw, 320px);
  top: 16vh;
}

.square--model {
  --size: min(840px, 84vw);
  left: -24vw;
  bottom: -260px;
  opacity: 0.68;
}

.square--result {
  --size: min(420px, 42vw);
  z-index: 0;
  left: clamp(42px, 8vw, 130px);
  top: calc(100svh - var(--size) * 0.42);
  opacity: 0.68;
}

.square--price-a {
  --size: 170px;
  top: 90px;
  left: 12vw;
}

.square--price-b {
  --size: 620px;
  right: -260px;
  bottom: -260px;
  opacity: 0.68;
}

.square--price-choice {
  --size: min(520px, 38vw);
  z-index: 0;
  right: clamp(52px, 8vw, 130px);
  top: calc(50svh - min(260px, 19vw));
  opacity: 0.34;
}

.square--fit-wrong {
  --size: min(420px, 34vw);
  z-index: 0;
  right: clamp(34px, 7vw, 110px);
  top: calc(46svh - min(210px, 17vw));
  opacity: 0.42;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.98), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.86) 58%, rgba(232, 224, 213, 0.62));
  box-shadow:
    inset 16px 16px 42px rgba(255, 255, 255, 0.62),
    0 34px 90px rgba(82, 61, 42, 0.08);
}

.join__shape {
  --size: min(602px, 58.8vw);
  z-index: -1;
  right: -14vw;
  bottom: -34vh;
  opacity: 0.68;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

.formats__sticky.reveal,
.formats__sticky.reveal.is-visible {
  transform: none;
}

.not-for .formats__title.reveal,
.not-for .formats__title.reveal.is-visible {
  transform: none;
}

.quote-square.reveal,
.quote-square.reveal.is-visible {
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(var(--parallax-rotate, 0deg));
}

.legal-body {
  min-height: 100svh;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(206, 184, 151, 0.22), transparent 30%),
    linear-gradient(135deg, #f8f8f2, #eee6da 48%, #d7c6b2);
}

.legal-page {
  padding: clamp(28px, 5vw, 72px) 0;
}

.legal-shell {
  width: min(980px, calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  margin-bottom: clamp(24px, 4vw, 44px);
  color: rgba(14, 16, 32, 0.62);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.legal-back:hover {
  color: var(--ink);
  transform: translateX(-3px);
}

.legal-document {
  padding: clamp(28px, 5vw, 68px);
  border: 1px solid rgba(9, 11, 24, 0.08);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 34px 92px rgba(54, 45, 98, 0.12);
  backdrop-filter: blur(18px);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content p,
.legal-content li {
  color: rgba(14, 16, 32, 0.76);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: -0.025em;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content > p:first-child {
  margin-bottom: clamp(24px, 4vw, 42px);
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.legal-content b,
.legal-content strong {
  color: rgba(14, 16, 32, 0.92);
  font-weight: 900;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 1.35em;
}

.legal-content table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.44);
}

.legal-content td,
.legal-content th {
  padding: 12px 14px;
  border: 1px solid rgba(9, 11, 24, 0.12);
  color: rgba(14, 16, 32, 0.78);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  line-height: 1.42;
  vertical-align: top;
}

.legal-gap {
  height: 14px;
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 22px;
  }

  .site-header .button {
    min-height: 52px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .brand__caption {
    display: none;
  }

  .hero__about {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 22px;
  }

  .hero__actions {
    display: grid;
    justify-items: start;
  }

  .cutout-square--promise-a {
    display: none;
  }

  .intro,
  .model,
  .blocks,
  .result,
  .switch,
  .price,
  .not-for,
  .fit,
  .wrong,
  .price-reason,
  .choices {
    padding: 120px 0;
    min-height: auto;
  }

  .split,
  .split--reversed,
  .model__grid,
  .blocks__intro,
  .switch__grid,
  .result__grid,
  .price__grid,
  .price-reason__head,
  .price-reason__cards,
  .price-reason__deal,
  .formats__grid,
  .lesson-grid,
  .wrong-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid,
  .site-footer__links,
  .about-modal__grid,
  .review-screens {
    grid-template-columns: 1fr;
  }

  .wrong-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .wrong-card {
    width: fit-content;
    max-width: min(360px, 100%);
    min-height: 0;
    padding: 18px 22px;
  }

  .about-modal__card {
    min-height: 0;
  }

  .price-card__section-title + .price-card__list:not(.price-card__list--bonus),
  .price-card__list--bonus,
  .price-card__feedback {
    min-height: 0;
  }

  .price-card {
    grid-template-rows: none;
    row-gap: 16px;
  }

  .price-card__feedback--empty {
    display: none;
  }

  .price-card__list {
    gap: 8px;
  }

  .price-card__list:not(.price-card__list--bonus),
  .price-card__feedback,
  .price-card__list--bonus,
  .price-card__access {
    margin-bottom: 10px;
  }

  .price-card__section-title {
    margin-top: 2px;
  }

  .model {
    min-height: 128svh;
    padding: 0;
  }

  .model__grid {
    position: sticky;
    top: 0;
    min-height: 100svh;
    align-content: start;
    gap: clamp(28px, 5vh, 48px);
    padding-top: clamp(74px, 10vh, 104px);
    padding-bottom: 32px;
  }

  .truth {
    padding-top: 45px;
  }

  .not-for {
    padding-bottom: clamp(96px, 18svh, 150px);
  }

  .not-for .formats__title {
    position: sticky;
    top: 110px;
  }

  .not-for .format-item--plain {
    position: sticky;
    top: 230px;
    z-index: 2;
    background: var(--paper);
  }

  .result .format-item.is-under-sticky,
  .not-for .format-item.is-under-sticky {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .model__copy h2,
  .result h2,
  .formats__title {
    position: static;
  }

  .blocks-stack {
    margin-inline: 0;
  }

  .blocks__intro {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 0;
  }

  .blocks__intro--lesson {
    margin-top: clamp(88px, 12vw, 140px);
  }

  .switch__grid {
    gap: 34px;
  }

  .switch__side--chaos {
    order: 1;
  }

  .switch__side--order {
    order: 3;
  }

  .switch__arrows {
    order: 2;
    min-height: 142px;
    width: 80px;
    justify-self: center;
    transform: none;
  }

  .switch__arrow {
    left: 50%;
    width: 2px;
    height: 72px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62));
    transform: translateX(-50%);
  }

  .switch__arrow--text {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .switch__arrow--visual {
    display: none;
  }

  .switch__arrow::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .chaos-map,
  .order-map {
    min-height: 420px;
  }

  .lesson-card,
  .choice-card {
    min-height: auto;
  }

  .quote-panel {
    justify-self: stretch;
    grid-template-columns: 1fr;
  }

  .quote-panel__image {
    width: min(230px, 100%);
  }

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

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
    --radius: 14px;
    --radius-soft: 22px;
  }

  .site-header .button span:first-child {
    display: none;
  }

  .site-header .button {
    width: 54px;
    min-height: 54px;
    padding: 0;
  }

  .brand__word {
    font-size: 22px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__media {
    inset: 0;
    background-position: 67% center;
    background-size: auto 100%;
    filter: saturate(0.98) contrast(1.02) brightness(1.08);
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.01);
  }

  .hero__shade {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0 45%, rgba(0, 0, 0, 0.38) 72%, rgba(0, 0, 0, 0.2)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  }

  .hero__content {
    margin-bottom: 150px;
  }

  .hero__about {
    display: none;
  }

  .scroll-cue {
    bottom: 16px;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100% - 36px));
  }

  .scroll-cue span {
    font-size: clamp(18px, 6vw, 24px);
    line-height: 1;
  }

  .scroll-cue i {
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .button {
    min-height: 60px;
    width: 100%;
    padding-inline: 20px;
  }

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

  .wrong-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wrong-card {
    width: auto;
    max-width: none;
    aspect-ratio: auto;
    min-height: 0;
    display: grid;
    align-items: center;
    padding: 18px 20px;
  }

  .wrong-card p {
    font-size: clamp(16px, 1.18vw, 19px);
    line-height: 1.25;
  }

  .lead {
    font-size: 32px;
  }

  .model__copy h2 {
    max-width: 100%;
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-align: left;
  }

  .model__copy h2 span {
    white-space: normal;
  }

  .stack-list--model {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .stack-list--model p {
    padding: 12px 14px;
    font-size: clamp(15px, 4.25vw, 17px);
    line-height: 1.22;
  }

  .intro:not(.intro--promise) .intro__sublead:first-child {
    white-space: normal;
  }

  .statement-card,
  .fit-board {
    min-height: 390px;
  }

  .price-card--featured {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  [data-parallax] {
    transform: none !important;
  }
}
