/*
 * «Разгон с Чеберяченко»
 * Концепция A: «Чемпионский импульс».
 * Токены первого экрана являются кандидатами до утверждения блока 01.
 */

@font-face {
  font-family: "Razgon Plex Sans";
  src: url("../assets/fonts/ibm-plex-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

@font-face {
  font-family: "Razgon Plex Display";
  src: url("../assets/fonts/ibm-plex-sans-display-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 650;
  font-display: swap;
}

:root {
  --color-ink: #090d14;
  --color-ink-soft: #101823;
  --color-ink-raised: #162232;
  --color-paper: #f3f1eb;
  --color-text: #f7f8fa;
  --color-text-muted: #aab5c3;
  --color-cobalt: #2f6fed;
  --color-cobalt-bright: #4b88ff;
  --color-bronze: #c8a462;
  --color-bronze-light: #e2c58a;
  --color-line: rgba(255, 255, 255, 0.13);
  --color-line-strong: rgba(255, 255, 255, 0.22);

  --font-body: "Razgon Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Razgon Plex Display", "Arial Narrow", "Nimbus Sans Narrow", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1480px;
  --page-gutter: clamp(20px, 3.7vw, 64px);
  --topbar-height: 64px;
  --radius-small: 9px;
  --radius-medium: 16px;
  --radius-large: 28px;
  --shadow-button: 0 18px 46px rgba(47, 111, 237, 0.28);
  --shadow-float: 0 24px 70px rgba(0, 0, 0, 0.34);
  --transition-fast: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 18px);
  text-size-adjust: 100%;
  background: var(--color-ink);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--topbar-height);
  overflow-x: clip;
  color: var(--color-text);
  background: var(--color-ink);
  font-family: var(--font-body);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-bronze-light);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: calc(var(--topbar-height) + 18px);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  inset: 0 auto auto 0;
  padding: 0.75rem 1rem;
  color: var(--color-ink);
  background: var(--color-paper);
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.topbar {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--topbar-height);
  border-bottom: 1px solid var(--color-line);
  background: rgba(7, 11, 17, 0.84);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.topbar::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, var(--color-cobalt) 48%, var(--color-bronze) 72%, transparent 96%);
  content: "";
  opacity: 0.48;
}

.topbar.is-scrolled {
  background: rgba(7, 11, 17, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

.topbar__inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(360px, auto) minmax(240px, 1fr);
  gap: 24px;
  align-items: center;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  height: 100%;
  margin-inline: auto;
  padding: 8px var(--page-gutter);
}

.topbar__brand {
  justify-self: start;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.topbar__brand img {
  width: 34px;
  height: 34px;
  filter: invert(1);
}

.topbar__brand:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.topbar__message {
  margin: 0;
  color: rgba(247, 248, 250, 0.86);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.012em;
}

.button--topbar {
  justify-self: end;
  min-height: 38px;
  padding: 0.62rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-small);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.button--topbar:hover {
  border-color: var(--color-cobalt-bright);
  background: rgba(47, 111, 237, 0.16);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--topbar-height));
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(47, 111, 237, 0.22), transparent 30%),
    radial-gradient(circle at 20% 86%, rgba(200, 164, 98, 0.08), transparent 26%),
    linear-gradient(125deg, #090d14 0%, #0d1420 48%, #0a111b 100%);
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 58%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  top: -18%;
  right: -8%;
  width: min(62vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(75, 136, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 92px rgba(75, 136, 255, 0.018),
    0 0 0 184px rgba(75, 136, 255, 0.012);
  content: "";
}

.hero__signal {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 73%;
  opacity: 0.38;
  pointer-events: none;
}

.hero__signal path {
  fill: none;
  stroke: rgba(75, 136, 255, 0.55);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.hero__signal circle {
  fill: var(--color-bronze-light);
  filter: drop-shadow(0 0 8px rgba(226, 197, 138, 0.75));
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  gap: clamp(28px, 4vw, 76px);
  align-items: center;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  min-height: calc(100svh - var(--topbar-height));
  margin-inline: auto;
  padding: clamp(48px, 6vh, 84px) var(--page-gutter) clamp(42px, 5vh, 72px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__title {
  margin: 0 0 clamp(28px, 3.5vh, 44px);
  font-family: var(--font-display);
  font-size: clamp(60px, 5.25vw, 92px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__title span:first-child {
  color: var(--color-paper);
}

.hero__title span:last-child {
  margin-top: 0.08em;
  color: var(--color-bronze-light);
  text-shadow: 0 10px 34px rgba(200, 164, 98, 0.13);
}

.hero__contrast {
  display: grid;
  gap: 4px;
  margin: 0 0 24px;
  font-size: clamp(26px, 2.1vw, 37px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero__contrast strong {
  display: block;
  font-weight: 720;
}

.hero__contrast strong:last-child {
  color: var(--color-cobalt-bright);
}

.hero__lead {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(247, 248, 250, 0.79);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.52;
}

.hero__practice {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 34px;
  color: rgba(247, 248, 250, 0.95);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.35;
}

.hero__practice::before {
  flex: 0 0 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-bronze), rgba(200, 164, 98, 0.12));
  content: "";
}

.button--primary {
  gap: 16px;
  min-height: 62px;
  padding: 0.9rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-cobalt) 0%, #2558c4 100%);
  box-shadow: var(--shadow-button);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.025em;
}

.button--primary svg {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--transition-fast);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--color-cobalt-bright) 0%, var(--color-cobalt) 100%);
  box-shadow: 0 22px 54px rgba(47, 111, 237, 0.38);
  transform: translateY(-2px);
}

.button--primary:hover svg {
  transform: translateX(3px);
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-height: clamp(580px, 68vh, 690px);
}

.hero__portrait-shell {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(76%, 500px);
  aspect-ratio: 4 / 5;
  transform: translate(-50%, -50%);
}

.hero__portrait-shell::before {
  position: absolute;
  z-index: -1;
  inset: 10% -9% -5% 12%;
  border-radius: var(--radius-large);
  background: linear-gradient(145deg, rgba(47, 111, 237, 0.28), rgba(200, 164, 98, 0.06));
  filter: blur(1px);
  content: "";
  transform: rotate(3deg);
}

.hero__portrait-ring {
  position: absolute;
  z-index: -2;
  top: -13%;
  left: -24%;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 164, 98, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(200, 164, 98, 0.025);
}

.hero__portrait {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  background: var(--color-ink-soft);
  box-shadow: var(--shadow-float);
}

.hero__portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(9, 13, 20, 0.35) 100%),
    linear-gradient(90deg, rgba(47, 111, 237, 0.08), transparent 32%);
  content: "";
  pointer-events: none;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.92) contrast(1.035) brightness(1.035);
}

.hero-result {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 188px;
  padding: 15px 19px 14px;
  overflow: hidden;
  border: 1px solid var(--color-line-strong);
  border-radius: 14px 5px 14px 5px;
  background: linear-gradient(135deg, rgba(21, 32, 47, 0.94), rgba(10, 17, 27, 0.84));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.hero-result::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--color-bronze-light), var(--color-cobalt));
  content: "";
}

.hero-result strong {
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(31px, 2.55vw, 43px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.hero-result span {
  margin-top: 5px;
  color: rgba(247, 248, 250, 0.75);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-result--month {
  top: 7%;
  left: -1%;
}

.hero-result--ten-days {
  top: 44%;
  right: -2%;
}

.hero-result--two-days {
  bottom: 5%;
  left: 6%;
}

.order-anchor-placeholder {
  height: 1px;
  background: var(--color-ink);
}

@media (max-width: 1180px) {
  .topbar__inner {
    grid-template-columns: minmax(100px, 1fr) minmax(300px, auto) minmax(210px, 1fr);
    gap: 16px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 26px;
  }

  .hero__title {
    font-size: clamp(56px, 5.7vw, 72px);
  }

  .hero__visual {
    min-height: 600px;
  }

  .hero-result {
    min-width: 168px;
    padding-inline: 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --topbar-height: 74px;
    --page-gutter: clamp(18px, 4.5vw, 38px);
  }

  .topbar__inner {
    grid-template-columns: 42px minmax(0, 1fr) 142px;
    gap: 12px;
    padding-block: 8px;
  }

  .topbar__brand {
    width: 38px;
    height: 38px;
  }

  .topbar__message {
    font-size: 11.5px;
    line-height: 1.2;
  }

  .button--topbar {
    width: 142px;
    min-height: 42px;
    padding: 0.55rem 0.7rem;
    font-size: 11px;
    line-height: 1.15;
    white-space: normal;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 58px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__title {
    font-size: clamp(58px, 10vw, 82px);
  }

  .hero__contrast {
    font-size: clamp(27px, 4.5vw, 36px);
  }

  .hero__lead {
    max-width: 680px;
  }

  .hero__visual {
    width: min(100%, 690px);
    min-height: 720px;
    margin-inline: auto;
  }

  .hero__portrait-shell {
    width: min(72%, 500px);
  }

  .hero-result--month {
    left: 1%;
  }

  .hero-result--ten-days {
    right: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --topbar-height: 82px;
    --page-gutter: 18px;
  }

  .topbar__inner {
    grid-template-columns: 34px minmax(0, 1fr) 112px;
    gap: 8px;
    padding: 7px 12px;
  }

  .topbar__brand,
  .topbar__brand img {
    width: 32px;
    height: 32px;
  }

  .topbar__message {
    font-size: 9.7px;
    line-height: 1.17;
    letter-spacing: 0;
  }

  .button--topbar {
    width: 112px;
    min-height: 44px;
    padding: 0.46rem 0.55rem;
    font-size: 9.8px;
    line-height: 1.12;
  }

  .hero::before {
    background-size: 62px 62px;
    opacity: 0.62;
  }

  .hero::after {
    top: 40%;
    right: -48%;
    width: 112vw;
  }

  .hero__signal {
    bottom: 8%;
    width: 160%;
    height: 50%;
    transform: translateX(-27%);
  }

  .hero__inner {
    gap: 30px;
    padding-top: 38px;
    padding-bottom: 36px;
  }

  .hero__title {
    margin-bottom: 28px;
    font-size: clamp(44px, 13.25vw, 58px);
    line-height: 0.91;
    letter-spacing: -0.04em;
  }

  .hero__contrast {
    gap: 5px;
    margin-bottom: 20px;
    font-size: clamp(24px, 7vw, 29px);
    line-height: 1.13;
  }

  .hero__lead {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.46;
  }

  .hero__practice {
    align-items: flex-start;
    margin-bottom: 28px;
    font-size: 13.5px;
    line-height: 1.38;
  }

  .hero__practice::before {
    flex-basis: 28px;
    margin-top: 0.55em;
  }

  .hero__cta {
    width: 100%;
    min-height: 58px;
    padding-inline: 1rem;
    font-size: 13.3px;
  }

  .hero__visual {
    width: 100%;
    min-height: 550px;
  }

  .hero__portrait-shell {
    top: 48%;
    width: min(86%, 330px);
  }

  .hero__portrait-shell::before {
    inset: 9% -5% -4% 10%;
  }

  .hero__portrait-ring {
    top: -11%;
    left: -16%;
  }

  .hero-result {
    min-width: 145px;
    padding: 12px 13px 11px 15px;
    border-radius: 12px 4px 12px 4px;
  }

  .hero-result strong {
    font-size: 27px;
  }

  .hero-result span {
    margin-top: 4px;
    font-size: 10.5px;
  }

  .hero-result--month {
    top: 1%;
    left: 0;
  }

  .hero-result--ten-days {
    top: 43%;
    right: 0;
  }

  .hero-result--two-days {
    bottom: 0;
    left: 5%;
  }
}

@media (max-width: 360px) {
  :root {
    --topbar-height: 88px;
    --page-gutter: 15px;
  }

  .topbar__inner {
    grid-template-columns: 30px minmax(0, 1fr) 102px;
    gap: 6px;
    padding-inline: 9px;
  }

  .topbar__brand,
  .topbar__brand img {
    width: 29px;
    height: 29px;
  }

  .topbar__message {
    font-size: 9px;
  }

  .button--topbar {
    width: 102px;
    font-size: 9.1px;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__lead {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy > * {
    opacity: 0;
    animation: hero-rise 700ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
  }

  .hero__copy > :nth-child(1) {
    animation-delay: 80ms;
  }

  .hero__copy > :nth-child(2) {
    animation-delay: 160ms;
  }

  .hero__copy > :nth-child(3) {
    animation-delay: 240ms;
  }

  .hero__copy > :nth-child(4) {
    animation-delay: 320ms;
  }

  .hero__copy > :nth-child(5) {
    animation-delay: 400ms;
  }

  .hero__portrait-shell {
    opacity: 0;
    animation: portrait-reveal 900ms 160ms cubic-bezier(0.18, 0.78, 0.18, 1) forwards;
  }

  .hero-result {
    opacity: 0;
    animation: result-reveal 620ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
  }

  .hero-result--month {
    animation-delay: 520ms;
  }

  .hero-result--ten-days {
    animation-delay: 650ms;
  }

  .hero-result--two-days {
    animation-delay: 780ms;
  }

  .hero__signal path {
    stroke-dasharray: 1800;
    stroke-dashoffset: 1800;
    animation: signal-draw 1700ms 180ms ease-out forwards;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes portrait-reveal {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 22px)) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes result-reveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

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

@keyframes signal-draw {
  to {
    stroke-dashoffset: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Block 02: explanation and proof of the options multiplier. */

.options {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 6.5vw, 112px) 0 clamp(76px, 7vw, 124px);
  color: var(--color-ink);
  background:
    radial-gradient(circle at 91% 12%, rgba(47, 111, 237, 0.1), transparent 25%),
    linear-gradient(180deg, #f7f5ef 0%, var(--color-paper) 66%, #ece9e1 100%);
}

.options::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cobalt) 0 68%, var(--color-bronze) 68% 100%);
  content: "";
}

.options::after {
  position: absolute;
  z-index: -2;
  top: 5%;
  right: -17%;
  width: min(50vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(47, 111, 237, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(47, 111, 237, 0.018),
    0 0 0 144px rgba(47, 111, 237, 0.012);
  content: "";
}

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

.options__header {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.64fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
  padding-bottom: clamp(36px, 3.8vw, 58px);
  border-bottom: 1px solid rgba(9, 13, 20, 0.15);
}

.options__title {
  max-width: 930px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 94px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.options__title::first-line {
  color: var(--color-cobalt);
}

.options__intro {
  max-width: 540px;
  margin: 0 0 0.12em;
  color: rgba(9, 13, 20, 0.7);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.42;
}

.options__intro strong {
  display: block;
  margin-top: 0.24em;
  color: var(--color-ink);
  font-size: 1.12em;
  line-height: 1.3;
}

.options-comparison {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1.08fr);
  align-items: stretch;
  margin-top: clamp(44px, 4.7vw, 72px);
}

.options-path {
  position: relative;
  min-height: 280px;
  padding: clamp(30px, 2.8vw, 44px);
}

.options-path h3 {
  max-width: 430px;
  margin: 0 0 clamp(22px, 2vw, 32px);
  font-family: var(--font-display);
  font-size: clamp(28px, 2.25vw, 38px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.options-path p {
  max-width: 540px;
  margin: 0;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.42;
}

.options-path p + p {
  margin-top: 14px;
}

.options-path p:last-child {
  font-size: clamp(21px, 1.55vw, 27px);
  line-height: 1.23;
  letter-spacing: -0.018em;
}

.options-path--futures {
  padding-left: 0;
  border-top: 1px solid rgba(9, 13, 20, 0.2);
  border-bottom: 1px solid rgba(9, 13, 20, 0.2);
}

.options-path--futures::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 31%;
  height: 4px;
  background: var(--color-bronze);
  content: "";
}

.options-path--futures p:first-of-type {
  color: rgba(9, 13, 20, 0.58);
}

.options-path--options {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-large);
  color: var(--color-text);
  background:
    radial-gradient(circle at 92% 9%, rgba(75, 136, 255, 0.26), transparent 33%),
    linear-gradient(138deg, #101a29, #09101a 78%);
  box-shadow: 0 30px 72px rgba(20, 35, 58, 0.21);
}

.options-path--options::after {
  position: absolute;
  right: -20%;
  bottom: -50%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 164, 98, 0.24);
  border-radius: 50%;
  content: "";
}

.options-path--options p:first-of-type {
  color: rgba(247, 248, 250, 0.68);
}

.options-path--options p:last-child {
  max-width: 630px;
  color: var(--color-bronze-light);
}

.options-comparison__connector {
  position: relative;
  display: grid;
  place-items: center;
}

.options-comparison__connector span {
  position: absolute;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(47, 111, 237, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(47, 111, 237, 0.04);
}

.options-comparison__connector svg {
  position: relative;
  z-index: 1;
  width: 64px;
  fill: none;
  stroke: var(--color-cobalt);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.options-leverage {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 4.6vw, 78px);
  align-items: start;
  margin-top: clamp(42px, 4.8vw, 74px);
}

.options-leverage p {
  margin: 0;
}

.options-leverage p:first-child {
  color: rgba(9, 13, 20, 0.68);
  font-size: clamp(18px, 1.22vw, 21px);
  line-height: 1.48;
}

.options-leverage p:last-child {
  position: relative;
  max-width: 750px;
  padding-left: clamp(24px, 2.2vw, 36px);
  font-size: clamp(23px, 1.8vw, 31px);
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.options-leverage p:last-child::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(var(--color-cobalt), var(--color-bronze));
  content: "";
}

.options-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.12fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(58px, 5.6vw, 88px);
  padding: clamp(38px, 3.8vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  color: var(--color-text);
  background:
    radial-gradient(circle at 74% 36%, rgba(47, 111, 237, 0.22), transparent 34%),
    linear-gradient(132deg, #111b2a, #080d14 72%);
  box-shadow: 0 38px 90px rgba(16, 27, 43, 0.24);
}

.options-proof::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-bronze), var(--color-cobalt));
  content: "";
}

.options-proof::after {
  position: absolute;
  z-index: 0;
  right: -10%;
  bottom: -31%;
  width: 47%;
  aspect-ratio: 1;
  border: 1px solid rgba(75, 136, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.options-proof__copy,
.options-proof__figure,
.options-proof__closing {
  position: relative;
  z-index: 1;
}

.options-proof__copy h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(40px, 3.3vw, 56px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.options-proof__copy p {
  margin: 0;
  color: rgba(247, 248, 250, 0.75);
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.45;
}

.options-proof__figure {
  margin: 0;
}

.options-proof__figure::before {
  position: absolute;
  z-index: -1;
  inset: 8% -4% -5% 10%;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(47, 111, 237, 0.3), rgba(200, 164, 98, 0.08));
  content: "";
  transform: rotate(2deg);
}

.proof-shot {
  position: relative;
  display: block;
  width: min(100%, 610px);
  margin-left: auto;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  color: var(--color-text);
  background: rgba(243, 241, 235, 0.09);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.36);
  text-decoration: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.proof-shot picture {
  overflow: hidden;
  border-radius: 12px;
  background: #c9ccd0;
}

.proof-shot img {
  width: 100%;
  height: auto;
}

.proof-shot__action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-small);
  color: var(--color-text);
  background: rgba(7, 11, 17, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
}

.proof-shot__action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--color-bronze-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.proof-shot:hover {
  border-color: rgba(75, 136, 255, 0.8);
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.42);
  transform: translateY(-3px);
}

.options-proof__closing {
  grid-column: 1 / -1;
  max-width: 1280px;
  margin: 0;
  padding-top: clamp(24px, 2.4vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.022em;
}

.is-lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 70px clamp(18px, 4vw, 70px) 28px;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 11, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 18px;
  align-items: center;
  width: min(100%, 1280px);
  max-height: 100%;
}

.lightbox__figure {
  display: grid;
  gap: 16px;
  justify-items: center;
  min-width: 0;
  margin: 0;
}

.lightbox__figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 150px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  background: #c9ccd0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transition: opacity var(--transition-fast);
}

.lightbox__dialog.is-loading .lightbox__figure img {
  opacity: 0.36;
}

.lightbox__figure figcaption {
  max-width: 820px;
  color: rgba(247, 248, 250, 0.72);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.lightbox__close svg,
.lightbox__nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lightbox__close {
  position: fixed;
  z-index: 2;
  top: 16px;
  right: 18px;
}

.lightbox__nav:hover,
.lightbox__close:hover {
  border-color: var(--color-cobalt-bright);
  background: rgba(47, 111, 237, 0.18);
  transform: scale(1.04);
}

.lightbox__nav[hidden] {
  visibility: hidden;
}

@media (max-width: 1180px) {
  .options__header {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.68fr);
    gap: 36px;
  }

  .options-comparison {
    grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1.08fr);
  }

  .options-path {
    padding: 34px 26px;
  }

  .options-path--futures {
    padding-left: 0;
  }

  .options-proof {
    grid-template-columns: minmax(250px, 0.7fr) minmax(430px, 1.16fr);
    gap: 36px;
    padding: 42px;
  }
}

@media (max-width: 900px) {
  .options__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .options__intro {
    max-width: 680px;
  }

  .options-comparison {
    grid-template-columns: 1fr;
  }

  .options-path {
    min-height: 0;
  }

  .options-path--futures {
    padding: 32px 0;
  }

  .options-comparison__connector {
    min-height: 58px;
  }

  .options-comparison__connector svg {
    transform: rotate(90deg);
  }

  .options-path--options {
    padding: 36px;
  }

  .options-leverage {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .options-leverage p:first-child {
    max-width: 680px;
  }

  .options-proof {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .options-proof__copy {
    max-width: 680px;
  }

  .proof-shot {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .options {
    padding: 58px 0 72px;
  }

  .options::after {
    top: 3%;
    right: -58%;
    width: 126vw;
  }

  .options__header {
    gap: 20px;
    padding-bottom: 30px;
  }

  .options__title {
    font-size: clamp(40px, 11.8vw, 48px);
    line-height: 0.93;
  }

  .options__intro {
    font-size: 17px;
    line-height: 1.4;
  }

  .options-comparison {
    margin-top: 32px;
  }

  .options-path h3 {
    margin-bottom: 18px;
    font-size: 29px;
  }

  .options-path p {
    font-size: 16.5px;
  }

  .options-path p:last-child {
    font-size: 20px;
  }

  .options-path--futures {
    padding: 24px 0;
  }

  .options-comparison__connector {
    min-height: 52px;
  }

  .options-path--options {
    padding: 26px 20px 28px;
    border-radius: 20px;
  }

  .options-leverage {
    gap: 18px;
    margin-top: 38px;
  }

  .options-leverage p:first-child {
    font-size: 16.5px;
    line-height: 1.45;
  }

  .options-leverage p:last-child {
    padding-left: 18px;
    font-size: 20px;
    line-height: 1.3;
  }

  .options-proof {
    gap: 24px;
    margin: 48px calc(var(--page-gutter) * -1) 0;
    padding: 34px var(--page-gutter) 32px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .options-proof__copy h3 {
    margin-bottom: 16px;
    font-size: 36px;
  }

  .options-proof__copy p {
    font-size: 16.5px;
  }

  .proof-shot {
    padding: 6px;
    border-radius: 14px;
  }

  .proof-shot picture {
    border-radius: 8px;
  }

  .proof-shot__action {
    right: 13px;
    bottom: 13px;
    min-height: 38px;
    padding: 0.62rem 0.75rem;
    font-size: 10.5px;
  }

  .options-proof__closing {
    padding-top: 22px;
    font-size: 19px;
    line-height: 1.34;
  }

  .lightbox {
    padding: 64px 12px 18px;
  }

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

  .lightbox__nav {
    position: fixed;
    z-index: 2;
    bottom: 14px;
  }

  .lightbox__nav--previous {
    left: 14px;
  }

  .lightbox__nav--next {
    right: 14px;
  }

  .lightbox__figure img {
    max-height: calc(100svh - 164px);
    border-radius: 8px;
  }

  .lightbox__figure figcaption {
    font-size: 12px;
    line-height: 1.35;
  }
}

/* Block 03: real student trades. */

.results {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 7vw, 118px) 0 clamp(82px, 7.8vw, 130px);
  color: var(--color-text);
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 111, 237, 0.18), transparent 28%),
    radial-gradient(circle at 88% 38%, rgba(200, 164, 98, 0.08), transparent 26%),
    linear-gradient(145deg, #090d14 0%, #0d1622 52%, #070b11 100%);
}

.results::before {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-bronze) 0 28%, var(--color-cobalt) 28% 100%);
  content: "";
}

.results::after {
  position: absolute;
  z-index: -2;
  top: 0;
  right: -5%;
  width: min(58vw, 980px);
  height: 58%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: radial-gradient(circle at 50% 36%, #000 0%, transparent 72%);
  opacity: 0.8;
}

.results__signal {
  position: absolute;
  z-index: -1;
  top: 3%;
  left: 0;
  width: 100%;
  height: auto;
  fill: none;
  opacity: 0.24;
  pointer-events: none;
  stroke: url("#results-signal-gradient");
}

.results__signal path {
  stroke: rgba(75, 136, 255, 0.56);
  stroke-linecap: round;
  stroke-width: 1.4;
}

.results__signal circle {
  fill: var(--color-bronze);
  stroke: none;
}

.results__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.results__header {
  position: relative;
  padding-bottom: clamp(34px, 3.8vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.results__header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: min(35%, 420px);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-bronze));
  content: "";
}

.results__title {
  max-width: 1260px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 5.4vw, 88px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.results__title span {
  display: block;
  color: var(--color-bronze-light);
}

.results-featured {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
  align-items: start;
  margin-top: clamp(48px, 5vw, 80px);
}

.student-proof {
  min-width: 0;
  margin: 0;
}

.student-proof--982 {
  grid-column: 1 / span 4;
}

.student-proof--757 {
  grid-column: 5 / span 4;
  margin-top: clamp(48px, 4vw, 68px);
}

.student-proof--739 {
  grid-column: 9 / span 4;
  margin-top: clamp(20px, 1.8vw, 32px);
}

.student-proof__shot,
.student-thumbnail__shot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--color-text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0b111a;
  text-decoration: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.student-proof__shot {
  width: 100%;
  padding: clamp(6px, 0.6vw, 9px);
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 18px;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.42);
}

.student-proof--982 .student-proof__shot {
  height: clamp(540px, 42vw, 650px);
}

.student-proof--757 .student-proof__shot {
  aspect-ratio: 685 / 648;
}

.student-proof--739 .student-proof__shot {
  aspect-ratio: 448 / 555;
}

.student-proof__shot picture,
.student-thumbnail__shot picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #c9ccd0;
}

.student-proof__shot img,
.student-thumbnail__shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.student-proof__zoom,
.student-thumbnail__zoom {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--color-text);
  background: rgba(7, 11, 17, 0.88);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.student-proof__zoom {
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
}

.student-proof__zoom svg,
.student-thumbnail__zoom svg {
  fill: none;
  stroke: var(--color-bronze-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.student-proof__zoom svg {
  width: 22px;
  height: 22px;
}

.student-proof__shot:hover,
.student-thumbnail__shot:hover {
  border-color: rgba(75, 136, 255, 0.82);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.student-proof figcaption {
  display: flex;
  gap: 18px;
  align-items: baseline;
  margin-top: clamp(16px, 1.5vw, 24px);
}

.student-proof--757 figcaption {
  justify-content: flex-end;
}

.student-proof figcaption strong {
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(44px, 4.3vw, 68px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.035em;
}

.student-proof figcaption span {
  max-width: 120px;
  color: rgba(247, 248, 250, 0.68);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.results-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
  margin-top: clamp(52px, 5.2vw, 84px);
  padding-top: clamp(24px, 2.8vw, 38px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.student-thumbnail {
  min-width: 0;
  margin: 0;
}

.student-thumbnail__shot {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.student-thumbnail__shot picture {
  border-radius: 8px;
}

.student-thumbnail__zoom {
  right: 11px;
  bottom: 11px;
  width: 34px;
  height: 34px;
}

.student-thumbnail__zoom svg {
  width: 18px;
  height: 18px;
}

.student-thumbnail figcaption {
  margin-top: 12px;
  color: rgba(247, 248, 250, 0.7);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 650;
  line-height: 1.35;
}

.student-thumbnail figcaption strong {
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(25px, 2vw, 32px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.results__closing {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px clamp(24px, 2.5vw, 42px);
  align-items: start;
  margin-top: clamp(50px, 5.2vw, 84px);
  padding-top: clamp(34px, 3.3vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.results__closing p {
  margin: 0;
}

.results__closing p:first-child {
  grid-column: 1 / span 7;
  max-width: 830px;
  color: rgba(247, 248, 250, 0.78);
  font-size: clamp(19px, 1.4vw, 24px);
  line-height: 1.46;
}

.results__closing p:first-child strong {
  display: block;
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.results__closing p:nth-child(2) {
  grid-column: 9 / -1;
  color: var(--color-bronze-light);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.45;
}

.results__cta {
  grid-column: 9 / -1;
  justify-self: start;
  min-width: min(100%, 390px);
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .results-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .student-proof--982 {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .student-proof--757 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .student-proof--739 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 18px;
  }

  .student-proof--982 .student-proof__shot {
    height: clamp(540px, 60vw, 650px);
  }

  .student-proof--757 figcaption {
    justify-content: flex-start;
  }

  .student-proof figcaption strong {
    font-size: clamp(48px, 6vw, 68px);
  }
}

@media (max-width: 900px) {
  .results {
    padding-top: 72px;
  }

  .results__signal {
    top: 1%;
    width: 140%;
    opacity: 0.17;
    transform: translateX(-20%);
  }

  .results__title {
    font-size: clamp(50px, 8.4vw, 70px);
  }

  .results-thumbnails {
    gap: 14px;
  }

  .results__closing {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .results__closing p:first-child,
  .results__closing p:nth-child(2),
  .results__cta {
    grid-column: 1;
  }

  .results__closing p:nth-child(2) {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .results {
    padding: 64px 0 82px;
  }

  .results::after {
    right: -70%;
    width: 170vw;
    height: 30%;
    background-size: 38px 38px;
  }

  .results__header {
    padding-bottom: 28px;
  }

  .results__title {
    font-size: clamp(40px, 11.5vw, 50px);
    line-height: 0.96;
  }

  .results-featured {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 40px;
  }

  .student-proof--982,
  .student-proof--757,
  .student-proof--739 {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }

  .student-proof--982 .student-proof__shot {
    height: min(570px, 145vw);
  }

  .student-proof--739 {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .student-proof__shot {
    padding: 6px;
    border-radius: 14px;
  }

  .student-proof__shot picture {
    border-radius: 8px;
  }

  .student-proof__zoom {
    right: 13px;
    bottom: 13px;
    width: 40px;
    height: 40px;
  }

  .student-proof figcaption,
  .student-proof--757 figcaption {
    gap: 13px;
    justify-content: flex-start;
    margin-top: 14px;
  }

  .student-proof figcaption strong {
    font-size: 48px;
  }

  .student-proof figcaption span {
    font-size: 12px;
  }

  .results-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 10px;
    margin-top: 54px;
    padding-top: 26px;
  }

  .student-thumbnail:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 6px);
  }

  .student-thumbnail__shot {
    border-radius: 11px;
  }

  .student-thumbnail figcaption {
    margin-top: 11px;
    font-size: 12px;
  }

  .student-thumbnail figcaption strong {
    display: block;
    font-size: 28px;
    line-height: 1;
  }

  .results__closing {
    gap: 20px;
    margin-top: 52px;
    padding-top: 32px;
  }

  .results__closing p:first-child {
    font-size: 17px;
    line-height: 1.44;
  }

  .results__closing p:first-child strong {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .results__closing p:nth-child(2) {
    font-size: 16.5px;
  }

  .results__cta {
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    padding-inline: 1.15rem;
  }
}

/* Block 04: three properties and option myths */

.options-benefits {
  position: relative;
  overflow: clip;
  color: var(--color-ink);
  background: var(--color-paper);
}

.options-benefits__intro {
  position: relative;
  isolation: isolate;
  padding: clamp(82px, 7vw, 112px) 0 clamp(112px, 9vw, 152px);
}

.options-benefits__intro::before {
  position: absolute;
  z-index: -1;
  top: 3%;
  right: -12%;
  width: min(60vw, 960px);
  aspect-ratio: 1;
  border: 1px solid rgba(47, 111, 237, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(47, 111, 237, 0.025),
    0 0 0 210px rgba(47, 111, 237, 0.018);
  content: "";
}

.options-benefits__intro::after {
  position: absolute;
  z-index: -1;
  top: 16%;
  left: 0;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 111, 237, 0), rgba(47, 111, 237, 0.32));
  content: "";
  transform: rotate(-10deg);
  transform-origin: left center;
}

.options-benefits__inner,
.options-myths__inner {
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.options-benefits__header {
  position: relative;
  max-width: 1180px;
  padding-bottom: clamp(38px, 3.8vw, 56px);
}

.options-benefits__header::after {
  display: block;
  width: clamp(96px, 10vw, 150px);
  height: 4px;
  margin-top: clamp(24px, 2.5vw, 34px);
  background: linear-gradient(90deg, var(--color-cobalt), var(--color-bronze));
  content: "";
}

.options-benefits__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 4vw, 66px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.048em;
  text-transform: uppercase;
  text-wrap: balance;
}

.options-benefits__title span {
  display: block;
  color: var(--color-cobalt);
}

.option-properties {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(9, 13, 20, 0.2);
  border-bottom: 1px solid rgba(9, 13, 20, 0.2);
}

.option-property {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0 clamp(20px, 2.6vw, 38px) clamp(32px, 3vw, 44px);
}

.option-property:first-child {
  padding-left: 0;
}

.option-property:last-child {
  padding-right: 0;
}

.option-property + .option-property {
  border-left: 1px solid rgba(9, 13, 20, 0.2);
}

.option-property__copy h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.2vw, 34px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.option-property__copy h3 span {
  color: var(--color-cobalt);
}

.option-property__copy p {
  margin: 0;
  color: rgba(9, 13, 20, 0.76);
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.48;
}

.option-property__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  margin: 0 0 clamp(20px, 2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(9, 13, 20, 0.14);
  border-radius: clamp(16px, 1.8vw, 24px);
  background: #eeeae2;
  box-shadow: 0 18px 42px rgba(9, 13, 20, 0.11);
}

.option-property__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.options-video {
  margin-top: clamp(50px, 5vw, 72px);
}

.options-video__lead {
  max-width: 780px;
  margin: 0 auto clamp(24px, 2.4vw, 34px);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.3vw, 36px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
}

.options-video__frame {
  position: relative;
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  padding: clamp(6px, 0.65vw, 9px);
  border: 1px solid rgba(200, 164, 98, 0.58);
  border-radius: var(--radius-large);
  background: var(--color-ink);
  box-shadow: 0 30px 72px rgba(9, 13, 20, 0.24);
}

.options-video__frame::before,
.options-video__frame::after {
  position: absolute;
  z-index: 2;
  width: 76px;
  height: 5px;
  background: var(--color-cobalt-bright);
  content: "";
}

.options-video__frame::before {
  top: -3px;
  left: 9%;
}

.options-video__frame::after {
  right: 9%;
  bottom: -3px;
  background: var(--color-bronze);
}

.options-video__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: calc(var(--radius-large) - 8px);
  background: var(--color-ink-soft);
}

.options-myths {
  position: relative;
  isolation: isolate;
  padding: clamp(150px, 13vw, 220px) 0 clamp(120px, 10vw, 176px);
  color: var(--color-text);
  background: var(--color-ink);
}

.options-myths::before {
  position: absolute;
  z-index: -1;
  top: -72px;
  left: -3%;
  width: 106%;
  height: 150px;
  background: var(--color-ink);
  content: "";
  transform: rotate(-2.2deg);
}

.options-myths::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 80%, transparent);
}

.options-myths__header {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(260px, 3fr);
  gap: clamp(38px, 5vw, 80px);
  align-items: end;
  padding-bottom: clamp(70px, 7vw, 108px);
  border-bottom: 1px solid var(--color-line-strong);
}

.options-myths__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 5vw, 84px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-wrap: balance;
}

.options-myths__title span {
  display: block;
  color: var(--color-bronze-light);
}

.options-myths__header > p {
  margin: 0 0 4px;
  color: var(--color-text-muted);
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.5;
}

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

.option-myth {
  position: relative;
  min-height: 430px;
  padding: clamp(68px, 7vw, 110px) clamp(32px, 4.5vw, 74px) clamp(64px, 6vw, 96px) 0;
}

.option-myth + .option-myth {
  padding-right: 0;
  padding-left: clamp(32px, 4.5vw, 74px);
  border-left: 1px solid var(--color-line-strong);
}

.option-myth__number {
  display: block;
  margin-bottom: 42px;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(68px, 6vw, 104px);
  font-weight: 900;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(75, 136, 255, 0.64);
}

.option-myth h3 {
  max-width: 600px;
  margin: 0 0 26px;
  color: var(--color-text);
  font-size: clamp(25px, 2.25vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.option-myth p {
  max-width: 640px;
  margin: 0;
  color: rgba(247, 248, 250, 0.7);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
}

.options-myths__resolution {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(44px, 6vw, 100px);
  align-items: center;
  padding-top: clamp(72px, 7vw, 110px);
  border-top: 1px solid var(--color-line-strong);
}

.options-myths__forget {
  color: var(--color-cobalt-bright);
  font-family: var(--font-display);
  font-size: clamp(66px, 7vw, 118px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.options-myths__resolution-copy {
  padding-left: clamp(28px, 3vw, 48px);
  border-left: 4px solid var(--color-bronze);
}

.options-myths__resolution-copy p {
  margin: 0;
  color: rgba(247, 248, 250, 0.78);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.55;
}

.options-myths__resolution-copy p:first-child {
  color: var(--color-text);
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.38;
}

.options-myths__resolution-copy p + p {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .options-benefits__title {
    font-size: clamp(45px, 5.4vw, 56px);
  }

  .option-property {
    padding-inline: 18px;
  }

  .option-property:first-child {
    padding-left: 0;
  }

  .option-property:last-child {
    padding-right: 0;
  }

  .options-myths__header {
    grid-template-columns: 1fr;
  }

  .options-myths__header > p {
    max-width: 560px;
  }

  .option-myth {
    min-height: 0;
  }

  .options-myths__resolution {
    grid-template-columns: 1fr;
  }

  .options-myths__forget {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .options-benefits__intro {
    padding-top: 76px;
  }

  .options-benefits__intro::before {
    top: 1%;
    right: -45%;
    width: 110vw;
  }

  .options-benefits__title {
    font-size: clamp(42px, 7.8vw, 56px);
  }

  .option-properties {
    grid-template-columns: 1fr;
  }

  .option-property,
  .option-property:first-child,
  .option-property:last-child {
    display: grid;
    grid-template-columns: minmax(170px, 31%) 1fr;
    gap: clamp(22px, 4vw, 34px);
    align-items: center;
    padding: 28px 0;
  }

  .option-property + .option-property {
    border-top: 1px solid rgba(9, 13, 20, 0.2);
    border-left: 0;
  }

  .option-property__visual {
    margin: 0;
  }

  .options-myths__list {
    grid-template-columns: 1fr;
  }

  .option-myth,
  .option-myth + .option-myth {
    padding: 64px 0;
    border-left: 0;
  }

  .option-myth + .option-myth {
    border-top: 1px solid var(--color-line-strong);
  }
}

@media (max-width: 620px) {
  .options-benefits__intro {
    padding: 64px 0 112px;
  }

  .options-benefits__header {
    padding-bottom: 38px;
  }

  .options-benefits__header::after {
    height: 4px;
    margin-top: 22px;
  }

  .options-benefits__title {
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.043em;
  }

  .option-property,
  .option-property:first-child,
  .option-property:last-child {
    grid-template-columns: minmax(102px, 30vw) 1fr;
    gap: 14px;
    align-items: start;
    padding: 24px 0;
  }

  .option-property__copy h3 {
    margin-bottom: 10px;
    font-size: clamp(22px, 6.3vw, 27px);
    line-height: 1.04;
  }

  .option-property__copy p {
    font-size: 15.5px;
    line-height: 1.43;
  }

  .option-property__visual {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
  }

  .options-video {
    margin-top: 48px;
  }

  .options-video__lead {
    margin-bottom: 22px;
    font-size: 25px;
    text-align: left;
  }

  .options-video__frame {
    padding: 5px;
    border-radius: 15px;
  }

  .options-video__frame::before,
  .options-video__frame::after {
    width: 48px;
    height: 4px;
  }

  .options-myths {
    padding: 108px 0 104px;
  }

  .options-myths::before {
    top: -42px;
    height: 90px;
  }

  .options-myths::after {
    background-size: 36px 36px;
  }

  .options-myths__header {
    gap: 28px;
    padding-bottom: 54px;
  }

  .options-myths__title {
    font-size: clamp(39px, 11vw, 48px);
    line-height: 0.96;
  }

  .options-myths__header > p {
    font-size: 18px;
  }

  .option-myth,
  .option-myth + .option-myth {
    padding: 54px 0;
  }

  .option-myth__number {
    margin-bottom: 30px;
    font-size: 70px;
  }

  .option-myth h3 {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .option-myth p {
    font-size: 17px;
    line-height: 1.55;
  }

  .options-myths__resolution {
    gap: 42px;
    padding-top: 60px;
  }

  .options-myths__forget {
    font-size: clamp(62px, 19vw, 76px);
  }

  .options-myths__resolution-copy {
    padding-left: 20px;
    border-left-width: 3px;
  }

  .options-myths__resolution-copy p,
  .options-myths__resolution-copy p:first-child {
    font-size: 18px;
    line-height: 1.5;
  }

  .options-myths__resolution-copy p:first-child {
    font-size: 22px;
    line-height: 1.42;
  }

  .options-myths__resolution-copy p + p {
    margin-top: 22px;
  }
}

/* Block 05: training product showcase */

.product-showcase {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(96px, 8vw, 132px) 0 clamp(106px, 9vw, 150px);
  color: var(--color-ink);
  background:
    radial-gradient(circle at 83% 12%, rgba(47, 111, 237, 0.09), transparent 24%),
    linear-gradient(180deg, #f4f1ea 0%, #ece8df 100%);
}

.product-showcase::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -17%;
  width: min(64vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(47, 111, 237, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 92px rgba(47, 111, 237, 0.024),
    0 0 0 210px rgba(200, 164, 98, 0.018);
  content: "";
}

.product-showcase::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 38%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cobalt), var(--color-bronze), transparent);
  content: "";
}

.product-showcase__inner {
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.product-showcase__masthead {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(420px, 5fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
  margin-bottom: clamp(118px, 10vw, 166px);
}

.product-showcase__header {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.product-showcase__eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 30px;
  color: rgba(9, 13, 20, 0.66);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-showcase__eyebrow::before {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-cobalt), var(--color-bronze));
  content: "";
}

.product-showcase__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 5.6vw, 90px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-wrap: balance;
}

.product-showcase__title span {
  display: block;
  color: var(--color-cobalt);
}

.product-showcase__subtitle {
  max-width: 680px;
  margin: clamp(28px, 3vw, 42px) 0 0;
  color: rgba(9, 13, 20, 0.73);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.product-showcase__portrait {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0;
  justify-self: end;
}

.product-showcase__portrait picture {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(9, 13, 20, 0.2);
  border-radius: var(--radius-large);
  background: var(--color-ink);
  box-shadow: 0 34px 82px rgba(9, 13, 20, 0.25);
}

.product-showcase__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.product-showcase__quote {
  position: absolute;
  right: 30%;
  bottom: -74px;
  width: min(620px, calc(100% + 130px));
  margin: 0;
  padding: clamp(28px, 2.6vw, 40px) clamp(30px, 3vw, 48px);
  border: 1px solid rgba(226, 197, 138, 0.5);
  border-radius: var(--radius-medium);
  color: var(--color-text);
  background:
    linear-gradient(115deg, rgba(47, 111, 237, 0.16), transparent 45%),
    rgba(9, 13, 20, 0.96);
  box-shadow: 0 26px 62px rgba(9, 13, 20, 0.34);
}

.product-showcase__quote::before {
  position: absolute;
  top: -30px;
  left: 22px;
  color: var(--color-bronze-light);
  font-family: Georgia, serif;
  font-size: 88px;
  line-height: 1;
  content: "“";
}

.product-showcase__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 31px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.product-showcase__quote cite {
  display: block;
  margin-top: 18px;
  color: var(--color-bronze-light);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(9, 13, 20, 0.2);
  border-bottom: 1px solid rgba(9, 13, 20, 0.2);
}

.product-feature {
  display: grid;
  grid-column: span 2;
  grid-template-columns: clamp(88px, 8vw, 118px) minmax(0, 1fr);
  gap: clamp(20px, 2vw, 30px);
  align-items: start;
  min-width: 0;
  padding: clamp(38px, 3.6vw, 54px) clamp(24px, 3vw, 44px);
}

.product-feature:nth-child(1),
.product-feature:nth-child(2),
.product-feature:nth-child(3) {
  border-bottom: 1px solid rgba(9, 13, 20, 0.2);
}

.product-feature:nth-child(2),
.product-feature:nth-child(3),
.product-feature:nth-child(5) {
  border-left: 1px solid rgba(9, 13, 20, 0.2);
}

.product-feature:nth-child(4),
.product-feature:nth-child(5) {
  grid-column: span 3;
  grid-template-columns: clamp(108px, 9vw, 142px) minmax(0, 1fr);
}

.product-feature__visual {
  width: 100%;
  aspect-ratio: 1;
  transition: transform var(--transition-fast);
}

.product-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-feature:hover .product-feature__visual {
  transform: translateY(-4px);
}

.product-feature__copy h3 {
  margin: 0 0 13px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 31px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.product-feature__copy p {
  margin: 0;
  color: rgba(9, 13, 20, 0.69);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.5;
}

.product-journey {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
  margin-top: clamp(68px, 7vw, 104px);
  padding: clamp(42px, 4.6vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(226, 197, 138, 0.42);
  border-radius: var(--radius-large);
  color: var(--color-text);
  background:
    radial-gradient(circle at 78% 24%, rgba(47, 111, 237, 0.25), transparent 28%),
    linear-gradient(125deg, #0a0f17 0%, #121e2d 58%, #090d14 100%);
  box-shadow: 0 30px 72px rgba(9, 13, 20, 0.24);
}

.product-journey::before {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 85%);
  pointer-events: none;
}

.product-journey__copy,
.product-journey__cta {
  position: relative;
  z-index: 1;
}

.product-journey__lead {
  margin: 0 0 22px;
  color: rgba(247, 248, 250, 0.7);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
}

.product-journey__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(14px, 1.7vw, 26px);
  align-items: center;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.25vw, 36px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

.product-journey__steps b {
  color: var(--color-bronze-light);
  font-weight: 500;
}

.product-journey__steps span:last-child {
  color: var(--color-cobalt-bright);
}

.product-journey__cta {
  width: 100%;
  min-height: 76px;
  padding: 18px 24px;
  text-align: center;
}

.product-journey__cta span {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .product-showcase__masthead {
    grid-template-columns: minmax(0, 6.5fr) minmax(390px, 5.5fr);
    gap: 54px;
  }

  .product-showcase__title {
    font-size: clamp(55px, 6vw, 72px);
  }

  .product-feature {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    padding-inline: 24px;
  }

  .product-feature:nth-child(4),
  .product-feature:nth-child(5) {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .product-showcase__masthead {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-bottom: 86px;
  }

  .product-showcase__header {
    max-width: 760px;
  }

  .product-showcase__portrait {
    width: min(100%, 610px);
    max-width: none;
    justify-self: center;
  }

  .product-showcase__quote {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 34px);
    margin: -66px auto 0;
  }

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

  .product-feature,
  .product-feature:nth-child(4),
  .product-feature:nth-child(5) {
    grid-column: span 1;
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .product-feature:nth-child(1),
  .product-feature:nth-child(2),
  .product-feature:nth-child(3),
  .product-feature:nth-child(4) {
    border-bottom: 1px solid rgba(9, 13, 20, 0.2);
  }

  .product-feature:nth-child(3),
  .product-feature:nth-child(5) {
    border-left: 0;
  }

  .product-feature:nth-child(2),
  .product-feature:nth-child(4) {
    border-left: 1px solid rgba(9, 13, 20, 0.2);
  }

  .product-feature:nth-child(5) {
    grid-column: 1 / -1;
  }

  .product-journey {
    grid-template-columns: 1fr;
  }

  .product-journey__cta {
    width: min(100%, 440px);
  }
}

@media (max-width: 620px) {
  .product-showcase {
    padding: 72px 0 96px;
  }

  .product-showcase::before {
    right: -76%;
    width: 150vw;
  }

  .product-showcase__masthead {
    gap: 38px;
    margin-bottom: 64px;
  }

  .product-showcase__eyebrow {
    gap: 10px;
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 0.09em;
  }

  .product-showcase__eyebrow::before {
    width: 30px;
  }

  .product-showcase__title {
    font-size: clamp(43px, 12.6vw, 52px);
    line-height: 0.9;
    letter-spacing: -0.052em;
  }

  .product-showcase__subtitle {
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.28;
  }

  .product-showcase__portrait picture {
    border-radius: 20px;
  }

  .product-showcase__quote {
    width: calc(100% - 20px);
    margin-top: -36px;
    padding: 26px 22px 24px;
    border-radius: 13px;
  }

  .product-showcase__quote::before {
    top: -23px;
    left: 12px;
    font-size: 64px;
  }

  .product-showcase__quote p {
    font-size: 21px;
    line-height: 1.24;
  }

  .product-showcase__quote cite {
    margin-top: 14px;
    font-size: 11px;
  }

  .product-features {
    display: block;
  }

  .product-feature,
  .product-feature:nth-child(4),
  .product-feature:nth-child(5) {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 13, 20, 0.2);
    border-left: 0;
  }

  .product-feature:last-child {
    border-bottom: 0;
  }

  .product-feature__copy h3 {
    margin-bottom: 9px;
    font-size: 23px;
    line-height: 1.04;
  }

  .product-feature__copy p {
    font-size: 15.5px;
    line-height: 1.43;
  }

  .product-journey {
    gap: 34px;
    margin-top: 56px;
    padding: 32px 24px 26px;
    border-radius: 20px;
  }

  .product-journey__lead {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .product-journey__steps {
    display: grid;
    justify-items: start;
    gap: 12px;
    font-size: 27px;
    line-height: 1.02;
  }

  .product-journey__steps b {
    margin-left: 6px;
    transform: rotate(90deg);
  }

  .product-journey__cta {
    min-height: 74px;
    padding: 16px 18px;
  }

  .product-journey__cta span {
    font-size: 12.5px;
  }
}

/* Block 06: student path and verified results */
.student-path {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 7.5vw, 126px) 0 clamp(96px, 8vw, 138px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 8% 8%, rgba(47, 111, 237, 0.15), transparent 28%),
    radial-gradient(circle at 92% 38%, rgba(200, 164, 98, 0.09), transparent 26%),
    linear-gradient(180deg, #0a1018 0%, #0d1520 50%, #090e16 100%);
}

.student-path::before {
  position: absolute;
  top: 16%;
  right: -12%;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 136, 255, 0.48), rgba(226, 197, 138, 0.42), transparent);
  content: "";
  transform: rotate(-8deg);
  transform-origin: center;
  pointer-events: none;
}

.student-path__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.student-path__header {
  max-width: 1180px;
}

.student-path__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.2vw, 82px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.student-path__title span {
  display: block;
  margin-bottom: 0.12em;
  color: var(--color-bronze-light);
}

.student-path__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: clamp(58px, 5vw, 78px) 0 0;
  padding: 0;
  list-style: none;
}

.student-path__steps::before {
  position: absolute;
  top: 22px;
  right: 9.8%;
  left: 9.8%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-bronze), var(--color-cobalt-bright) 35%, var(--color-cobalt-bright) 78%, var(--color-bronze-light));
  box-shadow: 0 0 22px rgba(75, 136, 255, 0.2);
  content: "";
}

.student-path__steps::after {
  position: absolute;
  top: 16px;
  right: calc(9.8% - 7px);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--color-bronze-light);
  content: "";
}

.student-path-step {
  position: relative;
  min-width: 0;
  padding: 70px clamp(14px, 1.6vw, 24px) 0;
  text-align: center;
}

.student-path-step:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.student-path-step__number {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(226, 197, 138, 0.76);
  border-radius: 50%;
  color: var(--color-ink);
  background: var(--color-bronze-light);
  box-shadow:
    0 0 0 8px #0b121c,
    0 12px 34px rgba(0, 0, 0, 0.3);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.student-path-step h3 {
  min-height: 2.25em;
  margin: 0 0 13px;
  font-family: var(--font-display);
  font-size: clamp(21px, 1.65vw, 26px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.028em;
}

.student-path-step p {
  margin: 0;
  color: rgba(247, 248, 250, 0.68);
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 1.48;
}

.student-path__outcomes {
  margin-top: clamp(84px, 7vw, 112px);
  padding: clamp(34px, 3.7vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-large);
  color: var(--color-ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), transparent 42%),
    var(--color-paper);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.3);
}

.student-path__lead {
  max-width: 850px;
  margin: 0 0 clamp(28px, 2.8vw, 42px);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.7vw, 44px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.student-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.student-case {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 13, 20, 0.13);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(14, 23, 34, 0.11);
}

.student-case__header {
  display: grid;
  gap: 10px;
  min-height: 132px;
  align-content: center;
  padding: clamp(22px, 2vw, 30px);
  border-bottom: 1px solid rgba(9, 13, 20, 0.11);
}

.student-case__header strong {
  color: var(--color-cobalt);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.4vw, 39px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.036em;
  white-space: nowrap;
}

.student-case__header div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 18px;
  align-items: baseline;
}

.student-case__header span {
  font-size: 17px;
  font-weight: 750;
}

.student-case__header p {
  margin: 0;
  color: rgba(9, 13, 20, 0.64);
  font-size: 15px;
  line-height: 1.35;
}

.student-path-proof {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  background: #fff;
  text-decoration: none;
  cursor: zoom-in;
}

.student-path-proof picture {
  display: flex;
  width: 100%;
  min-height: 0;
}

.student-path-proof img {
  width: 100%;
}

.student-path-proof--case img {
  height: auto;
}

.student-path-proof__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 50%;
  color: #fff;
  background: rgba(9, 13, 20, 0.82);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.student-path-proof__zoom svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.student-path-proof:hover .student-path-proof__zoom,
.student-path-proof:focus-visible .student-path-proof__zoom {
  background: var(--color-cobalt);
  transform: scale(1.07);
}

.student-reviews {
  margin-top: clamp(84px, 7vw, 112px);
}

.student-reviews__title {
  max-width: 1050px;
  margin: 0 0 clamp(34px, 3vw, 48px);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.4vw, 70px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.student-reviews__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.student-review {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  grid-column: span 4;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(75, 136, 255, 0.08), transparent 40%),
    rgba(16, 24, 35, 0.94);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.student-review--tall {
  grid-row: span 2;
}

.student-review--wide {
  grid-column: span 6;
}

.student-review h4 {
  display: flex;
  min-height: 39px;
  align-items: center;
  margin: 0 0 12px;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.35vw, 22px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.student-path-proof--review {
  flex: 1 1 auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
}

.student-path-proof--review picture {
  height: 100%;
}

.student-path-proof--review img {
  height: 100%;
  object-fit: contain;
}

.student-path__closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(34px, 4vw, 72px);
  align-items: end;
  margin-top: clamp(70px, 6vw, 96px);
  padding-top: clamp(38px, 3.5vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.student-path__closing-copy {
  max-width: 780px;
}

.student-path__closing-copy p {
  margin: 0;
  color: rgba(247, 248, 250, 0.72);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.54;
}

.student-path__closing-copy p + p {
  margin-top: 20px;
  color: var(--color-text);
  font-weight: 720;
}

.student-path__cta {
  width: max-content;
  min-width: 520px;
  min-height: 70px;
  padding-inline: 34px;
  white-space: nowrap;
}

.student-path__cta span {
  font-size: 15px;
}

@media (max-width: 1180px) {
  .student-path-step {
    padding-inline: 14px;
  }

  .student-path-step h3 {
    font-size: 20px;
  }

  .student-path__outcomes {
    padding: 34px;
  }

  .student-case__header strong {
    font-size: 31px;
  }

  .student-reviews__grid {
    grid-auto-rows: 238px;
  }

  .student-path__closing {
    grid-template-columns: 1fr;
  }

  .student-path__cta {
    min-width: 500px;
  }
}

@media (max-width: 900px) {
  .student-path__title {
    font-size: clamp(48px, 8.2vw, 68px);
  }

  .student-path__steps {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .student-path__steps::before {
    top: 23px;
    right: auto;
    bottom: 23px;
    left: 23px;
    width: 2px;
    height: auto;
  }

  .student-path__steps::after {
    top: auto;
    right: auto;
    bottom: 12px;
    left: 17px;
    border-top: 10px solid var(--color-bronze-light);
    border-right: 7px solid transparent;
    border-bottom: 0;
    border-left: 7px solid transparent;
  }

  .student-path-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 0 0 26px;
    text-align: left;
  }

  .student-path-step:not(:last-child) {
    border-right: 0;
  }

  .student-path-step__number {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 1;
    transform: none;
  }

  .student-path-step > div {
    padding-top: 2px;
  }

  .student-path-step h3 {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 25px;
  }

  .student-path-step p {
    max-width: 660px;
    font-size: 15px;
  }

  .student-cases {
    grid-template-columns: 1fr;
  }

  .student-case__header {
    min-height: 0;
  }

  .student-case__header strong {
    font-size: clamp(30px, 5.2vw, 40px);
  }

  .student-reviews__grid {
    grid-auto-rows: 270px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .student-review,
  .student-review--wide {
    grid-column: span 1;
  }

  .student-review--tall {
    grid-row: span 2;
  }
}

@media (max-width: 620px) {
  .student-path {
    padding: 72px 0 90px;
  }

  .student-path::before {
    display: none;
  }

  .student-path__title {
    font-size: clamp(42px, 12.3vw, 50px);
    line-height: 0.92;
  }

  .student-path__steps {
    margin-top: 42px;
  }

  .student-path-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding-bottom: 24px;
  }

  .student-path__steps::before {
    left: 21px;
  }

  .student-path__steps::after {
    left: 15px;
  }

  .student-path-step__number {
    width: 42px;
    height: 42px;
    box-shadow:
      0 0 0 6px #0b121c,
      0 10px 26px rgba(0, 0, 0, 0.28);
    font-size: 18px;
  }

  .student-path-step h3 {
    font-size: 22px;
  }

  .student-path-step p {
    font-size: 14px;
    line-height: 1.44;
  }

  .student-path__outcomes {
    margin-top: 54px;
    padding: 24px 18px 18px;
    border-radius: 21px;
  }

  .student-path__lead {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .student-cases {
    gap: 16px;
  }

  .student-case {
    border-radius: 14px;
  }

  .student-case__header {
    gap: 9px;
    padding: 21px 17px;
  }

  .student-case__header strong {
    font-size: clamp(27px, 8.1vw, 34px);
    white-space: normal;
  }

  .student-case__header div {
    display: grid;
    gap: 4px;
  }

  .student-case__header span {
    font-size: 15px;
  }

  .student-case__header p {
    font-size: 14px;
  }

  .student-path-proof__zoom {
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
  }

  .student-reviews {
    margin-top: 68px;
  }

  .student-reviews__title {
    margin-bottom: 28px;
    font-size: clamp(37px, 10.9vw, 45px);
  }

  .student-reviews__grid {
    display: grid;
    grid-auto-columns: min(84vw, 330px);
    grid-auto-flow: column;
    grid-template-rows: 390px;
    grid-template-columns: none;
    gap: 13px;
    margin-inline: calc(var(--page-gutter) * -1);
    padding: 0 var(--page-gutter) 13px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page-gutter);
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(226, 197, 138, 0.5) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
  }

  .student-review,
  .student-review--tall,
  .student-review--wide {
    grid-column: auto;
    grid-row: auto;
    padding: 14px;
    scroll-snap-align: start;
  }

  .student-review h4 {
    min-height: 48px;
    margin-bottom: 10px;
    font-size: 19px;
  }

  .student-path__closing {
    gap: 30px;
    margin-top: 62px;
    padding-top: 34px;
  }

  .student-path__closing-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .student-path__closing-copy p + p {
    margin-top: 17px;
  }

  .student-path__cta {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    padding: 16px 18px;
    text-align: center;
    white-space: normal;
  }

  .student-path__cta span {
    font-size: 12.5px;
    line-height: 1.25;
  }
}

/* Block 07: position prepared for both market directions */
.two-directions {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 7vw, 118px) 0 clamp(96px, 8vw, 136px);
  color: var(--color-ink);
  background:
    radial-gradient(circle at 88% 10%, rgba(47, 111, 237, 0.1), transparent 24%),
    radial-gradient(circle at 5% 34%, rgba(200, 164, 98, 0.13), transparent 28%),
    linear-gradient(180deg, #f4f2ec 0%, #ebe8df 100%);
}

.two-directions::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(47, 111, 237, 0.5), rgba(200, 164, 98, 0.64), transparent 95%);
  content: "";
}

.two-directions__inner {
  position: relative;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.two-directions__header {
  max-width: 1260px;
}

.two-directions__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(51px, 5.1vw, 80px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.two-directions__title span {
  display: block;
  margin-bottom: 0.1em;
  color: var(--color-cobalt);
}

.two-directions__mechanics {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(28px, 3.8vw, 68px);
  align-items: start;
  margin-top: clamp(30px, 2.5vw, 38px);
}

.two-directions__copy {
  position: relative;
  z-index: 1;
}

.two-directions__lead,
.two-directions__payoff {
  margin: 0;
  font-size: clamp(18px, 1.34vw, 21px);
  line-height: 1.52;
}

.two-directions__lead {
  max-width: 720px;
}

.two-directions__setup {
  margin: 30px 0 17px;
  font-size: 16px;
  font-weight: 760;
}

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

.two-directions__branch {
  position: relative;
  display: flex;
  min-height: 116px;
  align-items: center;
  margin: 0;
  padding: 22px 20px 20px 24px;
  overflow: hidden;
  border-radius: 13px;
  color: #fff;
  box-shadow: 0 18px 42px rgba(9, 13, 20, 0.13);
}

.two-directions__branch::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
}

.two-directions__branch--up {
  background: linear-gradient(145deg, #193d83, #10233e);
}

.two-directions__branch--up::before {
  background: var(--color-cobalt-bright);
}

.two-directions__branch--down {
  background: linear-gradient(145deg, #514125, #1f2020);
}

.two-directions__branch--down::before {
  background: var(--color-bronze-light);
}

.two-directions__branch strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.45vw, 24px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.two-directions__branch span {
  color: var(--color-bronze-light);
}

.two-directions__branch--down span {
  color: var(--color-cobalt-bright);
}

.two-directions__payoff {
  margin-top: 24px;
  font-weight: 640;
}

.two-directions__visual {
  position: relative;
  min-width: 0;
  margin: -42px -4% -70px -8%;
}

.two-directions__visual::before {
  position: absolute;
  z-index: -1;
  inset: 18% 8% 19%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.12), rgba(200, 164, 98, 0.06) 48%, transparent 72%);
  content: "";
  filter: blur(20px);
}

.two-directions__visual img {
  width: 100%;
  filter: drop-shadow(0 28px 34px rgba(9, 13, 20, 0.14));
}

.two-directions__factors {
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(420px, 1.6fr) minmax(240px, 0.9fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  margin-top: clamp(30px, 3vw, 46px);
  padding: clamp(30px, 3vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: var(--color-text);
  background:
    linear-gradient(125deg, rgba(47, 111, 237, 0.13), transparent 38%),
    var(--color-ink-soft);
  box-shadow: 0 28px 74px rgba(9, 13, 20, 0.2);
}

.two-directions__factors > p {
  margin: 0;
  color: rgba(247, 248, 250, 0.72);
  font-size: 16px;
  line-height: 1.48;
}

.two-directions__factors > p:last-child {
  color: var(--color-text);
  font-weight: 720;
}

.two-directions__factor-list strong {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(21px, 1.72vw, 28px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.two-directions__factor-list span {
  position: relative;
  padding-left: 16px;
}

.two-directions__factor-list span::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-cobalt-bright);
  content: "";
  box-shadow: 0 0 0 4px rgba(75, 136, 255, 0.12);
}

.two-directions__question {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: center;
  margin: clamp(74px, 6vw, 98px) 0;
  padding: clamp(34px, 3.5vw, 50px) 0;
  border-top: 1px solid rgba(9, 13, 20, 0.17);
  border-bottom: 1px solid rgba(9, 13, 20, 0.17);
}

.two-directions__question > p {
  margin: 0;
  color: rgba(9, 13, 20, 0.62);
  font-size: 17px;
  font-weight: 720;
}

.two-directions__question div {
  display: grid;
  gap: 12px;
}

.two-directions__question strong {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.65vw, 43px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.036em;
}

.two-directions__question-line--old {
  color: rgba(9, 13, 20, 0.5);
}

.two-directions__question-line--new {
  color: var(--color-cobalt);
}

.two-directions__question-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.two-directions__question-line--old .two-directions__question-icon {
  color: rgba(9, 13, 20, 0.42);
  background: rgba(9, 13, 20, 0.055);
}

.two-directions__question-line--new .two-directions__question-icon {
  color: #fff;
  background: var(--color-cobalt);
  box-shadow: 0 12px 30px rgba(47, 111, 237, 0.24);
}

.two-directions__question-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.two-directions__proof {
  padding: clamp(34px, 4vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-large);
  color: var(--color-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 111, 237, 0.16), transparent 27%),
    linear-gradient(150deg, #111b28, #080d14 72%);
  box-shadow: 0 36px 100px rgba(9, 13, 20, 0.3);
}

.two-directions__proof-header {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.two-directions__proof-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.9vw, 61px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.two-directions__proof-header p {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(247, 248, 250, 0.7);
  font-size: 17px;
  line-height: 1.5;
}

.two-directions__video {
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  margin: clamp(34px, 3.5vw, 52px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: #05080c;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.38);
}

.two-directions__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.two-directions__student-intro {
  max-width: 880px;
  margin: clamp(42px, 4vw, 62px) auto 28px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.15vw, 34px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.028em;
  text-align: center;
}

.two-directions__screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 26px);
  width: min(100%, 1080px);
  margin-inline: auto;
}

.two-directions__screen {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 460px;
  align-items: center;
  justify-content: center;
  padding: 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: inherit;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  cursor: zoom-in;
  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.two-directions__screen:hover,
.two-directions__screen:focus-visible {
  border-color: rgba(75, 136, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.two-directions__screen picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.two-directions__screen img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 426px;
  border-radius: 13px;
}

.two-directions__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.31);
  border-radius: 50%;
  color: #fff;
  background: rgba(9, 13, 20, 0.84);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.two-directions__zoom svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.two-directions__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(48px, 4.5vw, 68px);
}

.two-directions__cta {
  width: max-content;
  min-width: 510px;
  min-height: 70px;
  padding-inline: 34px;
  white-space: nowrap;
}

.two-directions__cta span {
  font-size: 15px;
}

@media (max-width: 1100px) {
  .two-directions__mechanics {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    gap: 20px;
  }

  .two-directions__branches {
    grid-template-columns: 1fr;
  }

  .two-directions__branch {
    min-height: 86px;
  }

  .two-directions__visual {
    margin-inline: -8% -5%;
  }

  .two-directions__factors {
    grid-template-columns: 0.86fr 1.5fr;
  }

  .two-directions__factors > p:last-child {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (max-width: 900px) {
  .two-directions__title {
    font-size: clamp(47px, 8vw, 66px);
  }

  .two-directions__mechanics {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

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

  .two-directions__visual {
    width: min(100%, 690px);
    margin: -30px auto -58px;
  }

  .two-directions__question {
    grid-template-columns: 1fr;
  }

  .two-directions__question {
    gap: 20px;
  }

  .two-directions__proof-header p {
    max-width: 650px;
  }

  .two-directions__screens {
    grid-auto-columns: min(42vw, 330px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    width: auto;
    margin-inline: calc(clamp(34px, 4vw, 60px) * -1);
    padding: 0 clamp(34px, 4vw, 60px) 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: clamp(34px, 4vw, 60px);
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(226, 197, 138, 0.5) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
  }

  .two-directions__screen {
    min-height: 450px;
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  .two-directions {
    padding: 72px 0 90px;
  }

  .two-directions__title {
    font-size: clamp(39px, 11.5vw, 47px);
    line-height: 0.93;
  }

  .two-directions__mechanics {
    margin-top: 20px;
  }

  .two-directions__lead,
  .two-directions__payoff {
    font-size: 16px;
    line-height: 1.48;
  }

  .two-directions__setup {
    margin: 24px 0 13px;
    font-size: 15px;
  }

  .two-directions__branches {
    grid-template-columns: 1fr;
  }

  .two-directions__branch {
    min-height: 82px;
    padding: 18px 18px 17px 21px;
  }

  .two-directions__branch strong {
    font-size: 21px;
  }

  .two-directions__payoff {
    margin-top: 19px;
  }

  .two-directions__visual {
    width: calc(100% + 36px);
    margin: -16px -18px -42px;
  }

  .two-directions__factors {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: 28px;
    padding: 26px 22px;
    border-radius: 18px;
  }

  .two-directions__factors > p {
    font-size: 15px;
  }

  .two-directions__factors > p:last-child {
    grid-column: auto;
    padding-top: 18px;
  }

  .two-directions__factor-list strong {
    gap: 9px 15px;
    font-size: 23px;
  }

  .two-directions__question {
    margin: 58px 0;
    padding: 29px 0;
  }

  .two-directions__question > p {
    font-size: 15px;
  }

  .two-directions__question strong {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    font-size: clamp(27px, 8vw, 33px);
  }

  .two-directions__question-icon {
    width: 42px;
    height: 42px;
  }

  .two-directions__question-icon svg {
    width: 21px;
    height: 21px;
  }

  .two-directions__proof {
    padding: 28px 18px 22px;
    border-radius: 21px;
  }

  .two-directions__proof-header h3 {
    font-size: 38px;
  }

  .two-directions__proof-header p {
    font-size: 15px;
  }

  .two-directions__video {
    margin-top: 27px;
    border-radius: 12px;
  }

  .two-directions__student-intro {
    margin: 34px 0 23px;
    font-size: 25px;
    text-align: left;
  }

  .two-directions__screens {
    grid-auto-columns: min(82vw, 326px);
    margin-inline: -18px;
    padding: 0 18px 12px;
    scroll-padding-inline: 18px;
  }

  .two-directions__screen {
    min-height: 448px;
    padding: 14px;
  }

  .two-directions__screen img {
    max-height: 416px;
  }

  .two-directions__zoom {
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
  }

  .two-directions__action {
    margin-top: 42px;
  }

  .two-directions__cta {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    padding: 16px 18px;
    text-align: center;
    white-space: normal;
  }

  .two-directions__cta span {
    font-size: 12.5px;
    line-height: 1.25;
  }
}

@media (min-width: 1680px) {
  .two-directions__copy {
    transform: none;
  }

  .two-directions__visual {
    margin-top: -152px;
  }

  .two-directions__factors {
    margin-top: 72px;
  }
}

/* Block 08: event calendars */
.event-calendars {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 7vw, 112px) 0 clamp(94px, 7.5vw, 122px);
  color: var(--color-text);
  background:
    radial-gradient(circle at 82% 15%, rgba(47, 111, 237, 0.2), transparent 27%),
    radial-gradient(circle at 12% 80%, rgba(200, 164, 98, 0.12), transparent 31%),
    linear-gradient(155deg, #111a26 0%, #080d14 66%, #0c121b 100%);
}

.event-calendars::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 74%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 74%);
  pointer-events: none;
}

.event-calendars::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 6%, rgba(200, 164, 98, 0.72), rgba(75, 136, 255, 0.78), transparent 94%);
  content: "";
}

.event-calendars__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.event-calendars__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(450px, 0.92fr);
  gap: clamp(22px, 3vw, 54px);
  align-items: center;
}

.event-calendars__header {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.event-calendars__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.75vw, 74px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.event-calendars__title span {
  display: block;
}

.event-calendars__title span:last-child {
  margin-top: 0.12em;
  color: var(--color-bronze-light);
}

.event-calendars__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(247, 248, 250, 0.74);
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.52;
}

.event-calendars__gift {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.42;
}

.event-calendars__gift strong {
  color: var(--color-cobalt-bright);
  font-weight: 820;
}

.event-calendars__visual {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(126%, 790px);
  min-width: 0;
  margin: -54px 0 -76px;
  pointer-events: none;
  transform: translateX(-4%);
}

.event-calendars__visual::before {
  position: absolute;
  z-index: -1;
  inset: 19% 14% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.2), rgba(200, 164, 98, 0.08) 47%, transparent 72%);
  content: "";
  filter: blur(26px);
}

.event-calendars__visual img {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  filter: drop-shadow(0 36px 45px rgba(0, 0, 0, 0.38));
}

.event-calendars__tools {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  margin-top: clamp(26px, 2.2vw, 34px);
}

.event-calendars__tool {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 150px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(75, 136, 255, 0.095), transparent 42%),
    rgba(255, 255, 255, 0.052);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.event-calendars__tool:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(200, 164, 98, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.052);
}

.event-calendars__tool-icon {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: var(--color-bronze-light);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(145deg, #20324b, #0d1724);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 32px rgba(0, 0, 0, 0.28);
}

.event-calendars__tool-icon--dynamic {
  color: var(--color-cobalt-bright);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(145deg, #2e291f, #12151a);
}

.event-calendars__tool-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.event-calendars__tool-icon .event-calendars__icon-surface {
  fill: rgba(255, 255, 255, 0.055);
}

.event-calendars__tool-icon .event-calendars__icon-accent {
  fill: currentColor;
  opacity: 0.19;
}

.event-calendars__tool h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2vw, 32px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.event-calendars__tool p {
  max-width: 530px;
  margin: 9px 0 0;
  color: rgba(247, 248, 250, 0.67);
  font-size: 16px;
  line-height: 1.46;
}

.event-calendars__events {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: clamp(34px, 3vw, 48px);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.event-calendars__events-label {
  margin: 0;
  color: rgba(247, 248, 250, 0.6);
  font-size: 16px;
  font-weight: 740;
}

.event-calendars__events ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-calendars__events li {
  position: relative;
  margin: 0;
  padding: 0 6px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.45vw, 23px);
  font-stretch: condensed;
  font-weight: 760;
  line-height: 1.13;
  letter-spacing: -0.015em;
}

.event-calendars__events li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-bronze-light);
  box-shadow: 0 0 0 5px rgba(226, 197, 138, 0.09);
  content: "";
}

.event-calendars__proof {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(28px, 3.4vw, 54px);
  align-items: center;
  margin-top: clamp(38px, 3.8vw, 58px);
  padding: clamp(30px, 3vw, 44px) clamp(34px, 4vw, 60px);
  overflow: hidden;
  border: 1px solid rgba(75, 136, 255, 0.42);
  border-radius: 24px;
  background:
    linear-gradient(115deg, rgba(47, 111, 237, 0.28), rgba(47, 111, 237, 0.07) 48%, rgba(200, 164, 98, 0.09)),
    #111b29;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.28);
}

.event-calendars__proof::after {
  position: absolute;
  top: -90%;
  right: -6%;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 197, 138, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(226, 197, 138, 0.035),
    0 0 0 70px rgba(226, 197, 138, 0.022);
  content: "";
}

.event-calendars__proof-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--color-cobalt-bright) 0 62.5%, rgba(255, 255, 255, 0.12) 62.5% 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.event-calendars__proof-icon::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: #101a27;
  content: "";
}

.event-calendars__proof-icon svg {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  fill: none;
  stroke: var(--color-bronze-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.event-calendars__proof p {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(31px, 3.15vw, 50px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.038em;
  text-transform: uppercase;
}

.event-calendars__proof strong {
  font-weight: inherit;
}

.event-calendars__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(42px, 4vw, 60px);
}

.event-calendars__cta {
  width: max-content;
  min-width: 650px;
  min-height: 70px;
  padding-inline: 36px;
  white-space: nowrap;
}

.event-calendars__cta span {
  font-size: 14.5px;
}

@media (max-width: 1100px) {
  .event-calendars__intro {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 10px;
  }

  .event-calendars__visual {
    width: min(122%, 560px);
    margin: -44px 0 -66px;
    transform: translateX(-2%);
  }

  .event-calendars__events {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .event-calendars__events ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }
}

@media (max-width: 820px) {
  .event-calendars__intro {
    grid-template-columns: 1fr;
  }

  .event-calendars__header {
    max-width: 720px;
  }

  .event-calendars__visual {
    width: min(100%, 700px);
    margin: -30px auto -78px;
    transform: none;
  }

  .event-calendars__tools {
    grid-template-columns: 1fr;
  }

  .event-calendars__events {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-calendars__proof {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 28px;
  }

  .event-calendars__proof-icon {
    width: 92px;
    height: 92px;
  }

  .event-calendars__proof-icon svg {
    width: 50px;
    height: 50px;
  }

  .event-calendars__cta {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .event-calendars {
    padding: 72px 0 88px;
  }

  .event-calendars__title {
    font-size: clamp(39px, 11.4vw, 47px);
    line-height: 0.93;
  }

  .event-calendars__lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.48;
  }

  .event-calendars__gift {
    margin-top: 17px;
    font-size: 18px;
  }

  .event-calendars__visual {
    width: calc(100% + 48px);
    max-width: none;
    margin: -8px -24px -48px;
  }

  .event-calendars__tools {
    gap: 12px;
  }

  .event-calendars__tool {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 21px 18px;
    border-radius: 17px;
  }

  .event-calendars__tool-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .event-calendars__tool-icon svg {
    width: 49px;
    height: 49px;
  }

  .event-calendars__tool h3 {
    font-size: 24px;
  }

  .event-calendars__tool p {
    margin-top: 7px;
    font-size: 14.5px;
  }

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

  .event-calendars__events ul {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .event-calendars__events li {
    font-size: 21px;
  }

  .event-calendars__proof {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
    padding: 26px 22px 28px;
    border-radius: 19px;
  }

  .event-calendars__proof-icon {
    width: 82px;
    height: 82px;
  }

  .event-calendars__proof-icon svg {
    width: 44px;
    height: 44px;
  }

  .event-calendars__proof p {
    font-size: clamp(29px, 8.7vw, 36px);
  }

  .event-calendars__action {
    margin-top: 38px;
  }

  .event-calendars__cta {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    padding: 16px 18px;
    text-align: center;
    white-space: normal;
  }

  .event-calendars__cta span {
    font-size: 12.5px;
    line-height: 1.25;
  }
}

/* Block 09: limited risk */
.limited-risk {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 7vw, 116px) 0 clamp(96px, 7.5vw, 126px);
  color: var(--color-ink);
  background:
    radial-gradient(circle at 91% 12%, rgba(47, 111, 237, 0.1), transparent 25%),
    radial-gradient(circle at 4% 72%, rgba(200, 164, 98, 0.12), transparent 28%),
    linear-gradient(180deg, #f4f2ec 0%, #eae7de 100%);
}

.limited-risk::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(9, 13, 20, 0.12) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.14;
  pointer-events: none;
}

.limited-risk::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 6%, rgba(75, 136, 255, 0.65), rgba(200, 164, 98, 0.66), transparent 94%);
  content: "";
}

.limited-risk__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.limited-risk__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(20px, 2.7vw, 48px);
  align-items: center;
}

.limited-risk__hero-copy {
  position: relative;
  z-index: 2;
}

.limited-risk__title {
  max-width: 930px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(49px, 4.7vw, 75px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.limited-risk__title span {
  display: block;
}

.limited-risk__title span:first-child {
  color: var(--color-cobalt);
}

.limited-risk__title span:nth-child(2) {
  margin-top: 0.08em;
}

.limited-risk__title span:last-child {
  margin-top: 0.08em;
  color: #9b763e;
}

.limited-risk__lead {
  max-width: 800px;
  margin: 28px 0 0;
  color: rgba(9, 13, 20, 0.7);
  font-size: clamp(18px, 1.28vw, 21px);
  line-height: 1.52;
}

.limited-risk__metaphor {
  position: relative;
  min-width: 0;
  margin: -20px -11% -42px -9%;
  pointer-events: none;
}

.limited-risk__metaphor::before {
  position: absolute;
  z-index: -1;
  inset: 11% 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.12), rgba(200, 164, 98, 0.08) 46%, transparent 71%);
  content: "";
  filter: blur(22px);
}

.limited-risk__metaphor svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.limited-risk__route-glow {
  fill: none;
  stroke: rgba(47, 111, 237, 0.17);
  stroke-linecap: round;
  stroke-width: 26;
}

.limited-risk__route {
  fill: none;
  stroke: url("#limited-risk-route");
  stroke-linecap: round;
  stroke-width: 8;
}

.limited-risk__route-arrow {
  fill: none;
  stroke: var(--color-cobalt);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.limited-risk__stop path:first-child {
  fill: #f7f4ed;
  stroke: #bd5260;
  stroke-width: 5;
}

.limited-risk__stop-cross {
  fill: none;
  stroke: #bd5260;
  stroke-linecap: round;
  stroke-width: 7;
}

.limited-risk__stop-crack {
  fill: none;
  stroke: #4b3440;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.limited-risk__target circle:first-child {
  fill: rgba(200, 164, 98, 0.12);
  stroke: #b78b45;
  stroke-width: 5;
}

.limited-risk__target circle:nth-child(2) {
  fill: rgba(255, 255, 255, 0.78);
  stroke: #c8a462;
  stroke-width: 4;
}

.limited-risk__target circle:nth-child(3) {
  fill: url("#limited-risk-target");
}

.limited-risk__target path {
  fill: none;
  stroke: #8b6631;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.limited-risk__thesis {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  margin-top: clamp(32px, 3vw, 46px);
  padding: clamp(28px, 3vw, 42px) clamp(32px, 4vw, 60px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 23px;
  color: var(--color-text);
  background:
    linear-gradient(120deg, rgba(47, 111, 237, 0.23), transparent 48%),
    var(--color-ink-soft);
  box-shadow: 0 28px 74px rgba(9, 13, 20, 0.21);
}

.limited-risk__thesis::after {
  position: absolute;
  top: -120%;
  right: -5%;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 197, 138, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(226, 197, 138, 0.028),
    0 0 0 76px rgba(226, 197, 138, 0.018);
  content: "";
}

.limited-risk__thesis-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  color: var(--color-bronze-light);
  background: linear-gradient(145deg, #213856, #0d1724);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 17px 36px rgba(0, 0, 0, 0.28);
}

.limited-risk__thesis-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.limited-risk__shield-fill {
  fill: rgba(75, 136, 255, 0.13);
}

.limited-risk__thesis p {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.55vw, 41px);
  font-stretch: condensed;
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: -0.032em;
}

.limited-risk__thesis strong {
  font-weight: inherit;
}

.limited-risk__time {
  max-width: 980px;
  margin: clamp(30px, 3vw, 44px) auto 0;
  color: rgba(9, 13, 20, 0.76);
  font-size: clamp(18px, 1.38vw, 22px);
  font-weight: 650;
  line-height: 1.48;
  text-align: center;
}

.limited-risk__principles {
  margin-top: clamp(48px, 4.5vw, 68px);
}

.limited-risk__principles h3 {
  max-width: 940px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 47px);
  font-stretch: condensed;
  font-weight: 870;
  line-height: 1;
  letter-spacing: -0.038em;
}

.limited-risk__principle-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: var(--color-text);
  background: #101823;
  box-shadow: 0 24px 62px rgba(9, 13, 20, 0.18);
}

.limited-risk__principle {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 144px;
  padding: 25px 26px;
}

.limited-risk__principle + .limited-risk__principle {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.limited-risk__principle-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 19px;
  color: var(--color-bronze-light);
  background: linear-gradient(145deg, rgba(75, 136, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.limited-risk__principle-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.limited-risk__principle-icon .limited-risk__icon-fill {
  fill: rgba(75, 136, 255, 0.1);
}

.limited-risk__principle-icon .limited-risk__icon-accent {
  stroke: var(--color-cobalt-bright);
  stroke-width: 3.5;
}

.limited-risk__principle p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.75vw, 28px);
  font-stretch: condensed;
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.limited-risk__comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 26px);
  margin-top: clamp(48px, 4.5vw, 68px);
}

.limited-risk__comparison-item {
  position: relative;
  min-height: 300px;
  padding: clamp(30px, 3.2vw, 46px);
  overflow: hidden;
  border-radius: 23px;
}

.limited-risk__comparison-item::after {
  position: absolute;
  right: -75px;
  bottom: -105px;
  width: 230px;
  height: 230px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.08;
  box-shadow:
    0 0 0 32px currentColor,
    0 0 0 66px currentColor;
}

.limited-risk__comparison-item--futures {
  border: 1px solid rgba(132, 67, 78, 0.22);
  color: var(--color-ink);
  background:
    linear-gradient(145deg, rgba(189, 82, 96, 0.08), transparent 48%),
    #dedbd4;
  box-shadow: 0 22px 58px rgba(9, 13, 20, 0.12);
}

.limited-risk__comparison-item--option {
  border: 1px solid rgba(75, 136, 255, 0.32);
  color: var(--color-text);
  background:
    linear-gradient(145deg, rgba(47, 111, 237, 0.23), transparent 52%),
    #101925;
  box-shadow: 0 26px 70px rgba(9, 13, 20, 0.24);
}

.limited-risk__comparison-item header {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: center;
}

.limited-risk__comparison-icon {
  display: grid;
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 21px;
}

.limited-risk__comparison-item--futures .limited-risk__comparison-icon {
  color: #a64755;
  background: rgba(255, 255, 255, 0.37);
}

.limited-risk__comparison-item--option .limited-risk__comparison-icon {
  color: var(--color-bronze-light);
  background: rgba(255, 255, 255, 0.065);
}

.limited-risk__comparison-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.limited-risk__comparison-surface {
  fill: currentColor;
  opacity: 0.08;
}

.limited-risk__comparison-danger {
  fill: rgba(189, 82, 96, 0.12);
  stroke: #bd5260;
  stroke-width: 3;
}

.limited-risk__comparison-safe {
  stroke: var(--color-cobalt-bright);
  stroke-width: 4;
}

.limited-risk__comparison-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(31px, 3vw, 48px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.limited-risk__comparison-item p {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
}

.limited-risk__comparison-item--futures p {
  color: rgba(9, 13, 20, 0.69);
}

.limited-risk__comparison-item--option p {
  color: rgba(247, 248, 250, 0.76);
}

.limited-risk__conclusion {
  max-width: 1260px;
  margin: clamp(56px, 5vw, 78px) auto 0;
  padding: clamp(34px, 3vw, 48px) 0;
  border-top: 1px solid rgba(9, 13, 20, 0.18);
  border-bottom: 1px solid rgba(9, 13, 20, 0.18);
  font-family: var(--font-display);
  font-size: clamp(35px, 3.8vw, 60px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.043em;
  text-align: center;
  text-transform: uppercase;
}

.limited-risk__conclusion strong {
  font-weight: inherit;
}

.limited-risk__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(42px, 4vw, 60px);
}

.limited-risk__cta {
  width: max-content;
  min-width: 690px;
  min-height: 70px;
  padding-inline: 38px;
  white-space: nowrap;
}

.limited-risk__cta span {
  font-size: 14px;
}

@media (max-width: 1100px) {
  .limited-risk__hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 12px;
  }

  .limited-risk__metaphor {
    margin-inline: -13% -8%;
  }

  .limited-risk__principle {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding-inline: 20px;
  }

  .limited-risk__principle-icon {
    width: 58px;
    height: 58px;
  }

  .limited-risk__principle-icon svg {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 860px) {
  .limited-risk__hero {
    grid-template-columns: 1fr;
  }

  .limited-risk__metaphor {
    width: min(100%, 650px);
    margin: -36px auto -48px;
  }

  .limited-risk__principle-rail {
    grid-template-columns: 1fr;
  }

  .limited-risk__principle {
    min-height: 0;
  }

  .limited-risk__principle + .limited-risk__principle {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .limited-risk__comparison {
    grid-template-columns: 1fr;
  }

  .limited-risk__comparison-item {
    min-height: 0;
  }

  .limited-risk__cta {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .limited-risk {
    padding: 72px 0 90px;
  }

  .limited-risk__title {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 0.94;
  }

  .limited-risk__lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.48;
  }

  .limited-risk__metaphor {
    width: calc(100% + 40px);
    margin: -20px -20px -32px;
  }

  .limited-risk__thesis {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    margin-top: 28px;
    padding: 23px 19px;
    border-radius: 18px;
  }

  .limited-risk__thesis-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .limited-risk__thesis-icon svg {
    width: 49px;
    height: 49px;
  }

  .limited-risk__thesis p {
    font-size: clamp(21px, 6.4vw, 27px);
  }

  .limited-risk__time {
    margin-top: 26px;
    font-size: 16px;
    text-align: left;
  }

  .limited-risk__principles {
    margin-top: 42px;
  }

  .limited-risk__principles h3 {
    font-size: 30px;
  }

  .limited-risk__principle-rail {
    margin-top: 20px;
    border-radius: 18px;
  }

  .limited-risk__principle {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 18px;
  }

  .limited-risk__principle-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .limited-risk__principle-icon svg {
    width: 43px;
    height: 43px;
  }

  .limited-risk__principle p {
    font-size: 23px;
  }

  .limited-risk__comparison {
    gap: 12px;
    margin-top: 40px;
  }

  .limited-risk__comparison-item {
    padding: 24px 20px 27px;
    border-radius: 18px;
  }

  .limited-risk__comparison-item header {
    gap: 15px;
  }

  .limited-risk__comparison-icon {
    width: 62px;
    height: 62px;
    border-radius: 17px;
  }

  .limited-risk__comparison-icon svg {
    width: 47px;
    height: 47px;
  }

  .limited-risk__comparison-item h3 {
    font-size: 33px;
  }

  .limited-risk__comparison-item p {
    margin-top: 20px;
    font-size: 16px;
  }

  .limited-risk__conclusion {
    margin-top: 46px;
    padding: 30px 0;
    font-size: clamp(29px, 8.6vw, 36px);
    text-align: left;
  }

  .limited-risk__action {
    margin-top: 38px;
  }

  .limited-risk__cta {
    min-height: 74px;
    padding: 16px 18px;
    text-align: center;
  }

  .limited-risk__cta span {
    font-size: 12.3px;
    line-height: 1.25;
  }
}

/* Block 10: options analytics */
.options-analytics {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 6.8vw, 112px) 0 clamp(92px, 7vw, 118px);
  color: var(--color-text);
  background:
    radial-gradient(circle at 78% 17%, rgba(47, 111, 237, 0.2), transparent 31%),
    radial-gradient(circle at 11% 84%, rgba(200, 164, 98, 0.12), transparent 29%),
    linear-gradient(148deg, #0b111a 0%, #111b29 52%, #080d14 100%);
}

.options-analytics::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  opacity: 0.42;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.options-analytics::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 6%, rgba(200, 164, 98, 0.72), rgba(75, 136, 255, 0.72), transparent 94%);
  content: "";
}

.options-analytics__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.options-analytics__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(450px, 0.92fr);
  gap: clamp(10px, 1.8vw, 28px);
  align-items: center;
}

.options-analytics__copy {
  position: relative;
  z-index: 2;
}

.options-analytics__title {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 78px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.options-analytics__title span {
  display: block;
}

.options-analytics__title span:nth-child(2) {
  margin-top: 0.08em;
}

.options-analytics__title span:last-child {
  margin-top: 0.08em;
  color: var(--color-bronze-light);
}

.options-analytics__lead {
  max-width: 770px;
  margin: 26px 0 0;
  color: rgba(247, 248, 250, 0.7);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.5;
}

.options-analytics__thesis {
  max-width: 790px;
  margin: 27px 0 0;
  padding: 19px 0 19px 24px;
  border-left: 3px solid var(--color-cobalt-bright);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.3vw, 37px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.032em;
}

.options-analytics__thesis strong {
  font-weight: inherit;
}

.options-analytics__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: -54px -11% -68px -15%;
  pointer-events: none;
}

.options-analytics__visual::before {
  position: absolute;
  z-index: -1;
  inset: 15% 11% 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 136, 255, 0.2), rgba(200, 164, 98, 0.08) 45%, transparent 72%);
  content: "";
  filter: blur(34px);
}

.options-analytics__visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.3));
}

.options-analytics__reading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.75fr);
  gap: clamp(28px, 3.5vw, 56px);
  align-items: stretch;
  margin-top: clamp(36px, 3.6vw, 54px);
  padding: clamp(28px, 3vw, 42px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.options-analytics__reading-intro {
  margin: 0;
  align-self: center;
  color: rgba(247, 248, 250, 0.86);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.1vw, 34px);
  font-stretch: condensed;
  font-weight: 790;
  line-height: 1.06;
  letter-spacing: -0.027em;
}

.options-analytics__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.options-analytics__signal {
  display: grid;
  grid-template-rows: 62px minmax(0, 1fr);
  gap: 17px;
  padding: 3px clamp(20px, 2vw, 31px);
}

.options-analytics__signal + .options-analytics__signal {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.options-analytics__signal-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: var(--color-bronze-light);
  background: linear-gradient(145deg, rgba(75, 136, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.options-analytics__signal-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.options-analytics__signal-icon circle {
  fill: rgba(75, 136, 255, 0.16);
}

.options-analytics__signal-accent {
  stroke: var(--color-cobalt-bright);
  stroke-width: 3.3;
}

.options-analytics__signal p {
  margin: 0;
  color: rgba(247, 248, 250, 0.74);
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 650;
  line-height: 1.42;
}

.options-analytics__conclusion {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(24px, 2.8vw, 42px);
  align-items: center;
  max-width: 1260px;
  margin: clamp(43px, 4vw, 60px) auto 0;
  padding: clamp(27px, 2.8vw, 39px) clamp(30px, 3.6vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(75, 136, 255, 0.27);
  border-radius: 23px;
  background:
    linear-gradient(115deg, rgba(47, 111, 237, 0.21), transparent 47%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.options-analytics__conclusion::after {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(226, 197, 138, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(226, 197, 138, 0.025),
    0 0 0 72px rgba(226, 197, 138, 0.018);
  content: "";
}

.options-analytics__conclusion-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(226, 197, 138, 0.32);
  border-radius: 50%;
  color: var(--color-bronze-light);
  background: rgba(9, 13, 20, 0.42);
}

.options-analytics__conclusion-icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.options-analytics__conclusion-icon path:first-of-type {
  fill: rgba(75, 136, 255, 0.24);
  stroke: var(--color-cobalt-bright);
}

.options-analytics__conclusion p {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(29px, 2.75vw, 43px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: -0.034em;
}

.options-analytics__conclusion strong {
  font-weight: inherit;
}

.options-analytics__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 3.5vw, 50px);
}

.options-analytics__cta {
  width: max-content;
  min-width: 620px;
  min-height: 70px;
  padding-inline: 38px;
  white-space: nowrap;
}

.options-analytics__cta span {
  font-size: 14px;
}

@media (max-width: 1100px) {
  .options-analytics__hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  }

  .options-analytics__visual {
    margin-inline: -18% -8%;
  }

  .options-analytics__reading {
    grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.6fr);
  }

  .options-analytics__signal {
    padding-inline: 18px;
  }
}

@media (max-width: 900px) {
  .options-analytics__hero,
  .options-analytics__reading {
    grid-template-columns: 1fr;
  }

  .options-analytics__visual {
    width: min(100%, 720px);
    margin: -34px auto -74px;
  }

  .options-analytics__reading {
    gap: 30px;
  }

  .options-analytics__reading-intro {
    max-width: 700px;
  }

  .options-analytics__cta {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .options-analytics {
    padding: 72px 0 88px;
  }

  .options-analytics__title {
    font-size: clamp(39px, 11vw, 48px);
    line-height: 0.93;
  }

  .options-analytics__lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.48;
  }

  .options-analytics__thesis {
    margin-top: 23px;
    padding: 15px 0 15px 18px;
    font-size: clamp(24px, 7.4vw, 31px);
  }

  .options-analytics__visual {
    width: calc(100% + 56px);
    margin: -12px -28px -46px;
  }

  .options-analytics__reading {
    gap: 24px;
    margin-top: 30px;
    padding: 27px 0;
  }

  .options-analytics__reading-intro {
    font-size: 27px;
  }

  .options-analytics__signals {
    grid-template-columns: 1fr;
  }

  .options-analytics__signal {
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
  }

  .options-analytics__signal + .options-analytics__signal {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .options-analytics__signal-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .options-analytics__signal-icon svg {
    width: 45px;
    height: 45px;
  }

  .options-analytics__signal p {
    font-size: 16px;
  }

  .options-analytics__conclusion {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 17px;
    margin-top: 36px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .options-analytics__conclusion-icon {
    width: 66px;
    height: 66px;
  }

  .options-analytics__conclusion-icon svg {
    width: 52px;
    height: 52px;
  }

  .options-analytics__conclusion p {
    font-size: clamp(23px, 6.5vw, 29px);
  }

  .options-analytics__action {
    margin-top: 31px;
  }

  .options-analytics__cta {
    min-height: 66px;
    padding-inline: 18px;
  }

  .options-analytics__cta span {
    font-size: 12.5px;
    line-height: 1.24;
  }
}

/* Block 11: portfolio protection */
.portfolio-protection {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 6.6vw, 108px) 0 clamp(92px, 7vw, 116px);
  color: var(--color-ink);
  background:
    radial-gradient(circle at 82% 16%, rgba(47, 111, 237, 0.13), transparent 27%),
    radial-gradient(circle at 13% 58%, rgba(200, 164, 98, 0.12), transparent 25%),
    linear-gradient(180deg, #f5f3ee 0%, #eeece6 100%);
}

.portfolio-protection::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 7%, rgba(47, 111, 237, 0.7), rgba(200, 164, 98, 0.7), transparent 93%);
  content: "";
}

.portfolio-protection::after {
  position: absolute;
  top: 5%;
  right: -9vw;
  width: min(43vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(47, 111, 237, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(47, 111, 237, 0.018),
    0 0 0 104px rgba(200, 164, 98, 0.012);
  content: "";
  pointer-events: none;
}

.portfolio-protection__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.portfolio-protection__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(450px, 0.96fr);
  gap: clamp(12px, 2.5vw, 40px);
  align-items: center;
}

.portfolio-protection__copy {
  position: relative;
  z-index: 2;
}

.portfolio-protection__title {
  max-width: 930px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 4.65vw, 73px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.portfolio-protection__title span {
  display: block;
}

.portfolio-protection__title span:last-child {
  margin-top: 0.09em;
  color: var(--color-cobalt);
}

.portfolio-protection__lead {
  max-width: 780px;
  margin: 26px 0 0;
  color: rgba(9, 13, 20, 0.7);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.5;
}

.portfolio-protection__key-point {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(20px, 2vw, 29px);
  align-items: center;
  max-width: 820px;
  margin-top: 29px;
  padding: clamp(22px, 2.2vw, 31px);
  overflow: hidden;
  border: 1px solid rgba(47, 111, 237, 0.2);
  border-radius: 21px;
  color: var(--color-text);
  background:
    linear-gradient(120deg, rgba(47, 111, 237, 0.2), transparent 46%),
    linear-gradient(145deg, #111b29, #09111b);
  box-shadow: 0 24px 58px rgba(9, 13, 20, 0.17);
}

.portfolio-protection__key-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(226, 197, 138, 0.34);
  border-radius: 20px;
  color: var(--color-bronze-light);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.portfolio-protection__key-icon svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.portfolio-protection__key-shield {
  fill: rgba(47, 111, 237, 0.21);
  stroke: var(--color-cobalt-bright);
}

.portfolio-protection__key-point p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.15vw, 34px);
  font-stretch: condensed;
  font-weight: 820;
  line-height: 1.07;
  letter-spacing: -0.029em;
}

.portfolio-protection__key-point strong {
  font-weight: inherit;
}

.portfolio-protection__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: -54px -12% -28px -17%;
  pointer-events: none;
}

.portfolio-protection__visual::before {
  position: absolute;
  z-index: -1;
  inset: 20% 10% 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.19), rgba(200, 164, 98, 0.09) 45%, transparent 73%);
  content: "";
  filter: blur(32px);
}

.portfolio-protection__visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 34px rgba(9, 13, 20, 0.2));
}

.portfolio-protection__result {
  margin-top: clamp(45px, 4.2vw, 63px);
}

.portfolio-protection__result-intro {
  margin: 0 0 clamp(24px, 2.4vw, 34px);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.8vw, 43px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.035em;
  text-align: center;
}

.portfolio-protection__formula {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 0.9fr) 52px minmax(0, 1.2fr);
  gap: clamp(12px, 1.4vw, 22px);
  align-items: center;
}

.portfolio-protection__formula-part {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: clamp(17px, 1.8vw, 26px);
  align-items: center;
  min-height: 148px;
  padding: clamp(22px, 2.2vw, 31px);
  border: 1px solid rgba(9, 13, 20, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(9, 13, 20, 0.08);
}

.portfolio-protection__formula-part--outcome {
  border-color: rgba(47, 111, 237, 0.25);
  color: var(--color-text);
  background:
    linear-gradient(130deg, rgba(47, 111, 237, 0.25), transparent 48%),
    var(--color-ink-soft);
  box-shadow: 0 24px 56px rgba(9, 13, 20, 0.16);
}

.portfolio-protection__formula-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(47, 111, 237, 0.18);
  border-radius: 18px;
  color: var(--color-cobalt);
  background: linear-gradient(145deg, rgba(47, 111, 237, 0.12), rgba(255, 255, 255, 0.64));
}

.portfolio-protection__formula-part--outcome .portfolio-protection__formula-icon {
  border-color: rgba(226, 197, 138, 0.3);
  color: var(--color-bronze-light);
  background: rgba(255, 255, 255, 0.06);
}

.portfolio-protection__formula-icon svg {
  width: 54px;
  height: 54px;
  fill: rgba(47, 111, 237, 0.09);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.portfolio-protection__formula-icon-accent {
  stroke: var(--color-bronze);
  stroke-width: 3;
}

.portfolio-protection__formula-part strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-stretch: condensed;
  font-weight: 880;
  line-height: 1.02;
  letter-spacing: -0.032em;
}

.portfolio-protection__operator {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--color-bronze-light), #a17835);
  box-shadow: 0 14px 28px rgba(168, 120, 53, 0.22);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.portfolio-protection__video-section {
  margin-top: clamp(54px, 5vw, 76px);
}

.portfolio-protection__video-title {
  max-width: 850px;
  margin: 0 auto clamp(25px, 2.5vw, 36px);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.8vw, 43px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-align: center;
}

.portfolio-protection__video {
  position: relative;
  width: min(100%, 900px);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  padding: clamp(6px, 0.65vw, 9px);
  border: 1px solid rgba(200, 164, 98, 0.58);
  border-radius: 22px;
  background: var(--color-ink);
  box-shadow: 0 28px 70px rgba(9, 13, 20, 0.2);
}

.portfolio-protection__video::before,
.portfolio-protection__video::after {
  position: absolute;
  z-index: 2;
  width: 72px;
  height: 4px;
  content: "";
}

.portfolio-protection__video::before {
  top: -2px;
  left: 10%;
  background: var(--color-cobalt-bright);
}

.portfolio-protection__video::after {
  right: 10%;
  bottom: -2px;
  background: var(--color-bronze);
}

.portfolio-protection__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
  background: var(--color-ink-soft);
}

.portfolio-protection__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 3.4vw, 49px);
}

.portfolio-protection__cta {
  width: max-content;
  min-width: 590px;
  min-height: 70px;
  padding-inline: 38px;
  white-space: nowrap;
}

.portfolio-protection__cta span {
  font-size: 14px;
}

@media (max-width: 1180px) {
  .portfolio-protection__hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  }

  .portfolio-protection__visual {
    margin-inline: -21% -8%;
  }

  .portfolio-protection__formula {
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 0.92fr) 44px minmax(0, 1.16fr);
    gap: 12px;
  }

  .portfolio-protection__formula-part {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 15px;
    padding: 22px 18px;
  }

  .portfolio-protection__formula-icon {
    width: 58px;
    height: 58px;
  }

  .portfolio-protection__formula-icon svg {
    width: 47px;
    height: 47px;
  }

  .portfolio-protection__operator {
    width: 44px;
    height: 44px;
    font-size: 29px;
  }
}

@media (max-width: 900px) {
  .portfolio-protection__hero {
    grid-template-columns: 1fr;
  }

  .portfolio-protection__visual {
    width: min(100%, 760px);
    margin: -44px auto -26px;
  }

  .portfolio-protection__formula {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .portfolio-protection__formula-part {
    min-height: 0;
  }

  .portfolio-protection__operator {
    margin-inline: auto;
  }

  .portfolio-protection__cta {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .portfolio-protection {
    padding: 72px 0 88px;
  }

  .portfolio-protection__title {
    font-size: clamp(38px, 10.7vw, 47px);
    line-height: 0.94;
  }

  .portfolio-protection__lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.48;
  }

  .portfolio-protection__key-point {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .portfolio-protection__key-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .portfolio-protection__key-icon svg {
    width: 48px;
    height: 48px;
  }

  .portfolio-protection__key-point p {
    font-size: clamp(22px, 6.3vw, 27px);
  }

  .portfolio-protection__visual {
    width: calc(100% + 48px);
    margin: -17px -24px -10px;
  }

  .portfolio-protection__result {
    margin-top: 34px;
  }

  .portfolio-protection__result-intro {
    margin-bottom: 22px;
    font-size: clamp(27px, 8vw, 34px);
  }

  .portfolio-protection__formula {
    gap: 12px;
  }

  .portfolio-protection__formula-part {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 21px 18px;
    border-radius: 17px;
  }

  .portfolio-protection__formula-part strong {
    font-size: clamp(23px, 6.4vw, 28px);
  }

  .portfolio-protection__video-section {
    margin-top: 49px;
  }

  .portfolio-protection__video-title {
    margin-bottom: 23px;
    font-size: clamp(26px, 7.3vw, 32px);
  }

  .portfolio-protection__video {
    padding: 5px;
    border-radius: 17px;
  }

  .portfolio-protection__video iframe {
    border-radius: 11px;
  }

  .portfolio-protection__action {
    margin-top: 31px;
  }

  .portfolio-protection__cta {
    min-height: 66px;
    padding-inline: 18px;
  }

  .portfolio-protection__cta span {
    font-size: 12.5px;
    line-height: 1.24;
  }
}

/* Block 12: simple trading and mentorship */
.strategy-mentor {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 6.6vw, 108px) 0 clamp(90px, 6.8vw, 114px);
  color: var(--color-text);
  background:
    radial-gradient(circle at 84% 20%, rgba(47, 111, 237, 0.18), transparent 29%),
    radial-gradient(circle at 8% 78%, rgba(200, 164, 98, 0.1), transparent 24%),
    linear-gradient(145deg, #0b1119 0%, #111b29 52%, #080d14 100%);
}

.strategy-mentor::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  opacity: 0.34;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 23%, #000 80%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 23%, #000 80%, transparent);
}

.strategy-mentor::after {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 7%, rgba(200, 164, 98, 0.74), rgba(75, 136, 255, 0.74), transparent 93%);
  content: "";
}

.strategy-mentor__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.strategy-mentor__scene {
  display: grid;
  grid-template-areas:
    "intro portrait"
    "message portrait"
    "action portrait";
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  grid-template-rows: auto auto 1fr;
  gap: 0 clamp(38px, 4.2vw, 66px);
  align-items: start;
}

.strategy-mentor__intro {
  grid-area: intro;
  position: relative;
  z-index: 2;
}

.strategy-mentor__title {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.55vw, 72px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.strategy-mentor__title span {
  display: block;
}

.strategy-mentor__title span:last-child {
  margin-top: 0.09em;
  color: var(--color-bronze-light);
}

.strategy-mentor__lead {
  max-width: 760px;
  margin: 25px 0 0;
  color: rgba(247, 248, 250, 0.7);
  font-size: clamp(17px, 1.24vw, 20px);
  line-height: 1.5;
}

.strategy-mentor__lead--result {
  margin-top: 22px;
  color: rgba(247, 248, 250, 0.9);
  font-weight: 650;
}

.strategy-mentor__timing {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  max-width: 690px;
  height: 48px;
  margin-top: 22px;
}

.strategy-mentor__timing::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(170, 181, 195, 0.46) 18%, rgba(170, 181, 195, 0.46) 82%, rgba(255, 255, 255, 0.05));
  content: "";
}

.strategy-mentor__timing span {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(170, 181, 195, 0.64);
  border-radius: 50%;
  background: var(--color-ink-soft);
  box-shadow: 0 0 0 5px rgba(170, 181, 195, 0.035);
}

.strategy-mentor__timing .strategy-mentor__timing-moment {
  width: 18px;
  height: 18px;
  border: 3px solid var(--color-bronze-light);
  background: var(--color-cobalt);
  box-shadow:
    0 0 0 8px rgba(75, 136, 255, 0.14),
    0 0 0 15px rgba(226, 197, 138, 0.055);
}

.strategy-mentor__timing .strategy-mentor__timing-moment::before,
.strategy-mentor__timing .strategy-mentor__timing-moment::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-bronze-light);
  content: "";
  transform: translate(-50%, -50%);
}

.strategy-mentor__timing .strategy-mentor__timing-moment::before {
  width: 2px;
  height: 38px;
}

.strategy-mentor__timing .strategy-mentor__timing-moment::after {
  width: 38px;
  height: 2px;
}

.strategy-mentor__portrait {
  grid-area: portrait;
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  margin: 0;
  padding: 9px;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(75, 136, 255, 0.18), rgba(200, 164, 98, 0.08));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.strategy-mentor__portrait::before {
  position: absolute;
  z-index: -1;
  top: -8%;
  right: -18%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 197, 138, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(226, 197, 138, 0.025),
    0 0 0 56px rgba(75, 136, 255, 0.018);
  content: "";
}

.strategy-mentor__portrait::after {
  position: absolute;
  inset: 9px;
  border-radius: 21px;
  background:
    linear-gradient(180deg, transparent 64%, rgba(9, 13, 20, 0.38) 100%),
    linear-gradient(90deg, rgba(47, 111, 237, 0.07), transparent 38%);
  content: "";
  pointer-events: none;
}

.strategy-mentor__portrait picture,
.strategy-mentor__portrait img {
  width: 100%;
}

.strategy-mentor__portrait picture {
  display: block;
  overflow: hidden;
  border-radius: 21px;
}

.strategy-mentor__portrait img {
  height: auto;
  aspect-ratio: 853 / 1280;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.93) contrast(1.035) brightness(1.03);
}

.strategy-mentor__message {
  grid-area: message;
  position: relative;
  max-width: 820px;
  margin-top: 32px;
  padding: clamp(25px, 2.5vw, 36px) clamp(25px, 2.8vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(75, 136, 255, 0.23);
  border-left: 3px solid var(--color-bronze);
  border-radius: 0 22px 22px 0;
  background:
    linear-gradient(120deg, rgba(47, 111, 237, 0.15), transparent 48%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.strategy-mentor__message::after {
  position: absolute;
  top: -90px;
  right: -54px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(226, 197, 138, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(226, 197, 138, 0.02);
  content: "";
}

.strategy-mentor__label {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 38px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.strategy-mentor__label strong {
  font-weight: inherit;
}

.strategy-mentor__label-icon {
  display: grid;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(226, 197, 138, 0.28);
  border-radius: 18px;
  background: rgba(9, 13, 20, 0.3);
}

.strategy-mentor__label-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.strategy-mentor__label-icon circle:first-child {
  fill: rgba(47, 111, 237, 0.12);
  stroke: var(--color-cobalt-bright);
}

.strategy-mentor__label-accent {
  stroke: var(--color-cobalt-bright);
  stroke-width: 3;
}

.strategy-mentor__quote {
  position: relative;
  z-index: 1;
  margin: 23px 0 0;
}

.strategy-mentor__quote p {
  margin: 0;
  color: rgba(247, 248, 250, 0.86);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.9vw, 30px);
  font-stretch: condensed;
  font-weight: 720;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.strategy-mentor__quote p + p {
  margin-top: 15px;
}

.strategy-mentor__quote footer {
  margin-top: 20px;
  color: rgba(247, 248, 250, 0.58);
  font-size: 15px;
  font-weight: 750;
  font-style: normal;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.strategy-mentor__quote cite {
  font-style: normal;
}

.strategy-mentor__action {
  grid-area: action;
  display: flex;
  align-items: start;
  margin-top: 30px;
}

.strategy-mentor__cta {
  width: max-content;
  min-width: 470px;
  min-height: 70px;
  padding-inline: 38px;
  white-space: nowrap;
}

.strategy-mentor__cta span {
  font-size: 14px;
}

@media (max-width: 1180px) {
  .strategy-mentor__scene {
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
    gap: 0 34px;
  }

  .strategy-mentor__portrait {
    width: min(100%, 510px);
  }
}

@media (max-width: 900px) {
  .strategy-mentor__scene {
    grid-template-areas:
      "intro"
      "portrait"
      "message"
      "action";
    grid-template-columns: 1fr;
  }

  .strategy-mentor__portrait {
    justify-self: center;
    width: min(82%, 590px);
    margin-top: 39px;
  }

  .strategy-mentor__message {
    width: min(100%, 760px);
    margin: 39px auto 0;
  }

  .strategy-mentor__action {
    justify-content: center;
  }

  .strategy-mentor__cta {
    width: min(100%, 620px);
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .strategy-mentor {
    padding: 72px 0 88px;
  }

  .strategy-mentor__title {
    font-size: clamp(38px, 10.6vw, 47px);
    line-height: 0.94;
  }

  .strategy-mentor__lead {
    margin-top: 21px;
    font-size: 16px;
    line-height: 1.48;
  }

  .strategy-mentor__timing {
    height: 43px;
    margin-top: 18px;
  }

  .strategy-mentor__lead--result {
    margin-top: 18px;
  }

  .strategy-mentor__portrait {
    width: 100%;
    margin-top: 31px;
    padding: 7px;
    border-radius: 22px;
  }

  .strategy-mentor__portrait picture,
  .strategy-mentor__portrait::after {
    border-radius: 16px;
  }

  .strategy-mentor__portrait::after {
    inset: 7px;
  }

  .strategy-mentor__message {
    margin-top: 31px;
    padding: 23px 19px 25px;
    border-radius: 0 18px 18px 0;
  }

  .strategy-mentor__label {
    gap: 14px;
    font-size: clamp(25px, 7.4vw, 31px);
  }

  .strategy-mentor__label-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .strategy-mentor__label-icon svg {
    width: 44px;
    height: 44px;
  }

  .strategy-mentor__quote {
    margin-top: 20px;
  }

  .strategy-mentor__quote p {
    font-size: clamp(22px, 6.3vw, 27px);
    line-height: 1.16;
  }

  .strategy-mentor__quote footer {
    margin-top: 18px;
    font-size: 13px;
  }

  .strategy-mentor__action {
    margin-top: 30px;
  }

  .strategy-mentor__cta {
    width: 100%;
    min-height: 66px;
    padding-inline: 18px;
    white-space: normal;
  }

  .strategy-mentor__cta span {
    font-size: 12.8px;
    line-height: 1.22;
  }
}

/* Block 13: technical trading conditions */
.trading-conditions {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 82px 0 92px;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 92% 10%, rgba(47, 111, 237, 0.12), transparent 24%),
    radial-gradient(circle at 3% 82%, rgba(200, 164, 98, 0.12), transparent 22%),
    var(--color-paper);
}

.trading-conditions::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -140px;
  width: 600px;
  height: 600px;
  background-image: radial-gradient(rgba(9, 13, 20, 0.12) 1px, transparent 1px);
  background-size: 17px 17px;
  content: "";
  opacity: 0.28;
  transform: rotate(-9deg);
  -webkit-mask-image: linear-gradient(135deg, #000, transparent 70%);
  mask-image: linear-gradient(135deg, #000, transparent 70%);
}

.trading-conditions::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.38), rgba(200, 164, 98, 0.42), transparent);
  content: "";
}

.trading-conditions__inner {
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.trading-conditions__header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
}

.trading-conditions__eyebrow {
  flex: 0 0 72px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-cobalt), var(--color-bronze));
  box-shadow: 0 5px 18px rgba(47, 111, 237, 0.18);
}

.trading-conditions__title {
  max-width: 1080px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.35vw, 68px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.trading-conditions__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.trading-conditions__essentials {
  overflow: hidden;
  border: 1px solid rgba(9, 13, 20, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 58px rgba(18, 28, 43, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trading-conditions__item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 23px;
  align-items: center;
  min-height: 145px;
  padding: 24px 29px;
}

.trading-conditions__item + .trading-conditions__item {
  border-top: 1px solid rgba(9, 13, 20, 0.1);
}

.trading-conditions__item--broker {
  min-height: 178px;
}

.trading-conditions__icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--color-cobalt);
}

.trading-conditions__icon svg {
  width: 76px;
  height: 76px;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trading-conditions__icon-frame {
  fill: rgba(47, 111, 237, 0.055);
  stroke: rgba(47, 111, 237, 0.2);
  stroke-width: 1.5;
}

.trading-conditions__icon-line {
  stroke: var(--color-ink-raised);
  stroke-width: 2.4;
}

.trading-conditions__icon-detail {
  stroke: var(--color-cobalt);
  stroke-width: 2.2;
}

.trading-conditions__icon-accent {
  fill: rgba(200, 164, 98, 0.18);
  stroke: var(--color-bronze);
  stroke-width: 2.5;
}

.trading-conditions__icon-dot {
  fill: var(--color-bronze);
  stroke: var(--color-paper);
  stroke-width: 1.5;
}

.trading-conditions__item-copy h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(25px, 2vw, 31px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

.trading-conditions__item-copy p {
  max-width: 750px;
  margin: 9px 0 0;
  color: #4c5867;
  font-size: 16px;
  font-weight: 520;
  line-height: 1.48;
}

.trading-conditions__item--broker .trading-conditions__item-copy p {
  font-size: 15.5px;
  line-height: 1.45;
}

.trading-conditions__capital {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 29px 31px 31px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  color: var(--color-text);
  background:
    linear-gradient(145deg, rgba(47, 111, 237, 0.2), transparent 46%),
    linear-gradient(135deg, #101926, #0a111b 72%);
  box-shadow: 0 28px 68px rgba(9, 13, 20, 0.2);
}

.trading-conditions__capital::before {
  position: absolute;
  z-index: -1;
  top: -90px;
  right: -105px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(226, 197, 138, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(226, 197, 138, 0.035),
    0 0 0 72px rgba(47, 111, 237, 0.025);
  content: "";
}

.trading-conditions__capital-heading {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.trading-conditions__capital-heading h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(28px, 2.2vw, 36px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.trading-conditions__capital-icon {
  width: 84px;
  height: 84px;
}

.trading-conditions__capital-icon svg {
  width: 84px;
  height: 84px;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trading-conditions__capital-disc {
  fill: rgba(47, 111, 237, 0.14);
  stroke: rgba(75, 136, 255, 0.5);
  stroke-width: 1.5;
}

.trading-conditions__capital-vault,
.trading-conditions__capital-lock,
.trading-conditions__capital-line {
  stroke: var(--color-bronze-light);
  stroke-width: 2.3;
}

.trading-conditions__capital-vault {
  fill: rgba(9, 13, 20, 0.48);
}

.trading-conditions__capital-lock {
  fill: rgba(200, 164, 98, 0.1);
}

.trading-conditions__capital-accent {
  fill: rgba(47, 111, 237, 0.52);
  stroke: var(--color-cobalt-bright);
  stroke-width: 2;
}

.trading-conditions__capital-levels {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trading-conditions__capital-levels p {
  margin: 0;
  padding: 18px 0;
  color: rgba(247, 248, 250, 0.64);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.36;
}

.trading-conditions__capital-levels p + p {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trading-conditions__capital-levels span {
  display: block;
  max-width: 420px;
}

.trading-conditions__capital-levels strong {
  display: inline-block;
  margin-top: 5px;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.2vw, 35px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.03em;
}

.trading-conditions__lower {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1.26fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.trading-conditions__crypto {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px 28px;
  border: 1px solid rgba(47, 111, 237, 0.2);
  border-left: 5px solid var(--color-cobalt);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(47, 111, 237, 0.075), transparent 52%),
    rgba(255, 255, 255, 0.55);
}

.trading-conditions__crypto-icon {
  width: 72px;
  height: 72px;
}

.trading-conditions__crypto-icon svg {
  width: 72px;
  height: 72px;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trading-conditions__crypto-orbit {
  stroke: rgba(47, 111, 237, 0.38);
  stroke-width: 1.6;
}

.trading-conditions__crypto-coin {
  fill: rgba(47, 111, 237, 0.08);
  stroke: var(--color-ink-raised);
  stroke-width: 2.3;
}

.trading-conditions__crypto-accent {
  fill: rgba(200, 164, 98, 0.2);
  stroke: var(--color-bronze);
  stroke-width: 2;
}

.trading-conditions__crypto-dot {
  fill: var(--color-cobalt);
  stroke: var(--color-paper);
  stroke-width: 1.5;
}

.trading-conditions__crypto h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(25px, 2vw, 31px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

.trading-conditions__crypto p {
  margin: 7px 0 0;
  color: #4c5867;
  font-size: 16px;
  font-weight: 520;
  line-height: 1.45;
}

.trading-conditions__rule {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  overflow: hidden;
  padding: 25px 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  color: var(--color-text);
  background:
    radial-gradient(circle at 87% 42%, rgba(75, 136, 255, 0.27), transparent 33%),
    linear-gradient(105deg, #0b111b, #142238 73%, #101824);
  box-shadow: 0 25px 64px rgba(9, 13, 20, 0.18);
}

.trading-conditions__rule::after {
  position: absolute;
  z-index: -1;
  right: -30px;
  bottom: -56px;
  width: 330px;
  height: 150px;
  border: 1px solid rgba(226, 197, 138, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.trading-conditions__rule-icon {
  width: 104px;
  height: 104px;
}

.trading-conditions__rule-icon svg {
  width: 104px;
  height: 104px;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trading-conditions__rule-shield {
  fill: rgba(47, 111, 237, 0.13);
  stroke: var(--color-cobalt-bright);
  stroke-width: 2;
}

.trading-conditions__rule-inner {
  fill: rgba(9, 13, 20, 0.45);
  stroke: rgba(226, 197, 138, 0.68);
  stroke-width: 1.7;
}

.trading-conditions__rule-accent {
  stroke: var(--color-bronze-light);
  stroke-width: 2.4;
}

.trading-conditions__rule-dot {
  fill: var(--color-cobalt-bright);
  stroke: var(--color-bronze-light);
  stroke-width: 2;
}

.trading-conditions__rule-copy h3 {
  margin: 0;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(28px, 2.25vw, 37px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.035em;
}

.trading-conditions__rule-copy p {
  margin: 8px 0 0;
  color: rgba(247, 248, 250, 0.76);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 560;
  line-height: 1.4;
}

.trading-conditions__rule-copy p:last-child {
  margin-top: 2px;
  color: var(--color-text);
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 820;
}

@media (max-width: 1100px) {
  .trading-conditions__grid {
    grid-template-columns: 1fr;
  }

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

  .trading-conditions__item {
    min-height: 154px;
  }

  .trading-conditions__item + .trading-conditions__item {
    border-top: 0;
    border-left: 1px solid rgba(9, 13, 20, 0.1);
  }

  .trading-conditions__essentials .trading-conditions__item--broker {
    grid-column: 1 / -1;
    min-height: 148px;
    border-top: 1px solid rgba(9, 13, 20, 0.1);
    border-left: 0;
  }

  .trading-conditions__capital-levels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trading-conditions__capital-levels p {
    padding: 20px 22px 4px 0;
  }

  .trading-conditions__capital-levels p + p {
    padding-left: 22px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trading-conditions__lower {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  }

  .trading-conditions__crypto h3 {
    font-size: 23px;
  }

  .trading-conditions__rule {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 22px;
    padding-inline: 28px;
  }

  .trading-conditions__rule-icon,
  .trading-conditions__rule-icon svg {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 900px) {
  .trading-conditions__lower {
    grid-template-columns: 1fr;
  }

  .trading-conditions__crypto h3 {
    font-size: 25px;
  }
}

@media (max-width: 760px) {
  .trading-conditions {
    padding: 68px 0 78px;
  }

  .trading-conditions__header {
    gap: 16px;
    margin-bottom: 28px;
  }

  .trading-conditions__eyebrow {
    flex-basis: 46px;
  }

  .trading-conditions__title {
    font-size: clamp(39px, 8.7vw, 54px);
  }

  .trading-conditions__item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .trading-conditions__icon,
  .trading-conditions__icon svg {
    width: 68px;
    height: 68px;
  }

  .trading-conditions__capital-levels {
    grid-template-columns: 1fr;
  }

  .trading-conditions__capital-levels p {
    padding: 17px 0;
  }

  .trading-conditions__capital-levels p + p {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .trading-conditions__rule {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 22px;
    padding: 24px 26px;
  }

  .trading-conditions__rule-icon,
  .trading-conditions__rule-icon svg {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 580px) {
  .trading-conditions {
    padding: 58px 0 68px;
  }

  .trading-conditions__header {
    display: block;
    margin-bottom: 24px;
  }

  .trading-conditions__eyebrow {
    display: block;
    width: 54px;
    height: 4px;
    margin-bottom: 14px;
  }

  .trading-conditions__title {
    font-size: clamp(39px, 11.8vw, 51px);
    line-height: 0.95;
  }

  .trading-conditions__essentials {
    display: block;
    border-radius: 20px;
  }

  .trading-conditions__item,
  .trading-conditions__item--broker {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 15px;
    min-height: 0;
    padding: 21px 18px;
  }

  .trading-conditions__item + .trading-conditions__item,
  .trading-conditions__essentials .trading-conditions__item--broker {
    border-top: 1px solid rgba(9, 13, 20, 0.1);
    border-left: 0;
  }

  .trading-conditions__icon,
  .trading-conditions__icon svg {
    width: 60px;
    height: 60px;
  }

  .trading-conditions__item-copy h3,
  .trading-conditions__crypto h3 {
    font-size: 25px;
  }

  .trading-conditions__item-copy p,
  .trading-conditions__item--broker .trading-conditions__item-copy p,
  .trading-conditions__crypto p {
    margin-top: 7px;
    font-size: 15px;
    line-height: 1.44;
  }

  .trading-conditions__capital {
    padding: 23px 20px 21px;
    border-radius: 20px;
  }

  .trading-conditions__capital-heading {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
  }

  .trading-conditions__capital-icon,
  .trading-conditions__capital-icon svg {
    width: 70px;
    height: 70px;
  }

  .trading-conditions__capital-heading h3 {
    font-size: 29px;
  }

  .trading-conditions__capital-levels {
    margin-top: 19px;
  }

  .trading-conditions__capital-levels p {
    font-size: 14.5px;
  }

  .trading-conditions__capital-levels strong {
    font-size: 30px;
  }

  .trading-conditions__lower {
    gap: 18px;
    margin-top: 18px;
  }

  .trading-conditions__crypto {
    grid-template-columns: 61px minmax(0, 1fr);
    gap: 15px;
    padding: 18px 16px;
    border-radius: 17px;
  }

  .trading-conditions__crypto-icon,
  .trading-conditions__crypto-icon svg {
    width: 60px;
    height: 60px;
  }

  .trading-conditions__rule {
    display: block;
    padding: 21px 19px 24px;
    border-radius: 20px;
  }

  .trading-conditions__rule-icon,
  .trading-conditions__rule-icon svg {
    width: 70px;
    height: 70px;
  }

  .trading-conditions__rule-copy {
    margin-top: 12px;
  }

  .trading-conditions__rule-copy h3 {
    font-size: 30px;
  }

  .trading-conditions__rule-copy p {
    font-size: 16px;
  }

  .trading-conditions__rule-copy p:last-child {
    margin-top: 5px;
    font-size: 21px;
    line-height: 1.25;
  }
}

/* Block 14: author and public achievements */
.author-proof {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0 96px;
  color: var(--color-text);
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 111, 237, 0.22), transparent 27%),
    radial-gradient(circle at 12% 76%, rgba(200, 164, 98, 0.09), transparent 24%),
    linear-gradient(135deg, #080c13 0%, #0d1521 54%, #0a111b 100%);
}

.author-proof::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 72%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 72%);
}

.author-proof::after {
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -170px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(226, 197, 138, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(226, 197, 138, 0.025),
    0 0 0 112px rgba(47, 111, 237, 0.018);
  content: "";
}

.author-proof__inner {
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.author-proof__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.author-proof__copy {
  padding-top: 8px;
}

.author-proof__header {
  max-width: 900px;
}

.author-proof__eyebrow {
  display: block;
  width: 84px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-cobalt-bright), var(--color-bronze-light));
  box-shadow: 0 8px 26px rgba(47, 111, 237, 0.25);
}

.author-proof__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 4.65vw, 74px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: 0.93;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.author-proof__title span {
  display: block;
  color: var(--color-bronze-light);
}

.author-proof__identity {
  position: relative;
  margin-top: 34px;
  padding: 4px 0 5px 24px;
  border-left: 4px solid var(--color-cobalt);
}

.author-proof__name {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 46px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

.author-proof__name strong,
.author-proof__position strong {
  font-weight: inherit;
}

.author-proof__position {
  margin: 11px 0 0;
  color: rgba(247, 248, 250, 0.7);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.85vw, 29px);
  font-stretch: condensed;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.author-proof__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
  max-width: 850px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.author-proof__facts li {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: rgba(247, 248, 250, 0.76);
  font-size: 16.5px;
  font-weight: 540;
  line-height: 1.44;
}

.author-proof__facts li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-bronze-light);
  border-radius: 50%;
  background: rgba(47, 111, 237, 0.42);
  box-shadow: 0 0 0 5px rgba(47, 111, 237, 0.08);
  content: "";
}

.author-proof__portrait {
  position: relative;
  justify-self: end;
  width: min(100%, 455px);
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(226, 197, 138, 0.38);
  border-radius: 28px 28px 110px 28px;
  background: linear-gradient(145deg, rgba(226, 197, 138, 0.2), rgba(47, 111, 237, 0.1));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.author-proof__portrait::before {
  position: absolute;
  z-index: -1;
  top: 14%;
  right: -20%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(75, 136, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 29px rgba(47, 111, 237, 0.04);
  content: "";
}

.author-proof__portrait picture,
.author-proof__portrait img {
  width: 100%;
}

.author-proof__portrait picture {
  display: block;
  overflow: hidden;
  border-radius: 20px 20px 100px 20px;
}

.author-proof__portrait img {
  height: auto;
}

.author-proof__evidence {
  display: grid;
  grid-template-columns: minmax(390px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 38px;
}

.author-proof__chronology {
  position: relative;
  overflow: hidden;
  padding: 31px 30px 29px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(47, 111, 237, 0.13), transparent 48%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.16);
}

.author-proof__chronology::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(226, 197, 138, 0.1);
  border-radius: 50%;
  content: "";
}

.author-proof__chronology > h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(31px, 2.7vw, 43px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.043em;
  text-transform: uppercase;
}

.author-proof__timeline {
  position: relative;
  z-index: 1;
  margin: 27px 0 0 9px;
  padding: 0 0 0 31px;
  border-left: 1px solid rgba(226, 197, 138, 0.28);
  list-style: none;
}

.author-proof__timeline li {
  position: relative;
  padding: 0 0 28px;
}

.author-proof__timeline li:last-child {
  padding-bottom: 0;
}

.author-proof__timeline-marker {
  position: absolute;
  top: 3px;
  left: -39px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--color-bronze-light);
  border-radius: 50%;
  background: var(--color-ink-soft);
  box-shadow: 0 0 0 6px rgba(226, 197, 138, 0.07);
}

.author-proof__timeline h4 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 31px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.author-proof__timeline time {
  color: var(--color-cobalt-bright);
}

.author-proof__timeline p {
  margin: 9px 0 0;
  color: rgba(247, 248, 250, 0.66);
  font-size: 15.5px;
  font-weight: 520;
  line-height: 1.42;
}

.author-proof__timeline .author-proof__timeline-win {
  margin: 2px -8px -3px -12px;
  padding: 19px 17px 20px 43px;
  border: 1px solid rgba(75, 136, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(100deg, rgba(47, 111, 237, 0.15), rgba(226, 197, 138, 0.055));
}

.author-proof__timeline-win .author-proof__timeline-marker {
  top: 22px;
  left: -51px;
  border-color: var(--color-cobalt-bright);
  background: var(--color-bronze-light);
  box-shadow: 0 0 0 7px rgba(47, 111, 237, 0.12);
}

.author-proof__timeline-win strong {
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: 27px;
  font-stretch: condensed;
  font-weight: 950;
}

.author-proof__documents {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.author-proof__document {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 410px;
  overflow: hidden;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  color: var(--color-text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    #101824;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.17);
  text-decoration: none;
  cursor: zoom-in;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.author-proof__document::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(226, 197, 138, 0.13);
  border-radius: 11px;
  box-shadow: inset 0 0 38px rgba(0, 0, 0, 0.08);
  content: "";
  pointer-events: none;
}

.author-proof__document:hover {
  border-color: rgba(226, 197, 138, 0.55);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

.author-proof__document picture {
  display: block;
  width: 100%;
  height: 100%;
}

.author-proof__document img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}

.author-proof__document-zoom {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(9, 13, 20, 0.8);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.author-proof__document-zoom svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--color-bronze-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 1180px) {
  .author-proof__hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(365px, 0.9fr);
    gap: 38px;
  }

  .author-proof__facts {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .author-proof__portrait {
    width: min(100%, 430px);
  }

  .author-proof__evidence {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .author-proof__timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 23px 0 0;
    padding: 0;
    border-left: 0;
  }

  .author-proof__timeline li,
  .author-proof__timeline li:last-child {
    min-height: 146px;
    padding: 19px 16px 18px 23px;
    border-left: 1px solid rgba(226, 197, 138, 0.28);
  }

  .author-proof__timeline-marker {
    top: 23px;
    left: -8px;
  }

  .author-proof__timeline .author-proof__timeline-win {
    margin: 0;
    padding: 19px 16px 18px 23px;
  }

  .author-proof__timeline-win .author-proof__timeline-marker {
    top: 23px;
    left: -8px;
  }

  .author-proof__document {
    min-height: 390px;
  }

  .author-proof__document img {
    max-height: 470px;
  }
}

@media (max-width: 900px) {
  .author-proof__hero {
    grid-template-columns: 1fr;
  }

  .author-proof__header {
    max-width: 780px;
  }

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

  .author-proof__portrait {
    justify-self: center;
    width: min(82%, 520px);
    margin-top: 4px;
  }

  .author-proof__evidence {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .author-proof__document {
    min-height: 350px;
  }

  .author-proof__document img {
    max-height: 430px;
  }
}

@media (max-width: 680px) {
  .author-proof {
    padding: 66px 0 76px;
  }

  .author-proof__eyebrow {
    width: 58px;
    height: 4px;
    margin-bottom: 17px;
  }

  .author-proof__title {
    font-size: clamp(40px, 11vw, 50px);
    line-height: 0.94;
  }

  .author-proof__identity {
    margin-top: 27px;
    padding-left: 18px;
  }

  .author-proof__name {
    font-size: 34px;
  }

  .author-proof__position {
    font-size: 23px;
  }

  .author-proof__facts {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 25px;
  }

  .author-proof__facts li {
    font-size: 15.5px;
  }

  .author-proof__portrait {
    width: 100%;
    padding: 7px;
    border-radius: 22px 22px 70px 22px;
  }

  .author-proof__portrait picture {
    border-radius: 16px 16px 62px 16px;
  }

  .author-proof__evidence {
    gap: 18px;
    margin-top: 28px;
  }

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

  .author-proof__document {
    min-height: 230px;
    padding: 7px;
    border-radius: 15px;
  }

  .author-proof__document::after {
    inset: 7px;
    border-radius: 9px;
  }

  .author-proof__document img {
    max-height: 285px;
  }

  .author-proof__document--lchi {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .author-proof__document--lchi img {
    max-height: 430px;
  }

  .author-proof__document-zoom {
    right: 13px;
    bottom: 13px;
    width: 36px;
    height: 36px;
  }

  .author-proof__chronology {
    padding: 25px 21px 24px;
    border-radius: 20px;
  }

  .author-proof__chronology > h3 {
    font-size: 32px;
  }

  .author-proof__timeline {
    display: block;
    margin-top: 23px;
    padding-left: 27px;
    border-left: 1px solid rgba(226, 197, 138, 0.28);
  }

  .author-proof__timeline li,
  .author-proof__timeline li:last-child {
    min-height: 0;
    padding: 0 0 28px;
    border-left: 0;
  }

  .author-proof__timeline li:last-child {
    padding-bottom: 0;
  }

  .author-proof__timeline-marker {
    left: -35px;
  }

  .author-proof__timeline h4 {
    font-size: 25px;
  }

  .author-proof__timeline p {
    font-size: 14.5px;
  }

  .author-proof__timeline .author-proof__timeline-win {
    margin-right: -4px;
    margin-left: -12px;
    padding: 17px 13px 18px 34px;
  }

  .author-proof__timeline-win .author-proof__timeline-marker {
    top: 20px;
    left: -46px;
  }
}

@media (max-width: 430px) {
  .author-proof__documents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .author-proof__document {
    min-height: 205px;
  }

  .author-proof__document img {
    max-height: 245px;
  }

  .author-proof__document--lchi {
    min-height: 325px;
  }

  .author-proof__document--lchi img {
    max-height: 390px;
  }
}

/* Block 15: public author results */
.author-results {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0 94px;
  color: #121a25;
  background:
    radial-gradient(circle at 87% 8%, rgba(47, 111, 237, 0.12), transparent 25%),
    radial-gradient(circle at 10% 72%, rgba(200, 164, 98, 0.12), transparent 23%),
    linear-gradient(150deg, #f7f6f2 0%, #eeece6 58%, #f5f3ed 100%);
}

.author-results::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 35, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 35, 0.032) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 48%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 48%);
}

.author-results::after {
  position: absolute;
  z-index: -1;
  top: 190px;
  right: -260px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(47, 111, 237, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 64px rgba(47, 111, 237, 0.025),
    0 0 0 128px rgba(200, 164, 98, 0.018);
  content: "";
}

.author-results__inner {
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.author-results__opening {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(350px, 0.62fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: end;
}

.author-results__header {
  max-width: 960px;
}

.author-results__signal {
  display: block;
  width: 86px;
  height: 5px;
  margin-bottom: 21px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-cobalt), var(--color-bronze));
  box-shadow: 0 9px 27px rgba(47, 111, 237, 0.2);
}

.author-results__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(47px, 4.25vw, 69px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.author-results__title span {
  color: var(--color-cobalt);
}

.author-results__intro {
  max-width: 760px;
  margin: 25px 0 0;
  color: rgba(18, 26, 37, 0.7);
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 590;
  line-height: 1.38;
}

.author-results__record {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  padding: 32px 31px 29px;
  border: 1px solid rgba(226, 197, 138, 0.27);
  border-radius: 27px;
  color: var(--color-text);
  background:
    linear-gradient(135deg, rgba(47, 111, 237, 0.2), transparent 46%),
    linear-gradient(145deg, #111b29, #090e16);
  box-shadow: 0 28px 70px rgba(22, 30, 42, 0.22);
}

.author-results__record::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cobalt), var(--color-bronze-light));
  content: "";
}

.author-results__record time {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--color-bronze-light);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.author-results__record h3 {
  position: relative;
  z-index: 2;
  max-width: 410px;
  margin: 56px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.15vw, 36px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.036em;
}

.author-results__record h3 strong {
  display: block;
  color: var(--color-bronze-light);
  font-size: clamp(43px, 3.4vw, 57px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.author-results__record p {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  color: rgba(247, 248, 250, 0.67);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.4;
}

.author-results__record-orbit {
  position: absolute;
  top: -74px;
  right: -69px;
  width: 235px;
  height: 235px;
  border: 1px solid rgba(226, 197, 138, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(47, 111, 237, 0.045),
    0 0 0 58px rgba(226, 197, 138, 0.025);
}

.author-results__record-orbit::before,
.author-results__record-orbit::after,
.author-results__record-orbit span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.author-results__record-orbit::before {
  inset: 54px;
  border: 1px solid rgba(75, 136, 255, 0.32);
}

.author-results__record-orbit::after {
  right: 52px;
  bottom: 40px;
  width: 15px;
  height: 15px;
  background: var(--color-bronze-light);
  box-shadow: 0 0 0 8px rgba(226, 197, 138, 0.08);
}

.author-results__record-orbit span {
  inset: 94px;
  background: var(--color-cobalt-bright);
  box-shadow: 0 0 28px rgba(75, 136, 255, 0.55);
}

.author-results__featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 31px;
}

.author-results__compact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.author-results__proof {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(24, 35, 49, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(31, 39, 52, 0.1);
}

.author-results__proof::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cobalt), rgba(200, 164, 98, 0.82));
  content: "";
}

.author-results__proof--champion {
  border-color: rgba(47, 111, 237, 0.33);
  background:
    linear-gradient(135deg, rgba(47, 111, 237, 0.07), transparent 56%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 23px 62px rgba(47, 111, 237, 0.14);
}

.author-results__proof-copy {
  position: relative;
  z-index: 1;
  padding: 24px 23px 21px;
}

.author-results__proof--featured .author-results__proof-copy {
  min-height: 155px;
}

.author-results__proof--compact .author-results__proof-copy {
  min-height: 148px;
  padding: 21px 19px 18px;
}

.author-results__proof-copy h3 {
  margin: 0;
  color: #1b2430;
  font-family: var(--font-display);
  font-size: clamp(25px, 1.85vw, 31px);
  font-stretch: condensed;
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: -0.034em;
}

.author-results__proof-copy h3 strong {
  display: block;
  color: var(--color-cobalt);
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.author-results__proof--compact .author-results__proof-copy h3 {
  font-size: clamp(22px, 1.58vw, 27px);
}

.author-results__proof--compact .author-results__proof-copy h3 strong {
  font-size: clamp(28px, 2vw, 34px);
}

.author-results__proof-copy time {
  display: block;
  margin-top: 13px;
  color: rgba(18, 26, 37, 0.58);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.author-results__proof-copy p {
  margin: 5px 0 0;
  color: rgba(18, 26, 37, 0.64);
  font-size: 13.5px;
  font-weight: 560;
  line-height: 1.35;
}

.author-results__proof-image {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: auto;
  border-top: 1px solid rgba(24, 35, 49, 0.11);
  background: #f7f8fa;
  cursor: zoom-in;
}

.author-results__proof--featured .author-results__proof-image,
.author-results__proof--compact .author-results__proof-image {
  aspect-ratio: 900 / 493;
}

.author-results__proof-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms ease;
}

.author-results__proof--phone .author-results__proof-image {
  background: #000;
}

.author-results__proof-image:hover img {
  transform: scale(1.022);
}

.author-results__proof-image:focus-visible {
  outline-offset: -5px;
}

.author-results__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.31);
  border-radius: 50%;
  color: var(--color-bronze-light);
  background: rgba(9, 13, 20, 0.84);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.author-results__zoom svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.author-results__quote {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  overflow: hidden;
  margin: 28px 0 0;
  padding: 31px 35px 32px 41px;
  border: 1px solid rgba(226, 197, 138, 0.22);
  border-radius: 25px;
  color: var(--color-text);
  background:
    radial-gradient(circle at 94% 22%, rgba(47, 111, 237, 0.24), transparent 27%),
    linear-gradient(130deg, #0c131e, #121d2a);
  box-shadow: 0 27px 68px rgba(19, 28, 40, 0.19);
}

.author-results__quote::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--color-cobalt-bright), var(--color-bronze-light));
  content: "";
}

.author-results__quote blockquote {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.35vw, 39px);
  font-stretch: condensed;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.032em;
}

.author-results__quote figcaption {
  margin: 0 0 4px;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: 20px;
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .author-results__opening {
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    gap: 35px;
  }

  .author-results__title {
    font-size: clamp(45px, 5vw, 59px);
  }

  .author-results__record {
    min-height: 300px;
  }

  .author-results__record h3 {
    margin-top: 46px;
  }

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

  .author-results__proof--champion {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  }

  .author-results__proof--champion .author-results__proof-copy {
    min-height: 0;
    align-self: center;
  }

  .author-results__proof--champion .author-results__proof-image {
    border-top: 0;
    border-left: 1px solid rgba(24, 35, 49, 0.11);
  }

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

  .author-results__proof--compact .author-results__proof-copy {
    min-height: 132px;
  }
}

@media (max-width: 900px) {
  .author-results {
    padding: 72px 0 82px;
  }

  .author-results__opening {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .author-results__header {
    max-width: 810px;
  }

  .author-results__record {
    min-height: 250px;
  }

  .author-results__record h3 {
    max-width: 620px;
    margin-top: 37px;
  }

  .author-results__record-orbit {
    top: -86px;
    right: -26px;
  }

  .author-results__proof--champion {
    display: flex;
    grid-column: auto;
  }

  .author-results__proof--champion .author-results__proof-copy {
    min-height: 155px;
  }

  .author-results__proof--champion .author-results__proof-image {
    border-top: 1px solid rgba(24, 35, 49, 0.11);
    border-left: 0;
  }

  .author-results__quote {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .author-results__quote figcaption {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .author-results {
    padding: 62px 0 72px;
  }

  .author-results__signal {
    width: 58px;
    height: 4px;
    margin-bottom: 17px;
  }

  .author-results__title {
    font-size: clamp(39px, 10.5vw, 48px);
    line-height: 0.95;
  }

  .author-results__intro {
    margin-top: 20px;
    font-size: 18px;
  }

  .author-results__record {
    min-height: 286px;
    padding: 27px 23px 25px;
    border-radius: 22px;
  }

  .author-results__record h3 {
    max-width: 310px;
    margin-top: 54px;
    font-size: 28px;
  }

  .author-results__record h3 strong {
    font-size: 45px;
  }

  .author-results__record-orbit {
    top: -71px;
    right: -76px;
  }

  .author-results__featured,
  .author-results__compact {
    display: flex;
    width: auto;
    margin-right: calc(var(--page-gutter) * -1);
    padding-right: var(--page-gutter);
    padding-bottom: 12px;
    overflow-x: auto;
    scroll-padding-inline: 0 var(--page-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(47, 111, 237, 0.4) transparent;
  }

  .author-results__featured {
    gap: 13px;
    margin-top: 24px;
  }

  .author-results__compact {
    gap: 12px;
    margin-top: 2px;
  }

  .author-results__proof--featured,
  .author-results__proof--compact {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: start;
  }

  .author-results__proof--compact {
    flex-basis: min(78vw, 310px);
  }

  .author-results__proof--featured .author-results__proof-copy,
  .author-results__proof--champion .author-results__proof-copy {
    min-height: 144px;
  }

  .author-results__proof--compact .author-results__proof-copy {
    min-height: 145px;
  }

  .author-results__proof-copy {
    padding: 21px 19px 19px;
  }

  .author-results__proof-copy h3 {
    font-size: 25px;
  }

  .author-results__proof-copy h3 strong {
    font-size: 36px;
  }

  .author-results__proof--compact .author-results__proof-copy h3 {
    font-size: 23px;
  }

  .author-results__proof--compact .author-results__proof-copy h3 strong {
    font-size: 30px;
  }

  .author-results__quote {
    gap: 15px;
    margin-top: 18px;
    padding: 27px 23px 27px 28px;
    border-radius: 21px;
  }

  .author-results__quote blockquote {
    font-size: 28px;
    line-height: 1.08;
  }

  .author-results__quote figcaption {
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .author-results__title {
    font-size: clamp(36px, 10.4vw, 43px);
  }

  .author-results__record h3 strong {
    font-size: 42px;
  }

  .author-results__proof--featured,
  .author-results__proof--compact {
    flex-basis: min(86vw, 330px);
  }

  .author-results__proof--compact {
    flex-basis: min(80vw, 300px);
  }

  .author-results__zoom {
    right: 11px;
    bottom: 11px;
    width: 36px;
    height: 36px;
  }
}

/* Shared background for program blocks 16–19 */
.program-section {
  --program-background: #0a111a;
  --program-surface: #111c29;
  --program-line: rgba(226, 197, 138, 0.2);

  color: var(--color-text);
  background-color: var(--program-background);
}

/* Block 16: program overview */
.program-overview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0 84px;
  background:
    radial-gradient(circle at 50% 116%, rgba(47, 111, 237, 0.17), transparent 38%),
    radial-gradient(circle at 11% 14%, rgba(200, 164, 98, 0.08), transparent 23%),
    linear-gradient(180deg, #090f17 0%, var(--program-background) 72%);
}

.program-overview::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  mask-image: radial-gradient(ellipse at 50% 35%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 0%, transparent 72%);
}

.program-overview::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 9%, rgba(47, 111, 237, 0.55) 43%, rgba(226, 197, 138, 0.48) 70%, transparent 94%);
  content: "";
}

.program-overview__inner {
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.program-overview__header {
  max-width: 1320px;
  margin-inline: auto;
  text-align: center;
}

.program-overview__signal {
  display: block;
  width: 92px;
  height: 5px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-cobalt-bright), var(--color-bronze-light));
  box-shadow: 0 9px 28px rgba(47, 111, 237, 0.25);
}

.program-overview__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.35vw, 70px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.program-overview__subtitle {
  margin: 20px 0 0;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.75vw, 28px);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.program-overview__subtitle strong {
  font-weight: inherit;
}

.program-overview__route {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr) 72px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  width: min(100%, 1210px);
  margin: 38px auto 0;
}

.program-overview__route::before {
  position: absolute;
  z-index: 0;
  top: 55px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(75, 136, 255, 0.08), rgba(75, 136, 255, 0.5) 24%, rgba(226, 197, 138, 0.55) 76%, rgba(226, 197, 138, 0.08));
  box-shadow: 0 0 18px rgba(47, 111, 237, 0.14);
  content: "";
}

.program-overview__stage {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.program-overview__node {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(226, 197, 138, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 27%, rgba(75, 136, 255, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    var(--program-surface);
  box-shadow:
    0 21px 48px rgba(0, 0, 0, 0.28),
    inset 0 0 0 7px rgba(255, 255, 255, 0.02),
    0 0 0 9px rgba(47, 111, 237, 0.035);
}

.program-overview__node::after {
  position: absolute;
  right: 7px;
  bottom: 12px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--program-background);
  border-radius: 50%;
  background: var(--color-bronze-light);
  box-shadow: 0 0 18px rgba(226, 197, 138, 0.42);
  content: "";
}

.program-overview__node svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-overview__icon-frame {
  fill: rgba(9, 15, 23, 0.38);
  stroke: rgba(247, 248, 250, 0.72);
  stroke-width: 2.1;
}

.program-overview__icon-detail,
.program-overview__icon-signal {
  stroke: rgba(247, 248, 250, 0.58);
  stroke-width: 2.1;
}

.program-overview__icon-accent {
  fill: none;
  stroke: var(--color-bronze-light);
  stroke-width: 2.7;
}

.program-overview__stage:first-child .program-overview__icon-accent {
  fill: rgba(226, 197, 138, 0.15);
}

.program-overview__icon-dot {
  fill: var(--color-cobalt-bright);
  stroke: none;
}

.program-overview__stage h3 {
  margin: 20px 0 0;
  color: rgba(247, 248, 250, 0.76);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.15vw, 34px);
  font-stretch: condensed;
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.032em;
}

.program-overview__stage h3 strong {
  display: block;
  margin-bottom: 2px;
  color: var(--color-text);
  font-size: clamp(43px, 3.45vw, 56px);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.program-overview__arrow {
  position: relative;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 28px auto 0;
  place-items: center;
  border: 1px solid rgba(75, 136, 255, 0.22);
  border-radius: 50%;
  color: var(--color-bronze-light);
  background: rgba(10, 17, 26, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1024px) {
  .program-overview {
    padding: 70px 0 78px;
  }

  .program-overview__route {
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr);
    gap: 8px;
    margin-top: 34px;
  }

  .program-overview__node {
    width: 100px;
    height: 100px;
  }

  .program-overview__node svg {
    width: 62px;
    height: 62px;
  }

  .program-overview__route::before {
    top: 49px;
  }

  .program-overview__arrow {
    width: 44px;
    height: 44px;
    margin-top: 27px;
    font-size: 29px;
  }

  .program-overview__stage h3 {
    font-size: clamp(24px, 2.7vw, 30px);
  }

  .program-overview__stage h3 strong {
    font-size: clamp(40px, 4.5vw, 49px);
  }
}

@media (max-width: 680px) {
  .program-overview {
    padding: 61px 0 69px;
  }

  .program-overview__signal {
    width: 58px;
    height: 4px;
    margin-bottom: 17px;
  }

  .program-overview__title {
    font-size: clamp(39px, 10.5vw, 48px);
    line-height: 0.95;
  }

  .program-overview__subtitle {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.15;
  }

  .program-overview__route {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    margin-top: 30px;
  }

  .program-overview__route::before {
    top: 43px;
    right: auto;
    bottom: 43px;
    left: 43px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(75, 136, 255, 0.1), rgba(75, 136, 255, 0.55) 24%, rgba(226, 197, 138, 0.55) 76%, rgba(226, 197, 138, 0.1));
  }

  .program-overview__stage {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    text-align: left;
  }

  .program-overview__node {
    width: 88px;
    height: 88px;
  }

  .program-overview__node svg {
    width: 56px;
    height: 56px;
  }

  .program-overview__node::after {
    right: 4px;
    bottom: 9px;
    width: 12px;
    height: 12px;
  }

  .program-overview__stage h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.05;
  }

  .program-overview__stage h3 strong {
    display: inline-block;
    margin: 0 7px 0 0;
    font-size: 44px;
    line-height: 0.9;
    vertical-align: -3px;
  }

  .program-overview__arrow {
    justify-self: start;
    width: 36px;
    height: 36px;
    margin: 3px 0 3px 26px;
    font-size: 25px;
    transform: rotate(90deg);
  }
}

@media (max-width: 430px) {
  .program-overview__title {
    font-size: clamp(34px, 9.7vw, 41px);
  }

  .program-overview__subtitle {
    font-size: 20px;
  }

  .program-overview__stage {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
  }

  .program-overview__node {
    width: 82px;
    height: 82px;
  }

  .program-overview__route::before {
    top: 40px;
    bottom: 40px;
    left: 40px;
  }

  .program-overview__arrow {
    margin-left: 23px;
  }

  .program-overview__stage h3 {
    font-size: 26px;
  }

  .program-overview__stage h3 strong {
    font-size: 41px;
  }
}

/* Blocks 17–19: one continuous program section */
.program-fast-start,
.program-intensive,
.master-group {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(226, 197, 138, 0.11);
  background-color: var(--program-background);
}

.program-fast-start__inner,
.program-intensive__inner,
.master-group__inner {
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* Block 17: five video lessons */
.program-fast-start {
  padding: 74px 0 82px;
  background:
    radial-gradient(circle at 3% 47%, rgba(47, 111, 237, 0.12), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(226, 197, 138, 0.055), transparent 24%),
    var(--program-background);
}

.program-fast-start::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 0 49.94%, rgba(255, 255, 255, 0.018) 49.94% 50.06%, transparent 50.06%);
  background-size: 120px 100%;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.program-fast-start__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(560px, 1.35fr);
  gap: clamp(52px, 6vw, 94px);
  align-items: start;
}

.program-fast-start__intro {
  min-width: 0;
}

.program-fast-start__title,
.program-intensive__title,
.master-group__title {
  margin: 0;
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.program-fast-start__title {
  max-width: 620px;
  font-size: clamp(44px, 4.05vw, 66px);
}

.program-fast-start__title span,
.program-intensive__title span,
.master-group__title span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-bronze-light);
  font-size: 0.46em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.program-fast-start__access {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 25px 0 0;
  align-items: center;
  gap: 13px;
  color: rgba(247, 248, 250, 0.88);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.25;
}

.program-fast-start__access strong {
  font-weight: 750;
}

.program-fast-start__access-icon {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(75, 136, 255, 0.25);
  border-radius: 16px;
  background: rgba(75, 136, 255, 0.08);
}

.program-fast-start__access-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: rgba(247, 248, 250, 0.72);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.program-fast-start__access-icon path:nth-of-type(1) {
  fill: rgba(226, 197, 138, 0.12);
  stroke: var(--color-bronze-light);
}

.program-fast-start__visual {
  position: relative;
  width: min(100%, 530px);
  margin: 37px 0 0;
  border: 1px solid rgba(75, 136, 255, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(75, 136, 255, 0.08), transparent 45%),
    rgba(17, 28, 41, 0.58);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.21);
}

.program-fast-start__visual::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-cobalt-bright), var(--color-bronze-light));
  content: "";
}

.program-fast-start__visual > svg {
  display: block;
  width: 100%;
  height: auto;
}

.program-fast-start__visual-number {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 23px;
  color: rgba(247, 248, 250, 0.055);
  font-family: var(--font-display);
  font-size: clamp(100px, 9vw, 145px);
  font-weight: 950;
  line-height: 0.8;
}

.program-fast-start__screen {
  fill: rgba(8, 14, 22, 0.62);
  stroke: url("#fast-start-frame");
  stroke-width: 2;
}

.program-fast-start__screen-line,
.program-fast-start__stand,
.program-fast-start__timeline {
  fill: none;
  stroke: rgba(247, 248, 250, 0.34);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.program-fast-start__screen-dot {
  fill: var(--color-cobalt-bright);
}

.program-fast-start__play {
  fill: rgba(226, 197, 138, 0.12);
  stroke: var(--color-bronze-light);
  stroke-linejoin: round;
  stroke-width: 3;
}

.program-fast-start__timeline-node {
  fill: var(--program-surface);
  stroke: var(--color-cobalt-bright);
  stroke-width: 3;
}

.program-fast-start__timeline-node:nth-of-type(5) {
  stroke: var(--color-bronze-light);
}

.program-fast-start__lessons {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(226, 197, 138, 0.28);
}

.program-fast-start__lesson {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 21px;
  padding: 22px 0 23px;
  border-bottom: 1px solid rgba(247, 248, 250, 0.105);
}

.program-fast-start__lesson::before {
  color: rgba(226, 197, 138, 0.78);
  content: attr(data-lesson);
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.program-fast-start__lesson::after {
  position: absolute;
  top: 22px;
  left: 48px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-cobalt-bright);
  box-shadow: 0 0 17px rgba(75, 136, 255, 0.44);
  content: "";
}

.program-fast-start__lesson:nth-child(5)::after {
  background: var(--color-bronze-light);
  box-shadow: 0 0 17px rgba(226, 197, 138, 0.42);
}

.program-fast-start__lesson h3,
.program-intensive__lesson h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 850;
  letter-spacing: -0.027em;
}

.program-fast-start__lesson h3 {
  font-size: clamp(23px, 1.75vw, 29px);
  line-height: 1.06;
}

.program-fast-start__lesson p,
.program-intensive__lesson p {
  color: rgba(247, 248, 250, 0.66);
}

.program-fast-start__lesson p {
  margin: 8px 0 0;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.48;
}

/* Block 18: six online lessons */
.program-intensive {
  padding: 76px 0 86px;
  background:
    radial-gradient(circle at 50% -6%, rgba(226, 197, 138, 0.07), transparent 31%),
    radial-gradient(circle at 93% 72%, rgba(47, 111, 237, 0.09), transparent 29%),
    var(--program-background);
}

.program-intensive::before {
  position: absolute;
  z-index: -1;
  top: 180px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(75, 136, 255, 0.16) 12%, rgba(226, 197, 138, 0.13) 84%, transparent);
  content: "";
}

.program-intensive__header {
  width: min(100%, 1240px);
  margin-inline: auto;
  text-align: center;
}

.program-intensive__title {
  font-size: clamp(45px, 4.2vw, 68px);
}

.program-intensive__title span {
  margin-bottom: 9px;
}

.program-intensive__facts {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  width: min(100%, 1120px);
  margin: 29px auto 0;
}

.program-intensive__fact {
  display: flex;
  min-height: 78px;
  margin: 0;
  padding: 13px 18px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(247, 248, 250, 0.1);
  border-radius: 20px;
  color: rgba(247, 248, 250, 0.84);
  background: rgba(17, 28, 41, 0.68);
  text-align: left;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.program-intensive__fact--dates {
  border-color: rgba(75, 136, 255, 0.2);
}

.program-intensive__fact--materials {
  border-color: rgba(226, 197, 138, 0.19);
}

.program-intensive__fact strong {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 740;
  line-height: 1.3;
}

.program-intensive__fact-icon {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: rgba(7, 13, 20, 0.48);
}

.program-intensive__fact-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: rgba(247, 248, 250, 0.67);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.program-intensive__fact-accent {
  stroke: var(--color-bronze-light);
  stroke-width: 2.4;
}

.program-intensive__schedule {
  position: relative;
  width: min(100%, 1260px);
  margin: 44px auto 0;
}

.program-intensive__schedule::before {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-cobalt-bright), rgba(75, 136, 255, 0.14) 48%, rgba(226, 197, 138, 0.14) 52%, var(--color-bronze-light));
  box-shadow: 0 0 25px rgba(47, 111, 237, 0.15);
  content: "";
  transform: translateX(-50%);
}

.program-intensive__lessons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 74px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-intensive__lesson {
  position: relative;
  min-width: 0;
  padding: 22px 24px 23px 76px;
  border: 1px solid rgba(247, 248, 250, 0.09);
  border-radius: 21px;
  background:
    linear-gradient(120deg, rgba(75, 136, 255, 0.055), transparent 42%),
    rgba(17, 28, 41, 0.64);
  box-shadow: 0 19px 43px rgba(0, 0, 0, 0.16);
}

.program-intensive__lesson:nth-child(even) {
  background:
    linear-gradient(240deg, rgba(226, 197, 138, 0.05), transparent 43%),
    rgba(17, 28, 41, 0.64);
}

.program-intensive__lesson::before {
  position: absolute;
  top: 19px;
  left: 19px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(75, 136, 255, 0.34);
  border-radius: 14px;
  color: var(--color-bronze-light);
  background: rgba(7, 13, 20, 0.58);
  content: attr(data-lesson);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.program-intensive__lesson::after {
  position: absolute;
  top: 38px;
  width: 38px;
  height: 1px;
  background: rgba(75, 136, 255, 0.28);
  content: "";
}

.program-intensive__lesson:nth-child(odd)::after {
  right: -38px;
}

.program-intensive__lesson:nth-child(even)::after {
  left: -38px;
  background: rgba(226, 197, 138, 0.25);
}

.program-intensive__lesson h3 {
  font-size: clamp(22px, 1.55vw, 27px);
  line-height: 1.08;
}

.program-intensive__lesson p {
  margin: 9px 0 0;
  font-size: clamp(15.5px, 1vw, 17px);
  line-height: 1.45;
}

/* Block 19: three-month master group */
.master-group {
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 78% 26%, rgba(47, 111, 237, 0.12), transparent 31%),
    radial-gradient(circle at 10% 90%, rgba(226, 197, 138, 0.065), transparent 27%),
    var(--program-background);
}

.master-group::before {
  position: absolute;
  z-index: -1;
  right: -160px;
  bottom: -230px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(75, 136, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px rgba(75, 136, 255, 0.018),
    0 0 0 148px rgba(226, 197, 138, 0.012);
  content: "";
}

.master-group__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 5.3vw, 82px);
  align-items: start;
}

.master-group__copy {
  min-width: 0;
}

.master-group__title {
  max-width: 860px;
  font-size: clamp(43px, 3.85vw, 63px);
}

.master-group__lead {
  margin: 24px 0 0;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.15vw, 35px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.master-group__lead strong {
  font-weight: inherit;
}

.master-group__intro {
  max-width: 830px;
  margin: 24px 0 0;
  color: rgba(247, 248, 250, 0.77);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.45;
}

.master-group__support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(226, 197, 138, 0.2);
}

.master-group__support li {
  display: grid;
  min-width: 0;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 248, 250, 0.1);
  color: rgba(247, 248, 250, 0.76);
  font-size: clamp(15.5px, 1.05vw, 17px);
  line-height: 1.4;
}

.master-group__support-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(75, 136, 255, 0.19);
  border-radius: 14px;
  background: rgba(17, 28, 41, 0.72);
}

.master-group__support-icon svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: rgba(247, 248, 250, 0.66);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.master-group__support-accent {
  stroke: var(--color-bronze-light);
  stroke-width: 2.3;
}

.master-group__portrait {
  position: relative;
  align-self: start;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 197, 138, 0.2);
  border-radius: 34px;
  background: #0c131d;
  box-shadow: 0 34px 68px rgba(0, 0, 0, 0.27);
}

.master-group__portrait::before,
.master-group__portrait::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

.master-group__portrait::before {
  top: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 17, 26, 0.96) 100%);
}

.master-group__portrait::after {
  height: 5px;
  background: linear-gradient(90deg, var(--color-cobalt-bright), var(--color-bronze-light));
}

.master-group__portrait picture,
.master-group__portrait img {
  display: block;
  width: 100%;
  height: 100%;
}

.master-group__portrait img {
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.88) contrast(1.04);
}

.master-group__promise {
  position: relative;
  width: 100%;
  margin: 27px 0 0;
  padding: 21px 25px 21px 39px;
  border: 1px solid rgba(226, 197, 138, 0.22);
  border-radius: 20px;
  color: var(--color-text);
  background:
    linear-gradient(100deg, rgba(226, 197, 138, 0.1), rgba(75, 136, 255, 0.06)),
    rgba(17, 28, 41, 0.78);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.4vw, 23px);
  font-stretch: condensed;
  font-weight: 780;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.master-group__promise::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 17px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-cobalt-bright), var(--color-bronze-light));
  content: "";
}

.master-group__promise strong {
  font-weight: inherit;
}

.master-group__conclusion {
  position: relative;
  display: grid;
  width: min(100%, 1270px);
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 8px 28px;
  margin: 50px auto 0;
  padding: 31px 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(75, 136, 255, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 7% 50%, rgba(75, 136, 255, 0.17), transparent 26%),
    linear-gradient(110deg, rgba(75, 136, 255, 0.08), rgba(226, 197, 138, 0.065)),
    rgba(17, 28, 41, 0.86);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.24);
  text-align: left;
}

.master-group__conclusion::before {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--color-cobalt-bright) 34%, var(--color-bronze-light) 66%, transparent);
  content: "";
}

.master-group__conclusion-route {
  display: grid;
  width: 88px;
  height: 88px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 27px;
  background: rgba(7, 13, 20, 0.42);
}

.master-group__conclusion-route svg {
  width: 80px;
  height: 80px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.master-group__conclusion-frame {
  fill: rgba(75, 136, 255, 0.04);
  stroke: rgba(247, 248, 250, 0.2);
  stroke-width: 1.5;
}

.master-group__conclusion-line {
  stroke: rgba(247, 248, 250, 0.44);
  stroke-width: 2;
}

.master-group__conclusion-node {
  fill: var(--program-surface);
  stroke: var(--color-cobalt-bright);
  stroke-width: 3;
}

.master-group__conclusion-node:last-of-type {
  stroke: var(--color-bronze-light);
}

.master-group__conclusion-accent {
  stroke: var(--color-bronze-light);
  stroke-width: 2.5;
}

.master-group__conclusion p {
  max-width: 1050px;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(25px, 2vw, 33px);
  font-stretch: condensed;
  font-weight: 820;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.master-group__conclusion p strong {
  font-weight: inherit;
}

.master-group__cta {
  grid-column: 2;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  min-height: 64px;
  margin-top: 16px;
  padding-inline: clamp(30px, 3.4vw, 54px);
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .program-fast-start__inner {
    grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
    gap: 46px;
  }

  .program-fast-start__visual {
    margin-top: 31px;
  }

  .program-intensive__lessons {
    gap: 20px 58px;
  }

  .program-intensive__lesson::after {
    width: 30px;
  }

  .program-intensive__lesson:nth-child(odd)::after {
    right: -30px;
  }

  .program-intensive__lesson:nth-child(even)::after {
    left: -30px;
  }

  .master-group__hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    gap: 42px;
  }

  .master-group__support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .program-fast-start,
  .program-intensive,
  .master-group {
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .program-fast-start__inner {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.62fr);
    gap: 34px 40px;
  }

  .program-fast-start__visual {
    margin-top: 28px;
  }

  .program-fast-start__lessons {
    grid-column: 1 / -1;
  }

  .program-intensive__facts {
    grid-template-columns: 1fr 1fr;
  }

  .program-intensive__lessons {
    gap: 18px 46px;
  }

  .program-intensive__lesson {
    padding: 20px 19px 21px 67px;
  }

  .program-intensive__lesson::before {
    top: 17px;
    left: 15px;
    width: 39px;
    height: 39px;
  }

  .program-intensive__lesson::after {
    top: 35px;
    width: 24px;
  }

  .program-intensive__lesson:nth-child(odd)::after {
    right: -24px;
  }

  .program-intensive__lesson:nth-child(even)::after {
    left: -24px;
  }

  .master-group__hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 34px;
  }

  .master-group__promise {
    margin-top: 24px;
  }
}

@media (max-width: 900px) {
  .master-group__cta {
    white-space: normal;
  }
}

@media (max-width: 820px) {
  .program-fast-start,
  .program-intensive,
  .master-group {
    padding: 61px 0 68px;
  }

  .program-fast-start__inner,
  .master-group__hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .program-fast-start__inner {
    gap: 28px;
  }

  .program-fast-start__title,
  .program-intensive__title,
  .master-group__title {
    font-size: clamp(39px, 10.4vw, 49px);
    line-height: 0.95;
  }

  .program-fast-start__access {
    margin-top: 21px;
  }

  .program-fast-start__visual {
    width: 100%;
    max-width: 560px;
    margin: 26px auto 0;
  }

  .program-fast-start__lessons {
    grid-column: auto;
  }

  .program-fast-start__lesson {
    grid-template-columns: 59px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0 21px;
  }

  .program-fast-start__lesson::after {
    top: 20px;
    left: 40px;
  }

  .program-fast-start__lesson h3 {
    font-size: 24px;
  }

  .program-fast-start__lesson p {
    font-size: 16px;
  }

  .program-intensive::before,
  .program-intensive__schedule::before {
    display: none;
  }

  .program-intensive__header {
    text-align: left;
  }

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

  .program-intensive__facts {
    gap: 11px;
    margin-top: 25px;
  }

  .program-intensive__fact {
    min-height: 72px;
    padding: 11px 14px;
    border-radius: 18px;
  }

  .program-intensive__schedule {
    margin-top: 31px;
  }

  .program-intensive__lessons {
    gap: 13px;
  }

  .program-intensive__lesson {
    padding: 19px 17px 20px 66px;
    border-radius: 18px;
  }

  .program-intensive__lesson::after {
    display: none;
  }

  .program-intensive__lesson h3 {
    font-size: 23px;
  }

  .program-intensive__lesson p {
    font-size: 15.5px;
  }

  .master-group__hero {
    gap: 28px;
  }

  .master-group__lead {
    margin-top: 21px;
    font-size: 28px;
  }

  .master-group__intro {
    margin-top: 21px;
    font-size: 18px;
  }

  .master-group__support {
    margin-top: 24px;
  }

  .master-group__support li {
    padding: 16px 0;
    font-size: 16px;
  }

  .master-group__portrait {
    width: min(100%, 560px);
    max-height: none;
    aspect-ratio: 5 / 4;
    margin-inline: auto;
    border-radius: 28px;
  }

  .master-group__portrait img {
    object-position: 50% 35%;
  }

  .master-group__promise {
    margin-top: 24px;
    padding: 22px 20px 22px 33px;
    border-radius: 19px;
    font-size: 21px;
  }

  .master-group__promise::before {
    top: 17px;
    bottom: 17px;
    left: 15px;
    width: 4px;
  }

  .master-group__conclusion {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 38px;
    padding: 27px 21px 24px;
    border-radius: 23px;
    text-align: center;
  }

  .master-group__conclusion-route {
    width: 76px;
    height: 76px;
    grid-row: auto;
    justify-self: center;
    border-radius: 23px;
  }

  .master-group__conclusion-route svg {
    width: 70px;
    height: 70px;
  }

  .master-group__conclusion p {
    font-size: clamp(23px, 6.3vw, 29px);
    line-height: 1.2;
  }

  .master-group__cta {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    min-height: 64px;
    margin-top: 3px;
    padding-inline: 22px;
    white-space: normal;
  }
}

@media (max-width: 430px) {
  .program-fast-start__title,
  .program-intensive__title,
  .master-group__title {
    font-size: clamp(36px, 10.1vw, 42px);
  }

  .program-fast-start__title span,
  .program-intensive__title span,
  .master-group__title span {
    margin-bottom: 8px;
    font-size: 0.49em;
  }

  .program-fast-start__access-icon {
    flex-basis: 45px;
    width: 45px;
    height: 45px;
  }

  .program-fast-start__access {
    gap: 11px;
    font-size: 16px;
  }

  .program-fast-start__visual {
    border-radius: 23px;
  }

  .program-fast-start__lesson h3,
  .program-intensive__lesson h3 {
    font-size: 22px;
  }

  .program-intensive__fact-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .program-intensive__fact-icon svg {
    width: 38px;
    height: 38px;
  }

  .program-intensive__fact strong {
    font-size: 15.5px;
  }

  .master-group__lead {
    font-size: 26px;
  }

  .master-group__support li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
    font-size: 15.5px;
  }

  .master-group__support-icon {
    width: 42px;
    height: 42px;
  }

  .master-group__promise {
    font-size: 20px;
  }

  .master-group__cta {
    font-size: 15px;
  }
}
/* Block 20: audience recognition */
.audience {
  --audience-ink: #101722;
  --audience-muted: #56606d;
  --audience-line: rgba(16, 23, 34, 0.14);
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(78px, 6.6vw, 112px) 0 clamp(82px, 7vw, 120px);
  color: var(--audience-ink);
  background:
    radial-gradient(circle at 93% 4%, rgba(47, 111, 237, 0.13), transparent 29%),
    radial-gradient(circle at 4% 96%, rgba(200, 164, 98, 0.14), transparent 30%),
    #f1efe9;
}

.audience::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 23, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 23, 34, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), transparent 84%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), transparent 84%);
  content: "";
  pointer-events: none;
}

.audience::after {
  position: absolute;
  z-index: -1;
  top: 31%;
  left: 50%;
  width: 1px;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(47, 111, 237, 0.16) 18%, rgba(200, 164, 98, 0.24) 76%, transparent);
  content: "";
  pointer-events: none;
}

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

.audience__header {
  position: relative;
  margin-bottom: clamp(38px, 4vw, 58px);
}

.audience__heading {
  max-width: 1120px;
  min-width: 0;
}

.audience__title {
  max-width: 1080px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

.audience__intro {
  max-width: 760px;
  margin: clamp(20px, 2vw, 28px) 0 0;
  padding-left: 20px;
  border-left: 4px solid var(--color-cobalt);
  color: #35404e;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 650;
  line-height: 1.42;
}

.audience__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(44px, 5vw, 84px);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--audience-line);
  border-bottom: 1px solid var(--audience-line);
  list-style: none;
}

.audience__list::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--audience-line) 7%, var(--audience-line) 93%, transparent);
  content: "";
}

.audience__item {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
  padding: clamp(22px, 2vw, 29px) 4px;
  border-bottom: 1px solid var(--audience-line);
}

.audience__item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.audience__item:nth-child(odd) {
  padding-right: clamp(8px, 1vw, 18px);
}

.audience__item:nth-child(even) {
  padding-left: clamp(8px, 1vw, 18px);
}

.audience__icon {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
}

.audience__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(16, 23, 34, 0.14));
}

.audience__copy {
  min-width: 0;
}

.audience__copy h3 {
  margin: 0;
  color: var(--audience-ink);
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 820;
  line-height: 1.2;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.audience__copy p {
  margin: 9px 0 0;
  color: var(--audience-muted);
  font-size: clamp(15.5px, 1.12vw, 17.5px);
  line-height: 1.46;
}

.audience__conclusion {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: clamp(34px, 3.6vw, 52px);
  padding: clamp(26px, 2.8vw, 38px) clamp(25px, 3.6vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-large);
  color: var(--color-text);
  background:
    linear-gradient(110deg, rgba(47, 111, 237, 0.2), transparent 43%),
    var(--color-ink-soft);
  box-shadow: 0 24px 65px rgba(16, 23, 34, 0.2);
}

.audience__conclusion::after {
  position: absolute;
  top: -76px;
  right: -28px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(226, 197, 138, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(226, 197, 138, 0.035),
    0 0 0 68px rgba(47, 111, 237, 0.035);
  content: "";
}

.audience__conclusion-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(226, 197, 138, 0.32);
  border-radius: 20px;
  color: var(--color-bronze-light);
  background: rgba(226, 197, 138, 0.08);
}

.audience__conclusion-mark svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.audience__conclusion > div {
  position: relative;
  z-index: 1;
}

.audience__conclusion h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(29px, 2.6vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.audience__conclusion p {
  margin: 10px 0 0;
  color: #c2cad4;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 620;
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .audience__list {
    gap: 0 40px;
  }

  .audience__item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 15px;
  }

  .audience__icon {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 820px) {
  .audience {
    padding: 64px 0 72px;
  }

  .audience::after,
  .audience__list::before {
    display: none;
  }

  .audience__header {
    margin-bottom: 33px;
  }

  .audience__title {
    font-size: clamp(40px, 8.5vw, 57px);
  }

  .audience__intro {
    margin-top: 19px;
    padding-left: 15px;
    border-left-width: 3px;
    font-size: 18px;
  }

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

  .audience__item,
  .audience__item:nth-child(odd),
  .audience__item:nth-child(even) {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 21px 2px;
    border-bottom: 1px solid var(--audience-line);
  }

  .audience__item:last-child {
    border-bottom: 0;
  }

  .audience__copy h3 {
    font-size: clamp(20px, 3.5vw, 23px);
  }

  .audience__copy p {
    font-size: 16px;
  }

  .audience__conclusion {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    margin-top: 34px;
    padding: 25px 22px;
    border-radius: 23px;
  }

  .audience__conclusion-mark {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .audience__conclusion-mark svg {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 520px) {
  .audience__heading {
    position: relative;
    z-index: 1;
  }

  .audience__title {
    font-size: clamp(37px, 10.2vw, 44px);
    line-height: 0.98;
  }

  .audience__intro {
    padding-right: 24px;
    font-size: 17px;
  }

  .audience__item,
  .audience__item:nth-child(odd),
  .audience__item:nth-child(even) {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding: 19px 0;
  }

  .audience__icon {
    width: 62px;
    height: 62px;
  }

  .audience__copy h3 {
    font-size: 19px;
    line-height: 1.22;
  }

  .audience__copy p {
    margin-top: 7px;
    font-size: 15.5px;
    line-height: 1.43;
  }

  .audience__conclusion {
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
    padding: 23px 20px 24px;
    text-align: left;
  }

  .audience__conclusion-mark {
    width: 50px;
    height: 50px;
  }

  .audience__conclusion-mark svg {
    width: 43px;
    height: 43px;
  }

  .audience__conclusion h3 {
    font-size: clamp(27px, 7.5vw, 32px);
  }

  .audience__conclusion p {
    margin-top: 9px;
    font-size: 16px;
  }
}

/* Block 21: benefits and personal system */
.benefits {
  --benefits-panel: #0f1825;
  --benefits-panel-raised: #131f2f;
  --benefits-line: rgba(255, 255, 255, 0.11);
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(82px, 6.8vw, 116px) 0 clamp(88px, 7.2vw, 124px);
  color: var(--color-text);
  background:
    radial-gradient(circle at 84% 6%, rgba(47, 111, 237, 0.26), transparent 29%),
    radial-gradient(circle at 10% 86%, rgba(200, 164, 98, 0.13), transparent 30%),
    linear-gradient(150deg, #111a27 0%, #090e16 54%, #0d1520 100%);
}

.benefits::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 47%, rgba(75, 136, 255, 0.055) 47% 47.12%, transparent 47.12% 100%),
    linear-gradient(65deg, transparent 0 67%, rgba(226, 197, 138, 0.04) 67% 67.1%, transparent 67.1% 100%),
    radial-gradient(rgba(255, 255, 255, 0.13) 0.7px, transparent 0.8px);
  background-size: 100% 100%, 100% 100%, 23px 23px;
  content: "";
  opacity: 0.48;
  pointer-events: none;
}

.benefits::after {
  position: absolute;
  z-index: -1;
  top: -320px;
  right: -250px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(75, 136, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 76px rgba(75, 136, 255, 0.027),
    0 0 0 152px rgba(226, 197, 138, 0.018);
  content: "";
  pointer-events: none;
}

.benefits__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.benefits__header {
  max-width: 1280px;
  margin-bottom: clamp(40px, 4.2vw, 62px);
}

.benefits__header-line {
  position: relative;
  display: block;
  width: clamp(96px, 10vw, 154px);
  height: 4px;
  margin-bottom: clamp(21px, 2vw, 29px);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-bronze-light), var(--color-cobalt-bright) 58%, transparent);
  box-shadow: 0 0 25px rgba(75, 136, 255, 0.44);
}

.benefits__header-line::before,
.benefits__header-line::after {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.benefits__header-line::before {
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid #09101a;
  background: var(--color-bronze-light);
  box-shadow: 0 0 18px rgba(226, 197, 138, 0.48);
}

.benefits__header-line::after {
  left: 58%;
  width: 8px;
  height: 8px;
  background: var(--color-cobalt-bright);
  box-shadow: 0 0 18px rgba(75, 136, 255, 0.72);
}

.benefits__title {
  max-width: 1260px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.05vw, 80px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.047em;
  text-transform: uppercase;
  text-wrap: balance;
}

.benefits__title span {
  display: block;
  margin-bottom: 0.1em;
  color: var(--color-bronze-light);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(75, 136, 255, 0.23);
  border-radius: 30px;
  background: var(--benefits-line);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  list-style: none;
}

.benefits__item {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: clamp(14px, 1.4vw, 21px);
  align-items: start;
  min-width: 0;
  min-height: 238px;
  padding: clamp(24px, 2.2vw, 33px) clamp(21px, 2vw, 30px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(75, 136, 255, 0.065), transparent 45%),
    var(--benefits-panel);
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.benefits__item::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 48%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cobalt-bright), transparent);
  content: "";
  opacity: 0.52;
}

.benefits__item:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, var(--color-bronze-light), transparent);
  opacity: 0.4;
}

.benefits__item:nth-child(3n)::before {
  background: linear-gradient(90deg, #64bde8, transparent);
  opacity: 0.45;
}

.benefits__item::after {
  position: absolute;
  top: -90px;
  left: -85px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.14), transparent 67%);
  content: "";
  pointer-events: none;
}

.benefits__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
}

.benefits__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
  transform-origin: 50% 58%;
  transition: transform 240ms ease, filter 240ms ease;
}

.benefits__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.benefits__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 1.65vw, 25px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.028em;
  text-transform: uppercase;
  text-wrap: balance;
}

.benefits__copy p {
  margin: 13px 0 0;
  color: #b5bfcc;
  font-size: clamp(15px, 1.04vw, 16.5px);
  line-height: 1.47;
}

.benefits__outro {
  position: relative;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: clamp(24px, 2.8vw, 42px);
  align-items: center;
  margin-top: clamp(38px, 4vw, 58px);
  padding: clamp(29px, 3.2vw, 46px) clamp(28px, 4vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(75, 136, 255, 0.42);
  border-radius: var(--radius-large);
  background:
    linear-gradient(112deg, rgba(47, 111, 237, 0.39), rgba(47, 111, 237, 0.1) 48%, rgba(200, 164, 98, 0.12)),
    #101b29;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.benefits__outro::before {
  position: absolute;
  top: -190px;
  right: -70px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(226, 197, 138, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(226, 197, 138, 0.028),
    0 0 0 88px rgba(75, 136, 255, 0.035);
  content: "";
}

.benefits__outro-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(226, 197, 138, 0.36);
  border-radius: 27px;
  color: var(--color-bronze-light);
  background: linear-gradient(145deg, rgba(226, 197, 138, 0.13), rgba(75, 136, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 38px rgba(0, 0, 0, 0.26);
}

.benefits__outro-mark svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.benefits__outro-copy {
  position: relative;
  z-index: 1;
}

.benefits__outro-title {
  max-width: 1160px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(31px, 3vw, 47px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.036em;
  text-transform: uppercase;
  text-wrap: balance;
}

.benefits__outro-title strong {
  font-weight: inherit;
}

.benefits__outro-copy > p:last-child {
  margin: 14px 0 0;
  color: #d1d8e1;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 650;
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .benefits__item:hover {
    background:
      linear-gradient(145deg, rgba(75, 136, 255, 0.12), transparent 48%),
      var(--benefits-panel-raised);
    box-shadow: inset 0 0 0 1px rgba(75, 136, 255, 0.15);
  }

  .benefits__item:hover .benefits__icon img {
    filter: drop-shadow(0 19px 25px rgba(0, 0, 0, 0.46));
    transform: translateY(-4px) scale(1.035);
  }
}

@media (max-width: 1180px) {
  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits__item {
    grid-template-columns: 102px minmax(0, 1fr);
    min-height: 214px;
  }

  .benefits__icon {
    width: 102px;
    height: 102px;
  }
}

@media (max-width: 820px) {
  .benefits {
    padding: 70px 0 82px;
  }

  .benefits__title {
    font-size: clamp(43px, 7.5vw, 58px);
  }

  .benefits__item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 15px;
    min-height: 0;
    padding: 24px 20px;
  }

  .benefits__icon {
    width: 92px;
    height: 92px;
  }

  .benefits__copy h3 {
    font-size: clamp(20px, 2.7vw, 23px);
  }

  .benefits__outro {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 24px;
    padding: 31px 28px;
  }

  .benefits__outro-mark {
    width: 74px;
    height: 74px;
    border-radius: 23px;
  }

  .benefits__outro-mark svg {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 720px) {
  .benefits__grid {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 24px;
  }

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

  .benefits__icon {
    width: 94px;
    height: 94px;
  }
}

@media (max-width: 520px) {
  .benefits {
    padding: 62px 0 70px;
  }

  .benefits::after {
    top: -210px;
    right: -300px;
  }

  .benefits__header {
    margin-bottom: 31px;
  }

  .benefits__header-line {
    margin-bottom: 18px;
  }

  .benefits__title {
    font-size: clamp(35px, 9.5vw, 42px);
    line-height: 0.97;
    letter-spacing: -0.04em;
  }

  .benefits__grid {
    border-radius: 20px;
  }

  .benefits__item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 21px 16px 22px;
  }

  .benefits__icon {
    width: 76px;
    height: 76px;
  }

  .benefits__copy h3 {
    font-size: 19px;
    line-height: 1.08;
  }

  .benefits__copy p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.43;
  }

  .benefits__outro {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
    margin-top: 31px;
    padding: 25px 21px 27px;
    border-radius: 21px;
  }

  .benefits__outro-mark {
    width: 62px;
    height: 62px;
    border-radius: 19px;
  }

  .benefits__outro-mark svg {
    width: 49px;
    height: 49px;
  }

  .benefits__outro-title {
    font-size: clamp(28px, 7.8vw, 34px);
    line-height: 1;
  }

  .benefits__outro-copy > p:last-child {
    margin-top: 11px;
    font-size: 16px;
  }
}

/* Block 22: order form */
.order {
  --order-paper: #f6f3eb;
  --order-ink: #101722;
  --order-blue: #205fdc;
  --order-blue-bright: #397cff;
  --order-gold: #f2bd54;
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(86px, 7vw, 124px) 0 clamp(92px, 7.4vw, 132px);
  color: var(--order-ink);
  background:
    radial-gradient(circle at 8% 92%, rgba(200, 164, 98, 0.18), transparent 28%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.76), transparent 42%),
    var(--order-paper);
}

.order::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-bronze-light), var(--order-blue-bright) 48%, #75d2ef);
  box-shadow: 0 6px 30px rgba(47, 111, 237, 0.42);
  content: "";
}

.order::after {
  position: absolute;
  z-index: -2;
  top: -20%;
  right: -12%;
  width: min(60vw, 980px);
  height: 135%;
  background:
    linear-gradient(132deg, transparent 0 18%, rgba(47, 111, 237, 0.08) 18% 18.3%, transparent 18.3% 100%),
    radial-gradient(ellipse at 54% 48%, rgba(47, 111, 237, 0.18), transparent 61%);
  content: "";
  transform: rotate(-8deg);
  pointer-events: none;
}

.order__signal {
  position: absolute;
  z-index: -1;
  bottom: -210px;
  left: -180px;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  pointer-events: none;
}

.order__signal-orbit,
.order__signal-core {
  position: absolute;
  border-radius: 50%;
}

.order__signal-orbit {
  border: 1px solid rgba(47, 111, 237, 0.2);
}

.order__signal-orbit--outer {
  inset: 0;
  box-shadow: 0 0 0 54px rgba(47, 111, 237, 0.025);
}

.order__signal-orbit--inner {
  inset: 118px;
  border-color: rgba(200, 164, 98, 0.27);
}

.order__signal-core {
  inset: 220px;
  background: var(--order-blue-bright);
  box-shadow: 0 0 34px rgba(57, 124, 255, 0.48);
}

.order__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
  gap: clamp(54px, 5.3vw, 92px);
  align-items: center;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.order__copy {
  position: relative;
  min-width: 0;
}

.order__headline-marker {
  position: relative;
  display: block;
  width: clamp(108px, 10vw, 158px);
  height: 6px;
  margin-bottom: clamp(24px, 2.3vw, 34px);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--order-blue-bright), var(--order-gold));
  box-shadow: 0 8px 22px rgba(47, 111, 237, 0.24);
}

.order__headline-marker::before,
.order__headline-marker::after {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.order__headline-marker::before {
  left: 0;
  width: 17px;
  height: 17px;
  border: 4px solid var(--order-paper);
  background: var(--order-blue-bright);
  box-shadow: 0 0 0 1px rgba(47, 111, 237, 0.18);
}

.order__headline-marker::after {
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--order-gold);
}

.order__title {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(53px, 4.55vw, 73px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.047em;
  text-transform: uppercase;
  text-wrap: balance;
}

.order__title span {
  display: block;
}

.order__title span + span {
  margin-top: 0.12em;
  color: var(--order-blue);
}

.order__lead {
  max-width: 710px;
  margin: clamp(27px, 2.7vw, 39px) 0 0;
  color: #3f4a57;
  font-size: clamp(19px, 1.48vw, 23px);
  font-weight: 620;
  line-height: 1.48;
}

.order__direction {
  width: min(270px, 43%);
  margin: 34px 3% 0 auto;
  overflow: visible;
  fill: none;
  stroke: var(--order-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.order__direction circle {
  fill: var(--order-gold);
  stroke: var(--order-paper);
  stroke-width: 3;
}

.order__form-stage {
  position: relative;
  min-width: 0;
  padding: clamp(19px, 2vw, 29px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 42px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.25), transparent 24%),
    radial-gradient(circle at 7% 90%, rgba(242, 189, 84, 0.34), transparent 30%),
    linear-gradient(145deg, #16366f 0%, var(--order-blue) 52%, #4c8cff 100%);
  box-shadow:
    0 43px 100px rgba(30, 74, 159, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.order__form-stage::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 31px;
  content: "";
  pointer-events: none;
}

.order__form-corner {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--order-gold);
  box-shadow:
    0 0 0 8px rgba(242, 189, 84, 0.14),
    0 0 28px rgba(242, 189, 84, 0.5);
  pointer-events: none;
}

.order__form-corner--top {
  top: 6px;
  right: 52px;
}

.order__form-corner--bottom {
  bottom: 7px;
  left: 50px;
}

.order__form-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 27px;
  background: #ffffff;
  box-shadow:
    0 24px 65px rgba(3, 14, 38, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

/* The supplied Infoclub form keeps its original IDs, names, action and script.
   Only presentation is overridden inside block 22. */
.order #bf405.inbfrm.v2,
.order #bf405_inner {
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--order-ink) !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  text-align: left !important;
}

.order #bf405_inner {
  padding: clamp(28px, 3.1vw, 47px) clamp(25px, 3vw, 45px) clamp(27px, 3vw, 44px) !important;
  background:
    linear-gradient(125deg, rgba(47, 111, 237, 0.04), transparent 34%),
    #ffffff !important;
}

.order #bf405 .title {
  position: relative !important;
  width: auto !important;
  margin: 0 0 clamp(25px, 2.3vw, 33px) !important;
  padding: 0 0 20px !important;
  border: 0 !important;
  color: var(--order-ink) !important;
  background: none !important;
  font-family: var(--font-display) !important;
  font-size: clamp(33px, 2.8vw, 43px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.035em !important;
  text-align: left !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

.order #bf405 .title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--order-blue-bright), rgba(47, 111, 237, 0.1));
  content: "";
}

.order #bf405_form {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
}

.order #bf405 .input_line,
.order #bf405 .submit_line,
.order #bf405 .privacy_agreement_block {
  position: relative !important;
  float: none !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
}

.order #bf405 .input_line + .input_line {
  margin-top: 15px !important;
}

.order #bf405 input.text,
.order #bf405 input[type="text"],
.order #bf405 input[type="email"],
.order #bf405 input[type="tel"],
.order #bf405 select,
.order #bf405 textarea {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 68px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  border: 2px solid #c7d0dc !important;
  border-radius: 13px !important;
  outline: 0 !important;
  color: #141c27 !important;
  background: #f7f9fc !important;
  background-image: none !important;
  box-shadow:
    inset 0 1px 2px rgba(15, 28, 46, 0.04),
    0 6px 16px rgba(15, 28, 46, 0.045) !important;
  font-family: var(--font-body) !important;
  font-size: 19px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  appearance: none;
  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.order #bf405 textarea {
  min-height: 124px !important;
  padding-block: 16px !important;
  resize: vertical;
}

.order #bf405 input.text::placeholder,
.order #bf405 input[type="text"]::placeholder,
.order #bf405 input[type="email"]::placeholder,
.order #bf405 input[type="tel"]::placeholder,
.order #bf405 textarea::placeholder {
  color: #667282 !important;
  opacity: 1 !important;
}

.order #bf405 input.text:hover,
.order #bf405 input[type="text"]:hover,
.order #bf405 input[type="email"]:hover,
.order #bf405 input[type="tel"]:hover,
.order #bf405 select:hover,
.order #bf405 textarea:hover {
  border-color: #9eb1c9 !important;
}

.order #bf405 input.text:focus,
.order #bf405 input[type="text"]:focus,
.order #bf405 input[type="email"]:focus,
.order #bf405 input[type="tel"]:focus,
.order #bf405 select:focus,
.order #bf405 textarea:focus {
  border-color: var(--order-blue-bright) !important;
  background: #ffffff !important;
  box-shadow:
    0 0 0 5px rgba(57, 124, 255, 0.14),
    0 13px 28px rgba(47, 111, 237, 0.12) !important;
  transform: translateY(-1px);
}

.order #bf405 input:-webkit-autofill,
.order #bf405 input:-webkit-autofill:hover,
.order #bf405 input:-webkit-autofill:focus {
  -webkit-text-fill-color: #141c27 !important;
  box-shadow: 0 0 0 1000px #f7f9fc inset !important;
}

.order #bf405 .submit_line {
  margin-top: 20px !important;
}

.order #bf405 .submit_line input.button,
.order #bf405 input[type="submit"] {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 72px !important;
  margin: 0 !important;
  padding: 17px 28px !important;
  border: 0 !important;
  border-radius: 13px !important;
  outline: 0 !important;
  color: #17202d !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 46%),
    linear-gradient(135deg, #ffd879 0%, var(--order-gold) 52%, #e4a437 100%) !important;
  box-shadow:
    0 18px 36px rgba(205, 139, 28, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(15px, 1.28vw, 21px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-shadow: none !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  appearance: none;
  transition:
    box-shadow var(--transition-fast),
    filter var(--transition-fast),
    transform var(--transition-fast) !important;
}

.order #bf405 .submit_line input.button:hover,
.order #bf405 input[type="submit"]:hover {
  box-shadow:
    0 22px 43px rgba(205, 139, 28, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  filter: saturate(1.08) brightness(1.025);
  transform: translateY(-2px);
}

.order #bf405 .submit_line input.button:focus-visible,
.order #bf405 input[type="submit"]:focus-visible {
  outline: 4px solid rgba(57, 124, 255, 0.52) !important;
  outline-offset: 4px !important;
}

.order #bf405 .submit_line input.button:active,
.order #bf405 input[type="submit"]:active {
  transform: translateY(0);
}

.order #bf405 .submit_line input.button:disabled,
.order #bf405 input[type="submit"]:disabled {
  cursor: wait !important;
  filter: grayscale(0.25);
  opacity: 0.72 !important;
  transform: none;
}

.order #bf405 .privacy_agreement_block {
  margin-top: 18px !important;
  color: #596575 !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 560 !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

.order #bf405 .privacy_agreement_block label {
  display: grid !important;
  grid-template-columns: 21px minmax(0, 1fr) !important;
  column-gap: 9px !important;
  align-items: flex-start !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  color: inherit !important;
  font-family: var(--font-body) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-align: left !important;
  text-indent: 0 !important;
  text-overflow: clip !important;
  white-space: normal !important;
  cursor: pointer;
}

.order #bf405 .privacy_agreement_block input[type="checkbox"] {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  display: block !important;
  float: none !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start !important;
  justify-self: start !important;
  flex: 0 0 auto;
  width: 21px !important;
  height: 21px !important;
  margin: 0 2px 0 0 !important;
  border: 2px solid #9aa9ba !important;
  border-radius: 5px !important;
  accent-color: var(--order-blue);
  cursor: pointer;
  transform: none !important;
}

.order #bf405 .privacy_agreement_block .ibfm_txt {
  position: static !important;
  display: block !important;
  float: none !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
  min-width: 0 !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  background: none !important;
  font-family: var(--font-body) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: normal !important;
  text-align: left !important;
  text-indent: 0 !important;
  white-space: normal !important;
}

.order #bf405 .privacy_agreement_block a {
  position: static !important;
  display: inline !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--order-blue) !important;
  background: none !important;
  font-family: var(--font-body) !important;
  font-size: inherit !important;
  font-weight: 760 !important;
  line-height: inherit !important;
  letter-spacing: normal !important;
  white-space: normal !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
}

.order #bf405 .privacy_agreement_block a:hover {
  color: #174cae !important;
}

.order #bf405 .error,
.order #bf405 .error_text,
.order #bf405 .error_message,
.order #bf405 .input_error {
  color: #b7252e !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

@media (hover: hover) and (pointer: fine) {
  .order__form-stage {
    transition: transform 260ms ease, box-shadow 260ms ease;
  }

  .order__form-stage:hover {
    box-shadow:
      0 48px 110px rgba(30, 74, 159, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-4px);
  }
}

@media (max-width: 1180px) {
  .order__inner {
    grid-template-columns: minmax(0, 1fr) minmax(455px, 0.92fr);
    gap: 42px;
  }

  .order__title {
    font-size: clamp(47px, 5vw, 61px);
  }

  .order__lead {
    font-size: 19px;
  }

  .order__direction {
    width: 220px;
    margin-top: 24px;
  }
}

@media (max-width: 920px) {
  .order {
    padding: 78px 0 92px;
  }

  .order__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
  }

  .order__copy {
    max-width: 760px;
  }

  .order__title {
    max-width: 780px;
    font-size: clamp(48px, 7.1vw, 66px);
  }

  .order__lead {
    max-width: 700px;
    font-size: clamp(19px, 2.4vw, 22px);
  }

  .order__direction {
    display: none;
  }

  .order__form-stage {
    width: min(100%, 680px);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .order {
    padding: 65px 0 74px;
  }

  .order::after {
    top: 22%;
    right: -70%;
    width: 150vw;
    height: 90%;
  }

  .order__signal {
    bottom: -260px;
    left: -300px;
  }

  .order__headline-marker {
    height: 5px;
    margin-bottom: 21px;
  }

  .order__title {
    font-size: clamp(37px, 10.2vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.041em;
  }

  .order__lead {
    margin-top: 23px;
    font-size: 17px;
    line-height: 1.47;
  }

  .order__inner {
    gap: 34px;
  }

  .order__form-stage {
    padding: 13px;
    border-radius: 29px;
  }

  .order__form-stage::before {
    inset: 7px;
    border-radius: 24px;
  }

  .order__form-corner {
    width: 16px;
    height: 16px;
    box-shadow:
      0 0 0 6px rgba(242, 189, 84, 0.13),
      0 0 20px rgba(242, 189, 84, 0.45);
  }

  .order__form-corner--top {
    top: 0;
    right: 35px;
  }

  .order__form-corner--bottom {
    bottom: 0;
    left: 34px;
  }

  .order__form-frame {
    border-radius: 20px;
  }

  .order #bf405_inner {
    padding: 27px 20px 25px !important;
  }

  .order #bf405 .title {
    margin-bottom: 21px !important;
    padding-bottom: 16px !important;
    font-size: clamp(30px, 8.3vw, 36px) !important;
  }

  .order #bf405 .input_line + .input_line {
    margin-top: 12px !important;
  }

  .order #bf405 input.text,
  .order #bf405 input[type="text"],
  .order #bf405 input[type="email"],
  .order #bf405 input[type="tel"],
  .order #bf405 select {
    height: 61px !important;
    padding-inline: 16px !important;
    border-radius: 11px !important;
    font-size: 17px !important;
  }

  .order #bf405 .submit_line {
    margin-top: 16px !important;
  }

  .order #bf405 .submit_line input.button,
  .order #bf405 input[type="submit"] {
    min-height: 64px !important;
    padding-inline: 12px !important;
    border-radius: 11px !important;
    font-size: clamp(14px, 3.45vw, 17px) !important;
    letter-spacing: 0 !important;
  }

  .order #bf405 .privacy_agreement_block {
    margin-top: 16px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 390px) {
  .order #bf405_inner {
    padding-inline: 17px !important;
  }

  .order #bf405 .submit_line input.button,
  .order #bf405 input[type="submit"] {
    padding-inline: 6px !important;
    font-size: clamp(12.5px, 3.6vw, 14px) !important;
  }

  .order #bf405 .privacy_agreement_block label {
    column-gap: 7px !important;
  }
}

@media (max-width: 340px) {
  .order #bf405_inner {
    padding-inline: 12px !important;
  }

  .order #bf405 .submit_line input.button,
  .order #bf405 input[type="submit"] {
    padding-inline: 2px !important;
    font-size: 14px !important;
    text-transform: none !important;
  }
}

/* Block 23: FAQ */
.faq {
  --faq-panel: #101a28;
  --faq-panel-open: #142235;
  --faq-line: rgba(255, 255, 255, 0.12);
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(82px, 6.8vw, 116px) 0 clamp(88px, 7.2vw, 124px);
  color: var(--color-text);
  background:
    radial-gradient(circle at 91% 8%, rgba(47, 111, 237, 0.24), transparent 26%),
    radial-gradient(circle at 8% 92%, rgba(200, 164, 98, 0.1), transparent 27%),
    linear-gradient(145deg, #0d1520 0%, #080d15 58%, #0c1420 100%);
}

.faq::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 72%, rgba(75, 136, 255, 0.05) 72% 72.12%, transparent 72.12% 100%),
    radial-gradient(rgba(255, 255, 255, 0.12) 0.65px, transparent 0.8px);
  background-size: 100% 100%, 25px 25px;
  content: "";
  opacity: 0.38;
  pointer-events: none;
}

.faq::after {
  position: absolute;
  z-index: -1;
  top: -280px;
  right: -245px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(75, 136, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 66px rgba(75, 136, 255, 0.026),
    0 0 0 132px rgba(226, 197, 138, 0.016);
  content: "";
  pointer-events: none;
}

.faq__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.faq__header {
  max-width: 1180px;
  margin-bottom: clamp(38px, 4vw, 57px);
}

.faq__header-line {
  position: relative;
  display: block;
  width: clamp(104px, 10vw, 158px);
  height: 4px;
  margin-bottom: clamp(20px, 2vw, 28px);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-bronze-light), var(--color-cobalt-bright) 62%, transparent);
  box-shadow: 0 0 24px rgba(75, 136, 255, 0.38);
}

.faq__header-line::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid #0a111a;
  border-radius: 50%;
  background: var(--color-bronze-light);
  box-shadow: 0 0 17px rgba(226, 197, 138, 0.46);
  content: "";
  transform: translateY(-50%);
}

.faq__title {
  max-width: 1160px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 79px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.047em;
  text-transform: uppercase;
  text-wrap: balance;
}

.faq__list {
  max-width: 1280px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(75, 136, 255, 0.23);
  border-radius: 28px;
  background: var(--faq-panel);
  box-shadow:
    0 32px 84px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.faq__item {
  position: relative;
  background:
    linear-gradient(115deg, rgba(75, 136, 255, 0.025), transparent 44%),
    var(--faq-panel);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq__item + .faq__item {
  border-top: 1px solid var(--faq-line);
}

.faq__item::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-cobalt-bright), var(--color-bronze-light));
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.faq__item.is-open {
  background:
    radial-gradient(circle at 92% 10%, rgba(75, 136, 255, 0.1), transparent 26%),
    linear-gradient(115deg, rgba(75, 136, 255, 0.095), transparent 46%),
    var(--faq-panel-open);
  box-shadow: inset 0 0 0 1px rgba(75, 136, 255, 0.08);
}

.faq__item.is-open::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq__heading {
  margin: 0;
}

.faq__question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
  width: 100%;
  min-height: 84px;
  margin: 0;
  padding: 17px clamp(22px, 3.1vw, 46px);
  border: 0;
  color: var(--color-text);
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.72vw, 27px);
  font-stretch: condensed;
  font-weight: 860;
  line-height: 1.12;
  letter-spacing: -0.022em;
  text-align: left;
  cursor: pointer;
}

.faq__question:hover {
  color: #ffffff;
}

.faq__question:focus-visible {
  outline: 3px solid var(--color-bronze-light);
  outline-offset: -5px;
}

.faq__toggle {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(226, 197, 138, 0.3);
  border-radius: 50%;
  color: var(--color-bronze-light);
  background: rgba(226, 197, 138, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition:
    border-color var(--transition-fast),
    color var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.faq__toggle i {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.faq__toggle i:last-child {
  transform: rotate(90deg);
}

.faq__item.is-open .faq__toggle {
  border-color: rgba(75, 136, 255, 0.48);
  color: #ffffff;
  background: var(--color-cobalt);
  box-shadow: 0 10px 27px rgba(47, 111, 237, 0.25);
  transform: rotate(180deg);
}

.faq__item.is-open .faq__toggle i:last-child {
  opacity: 0;
  transform: rotate(90deg) scaleX(0);
}

.faq__answer[hidden] {
  display: none;
}

.no-js .faq__answer[hidden] {
  display: block;
}

.no-js .faq__toggle {
  display: none;
}

.faq__answer-inner {
  max-width: 1080px;
  padding: 0 clamp(82px, 8vw, 126px) clamp(25px, 2.6vw, 38px) clamp(22px, 3.1vw, 46px);
  color: #bdc7d3;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.57;
}

.faq__answer-inner p {
  margin: 0;
}

.faq__answer-inner p + p {
  margin-top: 13px;
}

.faq__answer-inner strong {
  color: var(--color-bronze-light);
  font-weight: 830;
}

.faq__consultation {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: clamp(23px, 2.5vw, 38px);
  align-items: center;
  max-width: 1360px;
  margin: clamp(42px, 4.3vw, 62px) auto 0;
  padding: clamp(29px, 3.2vw, 46px) clamp(27px, 3.6vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(120deg, #173e86 0%, #2466e3 56%, #4385ff 100%);
  box-shadow:
    0 31px 82px rgba(19, 69, 158, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.faq__consultation::before {
  position: absolute;
  top: -180px;
  right: 22%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(255, 255, 255, 0.025),
    0 0 0 88px rgba(226, 197, 138, 0.035);
  content: "";
  pointer-events: none;
}

.faq__consultation-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  color: var(--color-bronze-light);
  background: rgba(8, 22, 49, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 34px rgba(7, 24, 60, 0.22);
}

.faq__consultation-mark svg {
  width: 65px;
  height: 65px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.faq__consultation-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.faq__consultation-copy h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.35vw, 38px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.034em;
  text-transform: uppercase;
  text-wrap: balance;
}

.faq__consultation-copy p {
  max-width: 790px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.48;
}

.faq__consultation-button {
  position: relative;
  z-index: 1;
  min-width: 330px;
  min-height: 62px;
  gap: 14px;
  padding: 15px 24px;
  border-radius: 12px;
  color: #17202d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 46%),
    linear-gradient(135deg, #ffd879 0%, #f2bd54 52%, #e4a437 100%);
  box-shadow:
    0 18px 38px rgba(8, 30, 75, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.025em;
  text-align: center;
  white-space: nowrap;
}

.faq__consultation-button svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.faq__consultation-button:hover {
  box-shadow:
    0 22px 46px rgba(8, 30, 75, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  filter: saturate(1.06) brightness(1.02);
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .faq__consultation {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .faq__consultation-mark {
    width: 74px;
    height: 74px;
    border-radius: 23px;
  }

  .faq__consultation-mark svg {
    width: 58px;
    height: 58px;
  }

  .faq__consultation-button {
    grid-column: 2;
    justify-self: start;
    min-width: 360px;
  }
}

@media (max-width: 760px) {
  .faq {
    padding: 72px 0 82px;
  }

  .faq__title {
    font-size: clamp(43px, 8vw, 58px);
  }

  .faq__list {
    border-radius: 23px;
  }

  .faq__question {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 18px;
    min-height: 76px;
    padding: 15px 20px;
    font-size: clamp(20px, 3.4vw, 24px);
  }

  .faq__toggle {
    width: 44px;
    height: 44px;
  }

  .faq__answer-inner {
    padding: 0 74px 26px 20px;
    font-size: 16px;
    line-height: 1.53;
  }

  .faq__consultation {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 21px;
    padding: 28px 24px 30px;
    border-radius: 23px;
  }

  .faq__consultation-mark {
    width: 66px;
    height: 66px;
    border-radius: 21px;
  }

  .faq__consultation-mark svg {
    width: 52px;
    height: 52px;
  }

  .faq__consultation-copy h3 {
    font-size: clamp(26px, 5.2vw, 34px);
  }

  .faq__consultation-button {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .faq {
    padding: 62px 0 70px;
  }

  .faq::after {
    top: -220px;
    right: -340px;
  }

  .faq__header {
    margin-bottom: 30px;
  }

  .faq__header-line {
    margin-bottom: 18px;
  }

  .faq__title {
    font-size: clamp(36px, 9.7vw, 43px);
    line-height: 0.98;
  }

  .faq__list {
    border-radius: 19px;
  }

  .faq__question {
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 12px;
    min-height: 70px;
    padding: 14px 15px;
    font-size: 19px;
    line-height: 1.16;
  }

  .faq__toggle {
    width: 38px;
    height: 38px;
  }

  .faq__toggle i {
    width: 15px;
  }

  .faq__answer-inner {
    padding: 0 15px 22px;
    font-size: 15px;
    line-height: 1.5;
  }

  .faq__consultation {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
    margin-top: 34px;
    padding: 24px 19px 21px;
    border-radius: 20px;
  }

  .faq__consultation-mark {
    width: 60px;
    height: 60px;
    border-radius: 19px;
  }

  .faq__consultation-mark svg {
    width: 47px;
    height: 47px;
  }

  .faq__consultation-copy h3 {
    font-size: clamp(25px, 7.3vw, 31px);
    line-height: 1.02;
  }

  .faq__consultation-copy p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.46;
  }

  .faq__consultation-button {
    min-height: 59px;
    padding-inline: 16px;
    font-size: 14px;
  }
}

@media (max-width: 370px) {
  .faq__consultation-button {
    gap: 9px;
    font-size: 13px;
    letter-spacing: 0.012em;
  }

  .faq__consultation-button svg {
    width: 20px;
    height: 20px;
  }
}

/* Block 24: closing emotional screen */
.closing {
  --closing-line: rgba(226, 197, 138, 0.26);
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(78px, 6.4vw, 110px) 0 clamp(84px, 7vw, 120px);
  border-top: 1px solid rgba(226, 197, 138, 0.16);
  color: var(--color-text);
  background:
    radial-gradient(circle at 88% 24%, rgba(47, 111, 237, 0.2), transparent 28%),
    radial-gradient(circle at 9% 92%, rgba(200, 164, 98, 0.1), transparent 25%),
    linear-gradient(142deg, #080d14 0%, #0a121d 52%, #07101b 100%);
}

.closing::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(116deg, transparent 0 66%, rgba(75, 136, 255, 0.055) 66% 66.12%, transparent 66.12% 100%),
    linear-gradient(116deg, transparent 0 72%, rgba(226, 197, 138, 0.04) 72% 72.08%, transparent 72.08% 100%),
    radial-gradient(rgba(255, 255, 255, 0.11) 0.65px, transparent 0.8px);
  background-size: 100% 100%, 100% 100%, 27px 27px;
  content: "";
  opacity: 0.36;
  pointer-events: none;
}

.closing::after {
  position: absolute;
  z-index: -1;
  right: -260px;
  bottom: -310px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(75, 136, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 78px rgba(75, 136, 255, 0.022),
    0 0 0 156px rgba(226, 197, 138, 0.015);
  content: "";
  pointer-events: none;
}

.closing__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.closing__header {
  max-width: 1380px;
  margin-bottom: clamp(34px, 3.5vw, 52px);
}

.closing__signal {
  position: relative;
  display: block;
  width: clamp(116px, 11vw, 172px);
  height: 4px;
  margin-bottom: clamp(18px, 1.8vw, 26px);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-cobalt-bright), var(--color-bronze-light) 72%, transparent);
  box-shadow: 0 0 27px rgba(75, 136, 255, 0.38);
}

.closing__signal::after {
  position: absolute;
  top: 50%;
  right: 14%;
  width: 12px;
  height: 12px;
  border: 2px solid #0a111a;
  border-radius: 50%;
  background: var(--color-bronze-light);
  box-shadow: 0 0 18px rgba(226, 197, 138, 0.52);
  content: "";
  transform: translateY(-50%);
}

.closing__title {
  max-width: 1360px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 80px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.052em;
  text-transform: uppercase;
  text-wrap: balance;
}

.closing__title span {
  display: block;
  margin-top: 5px;
  color: var(--color-bronze-light);
  background: linear-gradient(90deg, #f1d9a7 0%, var(--color-bronze-light) 31%, #76a7ff 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.closing__lead {
  margin: clamp(20px, 2.1vw, 30px) 0 0;
  color: #c3cedb;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.3;
}

.closing__lead strong {
  color: #ffffff;
  font-weight: 850;
}

.closing__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  grid-template-rows: auto auto;
  gap: clamp(26px, 2.6vw, 40px) clamp(38px, 4.7vw, 72px);
  align-items: start;
}

.closing__story {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 2;
  padding-left: clamp(22px, 2vw, 31px);
}

.closing__story::before {
  position: absolute;
  inset: 3px auto 0 0;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--color-cobalt-bright), rgba(75, 136, 255, 0.1) 62%, transparent);
  box-shadow: 0 0 22px rgba(75, 136, 255, 0.26);
  content: "";
}

.closing__story > p {
  margin: 0;
  color: #bdc8d4;
  font-size: clamp(17px, 1.24vw, 19px);
  line-height: 1.56;
}

.closing__story > p:first-child {
  color: #e4e9ef;
  font-size: clamp(19px, 1.48vw, 22px);
  line-height: 1.5;
}

.closing__story > p + p {
  margin-top: clamp(16px, 1.5vw, 22px);
}

.closing__story strong {
  color: #ffffff;
  font-weight: 820;
}

.closing__risk {
  position: relative;
  margin-top: clamp(22px, 2.2vw, 31px);
  padding: clamp(21px, 2.1vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(226, 197, 138, 0.22);
  border-left: 4px solid var(--color-bronze-light);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 197, 138, 0.08), transparent 34%),
    rgba(226, 197, 138, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.closing__risk::after {
  position: absolute;
  top: -54px;
  right: -46px;
  width: 144px;
  height: 144px;
  border: 1px solid rgba(226, 197, 138, 0.1);
  border-radius: 50%;
  content: "";
}

.closing__risk p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #d7dee6;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.56;
}

.closing__visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 197, 138, 0.24);
  border-radius: clamp(20px, 2vw, 30px);
  background: #080e16;
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(75, 136, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.closing__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 22, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(8, 14, 22, 0.06), transparent 68%, rgba(8, 14, 22, 0.28));
  content: "";
  pointer-events: none;
}

.closing__visual::after {
  position: absolute;
  z-index: 2;
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(clamp(20px, 2vw, 30px) - 8px);
  content: "";
  pointer-events: none;
}

.closing__visual picture,
.closing__visual img {
  display: block;
  width: 100%;
}

.closing__visual img {
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.closing__action {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  padding-top: clamp(23px, 2.1vw, 31px);
  border-top: 1px solid var(--closing-line);
}

.closing__action::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: clamp(92px, 9vw, 138px);
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-bronze-light), var(--color-cobalt-bright));
  content: "";
}

.closing__result,
.closing__invitation {
  margin: 0;
  color: #c2ccd7;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
}

.closing__maxim {
  max-width: 730px;
  margin: clamp(18px, 1.8vw, 25px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 39px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.closing__maxim strong {
  font-weight: inherit;
}

.closing__invitation {
  max-width: 720px;
  margin-top: clamp(17px, 1.6vw, 22px);
  color: #e0e6ec;
}

.closing__button {
  min-width: min(100%, 520px);
  min-height: 70px;
  gap: 15px;
  margin-top: clamp(23px, 2.2vw, 32px);
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  color: #17202d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 46%),
    linear-gradient(135deg, #ffd878 0%, #f2bd54 52%, #e4a437 100%);
  box-shadow:
    0 20px 48px rgba(7, 20, 44, 0.36),
    0 0 34px rgba(226, 197, 138, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.018em;
  text-align: center;
  white-space: nowrap;
}

.closing__button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform var(--transition-fast);
}

.closing__button:hover {
  box-shadow:
    0 24px 54px rgba(7, 20, 44, 0.42),
    0 0 42px rgba(226, 197, 138, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  filter: saturate(1.06) brightness(1.025);
  transform: translateY(-2px);
}

.closing__button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1240px) {
  .closing__layout {
    grid-template-columns: minmax(0, 0.98fr) minmax(470px, 1.02fr);
    column-gap: 42px;
  }

  .closing__button {
    min-width: 100%;
    padding-inline: 20px;
    font-size: 15px;
  }
}

@media (max-width: 1100px) {
  .closing__layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 34px;
  }

  .closing__story,
  .closing__visual,
  .closing__action {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 960px);
    margin-inline: auto;
  }

  .closing__visual {
    margin-top: 2px;
  }

  .closing__action {
    padding-top: 29px;
  }

  .closing__button {
    width: auto;
    min-width: min(100%, 560px);
  }
}

@media (max-width: 760px) {
  .closing {
    padding: 68px 0 78px;
  }

  .closing__header {
    margin-bottom: 32px;
  }

  .closing__title {
    font-size: clamp(42px, 8.2vw, 56px);
    line-height: 0.97;
  }

  .closing__lead {
    font-size: clamp(20px, 3.6vw, 25px);
  }

  .closing__layout {
    gap: 29px;
  }

  .closing__story {
    padding-left: 21px;
  }

  .closing__visual {
    border-radius: 23px;
  }

  .closing__visual::after {
    inset: 8px;
    border-radius: 16px;
  }

  .closing__maxim {
    font-size: clamp(29px, 5.6vw, 38px);
  }
}

@media (max-width: 520px) {
  .closing {
    padding: 58px 0 66px;
  }

  .closing::after {
    right: -470px;
    bottom: -390px;
  }

  .closing__signal {
    margin-bottom: 17px;
  }

  .closing__header {
    margin-bottom: 28px;
  }

  .closing__title {
    font-size: clamp(35px, 9.2vw, 42px);
    line-height: 0.99;
    letter-spacing: -0.044em;
  }

  .closing__title span {
    margin-top: 7px;
  }

  .closing__lead {
    margin-top: 19px;
    font-size: 19px;
    line-height: 1.38;
  }

  .closing__layout {
    gap: 25px;
  }

  .closing__story {
    padding-left: 17px;
  }

  .closing__story::before {
    width: 2px;
  }

  .closing__story > p,
  .closing__story > p:first-child {
    font-size: 16px;
    line-height: 1.53;
  }

  .closing__story > p + p {
    margin-top: 15px;
  }

  .closing__risk {
    margin-top: 20px;
    padding: 19px 16px;
    border-left-width: 3px;
    border-radius: 0 14px 14px 0;
  }

  .closing__risk p,
  .closing__result,
  .closing__invitation {
    font-size: 15px;
    line-height: 1.52;
  }

  .closing__visual {
    border-radius: 18px;
  }

  .closing__visual::after {
    inset: 6px;
    border-radius: 13px;
  }

  .closing__action {
    padding-top: 25px;
  }

  .closing__maxim {
    margin-top: 17px;
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.04;
  }

  .closing__invitation {
    margin-top: 16px;
  }

  .closing__button {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    gap: 10px;
    margin-top: 23px;
    padding: 14px 13px;
    font-size: 13.5px;
    letter-spacing: 0.006em;
  }

  .closing__button svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 370px) {
  .closing__button {
    font-size: 12.6px;
    white-space: normal;
  }
}

/* Block 24: revised two-scene composition */
.closing__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  gap: clamp(54px, 5.4vw, 82px);
}

.closing__scene {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(460px, 1.02fr);
  gap: clamp(36px, 4.4vw, 68px);
  align-items: center;
}

.closing__scene--final {
  grid-template-columns: minmax(500px, 1.08fr) minmax(0, 0.92fr);
  padding-top: clamp(42px, 4.2vw, 62px);
  border-top: 1px solid var(--closing-line);
}

.closing__story,
.closing__visual,
.closing__action {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  margin-inline: 0;
}

.closing__visual {
  display: grid;
  place-items: center;
  padding: clamp(7px, 0.7vw, 11px);
}

.closing__visual picture {
  display: grid;
  width: 100%;
  place-items: center;
}

.closing__visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.closing__intro-visual img {
  max-height: 570px;
}

.closing__door-visual img {
  max-height: 440px;
}

.closing__action {
  padding-top: 0;
  border-top: 0;
}

.closing__action::before {
  top: -18px;
}

@media (max-width: 1240px) {
  .closing__scene {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
    gap: 40px;
  }

  .closing__scene--final {
    grid-template-columns: minmax(450px, 1.04fr) minmax(0, 0.96fr);
  }

  .closing__button {
    min-width: min(100%, 540px);
  }
}

@media (max-width: 1100px) {
  .closing__layout {
    gap: 54px;
  }

  .closing__scene,
  .closing__scene--final {
    grid-template-columns: minmax(0, 1fr);
    gap: 31px;
  }

  .closing__scene--final {
    padding-top: 48px;
  }

  .closing__story,
  .closing__visual,
  .closing__action {
    width: min(100%, 960px);
    margin-inline: auto;
  }

  .closing__intro-visual img {
    max-height: none;
  }

  .closing__door-visual img {
    max-height: 520px;
  }

  .closing__action {
    padding-top: 19px;
  }

  .closing__action::before {
    top: -1px;
  }
}

@media (max-width: 520px) {
  .closing__layout {
    gap: 43px;
  }

  .closing__scene,
  .closing__scene--final {
    gap: 24px;
  }

  .closing__scene--final {
    padding-top: 38px;
  }

  .closing__visual {
    padding: 5px;
  }

  .closing__door-visual img {
    max-height: none;
  }

  .closing__action {
    padding-top: 17px;
  }
}

/* Block 25: long student-results proof wall */
.student-stories {
  --stories-gap: clamp(10px, 0.85vw, 14px);
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(78px, 6.6vw, 112px) 0 clamp(88px, 7.5vw, 132px);
  border-top: 1px solid rgba(75, 136, 255, 0.2);
  color: var(--color-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 111, 237, 0.18), transparent 23%),
    radial-gradient(circle at 9% 31%, rgba(200, 164, 98, 0.08), transparent 19%),
    radial-gradient(circle at 92% 70%, rgba(47, 111, 237, 0.08), transparent 21%),
    linear-gradient(180deg, #070d15 0%, #09111b 42%, #060b12 100%);
}

.student-stories::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 18%, transparent 88%, #000 100%);
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.student-stories__inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.student-stories__header {
  width: min(100%, 1260px);
  margin: 0 auto clamp(44px, 4.4vw, 66px);
  text-align: center;
}

.student-stories__title {
  max-width: 1220px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.7vw, 75px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.048em;
  text-transform: uppercase;
  text-wrap: balance;
}

.student-stories__title::after {
  display: block;
  width: clamp(124px, 12vw, 190px);
  height: 4px;
  margin: clamp(22px, 2.2vw, 31px) auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--color-cobalt-bright) 22%, var(--color-bronze-light) 78%, transparent);
  box-shadow: 0 0 26px rgba(75, 136, 255, 0.34);
  content: "";
}

.student-stories__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3.4vw, 52px);
  margin-top: clamp(28px, 2.9vw, 42px);
  text-align: left;
}

.student-stories__intro p {
  margin: 0;
  color: #c4ced9;
  font-size: clamp(17px, 1.32vw, 20px);
  line-height: 1.54;
}

.student-stories__belief {
  margin: clamp(28px, 2.8vw, 40px) auto 0;
  padding: clamp(19px, 1.8vw, 26px) clamp(22px, 3vw, 46px);
  border: 1px solid rgba(226, 197, 138, 0.24);
  border-radius: var(--radius-medium);
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(226, 197, 138, 0.1), rgba(75, 136, 255, 0.07)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.28;
  text-wrap: balance;
}

.student-stories__belief strong {
  color: var(--color-bronze-light);
  font-weight: 850;
}

.student-stories__scroll-cue {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: clamp(24px, 2.3vw, 34px) 0 0;
  color: #ffffff;
  font-size: clamp(20px, 1.62vw, 25px);
  line-height: 1.3;
}

.student-stories__scroll-cue::after {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-cobalt-bright);
  border-bottom: 2px solid var(--color-cobalt-bright);
  content: "";
  transform: translateY(-3px) rotate(45deg);
}

.student-stories__wall {
  width: 100%;
}

.student-stories__masonry {
  columns: 330px;
  column-gap: var(--stories-gap);
}

.student-stories__item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 var(--stories-gap);
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(9px, 0.78vw, 13px);
  outline: none;
  background: #f3f5f7;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(75, 136, 255, 0.025);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.student-stories__item::after {
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) 50% 50% / 10px 1.5px no-repeat,
    linear-gradient(#fff, #fff) 50% 50% / 1.5px 10px no-repeat,
    rgba(7, 13, 21, 0.72);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.28);
  content: "";
  opacity: 0;
  transform: scale(0.84);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.student-stories__item:hover,
.student-stories__item:focus-visible {
  z-index: 2;
  border-color: rgba(75, 136, 255, 0.66);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(75, 136, 255, 0.16);
  transform: translateY(-3px);
}

.student-stories__item:hover::after,
.student-stories__item:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.student-stories__item img {
  display: block;
  width: 100%;
  height: auto;
}

.student-stories__callout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(25px, 3.7vw, 58px);
  align-items: center;
  margin: clamp(44px, 4.5vw, 66px) 0;
  padding: clamp(28px, 3vw, 43px) clamp(26px, 3.8vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(18px, 1.8vw, 27px);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.student-stories__callout::after {
  position: absolute;
  top: 50%;
  right: clamp(250px, 25vw, 420px);
  width: 220px;
  height: 220px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.09;
  transform: translateY(-50%);
  pointer-events: none;
}

.student-stories__callout--blue {
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 0%, rgba(124, 169, 255, 0.2), transparent 34%),
    linear-gradient(112deg, #10264a 0%, #0d1d35 57%, #0b1522 100%);
}

.student-stories__callout--bronze {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(239, 207, 143, 0.18), transparent 34%),
    linear-gradient(112deg, #2b2419 0%, #1d1b18 50%, #0d1622 100%);
}

.student-stories__callout p {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(29px, 2.7vw, 43px);
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.student-stories__callout-button,
.student-stories__final-button {
  gap: 13px;
  padding: 17px 25px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 12px;
  color: #17202d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 46%),
    linear-gradient(135deg, #ffd878 0%, #f2bd54 52%, #e4a437 100%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(226, 197, 138, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.016em;
  text-align: center;
}

.student-stories__callout-button svg,
.student-stories__final-button svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform var(--transition-fast);
}

.student-stories__callout-button:hover,
.student-stories__final-button:hover {
  box-shadow:
    0 23px 50px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(226, 197, 138, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  filter: saturate(1.05) brightness(1.025);
  transform: translateY(-2px);
}

.student-stories__callout-button:hover svg,
.student-stories__final-button:hover svg {
  transform: translateX(4px);
}

.student-stories__callout-button {
  position: relative;
  z-index: 1;
  min-width: clamp(310px, 25vw, 405px);
  min-height: 64px;
  white-space: nowrap;
}

.student-stories__noscript {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid rgba(226, 197, 138, 0.3);
  border-radius: var(--radius-medium);
  color: #ffffff;
  text-align: center;
}

.student-stories__final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  margin-top: clamp(58px, 6vw, 88px);
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(75, 136, 255, 0.34);
  border-radius: clamp(22px, 2.3vw, 34px);
  background:
    radial-gradient(circle at 0% 50%, rgba(75, 136, 255, 0.24), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(226, 197, 138, 0.13), transparent 30%),
    linear-gradient(118deg, #0d1d34, #0b1420 68%);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.student-stories__final-copy {
  max-width: 850px;
}

.student-stories__final-copy p {
  margin: 0;
  color: #c8d2dd;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

.student-stories__final-copy p + p {
  margin-top: 12px;
}

.student-stories__decision {
  margin-bottom: clamp(18px, 1.8vw, 25px) !important;
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 50px) !important;
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1.02 !important;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.student-stories__decision strong {
  color: var(--color-bronze-light);
}

.student-stories__final-button {
  min-width: clamp(470px, 36vw, 565px);
  min-height: 70px;
  padding-inline: 30px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .student-stories__callout,
  .student-stories__final {
    grid-template-columns: minmax(0, 1fr);
  }

  .student-stories__callout-button,
  .student-stories__final-button {
    width: min(100%, 590px);
    min-width: 0;
  }

  .student-stories__callout::after {
    right: -58px;
  }
}

@media (max-width: 720px) {
  .student-stories {
    padding-top: 66px;
  }

  .student-stories__header {
    margin-bottom: 38px;
  }

  .student-stories__title {
    font-size: clamp(40px, 11.5vw, 54px);
    line-height: 0.98;
  }

  .student-stories__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    text-align: left;
  }

  .student-stories__belief {
    padding: 19px 20px;
  }

  .student-stories__scroll-cue {
    display: flex;
    justify-content: center;
  }

  .student-stories__callout {
    gap: 23px;
    margin-block: 40px;
    padding: 28px 23px;
  }

  .student-stories__callout p {
    font-size: clamp(28px, 8.2vw, 36px);
  }

  .student-stories__callout-button,
  .student-stories__final-button {
    min-height: 62px;
    padding: 14px 18px;
    white-space: normal;
  }

  .student-stories__final {
    gap: 28px;
    margin-top: 48px;
    padding: 30px 23px;
  }
}

@media (max-width: 390px) {
  .student-stories__title {
    font-size: 38px;
  }

  .student-stories__callout-button,
  .student-stories__final-button {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .student-stories__item,
  .student-stories__item::after {
    transition: none;
  }
}

/* Block 26: legal and support footer */
.site-footer {
  position: relative;
  isolation: isolate;
  padding: clamp(46px, 5vw, 76px) 0 clamp(38px, 4.2vw, 64px);
  overflow: clip;
  border-top: 1px solid rgba(226, 197, 138, 0.2);
  color: #9da9b7;
  background:
    radial-gradient(circle at 50% -25%, rgba(75, 136, 255, 0.13), transparent 37%),
    linear-gradient(180deg, #050a11 0%, #070b11 100%);
}

.site-footer::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(75, 136, 255, 0.48) 35%, rgba(226, 197, 138, 0.58) 65%, transparent 92%);
  content: "";
}

.site-footer__inner {
  width: min(100%, calc(var(--container-max) + var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.site-footer__mark {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  gap: clamp(17px, 2vw, 30px);
  align-items: center;
  margin-bottom: clamp(32px, 3.5vw, 50px);
  color: var(--color-bronze-light);
}

.site-footer__mark::before,
.site-footer__mark::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12));
  content: "";
}

.site-footer__mark::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
}

.site-footer__logo {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 7px 18px rgba(226, 197, 138, 0.16));
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.site-footer__column--legal {
  max-width: 720px;
}

.site-footer__meta,
.site-footer__phone {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
}

.site-footer__meta {
  color: #c4cdd7;
}

.site-footer a {
  color: #d4dce5;
  text-decoration-color: rgba(226, 197, 138, 0.46);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color var(--transition-fast),
    text-decoration-color var(--transition-fast);
}

.site-footer a:hover {
  color: var(--color-bronze-light);
  text-decoration-color: currentColor;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px clamp(22px, 3vw, 46px);
  margin-top: 25px;
}

.site-footer__links a {
  width: fit-content;
  font-size: 14px;
  line-height: 1.42;
}

.site-footer__column--contacts {
  display: grid;
  gap: clamp(26px, 3vw, 39px);
  justify-items: end;
  text-align: right;
}

.site-footer__contact-group {
  width: min(100%, 480px);
}

.site-footer__contact-group h2 {
  margin: 0 0 12px;
  color: var(--color-bronze-light);
  font-family: var(--font-display);
  font-size: 16px;
  font-stretch: condensed;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-footer__support-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 18px;
}

.site-footer__support-links a {
  font-size: 15px;
  line-height: 1.45;
}

.site-footer__phone {
  color: #aeb8c4;
}

.site-footer ._phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 8px;
  color: #f0f3f6;
  font-weight: 760;
  white-space: normal;
}

.site-footer ._delimiter {
  color: rgba(226, 197, 138, 0.58);
}

@media (max-width: 920px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .site-footer__column--legal {
    max-width: none;
  }

  .site-footer__column--contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    justify-items: start;
    text-align: left;
  }

  .site-footer__support-links,
  .site-footer ._phones {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-top: 40px;
  }

  .site-footer__mark {
    margin-bottom: 30px;
  }

  .site-footer__logo {
    width: 36px;
  }

  .site-footer__links,
  .site-footer__column--contacts {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__column--contacts {
    gap: 28px;
  }
}

@media (max-width: 410px) {
  .site-footer ._delimiter {
    display: none;
  }

  .site-footer ._scnd_number {
    flex-basis: 100%;
  }
}

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