:root {
  color-scheme: light;
  --ink: #18234b;
  --muted: #4d587c;
  --violet: #6549e7;
  --violet-dark: #4f36ce;
  --mint: #34bfa6;
  /* Высота верхнего меню + небольшой зазор для sticky-фото */
  --site-header-offset: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-offset);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Верхнее меню: фиксируется и плавно появляется после героя */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ink);
  background: rgba(251, 252, 255, 0.86);
  border-bottom: 1px solid rgba(101, 73, 231, 0.1);
  box-shadow: 0 10px 30px rgba(55, 68, 140, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    visibility 320ms ease;
}

.site-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header.is-open {
  background: rgba(251, 252, 255, 0.96);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
}

.site-header__brand {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-decoration: none;
}

.site-header__brand span {
  color: var(--violet);
}

.site-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-header__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav a {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #3d4a78;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-header__nav a:hover,
.site-header__nav a.is-active {
  color: var(--violet);
  background: rgba(101, 73, 231, 0.08);
}

.site-header__nav a:focus-visible,
.site-header__cta:focus-visible,
.site-header__menu-btn:focus-visible,
.site-header__panel a:focus-visible {
  outline: 3px solid rgba(101, 73, 231, 0.55);
  outline-offset: 2px;
}

.site-header__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--violet);
  box-shadow: 0 10px 22px rgba(101, 73, 231, 0.22);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header__cta:hover {
  background: var(--violet-dark);
  box-shadow: 0 12px 26px rgba(79, 54, 206, 0.28);
  transform: translateY(-1px);
}

.site-header__menu-btn {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid rgba(101, 73, 231, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.site-header__menu-btn span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--violet);
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-open .site-header__menu-btn span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .site-header__menu-btn span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.site-header__panel {
  display: none;
  padding: 8px 0 18px;
  border-top: 1px solid rgba(101, 73, 231, 0.1);
}

.site-header__panel[hidden] {
  display: none !important;
}

.site-header__panel ul {
  display: grid;
  gap: 4px;
  width: min(100% - 36px, 560px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.site-header__panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #2f3c72;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.site-header__panel a:hover {
  background: rgba(101, 73, 231, 0.08);
  color: var(--violet);
}

.site-header__panel-cta {
  margin-top: 6px;
  color: #fff !important;
  background: var(--violet);
  text-align: center;
}

.site-header__panel-cta:hover {
  background: var(--violet-dark) !important;
  color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background-color: #f8f9ff;
  /* Поместите приложенное пользователем изображение в корень проекта под этим именем. */
  background-image:
    url("./hero-background.jpg"),
    radial-gradient(circle at 78% 22%, rgba(209, 207, 255, 0.75), transparent 25%),
    linear-gradient(115deg, #fbfcff 0%, #f2f5ff 54%, #e7e6ff 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 31%, rgba(255, 255, 255, 0.68) 46%, rgba(255, 255, 255, 0.06) 65%);
  pointer-events: none;
}

.container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100svh;
  padding: clamp(88px, 11vw, 144px) 0 clamp(52px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #4353a5;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(52, 191, 166, 0.13);
  content: "";
}

h1 {
  max-width: 675px;
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

h1 span {
  color: var(--violet);
}

.hero__lead,
.hero__description,
.hero__promise,
.discount {
  max-width: 590px;
}

.hero__lead {
  margin: 28px 0 0;
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: -0.023em;
  line-height: 1.4;
}

.hero__description {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.16vw, 17px);
  letter-spacing: -0.016em;
  line-height: 1.53;
}

.hero__promise {
  margin: 18px 0 0;
  color: #2b3763;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 750;
  letter-spacing: -0.022em;
  line-height: 1.42;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 62px;
  margin-top: 30px;
  padding: 14px 19px 14px 27px;
  border-radius: 16px;
  color: #fff;
  background: var(--violet);
  box-shadow: 0 14px 28px rgba(101, 73, 231, 0.27);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  overflow: visible;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.19);
}

.button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover {
  background: var(--violet-dark);
  box-shadow: 0 17px 32px rgba(79, 54, 206, 0.34);
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid #42c8ad;
  outline-offset: 4px;
}

.discount {
  position: relative;
  margin: 18px 0 0;
  padding-left: 17px;
  color: #596486;
  font-size: 14px;
  letter-spacing: -0.012em;
  line-height: 1.45;
}

.discount::before {
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.discount strong {
  color: #3e4872;
}

.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f7f8ff;
  background-image:
    url("./second-screen-background.jpg"),
    radial-gradient(circle at 15% 16%, rgba(216, 239, 255, 0.8), transparent 31%),
    linear-gradient(135deg, #f8fbff 0%, #f7f6ff 47%, #eeefff 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.about__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 250, 255, 0.96) 0%, rgba(248, 250, 255, 0.91) 43%, rgba(248, 250, 255, 0.58) 66%, rgba(248, 250, 255, 0.16) 100%);
  pointer-events: none;
}

.about__content {
  max-width: 1240px;
  padding-top: clamp(78px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 144px);
}

.about__part {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 8vw, 128px);
}

.about__part--second {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  margin-top: clamp(84px, 13vw, 190px);
}

.about__intro,
.about__body {
  max-width: 660px;
}

.about__visual {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(440px, 47vw, 650px);
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(93, 82, 185, 0.4);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(235, 233, 255, 0.88), rgba(223, 244, 255, 0.77)),
    repeating-linear-gradient(45deg, rgba(108, 91, 215, 0.09) 0 1px, transparent 1px 17px);
  box-shadow: 0 24px 60px rgba(78, 78, 144, 0.12);
}

.about__visual::before,
.about__visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.about__visual::before {
  width: 170px;
  height: 170px;
  background: rgba(111, 86, 239, 0.14);
  transform: translate(-110%, -160%);
}

.about__visual::after {
  width: 230px;
  height: 230px;
  background: rgba(61, 203, 174, 0.15);
  transform: translate(105%, 132%);
}

.about__visual img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.about__visual img.is-loaded {
  opacity: 1;
}

.about__visual span {
  z-index: 1;
  max-width: 180px;
  padding: 13px 17px;
  border: 1px solid rgba(101, 73, 231, 0.16);
  border-radius: 14px;
  color: #665ca4;
  background: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: center;
  transition: opacity 180ms ease;
}

.about__visual.has-image span {
  opacity: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #5969ad;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label::before {
  width: 28px;
  height: 2px;
  background: var(--violet);
  content: "";
}

.about h2 {
  max-width: 770px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.45vw, 52px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.about h2 em {
  color: var(--violet);
  font-style: normal;
}

.about p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.23vw, 18px);
  letter-spacing: -0.018em;
  line-height: 1.55;
}

.about__intro > p:first-of-type {
  margin-top: 30px;
}

.about__intro > p + p,
.about__turn > p + p {
  margin-top: 17px;
}

.about__turn {
  padding: clamp(25px, 3vw, 36px);
  border: 1px solid rgba(139, 139, 215, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 50px rgba(97, 91, 166, 0.08);
  backdrop-filter: blur(9px);
}

.about .about__accent {
  margin-bottom: 16px;
  color: #2f3c72;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 760;
  letter-spacing: -0.032em;
  line-height: 1.28;
}

.about__result {
  margin-top: clamp(42px, 5vw, 70px);
}

.about__result-title {
  color: #364373 !important;
  font-weight: 760;
}

.result-list {
  display: grid;
  gap: 12px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.result-list li {
  position: relative;
  padding-left: 34px;
  color: #3f4c77;
  font-size: clamp(16px, 1.2vw, 18px);
  letter-spacing: -0.017em;
  line-height: 1.42;
}

.result-list li::before {
  position: absolute;
  top: 0.16em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #43c8ad, #4daf9e);
  box-shadow: 0 5px 13px rgba(52, 191, 166, 0.24);
  content: "✓";
  font-size: 13px;
  font-weight: 800;
}

.about__final {
  margin-top: 30px !important;
  padding-top: 29px;
  border-top: 1px solid rgba(80, 88, 149, 0.17);
  color: #29365f !important;
  font-size: clamp(19px, 1.58vw, 23px) !important;
  font-weight: 720;
  letter-spacing: -0.032em !important;
  line-height: 1.37 !important;
}

.outcome {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -7%, rgba(218, 216, 255, 0.78), transparent 31%),
    radial-gradient(circle at 4% 63%, rgba(199, 239, 255, 0.55), transparent 29%),
    radial-gradient(circle at 96% 35%, rgba(225, 213, 255, 0.56), transparent 27%),
    linear-gradient(135deg, #f9fbff 0%, #f5f6ff 46%, #eef2ff 100%);
}

.outcome__glow {
  position: absolute;
  z-index: -1;
  width: clamp(260px, 31vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.52;
  pointer-events: none;
}

.outcome__glow--left {
  top: 32%;
  left: -19%;
  background: #b9e9f6;
}

.outcome__glow--right {
  top: 4%;
  right: -18%;
  background: #cfc3ff;
}

.outcome__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(82px, 10vw, 145px);
  padding-bottom: clamp(88px, 11vw, 155px);
  text-align: center;
}

.section-label--outcome {
  color: #5969ad;
}

.section-label--outcome::before {
  background: var(--violet);
}

.outcome h2 {
  max-width: 970px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.15vw, 48px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.outcome h2 em {
  color: var(--violet);
  font-style: normal;
}

.outcome__intro,
.outcome__closing {
  max-width: 760px;
}

.outcome__intro {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.outcome p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.28vw, 18px);
  letter-spacing: -0.019em;
  line-height: 1.55;
}

.outcome__abilities {
  width: min(100%, 825px);
  margin-top: clamp(44px, 6vw, 76px);
  padding: clamp(29px, 4vw, 44px) clamp(21px, 4vw, 55px);
  border: 1px solid rgba(139, 139, 215, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 50px rgba(97, 91, 166, 0.08);
  backdrop-filter: blur(10px);
}

.outcome__abilities-title {
  color: #2f3c72 !important;
  font-size: clamp(20px, 1.7vw, 24px) !important;
  font-weight: 760;
  letter-spacing: -0.032em !important;
  line-height: 1.3 !important;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.outcome-list li {
  position: relative;
  padding-left: 33px;
  color: #3f4c77;
  font-size: clamp(15px, 1.18vw, 17px);
  letter-spacing: -0.016em;
  line-height: 1.43;
}

.outcome-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #43c8ad, #4daf9e);
  box-shadow: 0 5px 13px rgba(52, 191, 166, 0.24);
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.outcome__closing {
  display: grid;
  gap: 17px;
  margin-top: clamp(46px, 6vw, 77px);
}

.outcome__closing p:first-child {
  color: #2f3c72;
  font-size: clamp(20px, 1.72vw, 25px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.31;
}

.outcome__closing p:nth-child(2) {
  color: #596486;
}

.outcome__closing p:last-child {
  color: #2b3763;
  font-size: clamp(18px, 1.48vw, 21px);
  font-weight: 650;
  letter-spacing: -0.029em;
  line-height: 1.43;
}

.outcome__formula {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: clamp(50px, 7vw, 90px) !important;
  color: #29365f !important;
  font-size: clamp(25px, 2.65vw, 39px) !important;
  font-weight: 800;
  letter-spacing: -0.053em !important;
  line-height: 1.12 !important;
}

.outcome__formula span {
  color: var(--violet);
}

.outcome__note {
  max-width: 650px;
  margin-top: 19px !important;
  color: #596486 !important;
  font-size: clamp(15px, 1.15vw, 17px) !important;
  line-height: 1.48 !important;
}

.growth {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f7f8ff;
  background-image:
    url("./second-screen-background.jpg"),
    radial-gradient(circle at 15% 18%, rgba(218, 239, 255, 0.76), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #f7f6ff 48%, #eef0ff 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.growth__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 251, 255, 0.76) 0%, rgba(249, 251, 255, 0.63) 50%, rgba(249, 251, 255, 0.48) 100%);
  pointer-events: none;
}

.growth__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(84px, 10vw, 145px);
  padding-bottom: clamp(90px, 11vw, 155px);
  text-align: center;
}

.section-label--growth {
  color: #5969ad;
}

.section-label--growth::before {
  background: var(--mint);
}

.growth h2 {
  max-width: 960px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 3.3vw, 50px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.growth h2 em {
  color: var(--violet);
  font-style: normal;
}

.growth p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.28vw, 18px);
  letter-spacing: -0.019em;
  line-height: 1.55;
}

.growth__intro,
.growth__difference,
.growth__approach {
  display: grid;
  gap: 17px;
  max-width: 790px;
}

.growth__intro {
  margin-top: 34px;
}

.growth__intro p:first-child,
.growth__difference p:first-child,
.growth__approach p:first-child {
  color: #2f3c72;
  font-size: clamp(20px, 1.72vw, 25px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.growth blockquote {
  margin: 0;
  padding: clamp(20px, 2.6vw, 28px) clamp(21px, 3vw, 34px);
  border: 1px solid rgba(103, 73, 231, 0.2);
  border-radius: 20px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.61);
  box-shadow: 0 15px 38px rgba(97, 91, 166, 0.07);
  font-size: clamp(19px, 1.62vw, 24px);
  font-weight: 760;
  letter-spacing: -0.034em;
  line-height: 1.34;
}

.growth__stages {
  display: grid;
  gap: 15px;
  width: min(100%, 860px);
  margin-top: clamp(46px, 6vw, 78px);
  padding: clamp(28px, 4vw, 44px) clamp(21px, 4vw, 55px);
  border: 1px solid rgba(139, 139, 215, 0.19);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 50px rgba(97, 91, 166, 0.08);
  backdrop-filter: blur(10px);
}

.growth__stages p:first-child {
  color: #2f3c72;
  font-size: clamp(19px, 1.58vw, 23px);
  font-weight: 730;
  letter-spacing: -0.031em;
  line-height: 1.38;
}

.growth__stages blockquote {
  margin-top: 7px;
}

.growth__difference {
  margin-top: clamp(53px, 6.5vw, 86px);
}

.growth__difference strong {
  color: var(--violet);
  font-size: clamp(22px, 1.95vw, 29px);
  letter-spacing: -0.042em;
  line-height: 1.24;
}

.growth__difference p:last-child {
  padding-top: 12px;
}

.growth__approach {
  margin-top: clamp(57px, 7vw, 92px);
  padding-top: clamp(35px, 4.5vw, 57px);
  border-top: 1px solid rgba(80, 88, 149, 0.18);
}

.growth__final {
  color: #29365f !important;
  font-size: clamp(20px, 1.72vw, 25px) !important;
  font-weight: 760;
  letter-spacing: -0.035em !important;
  line-height: 1.32 !important;
}

.build {
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: #f8f9ff;
  background:
    linear-gradient(rgba(125, 129, 217, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 129, 217, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 76% 22%, rgba(104, 74, 231, 0.45), transparent 28%),
    linear-gradient(130deg, #162147 0%, #1c2555 49%, #27205c 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.build__orb {
  position: absolute;
  z-index: -1;
  width: clamp(260px, 35vw, 630px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.62;
  pointer-events: none;
}

.build__orb--violet {
  top: -12%;
  left: -16%;
  background: #6248e3;
}

.build__orb--mint {
  right: -18%;
  bottom: 7%;
  background: #2fbba2;
}

.build__content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: start;
  gap: clamp(38px, 5vw, 76px);
  padding-top: clamp(82px, 10vw, 145px);
  padding-bottom: clamp(88px, 11vw, 155px);
}

.build__visual {
  position: sticky;
  top: var(--site-header-offset);
  display: grid;
  min-height: clamp(500px, 48vw, 700px);
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(186, 181, 255, 0.58);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 17%, rgba(110, 84, 240, 0.38), transparent 28%),
    radial-gradient(circle at 81% 81%, rgba(43, 211, 178, 0.25), transparent 30%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 70px rgba(4, 9, 35, 0.3);
}

.build__visual::before,
.build__visual::after {
  position: absolute;
  border: 1px solid rgba(202, 199, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.build__visual::before {
  width: 78%;
  aspect-ratio: 1;
}

.build__visual::after {
  width: 48%;
  aspect-ratio: 1;
}

.build__visual img {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.build__visual img.is-loaded {
  opacity: 1;
}

.build__visual span {
  z-index: 1;
  max-width: 205px;
  padding: 13px 17px;
  border: 1px solid rgba(206, 202, 255, 0.25);
  border-radius: 14px;
  color: #d9d7ff;
  background: rgba(18, 28, 66, 0.58);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.32;
  text-align: center;
  transition: opacity 180ms ease;
}

.build__visual.has-image span {
  opacity: 0;
}

.build__copy {
  padding: clamp(25px, 4vw, 48px);
  border: 1px solid rgba(205, 201, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 26px 70px rgba(4, 9, 35, 0.17);
  backdrop-filter: blur(14px);
}

.build__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #bcb8ff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.build__label::before {
  width: 28px;
  height: 2px;
  background: var(--mint);
  content: "";
}

.build h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.35vw, 36px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.06;
}

.build h2 em {
  color: #c8c0ff;
  font-style: normal;
}

.build__intro {
  display: grid;
  gap: 17px;
  margin-top: 30px;
}

.build__copy p,
.build__dialogue-item p,
.build__possibilities li {
  margin: 0;
  color: #d4d8f2;
  font-size: clamp(16px, 1.2vw, 18px);
  letter-spacing: -0.018em;
  line-height: 1.55;
}

.build__question-title {
  margin-top: clamp(40px, 5vw, 64px) !important;
  color: #fff !important;
  font-size: clamp(19px, 1.55vw, 22px) !important;
  font-weight: 750;
  letter-spacing: -0.031em !important;
  line-height: 1.32 !important;
}

.build__dialogue {
  display: grid;
  gap: 11px;
  margin-top: 19px;
}

.build__dialogue-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(205, 201, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.build__dialogue-item strong {
  flex: 0 0 auto;
  color: #66d6be;
  font-size: 15px;
  line-height: 1.55;
  white-space: nowrap;
}

.build__shift {
  display: grid;
  gap: 17px;
  margin-top: clamp(42px, 5vw, 67px);
  padding-top: clamp(32px, 4vw, 47px);
  border-top: 1px solid rgba(205, 201, 255, 0.18);
}

.build__shift blockquote {
  margin: 0;
  padding: 20px 23px;
  border-left: 3px solid var(--mint);
  border-radius: 0 15px 15px 0;
  color: #fff;
  background: rgba(52, 191, 166, 0.12);
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.35;
}

.build__possibilities {
  margin-top: clamp(42px, 5vw, 66px);
}

.build__possibilities > p {
  color: #fff !important;
  font-size: clamp(19px, 1.55vw, 22px) !important;
  font-weight: 750;
  letter-spacing: -0.031em !important;
  line-height: 1.35 !important;
}

.build__possibilities ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.build__possibilities li {
  position: relative;
  padding-left: 27px;
}

.build__possibilities li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(52, 191, 166, 0.11);
  content: "";
}

.build__final {
  display: grid;
  gap: 14px;
  margin-top: clamp(45px, 6vw, 75px) !important;
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid rgba(154, 140, 255, 0.27);
  border-radius: 20px;
  color: #e4e3ff !important;
  background: linear-gradient(135deg, rgba(105, 75, 231, 0.31), rgba(52, 191, 166, 0.14));
  font-size: clamp(19px, 1.58vw, 23px) !important;
  font-weight: 650;
  letter-spacing: -0.032em !important;
  line-height: 1.38 !important;
}

.build__final strong {
  color: #fff;
  font-size: 1.14em;
}

.roles-sandbox {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f7f8ff;
  background-image:
    url("./second-screen-background.jpg"),
    radial-gradient(circle at 82% 17%, rgba(225, 213, 255, 0.68), transparent 29%),
    radial-gradient(circle at 11% 78%, rgba(199, 239, 255, 0.57), transparent 27%),
    linear-gradient(135deg, #f8fbff 0%, #f7f6ff 48%, #eef0ff 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.roles-sandbox::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 251, 255, 0.75) 0%, rgba(249, 251, 255, 0.6) 50%, rgba(249, 251, 255, 0.46) 100%);
  pointer-events: none;
  content: "";
}

.roles,
.sandbox {
  position: relative;
}

.roles__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(84px, 10vw, 145px);
  padding-bottom: clamp(42px, 5vw, 68px);
  text-align: center;
}

.section-label--roles {
  color: #5969ad;
}

.section-label--roles::before {
  background: var(--mint);
}

.roles h2 {
  max-width: 930px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 3.3vw, 50px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.roles h2 em {
  color: var(--violet);
  font-style: normal;
}

.roles p,
.role-card li {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.28vw, 18px);
  letter-spacing: -0.019em;
  line-height: 1.55;
}

.roles__intro,
.roles__conclusion {
  display: grid;
  gap: 17px;
  max-width: 800px;
}

.roles__intro {
  margin-top: 34px;
}

.roles__intro p:nth-child(2),
.roles__conclusion p:first-child {
  color: #2f3c72;
  font-size: clamp(20px, 1.72vw, 25px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.roles__lead {
  max-width: 750px;
  margin-top: clamp(49px, 6vw, 78px) !important;
  color: #2f3c72 !important;
  font-size: clamp(20px, 1.72vw, 25px) !important;
  font-weight: 760;
  letter-spacing: -0.035em !important;
  line-height: 1.32 !important;
}

.roles__grid {
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 31px;
  text-align: left;
}

.role-card {
  padding: clamp(25px, 3.4vw, 42px);
  border: 1px solid rgba(139, 139, 215, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 50px rgba(97, 91, 166, 0.08);
  backdrop-filter: blur(10px);
}

.role-card--ai {
  border-color: rgba(52, 191, 166, 0.28);
  background: linear-gradient(135deg, rgba(242, 253, 251, 0.77), rgba(237, 236, 255, 0.74));
}

.role-card__label {
  color: var(--violet) !important;
  font-size: clamp(23px, 2vw, 30px) !important;
  font-weight: 800;
  letter-spacing: -0.044em !important;
  line-height: 1.2 !important;
}

.role-card--ai .role-card__label {
  color: #249b86 !important;
}

.role-card ul {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.role-card li {
  position: relative;
  padding-left: 29px;
}

.role-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(101, 73, 231, 0.1);
  content: "";
}

.role-card--ai li::before {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(52, 191, 166, 0.1);
}

.role-card blockquote {
  margin: 23px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--violet);
  border-radius: 0 16px 16px 0;
  color: var(--violet);
  background: rgba(101, 73, 231, 0.08);
  font-size: clamp(18px, 1.48vw, 21px);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.38;
}

.role-card--ai > p:last-child {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(52, 191, 166, 0.22);
  color: #3f4c77;
}

.roles__conclusion {
  margin-top: clamp(58px, 7vw, 92px);
  padding-top: clamp(35px, 4.5vw, 57px);
  border-top: 1px solid rgba(80, 88, 149, 0.18);
}

.roles__final {
  color: var(--violet) !important;
  font-size: clamp(23px, 2vw, 30px) !important;
  font-weight: 800;
  letter-spacing: -0.044em !important;
  line-height: 1.2 !important;
}

.roles__purpose {
  color: #29365f !important;
  font-size: clamp(20px, 1.72vw, 25px) !important;
  font-weight: 650;
  letter-spacing: -0.035em !important;
  line-height: 1.4 !important;
}

.roles__purpose strong {
  color: var(--violet);
}

.sandbox__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(90px, 11vw, 155px);
  text-align: center;
}

.section-label--sandbox {
  color: #5969ad;
}

.section-label--sandbox::before {
  background: var(--mint);
}

.sandbox h2 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.45vw, 52px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.sandbox h2 em {
  color: var(--violet);
  font-style: normal;
}

.sandbox__intro {
  display: grid;
  gap: 17px;
  max-width: 770px;
  margin-top: 34px;
}

.sandbox p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.28vw, 18px);
  letter-spacing: -0.019em;
  line-height: 1.55;
}

.sandbox__lead {
  color: #2f3c72 !important;
  font-size: clamp(20px, 1.7vw, 24px) !important;
  font-weight: 760;
  letter-spacing: -0.032em !important;
  line-height: 1.3 !important;
}

.sandbox__card {
  width: min(100%, 820px);
  margin-top: clamp(43px, 5.6vw, 73px);
  padding: clamp(27px, 3.7vw, 43px) clamp(21px, 4vw, 55px);
  border: 1px solid rgba(139, 139, 215, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.61);
  box-shadow: 0 18px 50px rgba(97, 91, 166, 0.09);
  backdrop-filter: blur(10px);
}

.sandbox__card > p:first-child {
  color: #2f3c72;
  font-size: clamp(19px, 1.58vw, 23px);
  font-weight: 700;
  letter-spacing: -0.031em;
  line-height: 1.38;
}

.sandbox__features {
  display: grid;
  gap: 12px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.sandbox__features li {
  position: relative;
  padding-left: 34px;
  color: #3f4c77;
  font-size: clamp(16px, 1.2vw, 18px);
  letter-spacing: -0.017em;
  line-height: 1.42;
}

.sandbox__features li::before {
  position: absolute;
  top: 0.16em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #43c8ad, #4daf9e);
  box-shadow: 0 5px 13px rgba(52, 191, 166, 0.24);
  content: "✓";
  font-size: 13px;
  font-weight: 800;
}

.sandbox__ai {
  width: min(100%, 880px);
  margin-top: clamp(51px, 6vw, 80px);
}

.sandbox__ai > p:first-child {
  color: #2f3c72;
  font-size: clamp(20px, 1.72vw, 25px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.sandbox__ai-label {
  margin-top: 26px !important;
  color: #5969ad !important;
  font-size: 14px !important;
  font-weight: 750;
  letter-spacing: 0.07em !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.sandbox__questions {
  display: grid;
  gap: 12px;
  margin-top: 17px;
}

.sandbox__questions p {
  padding: 16px 20px;
  border: 1px solid rgba(139, 139, 215, 0.17);
  border-radius: 16px;
  color: #3a4777;
  background: rgba(255, 255, 255, 0.57);
  box-shadow: 0 10px 28px rgba(97, 91, 166, 0.06);
  font-size: clamp(16px, 1.23vw, 18px);
  font-weight: 630;
  line-height: 1.42;
}

.sandbox__card--payment {
  margin-top: clamp(50px, 6vw, 79px);
  border-color: rgba(103, 73, 231, 0.26);
  background: linear-gradient(135deg, rgba(239, 236, 255, 0.8), rgba(229, 250, 246, 0.72));
}

.sandbox__card--payment .sandbox__payment-lead {
  color: #364373;
  font-size: clamp(18px, 1.48vw, 21px);
  font-weight: 760;
}

.sandbox__card--payment p + p {
  margin-top: 15px;
  color: var(--violet);
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 800;
  letter-spacing: -0.033em;
  line-height: 1.34;
}

.sandbox__point {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-top: clamp(52px, 6.5vw, 86px);
}

.sandbox__point p:first-child {
  color: #596486;
}

.sandbox__point p:nth-child(2) {
  color: #2f3c72;
  font-size: clamp(20px, 1.72vw, 25px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.sandbox__point strong {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--violet);
  box-shadow: 0 11px 24px rgba(101, 73, 231, 0.2);
  font-size: clamp(19px, 1.6vw, 23px);
  letter-spacing: -0.033em;
  line-height: 1.3;
}

.sandbox__transfer {
  max-width: 830px;
  margin-top: 31px;
}

.sandbox__transfer p {
  color: #3f4c77;
}

.sandbox__final {
  display: grid;
  gap: 15px;
  max-width: 850px;
  margin-top: clamp(54px, 6.7vw, 90px);
  padding-top: clamp(35px, 4.5vw, 57px);
  border-top: 1px solid rgba(80, 88, 149, 0.18);
}

.sandbox__final p:first-child {
  color: #596486;
}

.sandbox__final p:last-child {
  color: #29365f;
  font-size: clamp(21px, 1.82vw, 27px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.28;
}

.roadmap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 18%, rgba(194, 217, 255, 0.58), transparent 22%),
    radial-gradient(circle at 8% 75%, rgba(224, 212, 255, 0.5), transparent 25%),
    linear-gradient(135deg, #f9fcff 0%, #f0f5ff 52%, #f8f7ff 100%);
}

.roadmap__glow {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(125, 154, 228, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.roadmap__glow--one {
  top: -255px;
  right: -160px;
  width: 660px;
  height: 660px;
}

.roadmap__glow--two {
  bottom: -390px;
  left: -230px;
  width: 760px;
  height: 760px;
}

.roadmap__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(84px, 10vw, 138px);
  padding-bottom: clamp(90px, 11vw, 150px);
  text-align: center;
}

.section-label--roadmap {
  color: #5969ad;
}

.section-label--roadmap::before {
  background: var(--violet);
}

.roadmap h2 {
  max-width: 1080px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.55vw, 53px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.01;
}

.roadmap h2 em {
  color: var(--violet);
  font-style: normal;
}

.roadmap__intro {
  display: grid;
  gap: 8px;
  max-width: 860px;
  margin-top: 31px;
}

.roadmap__intro p,
.roadmap-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  letter-spacing: -0.019em;
  line-height: 1.5;
}

.roadmap__intro p:first-child {
  color: #2e3b6f;
  font-size: clamp(20px, 1.72vw, 25px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.roadmap__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: clamp(50px, 6vw, 76px);
}

.roadmap-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 325px;
  padding: clamp(24px, 2.6vw, 35px);
  border: 1px solid rgba(132, 153, 214, 0.18);
  border-radius: 24px;
  text-align: left;
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0 18px 42px rgba(75, 100, 169, 0.08);
  backdrop-filter: blur(10px);
}

.roadmap-card::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -19px;
  width: 19px;
  border-top: 1px solid rgba(82, 111, 229, 0.5);
  content: "";
}

.roadmap-card::before {
  position: absolute;
  z-index: 1;
  top: calc(50% - 4px);
  right: -23px;
  width: 7px;
  height: 7px;
  border: 2px solid #7295ff;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.roadmap-card:nth-child(3n)::after,
.roadmap-card:nth-child(3n)::before,
.roadmap-card:nth-child(9)::after,
.roadmap-card:nth-child(9)::before {
  display: none;
}

.roadmap-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.roadmap-card__number,
.roadmap-card__icon {
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border-radius: 15px;
}

.roadmap-card__number {
  color: #176bd6;
  background: linear-gradient(135deg, #dff4ff, #dbe9ff);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.roadmap-card:nth-child(even) .roadmap-card__number {
  color: #6243d3;
  background: linear-gradient(135deg, #eee8ff, #e3dcff);
}

.roadmap-card__icon {
  color: #1d73d8;
  background: linear-gradient(135deg, rgba(222, 244, 255, 0.95), rgba(218, 233, 255, 0.95));
}

.roadmap-card:nth-child(even) .roadmap-card__icon {
  color: #6446d5;
  background: linear-gradient(135deg, rgba(239, 232, 255, 0.96), rgba(229, 220, 255, 0.96));
}

.roadmap-card__icon svg {
  width: 30px;
  height: 30px;
}

.roadmap-card h3 {
  margin: 23px 0 15px;
  color: #17234d;
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.roadmap-card p + p {
  margin-top: 10px;
}

.roadmap__result {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  align-items: end;
  gap: clamp(18px, 2.4vw, 36px);
  width: 100%;
  margin-top: clamp(46px, 5.8vw, 72px);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(132, 153, 214, 0.2);
  border-radius: 28px;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(75, 100, 169, 0.1);
}

.roadmap__result-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #4353a5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roadmap__result-label::before {
  color: #f5b533;
  content: "★";
  font-size: 19px;
}

.roadmap__result-copy > p:nth-child(2) {
  margin: 0;
  color: #1e2b55;
  font-size: clamp(19px, 1.72vw, 26px);
  font-weight: 800;
  letter-spacing: -0.046em;
  line-height: 1.24;
}

.roadmap__result-copy strong {
  color: var(--violet);
}

.roadmap__result ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap__result li {
  position: relative;
  padding-left: 27px;
  color: #4d587c;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.33;
}

.roadmap__result li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #6e7fff, #6347dc);
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.roadmap__result-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.roadmap__result-image img {
  display: block;
  width: min(100%, 460px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.roadmap__result-image.has-image img,
.roadmap__result-image img.is-loaded {
  opacity: 1;
}

.fit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f9faff;
  background:
    radial-gradient(circle at 82% 14%, rgba(102, 73, 231, 0.55), transparent 25%),
    radial-gradient(circle at 8% 78%, rgba(40, 194, 170, 0.25), transparent 27%),
    linear-gradient(145deg, #111b3d 0%, #192451 47%, #152144 100%);
}

.fit__shape {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(200, 197, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.fit__shape--one {
  top: 7%;
  left: -13%;
  width: clamp(370px, 43vw, 740px);
  aspect-ratio: 1;
}

.fit__shape--two {
  top: 32%;
  right: -19%;
  width: clamp(310px, 37vw, 620px);
  aspect-ratio: 1;
}

.fit__shape--three {
  bottom: -11%;
  left: 30%;
  width: clamp(240px, 28vw, 460px);
  aspect-ratio: 1;
}

.fit__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(84px, 10vw, 145px);
  padding-bottom: clamp(90px, 11vw, 155px);
  text-align: center;
}

.fit__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #bcb8ff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fit__label::before {
  width: 28px;
  height: 2px;
  background: var(--mint);
  content: "";
}

.fit h2 {
  max-width: 990px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 51px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.fit h2 em {
  color: #c9c2ff;
  font-style: normal;
}

.fit__intro {
  display: grid;
  gap: 17px;
  max-width: 800px;
  margin-top: 34px;
}

.fit__intro p,
.fit__cards-title,
.fit__shift > p {
  margin: 0;
  color: #d3d9f2;
  font-size: clamp(16px, 1.28vw, 18px);
  letter-spacing: -0.019em;
  line-height: 1.55;
}

.fit__intro p:first-child {
  color: #fff;
  font-size: clamp(19px, 1.58vw, 23px);
  font-weight: 700;
  letter-spacing: -0.031em;
  line-height: 1.38;
}

.fit__cards-title {
  max-width: 800px;
  margin-top: clamp(48px, 6vw, 78px);
  color: #fff;
  font-size: clamp(20px, 1.72vw, 25px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.fit__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 31px;
  text-align: left;
}

.fit-card {
  position: relative;
  min-height: 260px;
  padding: clamp(24px, 3vw, 35px);
  overflow: hidden;
  border: 1px solid rgba(204, 201, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 45px rgba(3, 8, 33, 0.16);
  backdrop-filter: blur(12px);
}

.fit-card::after {
  position: absolute;
  z-index: 0;
  top: -55px;
  right: -44px;
  width: 118px;
  aspect-ratio: 1;
  border: 1px solid rgba(203, 199, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.fit-card__number {
  position: absolute;
  z-index: 0;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(8px, 1.2vw, 18px);
  color: rgba(193, 190, 255, 0.12);
  font-size: clamp(118px, 12vw, 185px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
}

.fit-card h3,
.fit-card p {
  position: relative;
  z-index: 1;
}

.fit-card h3 {
  max-width: 430px;
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 1.78vw, 26px);
  font-weight: 760;
  letter-spacing: -0.039em;
  line-height: 1.15;
}

.fit-card p {
  max-width: 480px;
  margin: 17px 0 0;
  color: #cdd4ed;
  font-size: clamp(15px, 1.15vw, 17px);
  letter-spacing: -0.017em;
  line-height: 1.5;
}

.fit__shift {
  display: grid;
  gap: 17px;
  max-width: 830px;
  margin-top: clamp(58px, 7vw, 94px);
}

.fit__shift > p:first-child {
  color: #fff;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 760;
  letter-spacing: -0.032em;
  line-height: 1.3;
}

.fit__thoughts {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.fit__thoughts p {
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(204, 201, 255, 0.17);
  border-radius: 16px;
  color: #e7e8ff;
  background: rgba(255, 255, 255, 0.07);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.fit__thoughts p:last-child {
  border-color: rgba(103, 225, 198, 0.37);
  color: #fff;
  background: linear-gradient(135deg, rgba(83, 73, 210, 0.49), rgba(52, 191, 166, 0.24));
}

.fit__thoughts span {
  color: #9ea5ce;
  font-size: 0.78em;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fit__closing {
  margin-top: 10px !important;
  color: #fff !important;
  font-size: clamp(21px, 1.82vw, 27px) !important;
  font-weight: 800;
  letter-spacing: -0.04em !important;
  line-height: 1.28 !important;
}

.orchestration {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f7f8ff;
  background-image:
    url("./second-screen-background.jpg"),
    radial-gradient(circle at 78% 18%, rgba(210, 207, 255, 0.68), transparent 31%),
    linear-gradient(135deg, #f9fbff 0%, #f7f6ff 49%, #eef3ff 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.orchestration__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 251, 255, 0.78) 0%, rgba(249, 251, 255, 0.67) 50%, rgba(249, 251, 255, 0.56) 100%);
  pointer-events: none;
}

.orchestration__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(88px, 10vw, 150px);
  padding-bottom: clamp(94px, 11vw, 160px);
  text-align: center;
}

.orchestration h2 {
  max-width: 910px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 51px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.orchestration h2 em {
  color: var(--violet);
  font-style: normal;
}

.orchestration__intro,
.orchestration__warning,
.orchestration__closing {
  display: grid;
  gap: 17px;
  max-width: 790px;
}

.orchestration__intro {
  margin-top: 35px;
}

.orchestration p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.28vw, 18px);
  letter-spacing: -0.019em;
  line-height: 1.55;
}

.orchestration__intro p:last-child,
.orchestration__trap,
.orchestration__main-point p:first-child,
.orchestration__closing p:first-child {
  color: #2f3c72;
  font-size: clamp(19px, 1.58vw, 23px);
  font-weight: 700;
  letter-spacing: -0.031em;
  line-height: 1.38;
}

.orchestration__trap {
  margin-top: clamp(40px, 5vw, 64px) !important;
  color: #6750c7 !important;
}

.orchestration__warning {
  margin-top: 19px;
  padding: clamp(25px, 3.4vw, 39px) clamp(21px, 4vw, 54px);
  border: 1px solid rgba(139, 139, 215, 0.19);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.57);
  box-shadow: 0 18px 50px rgba(97, 91, 166, 0.08);
  backdrop-filter: blur(10px);
}

.orchestration__warning p:first-child {
  color: #2f3c72;
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.4;
}

.orchestration__main-point {
  display: grid;
  gap: 15px;
  max-width: 830px;
  margin-top: clamp(50px, 6vw, 78px);
}

.orchestration__main-point p:last-child {
  color: var(--violet);
  font-size: clamp(24px, 2.2vw, 33px);
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.orchestration__skills {
  max-width: 850px;
  margin-top: 28px !important;
}

.orchestration__closing {
  margin-top: clamp(54px, 6.6vw, 84px);
}

.orchestration__closing p:last-child {
  color: #2f3c72;
  font-size: clamp(18px, 1.48vw, 22px);
  font-weight: 650;
  letter-spacing: -0.029em;
  line-height: 1.42;
}

.orchestration__final {
  max-width: 875px;
  margin-top: clamp(57px, 7vw, 92px) !important;
  padding-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid rgba(80, 88, 149, 0.18);
  color: #4d587c !important;
  font-size: clamp(19px, 1.62vw, 23px) !important;
  font-weight: 650;
  letter-spacing: -0.031em !important;
  line-height: 1.45 !important;
}

.orchestration__final strong {
  color: var(--violet);
  font-size: 1.22em;
}

.orchestration__format {
  width: min(100%, 960px);
  margin-top: clamp(78px, 9vw, 120px);
  padding-top: clamp(58px, 7vw, 86px);
  border-top: 1px solid rgba(80, 88, 149, 0.18);
}

.orchestration__format-lead {
  max-width: 760px;
  margin: 0 auto !important;
  color: #2f3c72 !important;
  font-size: clamp(20px, 1.72vw, 25px) !important;
  font-weight: 750;
  letter-spacing: -0.034em !important;
  line-height: 1.32 !important;
}

.orchestration__format h3 {
  max-width: 790px;
  margin: 25px auto 0;
  color: var(--ink);
  font-size: clamp(30px, 3.15vw, 46px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.06;
}

.orchestration__format h3 em {
  color: var(--violet);
  font-style: normal;
}

.orchestration__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(36px, 4.5vw, 56px);
  text-align: left;
}

.orchestration-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: clamp(22px, 2.5vw, 31px);
  overflow: hidden;
  border: 1px solid rgba(139, 139, 215, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.57);
  box-shadow: 0 18px 45px rgba(97, 91, 166, 0.07);
  backdrop-filter: blur(10px);
}

.orchestration-step span {
  position: absolute;
  z-index: 0;
  right: clamp(12px, 1.7vw, 22px);
  bottom: clamp(8px, 1.1vw, 16px);
  color: rgba(101, 73, 231, 0.1);
  font-size: clamp(104px, 10vw, 150px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
}

.orchestration-step p {
  position: relative;
  z-index: 1;
  color: #3f4c77;
  font-size: clamp(17px, 1.3vw, 19px);
  font-weight: 650;
  letter-spacing: -0.024em;
  line-height: 1.42;
}

.orchestration__practice {
  display: grid;
  gap: 15px;
  max-width: 840px;
  margin-top: clamp(55px, 6.5vw, 84px);
}

.orchestration__practice p {
  padding: clamp(20px, 2.4vw, 29px) clamp(21px, 3vw, 35px);
  border: 1px solid rgba(139, 139, 215, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.43);
}

.orchestration__practice p:first-child {
  color: #2f3c72;
  font-weight: 650;
}

.orchestration__between {
  display: grid;
  gap: 17px;
  max-width: 800px;
  margin-top: clamp(62px, 7vw, 90px);
}

.orchestration__between > p:first-child,
.orchestration__between > p:nth-child(2) {
  color: #2f3c72;
  font-size: clamp(18px, 1.46vw, 21px);
  font-weight: 650;
  letter-spacing: -0.028em;
  line-height: 1.42;
}

.orchestration__between blockquote {
  margin: 4px 0;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid rgba(103, 225, 198, 0.38);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(100, 73, 225, 0.9), rgba(49, 173, 156, 0.83));
  box-shadow: 0 18px 38px rgba(76, 83, 178, 0.2);
  font-size: clamp(22px, 2.04vw, 30px);
  font-weight: 750;
  letter-spacing: -0.042em;
  line-height: 1.24;
}

.orchestration__between > p:last-child {
  color: var(--violet);
  font-size: clamp(19px, 1.58vw, 23px);
  letter-spacing: -0.032em;
  line-height: 1.35;
}

.orchestration__result {
  display: grid;
  gap: 17px;
  max-width: 835px;
  margin-top: clamp(67px, 7.5vw, 96px);
}

.orchestration__result p:first-child {
  color: #2f3c72;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.34;
}

.orchestration__result p:last-child {
  color: var(--ink);
  font-size: clamp(20px, 1.72vw, 25px);
  font-weight: 650;
  letter-spacing: -0.034em;
  line-height: 1.4;
}

.orchestration__pace {
  max-width: 880px;
  margin-top: clamp(52px, 6vw, 79px) !important;
  padding: clamp(28px, 3.5vw, 41px);
  border-radius: 24px;
  color: #e7e7ff !important;
  background: linear-gradient(135deg, #5140bc, #6650dc 49%, #369e91);
  box-shadow: 0 22px 48px rgba(74, 59, 176, 0.24);
  font-size: clamp(20px, 1.7vw, 24px) !important;
  font-weight: 650;
  letter-spacing: -0.032em !important;
  line-height: 1.44 !important;
}

.orchestration__pace strong {
  color: #fff;
  font-size: 1.18em;
}

.debugging {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f9faff;
  background:
    radial-gradient(circle at 82% 16%, rgba(128, 73, 231, 0.42), transparent 27%),
    radial-gradient(circle at 10% 85%, rgba(37, 184, 164, 0.2), transparent 29%),
    linear-gradient(145deg, #111937 0%, #20204b 52%, #131d3e 100%);
}

.debugging__shape {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(203, 199, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.debugging__shape--one {
  top: -19%;
  right: -10%;
  width: clamp(440px, 49vw, 790px);
  aspect-ratio: 1;
}

.debugging__shape--two {
  bottom: -22%;
  left: -11%;
  width: clamp(350px, 42vw, 650px);
  aspect-ratio: 1;
}

.debugging__content,
.recovery__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.debugging__content {
  padding-top: clamp(88px, 10vw, 150px);
  padding-bottom: clamp(92px, 11vw, 158px);
}

.debugging__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #c5c2ff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.debugging__label::before {
  width: 28px;
  height: 2px;
  background: var(--mint);
  content: "";
}

.debugging h2,
.recovery h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 51px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.debugging h2 {
  max-width: 1060px;
  color: #fff;
}

.debugging h2 em {
  color: #c9c2ff;
  font-style: normal;
}

.debugging__scene {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  width: min(100%, 1010px);
  margin-top: clamp(48px, 6vw, 78px);
  text-align: left;
}

.debugging__screen {
  position: relative;
  min-height: 310px;
  padding: 21px;
  overflow: hidden;
  border: 1px solid rgba(255, 160, 177, 0.38);
  border-radius: 22px;
  background: linear-gradient(145deg, #421c39, #a52f53);
  box-shadow: 0 23px 50px rgba(3, 7, 29, 0.35);
  transform: rotate(-3deg);
}

.debugging__screen::after {
  position: absolute;
  right: -19%;
  bottom: -35%;
  width: 250px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 218, 226, 0.22);
  border-radius: 50%;
  content: "";
}

.debugging__screen-bar {
  display: flex;
  gap: 7px;
}

.debugging__screen-bar span {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 234, 239, 0.54);
}

.debugging__screen p {
  margin: 48px 0 18px;
  color: #fff0f2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
}

.debugging__screen > div:not(.debugging__screen-bar) {
  width: 76%;
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 230, 235, 0.25);
}

.debugging__screen > div:nth-of-type(3) {
  width: 48%;
}

.debugging__screen strong {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: rgba(255, 239, 243, 0.65);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.13em;
}

.debugging__scene-copy {
  display: grid;
  gap: 15px;
}

.debugging__scene-copy p,
.debugging__turn p {
  margin: 0;
  color: #d4daf2;
  font-size: clamp(17px, 1.32vw, 19px);
  letter-spacing: -0.021em;
  line-height: 1.5;
}

.debugging__scene-copy p:last-child {
  color: #fff;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.33;
}

.debugging__dropout {
  max-width: 790px;
  margin: clamp(56px, 6.8vw, 88px) 0 0;
  color: #fff;
  font-size: clamp(23px, 2.1vw, 31px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.debugging__turn {
  display: grid;
  gap: 17px;
  max-width: 830px;
  margin-top: clamp(47px, 5.8vw, 75px);
  padding: clamp(27px, 3.5vw, 41px);
  border: 1px solid rgba(204, 201, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 45px rgba(3, 8, 33, 0.16);
  backdrop-filter: blur(12px);
}

.debugging__turn p:nth-child(2) {
  color: #fff;
  font-size: clamp(20px, 1.72vw, 25px);
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.recovery {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f7f8ff;
  background-image:
    url("./second-screen-background.jpg"),
    radial-gradient(circle at 17% 18%, rgba(214, 238, 255, 0.78), transparent 31%),
    linear-gradient(135deg, #f8fbff 0%, #f7f6ff 50%, #eef1ff 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.recovery__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 251, 255, 0.74), rgba(249, 251, 255, 0.57));
  pointer-events: none;
}

.recovery__content {
  padding-top: clamp(88px, 10vw, 150px);
  padding-bottom: clamp(94px, 11vw, 160px);
}

.recovery__label {
  color: #5969ad;
}

.recovery h2 {
  max-width: 960px;
  color: var(--ink);
}

.recovery h2 em {
  color: var(--violet);
  font-style: normal;
}

.recovery__skills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 960px);
  margin: clamp(46px, 5.5vw, 70px) 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.recovery__skills li {
  position: relative;
  min-height: 132px;
  padding: clamp(23px, 2.6vw, 31px) clamp(22px, 3vw, 35px) clamp(23px, 2.6vw, 31px) clamp(53px, 5vw, 70px);
  border: 1px solid rgba(139, 139, 215, 0.19);
  border-radius: 20px;
  color: #3f4c77;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 15px 36px rgba(97, 91, 166, 0.07);
  font-size: clamp(16px, 1.24vw, 18px);
  font-weight: 620;
  letter-spacing: -0.019em;
  line-height: 1.43;
}

.recovery__skills li::before {
  position: absolute;
  top: clamp(23px, 2.6vw, 31px);
  left: clamp(21px, 2.4vw, 29px);
  width: 17px;
  height: 17px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  content: "";
}

.recovery__skills li::after {
  position: absolute;
  top: calc(clamp(23px, 2.6vw, 31px) + 5px);
  left: calc(clamp(21px, 2.4vw, 29px) + 5px);
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
  content: "";
  transform: rotate(-45deg);
}

.recovery__shift {
  display: grid;
  gap: 17px;
  max-width: 830px;
  margin-top: clamp(64px, 7.5vw, 97px);
}

.recovery__shift p {
  margin: 0;
  color: #2f3c72;
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 650;
  letter-spacing: -0.031em;
  line-height: 1.4;
}

.recovery__shift blockquote {
  margin: 4px 0 0;
  padding: clamp(27px, 3.5vw, 41px);
  border: 1px solid rgba(103, 225, 198, 0.37);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #5d47d4, #376fbd 52%, #32a899);
  box-shadow: 0 22px 48px rgba(74, 84, 177, 0.2);
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.047em;
  line-height: 1.18;
}

.recovery__final {
  display: grid;
  gap: 17px;
  max-width: 850px;
  margin-top: clamp(65px, 7.5vw, 97px);
  padding-top: clamp(37px, 4.5vw, 58px);
  border-top: 1px solid rgba(80, 88, 149, 0.18);
}

.recovery__final p {
  margin: 0;
  color: #4d587c;
  font-size: clamp(17px, 1.35vw, 19px);
  letter-spacing: -0.022em;
  line-height: 1.5;
}

.recovery__final p:last-child {
  color: #2f3c72;
  font-size: clamp(20px, 1.72vw, 25px);
  font-weight: 700;
  letter-spacing: -0.034em;
  line-height: 1.35;
}

.recovery__final strong {
  color: var(--violet);
}

.alumni {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f7f8ff;
  background-image:
    url("./second-screen-background.jpg"),
    radial-gradient(circle at 82% 19%, rgba(215, 208, 255, 0.7), transparent 30%),
    linear-gradient(135deg, #f9fbff 0%, #f7f6ff 49%, #edf2ff 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.alumni__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 251, 255, 0.78), rgba(249, 251, 255, 0.59));
  pointer-events: none;
}

.alumni__content,
.alumni-paths__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.alumni__content {
  padding-top: clamp(88px, 10vw, 150px);
  padding-bottom: clamp(93px, 11vw, 158px);
}

.alumni__label {
  color: #5969ad;
}

.alumni h2,
.alumni-paths h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 51px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.alumni h2 {
  max-width: 1000px;
  color: var(--ink);
}

.alumni h2 em,
.alumni-paths h2 em {
  color: var(--violet);
  font-style: normal;
}

.alumni__intro {
  display: grid;
  gap: 17px;
  max-width: 830px;
  margin-top: 35px;
}

.alumni__intro p,
.alumni__route p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.28vw, 18px);
  letter-spacing: -0.019em;
  line-height: 1.55;
}

.alumni__intro p:first-child {
  color: #2f3c72;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.34;
}

.alumni__intro blockquote {
  margin: 4px 0 0;
  padding: clamp(25px, 3vw, 35px);
  border: 1px solid rgba(103, 225, 198, 0.36);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #5d47d4, #397dbd 55%, #32a899);
  box-shadow: 0 20px 42px rgba(74, 84, 177, 0.19);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 750;
  letter-spacing: -0.042em;
  line-height: 1.24;
}

.alumni__route {
  display: grid;
  gap: 16px;
  max-width: 810px;
  margin-top: clamp(54px, 6.5vw, 84px);
  padding-top: clamp(38px, 4.5vw, 58px);
  border-top: 1px solid rgba(80, 88, 149, 0.18);
}

.alumni__route p:last-child {
  color: var(--violet);
  font-size: clamp(23px, 2.05vw, 30px);
  font-weight: 800;
  letter-spacing: -0.043em;
  line-height: 1.22;
}

.alumni-paths {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f9faff;
  background:
    radial-gradient(circle at 86% 16%, rgba(101, 73, 231, 0.54), transparent 27%),
    radial-gradient(circle at 9% 83%, rgba(43, 191, 166, 0.22), transparent 29%),
    linear-gradient(145deg, #111b3d 0%, #1b2757 49%, #142043 100%);
}

.alumni-paths__shape {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(203, 199, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.alumni-paths__shape--one {
  top: -15%;
  left: -12%;
  width: clamp(420px, 47vw, 760px);
  aspect-ratio: 1;
}

.alumni-paths__shape--two {
  right: -14%;
  bottom: -18%;
  width: clamp(350px, 41vw, 660px);
  aspect-ratio: 1;
}

.alumni-paths__content {
  padding-top: clamp(88px, 10vw, 150px);
  padding-bottom: clamp(94px, 11vw, 160px);
}

.alumni-paths h2 {
  max-width: 920px;
  color: #fff;
}

.alumni-paths h2 em {
  color: #c9c2ff;
}

.alumni-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  width: min(100%, 1180px);
  margin-top: clamp(49px, 6vw, 78px);
  text-align: left;
}

.alumni-path {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 505px;
  padding: clamp(25px, 2.7vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(204, 201, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 45px rgba(3, 8, 33, 0.16);
  backdrop-filter: blur(12px);
}

.alumni-path__number {
  position: absolute;
  z-index: 0;
  right: clamp(12px, 1.8vw, 22px);
  bottom: clamp(8px, 1.1vw, 16px);
  color: rgba(193, 190, 255, 0.11);
  font-size: clamp(112px, 10vw, 154px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
}

.alumni-path h3,
.alumni-path p,
.alumni-path ul,
.alumni-path blockquote {
  position: relative;
  z-index: 1;
}

.alumni-path h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 760;
  letter-spacing: -0.039em;
  line-height: 1.15;
}

.alumni-path p {
  margin: 17px 0 0;
  color: #d2d8f0;
  font-size: clamp(15px, 1.12vw, 17px);
  letter-spacing: -0.017em;
  line-height: 1.5;
}

.alumni-path__lead {
  color: #fff !important;
  font-weight: 650;
}

.alumni-path ul {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.alumni-path li {
  position: relative;
  padding-left: 18px;
  color: #d9def2;
  font-size: clamp(14px, 1.05vw, 16px);
  letter-spacing: -0.015em;
  line-height: 1.38;
}

.alumni-path li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.alumni-path blockquote {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(18px, 1.47vw, 21px);
  font-weight: 700;
  letter-spacing: -0.029em;
  line-height: 1.32;
}

.alumni-path blockquote:last-child {
  color: #c7c1ff;
}

.alumni-path__question {
  margin-top: 20px !important;
  color: #b3bbdc !important;
  font-size: 0.92em !important;
  font-weight: 700;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
}

.alumni-paths__discount {
  display: grid;
  gap: 14px;
  max-width: 850px;
  margin-top: clamp(64px, 7.5vw, 96px);
}

.alumni-paths__discount p,
.alumni-paths__final p {
  margin: 0;
  color: #d2d8f0;
  font-size: clamp(17px, 1.34vw, 19px);
  letter-spacing: -0.021em;
  line-height: 1.5;
}

.alumni-paths__discount p:first-child {
  color: #fff;
  font-size: clamp(21px, 1.78vw, 26px);
  font-weight: 750;
  letter-spacing: -0.036em;
  line-height: 1.3;
}

.alumni-paths__discount p:last-child {
  color: #c9c2ff;
  font-size: clamp(20px, 1.68vw, 24px);
  letter-spacing: -0.032em;
  line-height: 1.35;
}

.alumni-paths__final {
  display: grid;
  gap: 15px;
  max-width: 880px;
  margin-top: clamp(62px, 7vw, 91px);
  padding: clamp(29px, 3.8vw, 44px);
  border: 1px solid rgba(103, 225, 198, 0.35);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(99, 72, 214, 0.63), rgba(52, 191, 166, 0.26));
  box-shadow: 0 20px 46px rgba(3, 8, 33, 0.2);
}

.alumni-paths__final p:first-child {
  color: #e4e4ff;
}

.alumni-paths__final p:last-child {
  color: #fff;
  font-size: clamp(21px, 1.82vw, 27px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.28;
}

.alumni-paths__final strong {
  color: #fff;
}

.author {
  position: relative;
  isolation: isolate;
  /* Не создаём scroll-контейнер: иначе sticky-портрет перестаёт фиксироваться в окне. */
  overflow: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 14%, rgba(108, 86, 234, 0.14), transparent 25%),
    radial-gradient(circle at 93% 82%, rgba(52, 191, 166, 0.13), transparent 28%),
    linear-gradient(145deg, #fafbff 0%, #f4f6ff 52%, #eff6ff 100%);
}

.author__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.author__glow--violet {
  top: 8%;
  left: -12%;
  width: clamp(260px, 28vw, 510px);
  aspect-ratio: 1;
  background: rgba(126, 105, 242, 0.13);
}

.author__glow--mint {
  right: -10%;
  bottom: 6%;
  width: clamp(240px, 25vw, 460px);
  aspect-ratio: 1;
  background: rgba(55, 202, 174, 0.12);
}

.author__content {
  display: grid;
  grid-template-columns: minmax(300px, 0.69fr) minmax(0, 1.31fr);
  align-items: start;
  gap: clamp(34px, 5vw, 76px);
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(68px, 8vw, 108px);
}

.author__portrait {
  position: sticky;
  top: var(--site-header-offset);
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(108, 120, 185, 0.22);
  border-radius: 28px;
  background: #e9edfb;
  box-shadow: 0 24px 60px rgba(67, 83, 147, 0.18);
}

.author__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 7.6;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.author__portrait.has-image img,
.author__portrait img.is-loaded {
  opacity: 1;
}

.author__label {
  color: #5969ad;
}

.author h2 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.7vw, 54px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.author__intro,
.author__story,
.author__reality,
.author__final {
  display: grid;
  gap: 15px;
}

.author__intro {
  margin-top: 34px;
}

.author__copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.28vw, 18px);
  letter-spacing: -0.02em;
  line-height: 1.56;
}

.author__intro p:first-child {
  color: #2e3c72;
  font-size: clamp(21px, 1.72vw, 25px);
  font-weight: 700;
  letter-spacing: -0.034em;
  line-height: 1.34;
}

.author__story {
  margin-top: clamp(38px, 4.5vw, 58px);
}

.author__story blockquote,
.author__reality blockquote,
.author__final blockquote {
  margin: 2px 0;
  color: #2e3d80;
  font-size: clamp(21px, 1.72vw, 26px);
  font-weight: 750;
  letter-spacing: -0.039em;
  line-height: 1.29;
}

.author__accent {
  color: var(--violet) !important;
  font-size: clamp(21px, 1.75vw, 26px) !important;
  font-weight: 800;
  letter-spacing: -0.04em !important;
  line-height: 1.3 !important;
}

.author__barrier {
  display: grid;
  gap: 13px;
  margin-top: clamp(46px, 5.6vw, 72px);
  padding: clamp(27px, 3vw, 39px);
  border: 1px solid rgba(116, 125, 185, 0.19);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 17px 39px rgba(78, 94, 160, 0.09);
}

.author__barrier h3 {
  margin: 0;
  color: #273666;
  font-size: clamp(22px, 1.8vw, 27px);
  font-weight: 800;
  letter-spacing: -0.043em;
  line-height: 1.2;
}

.author__approach {
  margin-top: clamp(47px, 5.5vw, 70px);
}

.author__approach > p {
  color: #2f3d74;
  font-size: clamp(22px, 1.84vw, 27px);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.2;
}

.author__approach ul {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.author__approach li {
  position: relative;
  padding-left: 30px;
  color: #4d587c;
  font-size: clamp(16px, 1.28vw, 18px);
  font-weight: 650;
  letter-spacing: -0.019em;
  line-height: 1.42;
}

.author__approach li::before {
  position: absolute;
  top: 0.27em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #6e7fff, #6347dc);
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.author__reality {
  margin-top: clamp(49px, 5.8vw, 74px);
  padding-top: clamp(40px, 4.8vw, 60px);
  border-top: 1px solid rgba(89, 103, 165, 0.2);
}

.author__reality blockquote {
  color: #5d47d4;
}

.author__final {
  gap: 14px;
  margin-top: clamp(52px, 6vw, 77px);
  padding: clamp(28px, 3.4vw, 42px);
  border: 1px solid rgba(104, 92, 226, 0.27);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(98, 73, 213, 0.98), rgba(50, 161, 179, 0.88));
  box-shadow: 0 20px 47px rgba(78, 76, 179, 0.2);
}

.author__final p,
.author__final blockquote {
  color: #fff;
}

.author__final blockquote {
  margin: 3px 0 0;
  font-size: clamp(23px, 1.95vw, 29px);
}

.participation {
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: #eef0ff;
  background:
    radial-gradient(circle at 8% 12%, rgba(112, 89, 241, 0.25), transparent 27%),
    radial-gradient(circle at 92% 82%, rgba(48, 194, 164, 0.18), transparent 26%),
    linear-gradient(135deg, #111938 0%, #1b2452 52%, #18214a 100%);
}

.participation__glow {
  position: absolute;
  z-index: -1;
  width: clamp(280px, 32vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.participation__glow--violet {
  top: -18%;
  left: -15%;
  background: rgba(106, 77, 237, 0.37);
}

.participation__glow--mint {
  right: -14%;
  bottom: -15%;
  background: rgba(39, 196, 163, 0.26);
}

.participation__content {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  align-items: start;
  gap: clamp(42px, 7vw, 112px);
  padding-top: clamp(76px, 9vw, 126px);
  padding-bottom: clamp(80px, 9vw, 130px);
}

.participation__label {
  color: #aeb8ff;
}

.participation h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.7vw, 54px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.participation__lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: #d2d8f3;
  font-size: clamp(18px, 1.48vw, 21px);
  letter-spacing: -0.028em;
  line-height: 1.48;
}

.participation__included {
  margin-top: clamp(42px, 5vw, 62px);
  padding-top: clamp(31px, 3.5vw, 44px);
  border-top: 1px solid rgba(205, 211, 255, 0.22);
}

.participation__included h3,
.participation__plan {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 1.85vw, 27px);
  font-weight: 800;
  letter-spacing: -0.043em;
  line-height: 1.2;
}

.participation__included ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.participation__included li {
  position: relative;
  padding-left: 32px;
  color: #d6dcf5;
  font-size: clamp(16px, 1.24vw, 18px);
  letter-spacing: -0.018em;
  line-height: 1.43;
}

.participation__included li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(150, 255, 222, 0.7);
  border-radius: 50%;
  content: "";
}

.participation__included li::after {
  position: absolute;
  top: 0.56em;
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #79ead0;
  border-left: 2px solid #79ead0;
  content: "";
  transform: rotate(-45deg);
}

.participation__card {
  position: sticky;
  top: var(--site-header-offset);
  padding: clamp(29px, 3.4vw, 45px);
  border: 1px solid rgba(199, 207, 255, 0.27);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  box-shadow: 0 25px 65px rgba(3, 8, 35, 0.32);
  backdrop-filter: blur(12px);
}

.participation__plan-description {
  margin: 17px 0 0;
  color: #ccd4f2;
  font-size: clamp(16px, 1.18vw, 17px);
  letter-spacing: -0.016em;
  line-height: 1.48;
}

.participation__plan-description + .participation__plan-description {
  margin-top: 10px;
  color: #fff;
  font-weight: 650;
}

.participation__price {
  display: grid;
  gap: 7px;
  margin-top: clamp(33px, 3.6vw, 45px);
  padding: clamp(25px, 2.8vw, 35px) 0;
  border-top: 1px solid rgba(205, 211, 255, 0.23);
  border-bottom: 1px solid rgba(205, 211, 255, 0.23);
}

.participation__price p,
.participation__price span {
  margin: 0;
  color: #cdd5f3;
  font-size: 15px;
  letter-spacing: -0.016em;
  line-height: 1.42;
}

.participation__price s {
  color: #9fa9d2;
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.participation__price strong {
  color: #fff;
  font-size: clamp(42px, 4vw, 59px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 1;
}

.participation__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  margin-top: 27px;
  padding: 14px 17px 14px 23px;
  border-radius: 16px;
  color: #102043;
  background: #7ee6cc;
  box-shadow: 0 16px 30px rgba(51, 214, 179, 0.22);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.22;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.participation__button svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(16, 32, 67, 0.11);
}

.participation__button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.participation__button:hover {
  background: #a0f3dc;
  box-shadow: 0 20px 37px rgba(51, 214, 179, 0.3);
  transform: translateY(-2px);
}

.participation__split {
  margin-top: 22px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(126, 230, 204, 0.28);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(126, 230, 204, 0.1), rgba(101, 73, 231, 0.12));
}

.participation__split-label {
  margin: 0;
  color: #8ef2d7;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.participation__split-note {
  margin: 10px 0 0;
  color: #d5dcf5;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.42;
}

.participation__split-price {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.participation__split-price s {
  color: #9fa9d2;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.participation__split-price strong {
  color: #fff;
  font-size: clamp(30px, 2.8vw, 38px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.participation__split-price span {
  color: #b8c2e8;
  font-size: 14px;
  letter-spacing: -0.015em;
  line-height: 1.4;
}

.participation__button--split {
  margin-top: 18px;
  color: #eef6ff;
  background: transparent;
  border: 1px solid rgba(126, 230, 204, 0.55);
  box-shadow: none;
}

.participation__button--split svg {
  background: rgba(126, 230, 204, 0.16);
}

.participation__button--split:hover {
  color: #102043;
  background: #7ee6cc;
  border-color: #7ee6cc;
  box-shadow: 0 16px 30px rgba(51, 214, 179, 0.22);
}

.participation__button:focus-visible,
.participation__button--split:focus-visible,
.participation__alumni a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.participation__alumni {
  margin-top: clamp(36px, 4.5vw, 52px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(126, 230, 204, 0.42);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(126, 230, 204, 0.16), rgba(101, 73, 231, 0.22));
  box-shadow: 0 18px 42px rgba(3, 8, 35, 0.22);
}

.participation__alumni-label {
  margin: 0 0 12px;
  color: #8ef2d7;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.participation__alumni > p:not(.participation__alumni-label) {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.participation__alumni a {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(142, 242, 215, 0.45);
  border-radius: 14px;
  color: #102043;
  background: #7ee6cc;
  box-shadow: 0 12px 28px rgba(51, 214, 179, 0.2);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.018em;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.participation__alumni a:hover {
  color: #102043;
  background: #a0f3dc;
  box-shadow: 0 16px 32px rgba(51, 214, 179, 0.28);
  transform: translateY(-1px);
}

.bonuses {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f4f6ff;
  background-image: url("./bonuses-background.jpg"), radial-gradient(circle at 84% 10%, rgba(191, 181, 255, 0.56), transparent 26%), radial-gradient(circle at 8% 87%, rgba(160, 228, 219, 0.3), transparent 26%), linear-gradient(135deg, #f9fbff 0%, #f0f2ff 48%, #edf7fa 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.bonuses__shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(248, 250, 255, 0.76), rgba(247, 249, 255, 0.66)); pointer-events: none; }
.bonuses__content { padding-top: clamp(80px, 9vw, 128px); padding-bottom: clamp(84px, 9vw, 132px); }
.bonuses__header { max-width: 890px; }
.bonuses__label { color: #5a52b7; }
.bonuses h2 { max-width: 850px; margin: 0; font-size: clamp(33px, 3.8vw, 55px); font-weight: 850; letter-spacing: -0.064em; line-height: 0.98; }
.bonuses__lead { display: grid; gap: 8px; max-width: 735px; margin-top: 28px; color: #4f5d88; font-size: clamp(18px, 1.48vw, 21px); letter-spacing: -0.028em; line-height: 1.47; }
.bonuses__lead p, .bonus-card p, .bonuses__final p { margin: 0; }

.bonuses__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 18px; margin-top: clamp(47px, 5.7vw, 75px); }
.bonus-card { display: flex; flex-direction: column; min-height: 510px; padding: clamp(25px, 2.5vw, 34px); border: 1px solid rgba(255, 255, 255, 0.84); border-radius: 28px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 255, 0.72)); box-shadow: 0 20px 50px rgba(60, 76, 149, 0.13); backdrop-filter: blur(10px); }
.bonus-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.bonus-card__number { display: inline-grid; width: 52px; height: 52px; place-items: center; border-radius: 16px; color: var(--violet); background: linear-gradient(135deg, rgba(110, 85, 232, 0.17), rgba(105, 197, 186, 0.13)); font-size: 16px; font-weight: 850; letter-spacing: -0.035em; }
.bonus-card__icon { width: 62px; height: 62px; color: #7557e9; filter: drop-shadow(0 10px 12px rgba(101, 73, 231, 0.16)); }
.bonus-card__icon path, .bonus-card__icon rect, .bonus-card__benefit svg path { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.bonus-card h3 { margin: 27px 0 0; font-size: clamp(23px, 1.95vw, 29px); font-weight: 850; letter-spacing: -0.052em; line-height: 1.1; }
.bonus-card h3 span { color: var(--violet); }
.bonus-card > p { margin-top: 17px; color: #52618e; font-size: clamp(16px, 1.17vw, 17px); letter-spacing: -0.022em; line-height: 1.47; }
.bonus-card > p + p { margin-top: 13px; }
.bonus-card ul { display: grid; gap: 9px; margin: 17px 0 0; padding: 0; list-style: none; }
.bonus-card li { position: relative; padding-left: 27px; color: #4d5d8a; font-size: clamp(15px, 1.08vw, 16px); letter-spacing: -0.02em; line-height: 1.4; }
.bonus-card li::before { position: absolute; top: 0.32em; left: 0; width: 17px; height: 17px; border-radius: 50%; color: var(--violet); background: rgba(112, 88, 232, 0.13); content: "✓"; font-size: 12px; font-weight: 850; line-height: 17px; text-align: center; }
.bonus-card__benefit { display: flex; align-items: flex-start; gap: 13px; margin-top: auto; padding: 18px; border-radius: 18px; color: #5140cb; background: linear-gradient(135deg, rgba(113, 87, 234, 0.12), rgba(91, 205, 184, 0.1)); }
.bonus-card__benefit svg { flex: 0 0 auto; width: 25px; height: 25px; }
.bonus-card__benefit p { color: #4a59a1; font-size: 15px; letter-spacing: -0.02em; line-height: 1.42; }
.bonus-card__benefit strong { color: #4835c9; }
.bonuses__final { max-width: 850px; margin: clamp(54px, 7vw, 90px) auto 0; padding: clamp(29px, 4vw, 48px); border: 1px solid rgba(109, 88, 226, 0.26); border-radius: 30px; color: #fff; background: linear-gradient(135deg, rgba(89, 65, 209, 0.96), rgba(47, 161, 174, 0.9)); box-shadow: 0 24px 56px rgba(72, 69, 178, 0.25); }
.bonuses__final .section-label { color: #d7ffff; }
.bonuses__final h3 { max-width: 680px; margin: 16px 0 0; font-size: clamp(26px, 2.5vw, 38px); font-weight: 850; letter-spacing: -0.055em; line-height: 1.08; }
.bonuses__final > p:last-child { max-width: 690px; margin-top: 18px; color: rgba(255, 255, 255, 0.9); font-size: clamp(16px, 1.25vw, 18px); letter-spacing: -0.022em; line-height: 1.48; }

.faq { position: relative; isolation: isolate; overflow: hidden; background-color: #f4f6ff; background-image: url("./bonuses-background.jpg"), radial-gradient(circle at 84% 10%, rgba(191, 181, 255, 0.56), transparent 26%), radial-gradient(circle at 8% 87%, rgba(160, 228, 219, 0.3), transparent 26%), linear-gradient(135deg, #f9fbff 0%, #f0f2ff 48%, #edf7fa 100%); background-position: center; background-repeat: no-repeat; background-size: cover; background-attachment: scroll; }
.faq__shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(247, 249, 255, 0.64), rgba(248, 250, 255, 0.78)); pointer-events: none; }
.faq__content { padding-top: clamp(80px, 9vw, 128px); padding-bottom: clamp(84px, 10vw, 144px); }
.faq__header { max-width: 840px; }
.faq__label { color: #5a52b7; }
.faq h2 { max-width: 690px; margin: 0; font-size: clamp(33px, 3.8vw, 55px); font-weight: 850; letter-spacing: -0.064em; line-height: 0.98; }
.faq__header > p:last-child { max-width: 675px; margin: 28px 0 0; color: #4f5d88; font-size: clamp(17px, 1.4vw, 20px); letter-spacing: -0.026em; line-height: 1.48; }
.faq__list { display: grid; gap: 12px; max-width: 1000px; margin: clamp(48px, 6vw, 76px) auto 0; }
.faq__item { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.86); border-radius: 22px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(247, 249, 255, 0.66)); box-shadow: 0 14px 36px rgba(69, 81, 151, 0.1); backdrop-filter: blur(10px); transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease; }
.faq__item.is-open { border-color: rgba(112, 87, 234, 0.3); background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.8)); box-shadow: 0 20px 46px rgba(78, 74, 168, 0.15); }
.faq__item h3 { margin: 0; }
.faq__trigger { display: grid; grid-template-columns: 54px minmax(0, 1fr) 42px; align-items: center; width: 100%; gap: 19px; padding: 23px 25px; border: 0; color: #24315e; background: transparent; font: inherit; font-size: clamp(18px, 1.55vw, 22px); font-weight: 780; letter-spacing: -0.037em; line-height: 1.22; text-align: left; cursor: pointer; }
.faq__number { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; color: #5e45d0; background: linear-gradient(135deg, rgba(113, 87, 234, 0.16), rgba(80, 196, 176, 0.13)); font-size: 14px; font-weight: 850; letter-spacing: -0.025em; }
.faq__icon { position: relative; width: 40px; height: 40px; border: 1px solid rgba(105, 82, 211, 0.2); border-radius: 50%; color: var(--violet); transition: transform 300ms cubic-bezier(.2,.8,.2,1), color 220ms ease, background 220ms ease; }
.faq__icon::before, .faq__icon::after { position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; border-radius: 2px; background: currentColor; content: ""; transform: translate(-50%, -50%); }
.faq__icon::after { transition: transform 300ms cubic-bezier(.2,.8,.2,1); transform: translate(-50%, -50%) rotate(90deg); }
.faq__trigger[aria-expanded="true"] .faq__icon { color: #fff; background: var(--violet); transform: rotate(180deg); }
.faq__trigger[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__trigger:hover .faq__icon { border-color: rgba(101, 73, 231, 0.48); }
.faq__trigger:focus-visible { outline: 3px solid rgba(101, 73, 231, 0.72); outline-offset: -3px; }
.faq__panel { overflow: hidden; height: 0; opacity: 0; transition: height 420ms cubic-bezier(.2,.8,.2,1), opacity 240ms ease; }
.faq__panel.is-visible { opacity: 1; }
.faq__answer { max-width: 845px; padding: 0 107px 29px 98px; color: #52618e; font-size: clamp(16px, 1.19vw, 18px); letter-spacing: -0.021em; line-height: 1.55; }
.faq__answer p { margin: 0; }
.faq__answer p + p { margin-top: 14px; }
.faq__answer strong { color: #3f3787; }

/* Завершающий CTA — тёмный контрастный блок */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f9faff;
  background:
    radial-gradient(circle at 84% 14%, rgba(101, 73, 231, 0.5), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(43, 191, 166, 0.24), transparent 30%),
    linear-gradient(145deg, #101836 0%, #1c2554 50%, #121d40 100%);
}

.cta__shape {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(203, 199, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  animation: cta-float 12s ease-in-out infinite;
}

.cta__shape--one {
  top: -18%;
  right: -12%;
  width: clamp(420px, 48vw, 760px);
  aspect-ratio: 1;
}

.cta__shape--two {
  bottom: -22%;
  left: -14%;
  width: clamp(340px, 40vw, 640px);
  aspect-ratio: 1;
  animation-delay: -4s;
}

@keyframes cta-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 18px, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta__shape {
    animation: none;
  }
}

.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(88px, 10vw, 150px);
  padding-bottom: clamp(96px, 11vw, 168px);
  text-align: center;
}

.cta h2 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.cta__lead,
.cta__promise,
.cta__invite {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-top: clamp(34px, 4.2vw, 52px);
}

.cta__lead p,
.cta__promise p,
.cta__invite p {
  margin: 0;
  color: #d2d8f0;
  font-size: clamp(17px, 1.35vw, 20px);
  letter-spacing: -0.022em;
  line-height: 1.5;
}

.cta__lead p:first-child,
.cta__promise p:first-child {
  color: #fff;
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.cta__contrast {
  display: grid;
  gap: 12px;
  max-width: 780px;
  width: min(100%, 780px);
  margin-top: clamp(42px, 5.2vw, 68px);
  padding: clamp(28px, 3.6vw, 44px);
  border: 1px solid rgba(103, 225, 198, 0.35);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(99, 72, 214, 0.72), rgba(52, 191, 166, 0.28));
  box-shadow: 0 22px 48px rgba(3, 8, 33, 0.22);
  text-align: left;
}

.cta__contrast p {
  margin: 0;
  color: #e8ecff;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.32;
}

.cta__contrast p:last-child {
  color: #fff;
  font-size: clamp(21px, 1.78vw, 27px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.28;
}

.cta__closing {
  color: #fff !important;
  font-size: clamp(21px, 1.78vw, 27px) !important;
  font-weight: 800;
  letter-spacing: -0.038em !important;
  line-height: 1.28 !important;
}

.cta .button {
  margin-top: clamp(40px, 5vw, 62px);
}

/* Кнопка на тёмном фоне — мятный акцент, как у блока оплаты */
.button--on-dark {
  color: #102043;
  background: #7ee6cc;
  box-shadow: 0 16px 30px rgba(51, 214, 179, 0.24);
}

.button--on-dark svg {
  background: rgba(16, 32, 67, 0.11);
}

.button--on-dark:hover {
  background: #a0f3dc;
  box-shadow: 0 20px 37px rgba(51, 214, 179, 0.32);
}

.button--on-dark:focus-visible {
  outline-color: #fff;
}

/* Подвал сайта */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #c5cce6;
  background:
    radial-gradient(circle at 88% 20%, rgba(101, 73, 231, 0.22), transparent 34%),
    radial-gradient(circle at 8% 90%, rgba(43, 191, 166, 0.12), transparent 32%),
    linear-gradient(180deg, #0c132c 0%, #101936 100%);
  border-top: 1px solid rgba(170, 178, 230, 0.14);
}

.site-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(46px, 5.5vw, 72px);
}

.site-footer__brand p {
  margin: 0;
  color: #e8ecff;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.site-footer__ogrn {
  margin-top: 10px !important;
  color: #9aa3c7 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav a {
  color: #b8c0e0;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.35;
  text-decoration: none;
  text-underline-offset: 0.22em;
  transition: color 180ms ease;
}

.site-footer__nav a:hover {
  color: #8ef2d7;
  text-decoration: underline;
  text-decoration-color: rgba(142, 242, 215, 0.45);
}

.site-footer__nav a:focus-visible {
  outline: 2px solid #7ee6cc;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .hero {
    background-position: 62% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.48) 63%, rgba(255, 255, 255, 0.08) 80%);
  }

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

  .roadmap-card::after,
  .roadmap-card::before {
    display: none;
  }

  .roadmap__result {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.56fr);
  }

  .roadmap__result ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__lead,
  .hero__description,
  .hero__promise,
  .discount {
    max-width: 530px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__cta {
    margin-left: auto;
  }

  .site-header__menu-btn {
    display: inline-flex;
  }

  .site-header.is-open .site-header__panel {
    display: block;
  }

  .site-header.is-open .site-header__panel[hidden] {
    display: block !important;
  }
}

@media (max-width: 760px) {
  :root {
    --site-header-offset: 76px;
  }

  .site-header__inner {
    min-height: 60px;
    gap: 12px;
  }

  .site-header__brand {
    font-size: 14px;
  }

  .site-header__cta {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    background-position: 64% center;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.89) 55%, rgba(255, 255, 255, 0.54) 100%);
  }

  .container {
    width: min(100% - 36px, 560px);
  }

  .hero__content {
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 70px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  h1 {
    max-width: 490px;
    letter-spacing: -0.052em;
  }

  .hero__lead {
    margin-top: 23px;
  }

  .hero__description {
    margin-top: 15px;
  }

  .hero__promise {
    margin-top: 15px;
  }

  .button {
    width: 100%;
    margin-top: 25px;
  }

  .about {
    background-position: 58% center;
    background-attachment: scroll;
  }

  .about__shade {
    background: linear-gradient(180deg, rgba(249, 251, 255, 0.95) 0%, rgba(249, 251, 255, 0.91) 66%, rgba(249, 251, 255, 0.63) 100%);
  }

  .about__content {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .about__part,
  .about__part--second {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about__part--second {
    margin-top: 72px;
  }

  .about__visual {
    min-height: min(112vw, 540px);
    border-radius: 24px;
  }

  .about__part--second .about__visual {
    order: 2;
  }

  .section-label {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .about__intro > p:first-of-type {
    margin-top: 24px;
  }

  .about__turn {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .about__result {
    margin-top: 42px;
  }

  .outcome__content {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .outcome__intro {
    gap: 15px;
    margin-top: 25px;
  }

  .outcome__abilities {
    margin-top: 43px;
    border-radius: 22px;
  }

  .outcome-list {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 22px;
  }

  .outcome__closing {
    gap: 15px;
    margin-top: 46px;
  }

  .outcome__formula {
    gap: 7px;
    margin-top: 53px !important;
  }

  .growth {
    background-position: 58% center;
    background-attachment: scroll;
  }

  .growth__shade {
    background: linear-gradient(180deg, rgba(249, 251, 255, 0.8) 0%, rgba(249, 251, 255, 0.68) 68%, rgba(249, 251, 255, 0.5) 100%);
  }

  .growth__content {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .growth__intro,
  .growth__difference,
  .growth__approach {
    gap: 15px;
  }

  .growth__intro {
    margin-top: 25px;
  }

  .growth blockquote {
    padding: 18px;
    border-radius: 18px;
  }

  .growth__stages {
    gap: 14px;
    margin-top: 43px;
    padding: 25px 20px;
    border-radius: 22px;
  }

  .growth__difference {
    margin-top: 50px;
  }

  .growth__approach {
    margin-top: 54px;
    padding-top: 36px;
  }

  .build {
    background-size: 34px 34px, 34px 34px, auto, auto;
  }

  .build__content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 74px;
    padding-bottom: 85px;
  }

  .build__visual {
    position: relative;
    top: auto;
    min-height: min(112vw, 540px);
    border-radius: 24px;
  }

  .build__copy {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .build__label {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .build__intro {
    gap: 15px;
    margin-top: 24px;
  }

  .build__question-title {
    margin-top: 39px !important;
  }

  .build__dialogue-item {
    display: grid;
    gap: 7px;
    padding: 15px;
  }

  .build__dialogue-item strong {
    font-size: 14px;
  }

  .build__shift {
    gap: 15px;
    margin-top: 42px;
    padding-top: 32px;
  }

  .build__shift blockquote {
    padding: 17px 18px;
  }

  .build__possibilities {
    margin-top: 42px;
  }

  .build__final {
    margin-top: 46px !important;
    padding: 23px 20px;
  }

  .roles-sandbox {
    background-position: 58% center;
    background-attachment: scroll;
  }

  .roles-sandbox::before {
    background: linear-gradient(180deg, rgba(249, 251, 255, 0.81) 0%, rgba(249, 251, 255, 0.69) 68%, rgba(249, 251, 255, 0.51) 100%);
  }

  .roles__content {
    padding-top: 74px;
    padding-bottom: 42px;
  }

  .roles__intro,
  .roles__conclusion {
    gap: 15px;
  }

  .roles__intro {
    margin-top: 25px;
  }

  .roles__lead {
    margin-top: 46px !important;
  }

  .roles__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .role-card {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .role-card ul {
    gap: 12px;
    margin-top: 22px;
  }

  .role-card blockquote {
    margin-top: 21px;
    padding: 17px 18px;
  }

  .role-card--ai > p:last-child {
    margin-top: 22px;
    padding-top: 20px;
  }

  .roles__conclusion {
    margin-top: 54px;
    padding-top: 36px;
  }

  .sandbox__content {
    padding-top: 52px;
    padding-bottom: 86px;
  }

  .sandbox__intro {
    gap: 15px;
    margin-top: 25px;
  }

  .sandbox__card {
    margin-top: 43px;
    padding: 25px 20px;
    border-radius: 22px;
  }

  .sandbox__features {
    gap: 13px;
    margin-top: 22px;
  }

  .sandbox__ai {
    margin-top: 47px;
  }

  .sandbox__questions p {
    padding: 15px;
  }

  .sandbox__card--payment {
    margin-top: 47px;
  }

  .sandbox__point {
    gap: 15px;
    margin-top: 50px;
  }

  .sandbox__point strong {
    padding: 10px 16px;
  }

  .sandbox__final {
    gap: 14px;
    margin-top: 54px;
    padding-top: 36px;
  }

  .roadmap__content {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .roadmap__intro {
    gap: 9px;
    margin-top: 25px;
  }

  .roadmap__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 44px;
  }

  .roadmap-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .roadmap-card h3 {
    margin-top: 21px;
  }

  .roadmap__result {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 44px;
    padding: 25px 20px;
    border-radius: 22px;
  }

  .roadmap__result ul {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .roadmap__result-image {
    min-height: 220px;
  }

  .roadmap__result-image img {
    width: min(100%, 420px);
  }

  .fit__content {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .fit__label {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .fit__intro {
    gap: 15px;
    margin-top: 25px;
  }

  .fit__cards-title {
    margin-top: 46px;
  }

  .fit__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .fit-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .fit-card h3 {
    margin-top: 0;
  }

  .fit__shift {
    gap: 15px;
    margin-top: 52px;
  }

  .fit__thoughts p {
    padding: 17px 18px;
  }

  .orchestration {
    background-position: 58% center;
    background-attachment: scroll;
  }

  .orchestration__shade {
    background: linear-gradient(180deg, rgba(249, 251, 255, 0.83) 0%, rgba(249, 251, 255, 0.72) 68%, rgba(249, 251, 255, 0.6) 100%);
  }

  .orchestration__content {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .orchestration__intro,
  .orchestration__warning,
  .orchestration__closing {
    gap: 15px;
  }

  .orchestration__intro {
    margin-top: 25px;
  }

  .orchestration__trap {
    margin-top: 43px !important;
  }

  .orchestration__warning {
    margin-top: 16px;
    padding: 25px 20px;
    border-radius: 22px;
  }

  .orchestration__main-point {
    gap: 14px;
    margin-top: 48px;
  }

  .orchestration__skills {
    margin-top: 24px !important;
  }

  .orchestration__closing {
    margin-top: 52px;
  }

  .orchestration__final {
    margin-top: 56px !important;
    padding-top: 36px;
  }

  .orchestration__format {
    margin-top: 64px;
    padding-top: 50px;
  }

  .orchestration__format h3 {
    margin-top: 22px;
  }

  .orchestration__steps {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 35px;
  }

  .orchestration-step {
    min-height: 0;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .orchestration-step span {
    right: 12px;
    bottom: 9px;
    font-size: 112px;
  }

  .orchestration__practice {
    gap: 13px;
    margin-top: 50px;
  }

  .orchestration__practice p {
    padding: 20px;
    border-radius: 17px;
  }

  .orchestration__between {
    gap: 15px;
    margin-top: 54px;
  }

  .orchestration__between blockquote {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .orchestration__result {
    gap: 15px;
    margin-top: 57px;
  }

  .orchestration__pace {
    margin-top: 47px !important;
    padding: 27px 20px;
    border-radius: 22px;
  }

  .debugging__content,
  .recovery__content {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .debugging__label {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .debugging__scene {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 44px;
  }

  .debugging__screen {
    width: min(100%, 480px);
    min-height: 270px;
    margin: 0 auto;
  }

  .debugging__scene-copy {
    gap: 14px;
    max-width: 600px;
    text-align: center;
  }

  .debugging__dropout {
    margin-top: 51px;
  }

  .debugging__turn {
    gap: 15px;
    margin-top: 42px;
    padding: 25px 20px;
    border-radius: 22px;
  }

  .recovery {
    background-position: 58% center;
    background-attachment: scroll;
  }

  .recovery__shade {
    background: linear-gradient(180deg, rgba(249, 251, 255, 0.79), rgba(249, 251, 255, 0.63));
  }

  .recovery__skills {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 42px;
  }

  .recovery__skills li {
    min-height: 0;
    padding: 21px 20px 21px 53px;
    border-radius: 18px;
  }

  .recovery__skills li::before {
    top: 22px;
    left: 20px;
  }

  .recovery__skills li::after {
    top: 27px;
    left: 25px;
  }

  .recovery__shift {
    gap: 15px;
    margin-top: 54px;
  }

  .recovery__shift blockquote {
    padding: 27px 20px;
    border-radius: 22px;
  }

  .recovery__final {
    gap: 15px;
    margin-top: 57px;
    padding-top: 37px;
  }

  .alumni,
  .recovery {
    background-position: 58% center;
    background-attachment: scroll;
  }

  .alumni__shade {
    background: linear-gradient(180deg, rgba(249, 251, 255, 0.8), rgba(249, 251, 255, 0.63));
  }

  .alumni__content,
  .alumni-paths__content {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .alumni__intro {
    gap: 15px;
    margin-top: 25px;
  }

  .alumni__intro blockquote {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .alumni__route {
    gap: 15px;
    margin-top: 50px;
    padding-top: 36px;
  }

  .alumni-paths__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 43px;
  }

  .alumni-path {
    min-height: 0;
    padding: 25px 20px;
    border-radius: 20px;
  }

  .alumni-path__number {
    right: 12px;
    bottom: 9px;
    font-size: 118px;
  }

  .alumni-paths__discount {
    gap: 13px;
    margin-top: 52px;
  }

  .alumni-paths__final {
    gap: 14px;
    margin-top: 53px;
    padding: 27px 20px;
    border-radius: 22px;
  }

  .author__content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .author__portrait {
    position: relative;
    top: auto;
    width: min(100%, 410px);
    margin: 0 auto;
    border-radius: 24px;
  }

  .author h2 {
    font-size: clamp(30px, 9vw, 39px);
  }

  .author__intro {
    gap: 14px;
    margin-top: 25px;
  }

  .author__story,
  .author__reality,
  .author__final {
    gap: 14px;
  }

  .author__story {
    margin-top: 43px;
  }

  .author__barrier {
    gap: 12px;
    margin-top: 49px;
    padding: 25px 20px;
    border-radius: 22px;
  }

  .author__approach {
    margin-top: 50px;
  }

  .author__reality {
    margin-top: 52px;
    padding-top: 37px;
  }

  .author__final {
    margin-top: 54px;
    padding: 27px 20px;
    border-radius: 22px;
  }

  .participation__content {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .participation h2 {
    font-size: clamp(30px, 9vw, 39px);
  }

  .participation__lead {
    margin-top: 25px;
  }

  .participation__included {
    margin-top: 43px;
    padding-top: 34px;
  }

  .participation__included ul {
    gap: 14px;
    margin-top: 22px;
  }

  .participation__included li {
    padding-left: 30px;
  }

  .participation__card {
    position: relative;
    top: auto;
    padding: 27px 20px;
    border-radius: 23px;
  }

  .participation__price {
    margin-top: 30px;
    padding: 25px 0;
  }

  .participation__button {
    min-height: 62px;
    margin-top: 24px;
    padding-left: 19px;
  }

  .participation__split {
    margin-top: 20px;
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .participation__split-price strong {
    font-size: clamp(28px, 8vw, 34px);
  }

  .participation__button--split {
    margin-top: 16px;
  }

  .bonuses {
    background-position: 58% center;
    background-attachment: scroll;
  }

  .bonuses__content {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .bonuses h2 {
    font-size: clamp(30px, 9vw, 39px);
  }

  .bonuses__lead {
    gap: 10px;
    margin-top: 25px;
  }

  .bonuses__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 43px;
  }

  .bonus-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .bonus-card__number {
    width: 47px;
    height: 47px;
    border-radius: 14px;
  }

  .bonus-card__icon {
    width: 54px;
    height: 54px;
  }

  .bonus-card h3 {
    margin-top: 23px;
  }

  .bonus-card__benefit {
    margin-top: 24px;
    padding: 16px;
    border-radius: 16px;
  }

  .bonuses__final {
    margin-top: 54px;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .faq {
    background-position: 58% center;
    background-attachment: scroll;
  }

  .faq__content {
    padding-top: 74px;
    padding-bottom: 86px;
  }

  .faq h2 {
    font-size: clamp(30px, 9vw, 39px);
  }

  .faq__header > p:last-child {
    margin-top: 25px;
  }

  .faq__list {
    gap: 10px;
    margin-top: 43px;
  }

  .faq__item {
    border-radius: 18px;
  }

  .faq__trigger {
    grid-template-columns: 43px minmax(0, 1fr) 35px;
    gap: 13px;
    padding: 18px 16px;
    font-size: 17px;
  }

  .faq__number {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 12px;
  }

  .faq__icon {
    width: 34px;
    height: 34px;
  }

  .faq__answer {
    padding: 0 16px 23px 69px;
    font-size: 16px;
    line-height: 1.53;
  }

  .cta__content {
    padding-top: 74px;
    padding-bottom: 90px;
  }

  .cta h2 {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .cta__lead,
  .cta__promise,
  .cta__invite {
    gap: 14px;
    margin-top: 28px;
  }

  .cta__contrast {
    gap: 10px;
    margin-top: 36px;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .cta .button {
    width: 100%;
    margin-top: 36px;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .site-footer__nav ul {
    gap: 12px 18px;
  }
}

@media (max-width: 400px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  h1 {
    font-size: 39px;
  }

  .button {
    padding-right: 15px;
    padding-left: 19px;
    font-size: 15px;
  }
}

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

  .button {
    transition: none;
  }

  html.reveal-ready .reveal,
  html.reveal-ready .reveal.is-inview {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Scroll-reveal: коротко, без will-change и без лишнего filter */
html.reveal-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.reveal-ready .reveal.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.reveal-ready .reveal--left {
  transform: translate3d(-16px, 0, 0);
}

html.reveal-ready .reveal--right {
  transform: translate3d(16px, 0, 0);
}

html.reveal-ready .reveal--left.is-inview,
html.reveal-ready .reveal--right.is-inview {
  transform: translate3d(0, 0, 0);
}

html.reveal-ready .reveal--fade {
  transform: none;
}

html.reveal-ready .reveal--fade:not(.is-inview) {
  opacity: 0;
}

html.reveal-ready .reveal--scale:not(.is-inview) {
  transform: translate3d(0, 12px, 0) scale(0.985);
}

html.reveal-ready .reveal--scale.is-inview {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 760px) {
  html.reveal-ready .reveal,
  html.reveal-ready .reveal--left,
  html.reveal-ready .reveal--right {
    transform: translate3d(0, 10px, 0);
  }

  html.reveal-ready .reveal.is-inview,
  html.reveal-ready .reveal--left.is-inview,
  html.reveal-ready .reveal--right.is-inview {
    transform: translate3d(0, 0, 0);
  }
}

/* Hover: тень/бордер без подъёма карточек — нет конфликта с reveal transform */
@media (hover: hover) and (pointer: fine) {
  .roadmap-card,
  .fit-card,
  .bonus-card,
  .alumni-path,
  .role-card,
  .sandbox__card,
  .orchestration-step,
  .build__dialogue-item,
  .faq__item,
  .recovery__skills li,
  .about__visual,
  .participation__split,
  .bonuses__final,
  .cta__contrast {
    transition:
      box-shadow 220ms ease,
      border-color 220ms ease,
      background-color 220ms ease;
  }

  .button svg,
  .participation__button svg {
    transition: transform 200ms ease;
  }

  .bonus-card__icon,
  .roadmap-card__icon,
  .bonus-card__number,
  .faq__number,
  .faq__icon {
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), color 200ms ease, background 200ms ease, border-color 200ms ease;
  }

  .about__visual img {
    transition: opacity 0.3s ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .roadmap-card:hover,
  .bonus-card:hover,
  .role-card:hover,
  .sandbox__card:hover,
  .orchestration-step:hover {
    border-color: rgba(101, 73, 231, 0.3);
    box-shadow: 0 22px 48px rgba(75, 84, 170, 0.15);
  }

  .fit-card:hover,
  .alumni-path:hover {
    border-color: rgba(142, 242, 215, 0.4);
    box-shadow: 0 24px 50px rgba(3, 8, 33, 0.26);
    background-color: rgba(255, 255, 255, 0.12);
  }

  .faq__item:hover {
    border-color: rgba(112, 87, 234, 0.28);
    box-shadow: 0 16px 38px rgba(69, 81, 151, 0.13);
  }

  .build__dialogue-item:hover {
    border-color: rgba(126, 230, 204, 0.35);
    background-color: rgba(255, 255, 255, 0.1);
  }

  .recovery__skills li:hover {
    border-color: rgba(52, 191, 166, 0.38);
    box-shadow: 0 16px 36px rgba(97, 91, 166, 0.11);
    background-color: rgba(255, 255, 255, 0.78);
  }

  .participation__split:hover {
    border-color: rgba(126, 230, 204, 0.5);
  }

  .bonuses__final:hover,
  .cta__contrast:hover {
    box-shadow: 0 26px 56px rgba(72, 69, 178, 0.3);
  }

  .about__visual:hover {
    box-shadow: 0 26px 56px rgba(67, 83, 147, 0.18);
  }

  .about__visual:hover img.is-loaded,
  .about__visual.has-image:hover img {
    transform: scale(1.025);
  }

  .bonus-card:hover .bonus-card__icon,
  .roadmap-card:hover .roadmap-card__icon {
    transform: translate3d(0, -2px, 0);
  }

  .bonus-card:hover .bonus-card__number,
  .faq__item:hover .faq__number {
    transform: scale(1.04);
  }

  .button:hover svg,
  .participation__button:hover svg,
  .button--on-dark:hover svg,
  .participation__button--split:hover svg {
    transform: translateX(2px);
  }

  .faq__trigger:hover .faq__icon {
    border-color: rgba(101, 73, 231, 0.48);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce) {
  .about__visual:hover img.is-loaded,
  .about__visual.has-image:hover img,
  .bonus-card:hover .bonus-card__icon,
  .roadmap-card:hover .roadmap-card__icon,
  .bonus-card:hover .bonus-card__number,
  .faq__item:hover .faq__number,
  .button:hover svg,
  .participation__button:hover svg {
    transform: none !important;
  }
}
