:root {
  color-scheme: light;
  --ink: #17212b;
  --ink-soft: #41556c;
  --line: #213449;
  --paper: #f7f9fc;
  --paper-blue: #eef5fd;
  --vk: #447bba;
  --vk-deep: #2f6fae;
  --vk-light: #dcecff;
  --cyan: #78c7f3;
  --green: #3ca46f;
  --shadow: #1e3147;
  --danger: #c84f4f;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background-color: #f4f6f8;
  background-image:
    url("data:image/svg+xml,%3Csvg width='320' height='320' viewBox='0 0 320 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23447bba' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' opacity='.2'%3E%3Crect x='22' y='24' width='58' height='58' rx='17' fill='%23ffffff'/%3E%3Cpath d='M38 42h26c4 0 7 3 7 7v10c0 4-3 7-7 7H51l-9 7v-7h-4c-4 0-7-3-7-7V49c0-4 3-7 7-7Z'/%3E%3Ccircle cx='46' cy='54' r='1.5' fill='%23447bba'/%3E%3Ccircle cx='52' cy='54' r='1.5' fill='%23447bba'/%3E%3Ccircle cx='58' cy='54' r='1.5' fill='%23447bba'/%3E%3Crect x='214' y='40' width='54' height='54' rx='16' fill='%23ffffff'/%3E%3Cpath d='M241 78s-15-8-15-20c0-6 4-9 9-9 3 0 5 2 6 4 1-2 3-4 6-4 5 0 9 3 9 9 0 12-15 20-15 20Z' stroke='%23d95f78'/%3E%3Crect x='126' y='152' width='60' height='60' rx='18' fill='%23ffffff'/%3E%3Ccircle cx='156' cy='182' r='17'/%3E%3Cpath d='m151 173 14 9-14 9v-18Z' fill='%23447bba'/%3E%3Crect x='234' y='232' width='56' height='56' rx='17' fill='%23ffffff'/%3E%3Cpath d='M249 270h-8v-21h8v21Zm4 0v-20l7-12c2-3 5-1 5 1v7h8c4 0 5 3 4 6l-4 14c-1 3-3 4-6 4h-14Z'/%3E%3C/g%3E%3Ctext x='41' y='270' fill='%23447bba' font-family='Arial,sans-serif' font-size='21' font-weight='700' opacity='.2'%3EVK%3C/text%3E%3Ctext x='274' y='152' fill='%23447bba' font-family='Arial,sans-serif' font-size='27' font-weight='700' opacity='.18'%3E%23%3C/text%3E%3C/svg%3E"),
    linear-gradient(rgba(53, 95, 138, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 95, 138, 0.09) 1px, transparent 1px);
  background-size: 320px 320px, 28px 28px, 28px 28px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

main,
footer {
  position: relative;
  z-index: 1;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.section-shell {
  width: min(calc(100% - 32px), 1000px);
  margin-inline: auto;
}

.lesson-stage {
  display: grid;
  gap: 24px;
  padding: 28px 0 64px;
}

.headline-panel,
.video-panel,
.offer-locked,
.proof-block,
.pricing-block {
  border: 3px solid var(--line);
  background:
    radial-gradient(circle at 15% 18%, rgba(220, 236, 255, 0.92), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(231, 242, 255, 0.85), transparent 25%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 8px 8px 0 var(--shadow);
}

.headline-panel {
  position: relative;
  padding: 28px clamp(22px, 6vw, 76px) 34px;
  text-align: center;
}

.puppy-sticker {
  position: absolute;
  z-index: 3;
  top: -8px;
  left: 42px;
  width: 116px;
  max-width: none;
  height: auto;
  filter: drop-shadow(4px 7px 0 rgba(68, 123, 186, 0.2));
  pointer-events: none;
  transform: rotate(-7deg);
  animation: puppy-bob 4.4s ease-in-out infinite;
}

.warning-strip {
  position: relative;
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 14px 20px;
  overflow: hidden;
  border: 2px solid #111a24;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #17212b, #213a56 48%, #17212b);
  background-size: 180% 100%;
  box-shadow: 0 0 0 0 rgba(68, 123, 186, 0.48);
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
  animation: warning-pulse 2.8s ease-in-out infinite, warning-gradient 5.5s ease-in-out infinite;
}

.warning-strip strong,
.warning-strip span {
  position: relative;
  z-index: 1;
  display: block;
}

.warning-strip strong {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 900;
  letter-spacing: 0.045em;
}

.warning-strip span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(11px, 1.35vw, 13px);
  font-weight: 700;
}

.warning-strip::after {
  position: absolute;
  top: -50%;
  left: -18%;
  width: 13%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: warning-shine 4.8s ease-in-out infinite;
}

@keyframes warning-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(68, 123, 186, 0.4);
    transform: scale(1);
  }

  48% {
    box-shadow: 0 0 0 8px rgba(68, 123, 186, 0);
    transform: scale(1.012);
  }
}

@keyframes warning-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes warning-shine {
  0%,
  60% {
    left: -18%;
  }

  100% {
    left: 116%;
  }
}

@keyframes puppy-bob {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }

  50% {
    transform: translateY(-5px) rotate(-4deg);
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 890px;
  margin: 0 auto 18px;
  color: #162536;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

.headline-highlight {
  padding: 0 0.13em 0.05em;
  color: #162536;
  background: linear-gradient(180deg, transparent 10%, rgba(255, 208, 76, 0.92) 10%, rgba(255, 224, 118, 0.92) 92%, transparent 92%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.headline-vk-logo {
  display: inline-block;
  width: 0.92em;
  height: 0.92em;
  margin: 0 0.04em 0.05em;
  border-radius: 0.2em;
  vertical-align: -0.08em;
  object-fit: contain;
}

.headline-vk-word {
  white-space: nowrap;
}

.lead,
.hero-description {
  max-width: 790px;
  margin-inline: auto;
}

.lead {
  margin-bottom: 14px;
  color: var(--vk-deep);
  font-size: clamp(20px, 3.1vw, 31px);
  line-height: 1.15;
}

.hero-description {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: 600;
}

.video-panel {
  padding: clamp(14px, 2.5vw, 20px);
}

.video-card {
  overflow: hidden;
  border: 3px solid var(--line);
  background: #fff;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 3px solid var(--line);
  background: #12243a;
  touch-action: manipulation;
  user-select: none;
}

.video-frame.is-kinescope > video,
.video-frame.is-kinescope > canvas,
.video-frame.is-kinescope > .video-overlay,
.video-frame.is-kinescope > .player-controls {
  display: none !important;
}

.kinescope-player {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #12243a;
}

.video-frame.is-kinescope > #kinescopePlayer {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.kinescope-cover {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: #fff;
  background: #12243a;
  cursor: pointer;
  overflow: hidden;
}

.kinescope-cover[hidden] {
  display: none;
}

.kinescope-cover picture,
.kinescope-cover img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.kinescope-cover img {
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.kinescope-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(68, 123, 186, 0.18), transparent 32%),
    linear-gradient(180deg, transparent 58%, rgba(9, 18, 29, 0.58));
  pointer-events: none;
}

.kinescope-cover-play {
  position: relative;
  z-index: 2;
  display: grid;
  width: clamp(62px, 8vw, 92px);
  height: clamp(62px, 8vw, 92px);
  place-items: center;
  border: 4px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, #72caf3, #2b78c8);
  box-shadow: 6px 6px 0 rgba(23, 33, 43, 0.95), 0 0 34px rgba(43, 120, 200, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.kinescope-cover-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #fff;
  filter: drop-shadow(0 2px 0 rgba(23, 33, 43, 0.22));
}

.kinescope-is-loading .kinescope-cover {
  cursor: wait;
}

.kinescope-is-loading .kinescope-cover-play::before {
  width: 28px;
  height: 28px;
  margin-left: 0;
  border: 4px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 999px;
  animation: cover-spin 0.8s linear infinite;
}

@keyframes cover-spin {
  to {
    transform: rotate(360deg);
  }
}

.kinescope-cover-text {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(18px, 3.5vw, 34px);
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(18, 36, 58, 0.66);
  box-shadow: 0 10px 24px rgba(18, 36, 58, 0.24);
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.kinescope-cover:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.kinescope-cover:hover .kinescope-cover-play {
  transform: translate(2px, 2px) scale(1.02);
  box-shadow: 3px 3px 0 rgba(23, 33, 43, 0.95), 0 0 42px rgba(43, 120, 200, 0.46);
}

.kinescope-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #12243a;
}

.video-frame:fullscreen,
.video-frame.is-fullscreen {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  border: 0;
  background: #000;
}

.video-frame:fullscreen video,
.video-frame.is-fullscreen video,
.video-frame:fullscreen .quality-freeze-frame,
.video-frame.is-fullscreen .quality-freeze-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.quality-freeze-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #12243a;
}

.video-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  color: #fff;
  text-align: center;
  background: rgba(18, 36, 58, 0.22);
  transition: opacity 180ms ease;
}

.video-overlay.is-hidden {
  pointer-events: none;
  opacity: 0;
}

.video-overlay p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.play-button {
  display: grid;
  width: 76px;
  height: 76px;
  margin: auto;
  place-items: center;
  border: 3px solid #17212b;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 5px 5px 0 rgba(23, 33, 43, 0.95);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.play-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(23, 33, 43, 0.95);
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #17212b;
}

.player-controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 28px 11px 9px;
  color: #fff;
  background: linear-gradient(0deg, rgba(3, 8, 14, 0.82), rgba(3, 8, 14, 0));
  opacity: 0;
  pointer-events: none;
  transform: translateY(7px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-frame.has-started .player-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.video-frame.is-fullscreen.fullscreen-idle {
  cursor: none;
}

.video-frame.is-fullscreen.fullscreen-idle .player-controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.player-icon-button,
.player-text-button,
.player-quality-button {
  display: flex;
  min-width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.player-icon-button:hover,
.player-text-button:hover,
.player-quality-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.player-icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.player-icon-button .icon-play,
.player-icon-button .icon-pause {
  fill: currentColor;
  stroke: none;
}

.video-frame.is-playing .icon-play,
.icon-pause,
.video-frame.is-muted .icon-volume,
.icon-muted {
  display: none;
}

.video-frame.is-playing .icon-pause,
.video-frame.is-muted .icon-muted {
  display: block;
}

.player-text-button {
  min-width: 39px;
  font-size: 15px;
  font-weight: 900;
}

.player-time {
  margin-left: 3px;
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
}

.player-spacer {
  flex: 1;
}

.player-quality-button {
  gap: 5px;
  padding: 0 7px;
  font-weight: 900;
}

.player-quality-button span {
  font-size: 13px;
}

.player-quality-button small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.player-menu-wrap {
  position: relative;
}

.player-menu {
  position: absolute;
  z-index: 8;
  bottom: 38px;
  min-width: 92px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(12, 22, 34, 0.94);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.rate-menu {
  left: 0;
  width: 174px;
}

.volume-menu {
  left: 0;
  width: 174px;
}

.quality-menu {
  right: 0;
}

.player-menu button {
  display: block;
  width: 100%;
  padding: 6px 9px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.player-menu button:hover,
.player-menu button.is-active {
  color: #fff;
  background: rgba(68, 123, 186, 0.82);
}

.slider-menu-heading,
.slider-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-menu-heading {
  gap: 16px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.slider-menu-heading span {
  color: #8fc9ff;
  font-weight: 900;
}

.slider-scale {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
}

.player-menu input[type="range"] {
  display: block;
  width: 100%;
  height: 18px;
  margin: 0;
  accent-color: #78c7f3;
  cursor: pointer;
}

.offer-shell {
  padding-bottom: 72px;
}

.offer-locked {
  position: relative;
  display: grid;
  min-height: 246px;
  padding: 34px 24px 38px;
  overflow: hidden;
  place-items: center;
  text-align: center;
}

.offer-locked:has(#routeLocked:not([hidden])) {
  padding-bottom: 0;
}

.offer-locked::before,
.offer-locked::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.offer-locked::before {
  width: 230px;
  height: 230px;
  top: -128px;
  right: -75px;
  border: 2px dashed rgba(38, 126, 229, 0.2);
}

.offer-locked::after {
  width: 126px;
  height: 126px;
  bottom: -74px;
  left: -45px;
  border: 2px dashed rgba(38, 126, 229, 0.22);
}

.lock-icon {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border: 2px solid rgba(38, 126, 229, 0.3);
  border-radius: 23px;
  background: linear-gradient(145deg, #f7fbff, #dfeeff);
  box-shadow: 0 10px 26px rgba(38, 126, 229, 0.2);
  place-items: center;
  animation: lock-pulse 2.6s ease-in-out infinite;
}

.lock-icon svg {
  width: 46px;
  height: 46px;
  overflow: visible;
}

.locked-copy {
  position: relative;
  z-index: 1;
}

.route-state {
  width: min(100%, 680px);
}

#routeLocked {
  position: relative;
  width: min(100%, 820px);
  padding-bottom: 20px;
}

.route-locked-sticker {
  position: absolute;
  width: 176px;
  height: auto;
  max-width: none;
  right: -70px;
  bottom: 70px;
  z-index: 1;
  filter: drop-shadow(0 9px 9px rgba(31, 67, 103, 0.16));
  pointer-events: none;
}

.route-locked-description {
  max-width: none;
  margin-inline: auto;
}

.route-placeholder {
  display: inline-flex;
  width: min(100%, 520px);
  min-height: 54px;
  margin-top: 22px;
  padding: 11px 16px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed rgba(79, 105, 131, 0.34);
  border-radius: 10px;
  color: #72859a;
  background: rgba(239, 244, 249, 0.76);
  cursor: not-allowed;
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0.84;
}

.route-placeholder-lock {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.lock-shackle,
.lock-body,
.lock-keyhole {
  stroke: var(--vk-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-placeholder .lock-shackle,
.route-placeholder .lock-body,
.route-placeholder .lock-keyhole {
  stroke: #72859a;
}

.route-placeholder .lock-keyhole {
  fill: #72859a;
}

.lock-shackle {
  fill: none;
  stroke-width: 4;
}

.lock-body {
  fill: #fff;
  stroke-width: 3;
}

.lock-keyhole {
  fill: var(--vk-deep);
  stroke-width: 3;
}

.route-opened {
  position: relative;
  width: min(100%, 820px);
  padding-bottom: 18px;
  z-index: 1;
}

.route-cta-row {
  position: relative;
  display: grid;
  margin-top: 18px;
  place-items: center;
}

.route-button {
  position: relative;
  display: inline-flex;
  width: min(100%, 560px);
  min-height: 78px;
  padding: 18px 29px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2377dc, #155aa8);
  box-shadow:
    7px 7px 0 var(--shadow),
    0 16px 34px rgba(38, 126, 229, 0.32);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  animation: route-button-arrival 760ms 140ms ease-out both;
}

.route-button::after {
  position: absolute;
  width: 38%;
  height: 180%;
  top: -40%;
  left: -52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  content: "";
  transform: skewX(-22deg);
  transition: left 560ms ease;
}

.route-button:hover {
  box-shadow:
    7px 9px 0 var(--shadow),
    0 21px 38px rgba(38, 126, 229, 0.42);
  background: linear-gradient(135deg, #318cff, #155aa8);
  transform: translateY(-4px) scale(1.015);
}

.route-button:hover::after {
  left: 120%;
}

.route-opened-sticker {
  position: absolute;
  width: 152px;
  height: auto;
  max-width: none;
  top: 20px;
  right: -57px;
  filter: drop-shadow(0 9px 9px rgba(31, 67, 103, 0.18));
  pointer-events: none;
}

.offer-locked .eyebrow {
  margin-bottom: 9px;
  border-color: rgba(38, 126, 229, 0.34);
  background: #e5f2ff;
  color: var(--vk-deep);
}

.offer-locked h2,
.proof-block h2,
.pricing-block h2 {
  margin-bottom: 8px;
  font-size: clamp(25px, 4vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.offer-locked p,
.proof-block > p,
.pricing-block > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

@keyframes lock-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 26px rgba(38, 126, 229, 0.2);
  }

  50% {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(38, 126, 229, 0.27);
  }
}

@keyframes route-button-arrival {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-content {
  display: grid;
  gap: 24px;
}

.offer-page-stage {
  display: grid;
  gap: 24px;
  padding: 28px 0 64px;
}

.offer-page-intro {
  padding: clamp(24px, 5vw, 46px);
  border: 3px solid var(--line);
  background:
    radial-gradient(circle at 84% 18%, rgba(120, 199, 243, 0.28), transparent 28%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 8px 8px 0 var(--shadow);
}

.offer-page-intro h1 {
  max-width: 790px;
  margin: 3px 0 10px;
  font-size: clamp(35px, 6vw, 66px);
  letter-spacing: -0.07em;
  line-height: 0.98;
  text-transform: uppercase;
}

.offer-page-intro > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--vk-deep);
  font-weight: 800;
  text-decoration: none;
}

.proof-section .back-link {
  display: flex;
  width: max-content;
  margin: 0 0 12px;
}

.back-link:hover {
  text-decoration: underline;
}

.offer-title-mark {
  position: relative;
  display: inline;
  padding: 0 0.1em 0.05em;
  color: #12243a;
  background: linear-gradient(180deg, transparent 8%, rgba(255, 210, 72, 0.92) 8%, rgba(255, 226, 123, 0.95) 88%, transparent 88%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.mentor-badge {
  display: inline-flex;
  margin: 0 auto 14px;
  padding: 6px 13px 6px 7px;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(33, 52, 73, 0.9);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2d7dd2, #183a5e);
  box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.88);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mentor-badge img {
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 28%;
}

.proof-section .section-heading {
  text-align: center;
}

.proof-section .offer-title,
.proof-section .section-heading > p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.proof-section .offer-title {
  text-align: left;
}

.proof-section .section-heading > p:last-child {
  text-align: center;
}

.proof-block,
.pricing-block {
  padding: clamp(24px, 4vw, 40px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 5px 10px;
  border: 2px solid var(--line);
  background: var(--cyan);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.stats-row article,
.review-placeholder,
.tariff-card {
  border: 2px solid var(--line);
  background: #fff;
}

.stats-row article {
  padding: 16px;
}

.stats-row article b {
  display: block;
  color: var(--vk-deep);
  font-size: 26px;
  line-height: 1;
}

.stats-row article span {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.review-placeholder {
  display: grid;
  min-height: 130px;
  padding: 16px;
  place-content: center;
  color: #698098;
  border-style: dashed;
  text-align: center;
}

.review-placeholder strong,
.review-placeholder span {
  display: block;
}

.review-placeholder span {
  margin-top: 5px;
  font-size: 13px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.tariff-card {
  display: flex;
  min-height: 330px;
  padding: 20px;
  flex-direction: column;
}

.tariff-card.is-featured {
  border-color: var(--vk-deep);
  background: linear-gradient(180deg, #edf6ff, #fff);
  box-shadow: 5px 5px 0 var(--vk);
}

.tariff-badge {
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 4px 7px;
  border: 2px solid var(--line);
  background: var(--cyan);
  color: var(--vk-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tariff-card h3 {
  margin-bottom: 7px;
  font-size: 25px;
}

.tariff-card > p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.tariff-price {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.tariff-price small {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.tariff-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 21px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
}

.tariff-card li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.buy-button,
.payment-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  color: #fff;
  background: var(--vk);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.buy-button {
  width: 100%;
  margin-top: auto;
}

.buy-button:hover,
.payment-link:hover {
  background: var(--vk-deep);
}

footer {
  padding: 0 16px 30px;
  color: #62778e;
  text-align: center;
  font-size: 13px;
}

.payment-dialog {
  width: min(100% - 32px, 470px);
  padding: 24px;
  border: 3px solid var(--line);
  color: var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--shadow);
}

.payment-dialog::backdrop {
  background: rgba(20, 35, 53, 0.7);
}

.payment-dialog h2 {
  margin-bottom: 8px;
}

.payment-dialog p {
  color: var(--ink-soft);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.payment-link {
  width: 100%;
  margin: 10px 0 9px;
}

.payment-dialog small {
  display: block;
  color: var(--ink-soft);
}

.trust-row {
  display: flex;
  gap: 10px 18px;
  margin-top: 20px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.master-page {
  display: grid;
  gap: 24px;
  padding: 28px 0 64px;
}

.offer-title {
  max-width: 760px;
  margin: 6px 0 12px;
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: -0.075em;
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-align: left;
}

.master-hero,
.master-section,
.participation-card {
  border: 3px solid var(--line);
  background:
    radial-gradient(circle at 12% 16%, rgba(220, 236, 255, 0.86), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(231, 242, 255, 0.88), transparent 24%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 8px 8px 0 var(--shadow);
}

.master-hero,
.master-section {
  padding: clamp(24px, 5vw, 46px);
}

.master-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 30px;
  align-items: center;
}

.master-hero h1 {
  max-width: 760px;
  margin: 7px 0 13px;
  font-size: clamp(43px, 7vw, 76px);
  letter-spacing: -0.075em;
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.master-lead,
.section-copy,
.section-heading > p:last-child {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 18px;
}

.master-primary-button {
  display: inline-flex;
  min-height: 56px;
  margin-top: 20px;
  padding: 13px 17px 13px 21px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 2px solid var(--line);
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #247ee7, #155ba9);
  box-shadow: 5px 5px 0 var(--shadow);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.master-primary-button b {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: var(--vk-deep);
  background: #fff;
  place-items: center;
}

.master-primary-button:hover {
  box-shadow: 3px 3px 0 var(--shadow);
  transform: translate(2px, 2px);
}

.hero-price-note {
  margin: 15px 0 0;
  color: var(--vk-deep);
  font-size: 14px;
  font-weight: 800;
}

.unlock-visual {
  position: relative;
  min-height: 286px;
  border: 2px solid rgba(47, 111, 174, 0.3);
  border-radius: 24px;
  background:
    linear-gradient(rgba(68, 123, 186, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 123, 186, 0.12) 1px, transparent 1px),
    rgba(237, 246, 255, 0.9);
  background-size: 22px 22px;
  overflow: hidden;
}

.unlock-path {
  position: absolute;
  width: 240px;
  height: 145px;
  top: 71px;
  left: 30px;
  border-top: 7px dashed #267ee5;
  border-radius: 50%;
  transform: rotate(-16deg);
}

.unlock-badge,
.unlock-point {
  position: absolute;
  display: grid;
  border: 3px solid var(--vk-deep);
  color: var(--ink);
  background: #fff;
  place-items: center;
}

.unlock-badge {
  width: 78px;
  height: 78px;
  bottom: 35px;
  left: 25px;
  border-radius: 50%;
  color: #fff;
  background: var(--vk);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(68, 123, 186, 0.13);
}

.unlock-point {
  width: 132px;
  min-height: 72px;
  top: 41px;
  right: 20px;
  padding: 10px;
  border-radius: 16px;
  text-align: center;
}

.unlock-point b,
.unlock-point small {
  display: block;
}

.unlock-point b {
  color: var(--vk-deep);
  font-size: 26px;
}

.unlock-point small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.unlock-key {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 112px;
  right: 96px;
  border: 3px solid var(--vk-deep);
  border-radius: 50%;
  background: #ddecff;
  box-shadow: 0 0 0 8px rgba(68, 123, 186, 0.13);
}

.unlock-key::before {
  position: absolute;
  width: 55px;
  height: 13px;
  top: 45px;
  left: -38px;
  border-radius: 8px;
  background: var(--vk-deep);
  content: "";
  transform: rotate(-38deg);
}

.unlock-key span::before,
.unlock-key span::after {
  position: absolute;
  width: 12px;
  height: 19px;
  bottom: -15px;
  background: var(--vk-deep);
  content: "";
}

.unlock-key span::before {
  left: -23px;
  transform: rotate(-38deg);
}

.unlock-key span::after {
  left: -8px;
  transform: rotate(-38deg);
}

.master-section h2,
.participation-card h2 {
  max-width: 850px;
  margin: 3px 0 10px;
  font-size: clamp(29px, 5vw, 48px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.section-heading > p:last-child {
  margin-bottom: 0;
}

.route-section .section-heading {
  text-align: center;
}

.route-section .section-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.route-section .section-heading > p:last-child {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  white-space: normal;
}

.issue-grid,
.included-grid,
.proof-stats,
.afterpay-grid {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.issue-grid {
  grid-template-columns: repeat(4, 1fr);
}

.issue-grid article,
.included-grid article,
.proof-stats article,
.afterpay-grid article {
  padding: 17px;
  border: 2px solid rgba(33, 52, 73, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.issue-grid b,
.included-grid b,
.afterpay-grid b {
  color: var(--vk-deep);
  font-size: 14px;
}

.issue-grid h3,
.included-grid h3 {
  margin: 5px 0 5px;
  font-size: 18px;
  line-height: 1.08;
}

.issue-grid p,
.included-grid p,
.afterpay-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.learning-route {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.route-module {
  position: relative;
  display: grid;
  padding: clamp(20px, 3vw, 28px);
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  border: 2px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 5px 5px 0 rgba(30, 49, 71, 0.12);
}

.stage-route {
  gap: 20px;
}

.stage-card {
  border-radius: 18px;
  background:
    radial-gradient(circle at 96% 6%, rgba(120, 199, 243, 0.2), transparent 28%),
    #fff;
}

.route-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 28%);
  gap: clamp(18px, 3.4vw, 34px);
  align-items: center;
}

.route-copy {
  min-width: 0;
}

.stage-card h3 {
  font-size: clamp(24px, 3vw, 33px);
}

.route-module:not(:last-child)::after {
  position: absolute;
  width: 3px;
  height: 20px;
  bottom: -20px;
  left: 51px;
  background: repeating-linear-gradient(to bottom, var(--vk) 0 5px, transparent 5px 9px);
  content: "";
}

.module-number {
  display: grid;
  width: 58px;
  height: 58px;
  border: 3px solid var(--vk-deep);
  border-radius: 50%;
  color: #fff;
  background: var(--vk);
  box-shadow: 0 0 0 7px rgba(68, 123, 186, 0.12);
  font-size: 20px;
  font-weight: 900;
  place-items: center;
}

.route-module h3 {
  margin: 1px 0 10px;
  font-size: 24px;
  line-height: 1.05;
}

.route-module p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.52;
}

.route-module ul,
.comparison-card ul,
.fit-card ul,
.participation-list {
  display: grid;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.route-module li {
  color: #20364d;
  font-size: 15px;
  line-height: 1.35;
}

.route-module li::before,
.comparison-card li::before,
.fit-card li::before,
.participation-list li::before {
  margin-right: 8px;
  color: var(--vk-deep);
  content: "✓";
  font-weight: 900;
}

.module-result {
  position: relative;
  display: block;
  margin-top: 16px;
  padding: 15px 18px 15px 54px;
  border: 1px solid rgba(68, 123, 186, 0.24);
  border-left: 0;
  border-radius: 15px;
  color: var(--vk-deep);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(120, 199, 243, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(229, 242, 255, 0.98), rgba(255, 255, 255, 0.96));
  font-size: 14px;
  line-height: 1.4;
  box-shadow:
    4px 4px 0 rgba(30, 49, 71, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.module-result::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #2f6fae, #78c7f3);
  content: "";
}

.module-result::after {
  position: absolute;
  top: 50%;
  left: 17px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid rgba(68, 123, 186, 0.35);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2f6fae, #1d8cff);
  box-shadow: 2px 2px 0 rgba(30, 49, 71, 0.16);
  content: "✓";
  font-size: 14px;
  font-weight: 1000;
  transform: translateY(-50%);
}

.module-result span {
  display: inline-block;
  margin-right: 4px;
  color: #174f88;
  font-weight: 1000;
}

.route-visual {
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 16px;
  place-items: center;
  border: 2px solid rgba(33, 52, 73, 0.62);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(rgba(68, 123, 186, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 123, 186, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbff, #eaf4ff);
  background-size: 18px 18px, 18px 18px, auto;
  box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.14);
}

.route-visual::before {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(68, 123, 186, 0.22);
  border-radius: 50%;
  content: "";
}

.route-visual.has-sticker {
  min-height: 230px;
  padding: 0;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 48%, rgba(120, 199, 243, 0.22), transparent 44%),
    linear-gradient(rgba(68, 123, 186, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 123, 186, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbff, #eaf4ff);
  background-size: auto, 18px 18px, 18px 18px, auto;
}

.route-visual.has-sticker::before {
  opacity: 0.75;
}

.route-visual.has-sticker > :not(.inside-card-sticker) {
  display: none;
}

.inside-card-sticker {
  --sticker-x: 0px;
  --sticker-y: 0px;
  --sticker-size: 210px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: var(--sticker-size);
  max-width: none;
  user-select: none;
  pointer-events: none;
  filter:
    drop-shadow(7px 10px 0 rgba(30, 49, 71, 0.09))
    drop-shadow(0 12px 24px rgba(68, 123, 186, 0.16));
  transform: translate(calc(-50% + var(--sticker-x)), calc(-50% + var(--sticker-y)));
}

.inside-card-sticker-1 {
  --sticker-size: 218px;
  --sticker-y: 8px;
}

.inside-card-sticker-2 {
  --sticker-size: 230px;
  --sticker-y: 2px;
}

.inside-card-sticker-3 {
  --sticker-size: 226px;
  --sticker-y: 5px;
}

body.inside-sticker-edit .inside-card-sticker {
  cursor: grab;
  pointer-events: auto;
  outline: 2px dashed rgba(29, 140, 255, 0.7);
  outline-offset: 6px;
}

body.inside-sticker-edit .inside-card-sticker.is-dragging {
  cursor: grabbing;
  filter:
    drop-shadow(9px 12px 0 rgba(30, 49, 71, 0.12))
    drop-shadow(0 16px 28px rgba(68, 123, 186, 0.24));
}

.inside-sticker-editor {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100vw - 28px));
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 6px 6px 0 rgba(30, 49, 71, 0.18);
  font-size: 13px;
}

.inside-sticker-editor strong {
  display: block;
  margin-bottom: 6px;
  color: var(--vk-deep);
  font-weight: 1000;
}

.inside-sticker-editor p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  line-height: 1.35;
}

.inside-sticker-editor textarea {
  width: 100%;
  min-height: 118px;
  padding: 10px;
  border: 1px solid rgba(68, 123, 186, 0.35);
  border-radius: 10px;
  color: #20364d;
  background: #f7fbff;
  font: 12px/1.4 Consolas, "Courier New", monospace;
  resize: vertical;
}

.inside-sticker-editor button {
  width: 100%;
  margin-top: 9px;
  padding: 10px 12px;
  border: 2px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2f6fae, #1d8cff);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.22);
  font-weight: 1000;
  cursor: pointer;
}

.vk-mini {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #1d8cff, #2f6fae);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.24);
  font-size: 14px;
  font-weight: 1000;
}

.visual-window,
.visual-laptop {
  position: relative;
  z-index: 1;
  width: min(100%, 250px);
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 5px 5px 0 rgba(30, 49, 71, 0.22);
}

.visual-window .vk-mini,
.visual-laptop .vk-mini {
  position: absolute;
  top: -17px;
  right: 14px;
}

.visual-chart {
  display: flex;
  height: 96px;
  gap: 8px;
  align-items: end;
  padding: 14px 8px 0;
}

.visual-chart i,
.visual-growth i {
  display: block;
  flex: 1;
  border: 2px solid rgba(33, 52, 73, 0.72);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #78c7f3, #447bba);
}

.visual-chart i:nth-child(1) { height: 34%; }
.visual-chart i:nth-child(2) { height: 56%; }
.visual-chart i:nth-child(3) { height: 74%; }
.visual-chart i:nth-child(4) { height: 92%; }

.visual-tabs {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.visual-tabs span {
  padding: 5px 7px;
  border: 1px solid rgba(68, 123, 186, 0.35);
  border-radius: 999px;
  color: var(--vk-deep);
  background: #eef6ff;
  font-size: 12px;
  font-weight: 900;
}

.visual-loupe {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border: 6px solid var(--vk);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.18);
}

.visual-loupe::after {
  position: absolute;
  width: 30px;
  height: 7px;
  right: -24px;
  bottom: -10px;
  border-radius: 999px;
  background: var(--vk);
  content: "";
  transform: rotate(42deg);
}

.visual-community {
  width: 74px;
  height: 74px;
  margin: 12px auto 14px;
  border: 3px solid var(--vk);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 33%, #447bba 0 13px, transparent 14px),
    radial-gradient(ellipse at 50% 78%, #447bba 0 26px, transparent 27px),
    #eef6ff;
}

.visual-lines {
  display: grid;
  gap: 7px;
}

.visual-lines i,
.visual-checklist span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(68, 123, 186, 0.26);
}

.visual-lines i:nth-child(1) { width: 92%; }
.visual-lines i:nth-child(2) { width: 70%; }
.visual-lines i:nth-child(3) { width: 82%; }

.visual-checklist {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 16px;
  display: grid;
  width: 92px;
  gap: 8px;
  padding: 12px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.18);
}

.visual-checklist span::before {
  margin-right: 6px;
  color: var(--vk-deep);
  content: "✓";
  font-weight: 1000;
}

.money-flow {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 15px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 5px 5px 0 rgba(30, 49, 71, 0.22);
}

.visual-money .money-flow {
  flex-direction: column;
  gap: 5px;
  padding: 10px 12px;
}

.money-flow span,
.money-flow b {
  display: grid;
  min-width: 62px;
  min-height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--vk-deep);
  background: #eef6ff;
  font-size: 13px;
  font-weight: 1000;
}

.visual-money .money-flow span,
.visual-money .money-flow b {
  min-width: 74px;
  min-height: 32px;
  font-size: 12px;
}

.money-flow b {
  color: #fff;
  background: linear-gradient(135deg, #2f6fae, #1d8cff);
  font-size: 24px;
}

.money-flow i {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--vk);
}

.visual-money .money-flow i {
  width: 3px;
  height: 13px;
}

.money-flow i::after {
  display: block;
  width: 9px;
  height: 9px;
  margin: -3px 0 0 15px;
  border-top: 3px solid var(--vk);
  border-right: 3px solid var(--vk);
  content: "";
  transform: rotate(45deg);
}

.visual-money .money-flow i::after {
  margin: 4px 0 0 -3px;
  transform: rotate(135deg);
}

.visual-growth {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: flex;
  width: 92px;
  height: 70px;
  gap: 7px;
  align-items: end;
}

.visual-growth i:nth-child(1) { height: 36%; }
.visual-growth i:nth-child(2) { height: 58%; }
.visual-growth i:nth-child(3) { height: 88%; }

.comparison-grid,
.fit-grid,
.participation-card {
  display: grid;
  gap: 15px;
}

.comparison-grid {
  margin-top: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.comparison-section > h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.comparison-card,
.fit-card {
  padding: 20px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.comparison-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 5px 5px 0 rgba(30, 49, 71, 0.12);
}

.comparison-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(120, 199, 243, 0.2), transparent 30%),
    linear-gradient(rgba(68, 123, 186, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 123, 186, 0.055) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  content: "";
}

.comparison-card > * {
  position: relative;
  z-index: 1;
}

.comparison-card-hero {
  display: grid;
  min-height: 176px;
  margin: -6px -6px 18px;
  grid-template-columns: minmax(170px, 46%) 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(68, 123, 186, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 22% 45%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(229, 242, 255, 0.86));
}

.comparison-card.is-muted .comparison-card-hero {
  background:
    radial-gradient(circle at 22% 45%, rgba(255, 255, 255, 0.88), transparent 36%),
    linear-gradient(135deg, rgba(255, 247, 247, 0.88), rgba(239, 244, 250, 0.9));
}

.comparison-sticker {
  width: min(100%, 202px);
  justify-self: center;
  filter:
    drop-shadow(6px 8px 0 rgba(30, 49, 71, 0.08))
    drop-shadow(0 12px 22px rgba(68, 123, 186, 0.16));
}

.comparison-sticker-guide {
  width: min(100%, 214px);
}

.comparison-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 9px;
  border: 2px solid rgba(33, 52, 73, 0.72);
  border-radius: 999px;
  color: var(--vk-deep);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.comparison-card.is-muted .comparison-tag {
  color: #ad3e3e;
  border-color: rgba(173, 62, 62, 0.38);
  background: rgba(255, 245, 245, 0.92);
}

.comparison-card.is-muted {
  background: #f7f9fb;
}

.comparison-card.is-muted li::before,
.fit-card.is-bad li::before {
  color: #c55353;
  content: "×";
}

.comparison-card.is-accent,
.fit-card.is-good {
  background: #edf6ff;
}

.comparison-card h3 {
  margin: 0;
  font-size: 25px;
}

.section-closing,
.trust-phrase {
  margin: 19px 0 0;
  padding: 14px 16px;
  border-left: 5px solid var(--vk);
  color: var(--ink);
  background: rgba(229, 242, 255, 0.85);
  font-weight: 800;
}

.comparison-section .section-closing {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(13px, 1.18vw, 16px);
  line-height: 1.35;
}

.included-grid {
  grid-template-columns: repeat(3, 1fr);
}

.access-grid article {
  min-height: 168px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(237, 246, 255, 0.9), rgba(255, 255, 255, 0.96));
}

.proof-stats {
  grid-template-columns: repeat(4, 1fr);
}

.proof-stats article {
  display: grid;
  min-height: 146px;
  padding: 20px 14px;
  align-content: center;
  justify-items: center;
  border-radius: 16px;
  text-align: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(120, 199, 243, 0.2), transparent 28%),
    linear-gradient(180deg, #fff, #f3f8ff);
  box-shadow:
    4px 4px 0 rgba(30, 49, 71, 0.88),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.proof-stats b,
.proof-stats span {
  display: block;
}

.proof-stats b {
  color: var(--vk-deep);
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-stats span {
  max-width: 160px;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
}

.case-card {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, #e6f2ff, #fff);
}

.reviews-block {
  margin-top: 18px;
}

.proof-reviews {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(33, 52, 73, 0.16);
}

.proof-reviews-heading {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.proof-reviews-heading h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(27px, 4vw, 42px);
}

.review-carousel {
  position: relative;
  margin-top: 18px;
}

.review-carousel-viewport {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.review-carousel-track {
  display: flex;
  transition: transform 520ms ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
  padding: 12px;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.review-slide img {
  display: block;
  width: 100%;
  height: 360px;
  border: 2px solid rgba(33, 52, 73, 0.72);
  border-radius: 13px;
  background:
    radial-gradient(circle at 20% 10%, rgba(68, 123, 186, 0.13), transparent 28%),
    #f7fbff;
  box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.82);
  object-fit: contain;
  object-position: center;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.review-slide:hover img {
  box-shadow: 2px 2px 0 rgba(30, 49, 71, 0.82);
  transform: translate(2px, 2px);
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: var(--vk);
  box-shadow: 4px 4px 0 var(--shadow);
  cursor: pointer;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.carousel-arrow:hover {
  box-shadow: 2px 2px 0 var(--shadow);
  transform: translate(2px, calc(-50% + 2px));
}

.carousel-prev {
  left: -16px;
}

.carousel-next {
  right: -16px;
}

.review-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.review-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 111, 174, 0.26);
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    width 160ms ease;
}

.review-dots button.is-active {
  width: 25px;
  background: var(--vk);
}

.review-impact {
  max-width: 820px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 2px solid rgba(33, 52, 73, 0.92);
  border-radius: 14px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 226, 123, 0.45), rgba(229, 242, 255, 0.82)),
    #fff;
  box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.82);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.review-impact strong {
  display: inline;
  padding: 0 0.2em 0.04em;
  color: #10243a;
  font-weight: 1000;
  background: linear-gradient(180deg, transparent 16%, rgba(255, 210, 72, 0.95) 16%, rgba(255, 229, 127, 0.98) 92%, transparent 92%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.reviews-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.secondary-button {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  border-radius: 11px;
  color: var(--vk-deep);
  background: #fff;
  box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.9);
  font-weight: 900;
  text-decoration: none;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.secondary-button:hover {
  box-shadow: 2px 2px 0 rgba(30, 49, 71, 0.9);
  transform: translate(2px, 2px);
}

.telegram-review-button {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #2aabee, #1677c9);
  animation: telegram-button-pulse 1.7s ease-in-out infinite;
}

.telegram-review-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.telegram-review-button::after {
  position: absolute;
  width: 38%;
  height: 180%;
  top: -40%;
  left: -52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: skewX(-22deg);
  animation: telegram-button-shine 2.7s ease-in-out infinite;
}

.telegram-review-button span,
.telegram-review-button svg {
  position: relative;
  z-index: 1;
}

@keyframes telegram-button-pulse {
  0%,
  100% {
    box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.9), 0 0 0 0 rgba(42, 171, 238, 0.28);
  }

  50% {
    box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.9), 0 0 0 7px rgba(42, 171, 238, 0);
  }
}

@keyframes telegram-button-shine {
  0%,
  55% {
    left: -52%;
  }

  100% {
    left: 120%;
  }
}

.review-shot {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.9);
  cursor: zoom-in;
}

.review-shot img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.review-dialog {
  position: relative;
  width: min(100% - 32px, 920px);
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  padding: 18px;
}

.review-dialog[open] {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.review-dialog img {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 80px);
  margin: 0 auto;
  border-radius: 10px;
  object-fit: contain;
}

.modal-review-arrow {
  position: static;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: var(--vk);
  box-shadow: 4px 4px 0 var(--shadow);
  cursor: pointer;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.case-card h3,
.case-card p {
  margin: 0;
}

.case-card h3 {
  font-size: 27px;
  letter-spacing: -0.04em;
}

.case-card > p {
  max-width: 330px;
  color: var(--ink-soft);
  font-size: 14px;
}

.income-disclaimer {
  margin: 15px 0 0;
  color: #6e8296;
  font-size: 12px;
}

.fit-grid {
  position: relative;
  gap: 28px;
  margin-top: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.fit-section {
  position: relative;
}

.fit-section > .eyebrow,
.fit-section > h2,
.fit-section .fit-intro {
  text-align: center;
}

.fit-section > h2 {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.fit-intro {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.fit-choice-label {
  display: table;
  margin: 22px auto 0;
  padding: 8px 14px;
  border: 2px solid rgba(33, 52, 73, 0.82);
  border-radius: 999px;
  color: var(--vk-deep);
  background: linear-gradient(135deg, #fff, #eaf4ff);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.16);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fit-grid::before {
  position: absolute;
  z-index: 1;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(68, 123, 186, 0.42), transparent);
  content: "";
  transform: translateX(-50%);
}

.fit-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 6px 6px 0 rgba(30, 49, 71, 0.12);
}

.fit-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(120, 199, 243, 0.24), transparent 31%),
    linear-gradient(rgba(68, 123, 186, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 123, 186, 0.055) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  content: "";
}

.fit-card > * {
  position: relative;
  z-index: 1;
}

.fit-card.is-good {
  border-color: rgba(47, 111, 174, 0.82);
  background:
    radial-gradient(circle at 85% 18%, rgba(120, 199, 243, 0.22), transparent 34%),
    linear-gradient(135deg, #f7fbff, #e7f4ff);
}

.fit-card.is-bad {
  border-color: rgba(33, 52, 73, 0.72);
  background:
    radial-gradient(circle at 85% 18%, rgba(197, 83, 83, 0.1), transparent 34%),
    linear-gradient(135deg, #fff, #f6f8fb);
}

.fit-card-top {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(68, 123, 186, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.fit-icon {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid rgba(33, 52, 73, 0.72);
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #2f6fae, #1d8cff);
  box-shadow: 4px 4px 0 rgba(30, 49, 71, 0.16);
  font-size: 24px;
  font-weight: 1000;
}

.fit-card.is-bad .fit-icon {
  color: #ad3e3e;
  background: linear-gradient(135deg, #fff7f7, #eef3f8);
  border-color: rgba(173, 62, 62, 0.35);
}

.fit-card .eyebrow {
  margin-bottom: 5px;
  color: var(--vk-deep);
}

.fit-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 34px);
  letter-spacing: -0.045em;
}

.fit-card ul {
  gap: 11px;
  margin-top: 0;
}

.fit-card li {
  min-height: 45px;
  padding: 11px 12px;
  border: 1px solid rgba(68, 123, 186, 0.16);
  border-radius: 13px;
  color: #20364d;
  background: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.fit-card li::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--vk-deep);
  font-size: 12px;
}

.fit-card.is-bad li {
  color: #384d63;
  background: rgba(255, 255, 255, 0.66);
}

.fit-card.is-bad li::before {
  color: #fff;
  background: #c55353;
}

.fit-card strong {
  color: var(--ink);
  font-weight: 1000;
}

.fit-card-note {
  margin: auto 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(68, 123, 186, 0.2);
  border-radius: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.fit-card.is-good .fit-card-note {
  color: #174f88;
  background: rgba(229, 242, 255, 0.86);
}

.fit-card.is-bad .fit-card-note {
  color: #5f7184;
  background: rgba(255, 255, 255, 0.68);
}

.fit-summary {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 19px 22px;
  border: 2px solid rgba(68, 123, 186, 0.28);
  border-left: 6px solid var(--vk);
  border-radius: 18px;
  background:
    radial-gradient(circle at 93% 24%, rgba(120, 199, 243, 0.2), transparent 28%),
    linear-gradient(135deg, #eef7ff, #fff);
  box-shadow: 5px 5px 0 rgba(30, 49, 71, 0.1);
}

.fit-summary span {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid rgba(33, 52, 73, 0.72);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2f6fae, #1d8cff);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.16);
  font-size: 20px;
}

.participation-section {
  scroll-margin-top: 18px;
}

.participation-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  grid-template-columns: minmax(560px, 1fr) minmax(370px, 420px);
  grid-template-areas:
    "copy price"
    "access price";
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 25%, rgba(64, 145, 255, 0.14), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(61, 139, 255, 0.16), transparent 30%),
    radial-gradient(circle at 8% 96%, rgba(61, 139, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #f8fcff 0%, #eef7ff 52%, #f7fbff 100%);
}

.participation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 2px, transparent 2px),
    radial-gradient(circle, rgba(64, 145, 255, 0.18) 0 1px, transparent 1px),
    linear-gradient(118deg, transparent 0 39%, rgba(255, 255, 255, 0.45) 47%, transparent 56%);
  background-size: 120px 120px, 18px 18px, auto;
  background-position: 82% 6%, 6% 68%, center;
  opacity: 0.62;
  pointer-events: none;
}

.participation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 55%, rgba(255, 255, 255, 0.82), transparent 13%),
    radial-gradient(circle at 51% 45%, rgba(29, 140, 255, 0.12) 0 8px, transparent 9px),
    radial-gradient(circle at 63% 18%, rgba(29, 140, 255, 0.13) 0 5px, transparent 6px);
  opacity: 0.75;
  pointer-events: none;
}

.participation-card > * {
  position: relative;
  z-index: 1;
}

.participation-copy {
  position: relative;
  grid-area: copy;
}

.participation-access {
  grid-area: access;
  align-self: end;
}

.price-panel {
  grid-area: price;
  position: sticky;
  top: 18px;
}

.participation-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.participation-copy h2 span {
  display: block;
  color: #1269e8;
}

.participation-copy > p:not(.eyebrow):not(.participation-note):not(.access-title) {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.52;
}

.participation-lead + .participation-lead {
  margin-top: 12px !important;
}

.access-title {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 8px 13px;
  align-items: center;
  border: 2px solid rgba(33, 52, 73, 0.72);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2377dc, #155aa8);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.14);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.access-pass-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 22px;
}

.access-pass-row span {
  display: inline-flex;
  min-height: 42px;
  padding: 9px 14px;
  align-items: center;
  border: 2px solid rgba(47, 111, 174, 0.24);
  border-radius: 999px;
  color: #1e4f7e;
  background:
    radial-gradient(circle at 16% 50%, rgba(29, 140, 255, 0.2), transparent 18px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(229, 244, 255, 0.95));
  box-shadow:
    3px 3px 0 rgba(30, 49, 71, 0.08),
    0 10px 22px rgba(47, 111, 174, 0.08);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.access-pass-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d8cff, #78c7f3);
  box-shadow: 0 0 0 4px rgba(29, 140, 255, 0.12);
}

.participation-list {
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.access-value-list {
  counter-reset: access-step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.participation-access .access-value-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.access-value-list li {
  position: relative;
  counter-increment: access-step;
  display: grid;
  min-height: 150px;
  overflow: hidden;
  grid-template-columns: 74px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 10px 14px;
  align-items: start;
  padding: 18px 58px 17px 18px;
  border: 1px solid rgba(47, 111, 174, 0.2);
  border-radius: 16px;
  --item-accent: #1d8cff;
  --item-soft: rgba(29, 140, 255, 0.14);
  color: #263f58;
  background:
    radial-gradient(circle at 16% 18%, var(--item-soft), transparent 30%),
    radial-gradient(circle at 95% 8%, rgba(120, 199, 243, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.94));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.72) inset,
    0 12px 24px rgba(47, 111, 174, 0.08),
    inset 0 -4px 0 var(--item-accent);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.access-value-list li:hover {
  border-color: var(--item-accent);
  box-shadow:
    6px 6px 0 rgba(30, 49, 71, 0.14),
    0 18px 34px rgba(47, 111, 174, 0.13);
  transform: translate(-2px, -2px);
}

.access-value-list li b {
  display: block;
  position: relative;
  z-index: 1;
  grid-column: 2;
  align-self: center;
  padding-right: 0;
  color: #17263a;
  font-size: 14px;
  line-height: 1.22;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.access-value-list .access-item-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 66px;
  height: 66px;
  grid-row: 1 / 3;
  grid-column: 1;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--item-accent) 20%, transparent);
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.96), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), color-mix(in srgb, var(--item-accent) 14%, #f7fbff));
  box-shadow:
    0 12px 24px var(--item-soft),
    inset 0 0 0 7px color-mix(in srgb, var(--item-accent) 7%, transparent);
  font-size: 0;
  line-height: 1;
}

.access-value-list .access-item-icon img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.12) contrast(1.05) drop-shadow(0 5px 9px rgba(30, 49, 71, 0.1));
}

.access-value-list .access-item-copy {
  display: block;
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin-top: 2px;
  color: #46637e;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.32;
  overflow-wrap: normal;
  word-break: normal;
}

.access-value-list li:nth-child(1) {
  --item-accent: #1d8cff;
  --item-soft: rgba(29, 140, 255, 0.15);
}

.access-value-list li:nth-child(2) {
  --item-accent: #7b61ff;
  --item-soft: rgba(123, 97, 255, 0.15);
}

.access-value-list li:nth-child(3) {
  --item-accent: #ff8d3d;
  --item-soft: rgba(255, 141, 61, 0.17);
}

.access-value-list li:nth-child(4) {
  --item-accent: #28b9f2;
  --item-soft: rgba(40, 185, 242, 0.15);
}

.access-value-list li:nth-child(5) {
  --item-accent: #35d2d0;
  --item-soft: rgba(53, 210, 208, 0.15);
}

.access-value-list li:nth-child(6) {
  --item-accent: #74c943;
  --item-soft: rgba(116, 201, 67, 0.16);
}

.access-value-list li::before {
  content: counter(access-step, decimal-leading-zero);
  position: absolute;
  z-index: 1;
  right: 12px;
  top: 12px;
  display: grid;
  width: 34px;
  height: 30px;
  place-items: center;
  border: 2px solid rgba(47, 111, 174, 0.18);
  border-radius: 999px;
  color: var(--item-accent);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    2px 2px 0 rgba(30, 49, 71, 0.08),
    0 8px 17px var(--item-soft);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.access-value-list li::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--item-soft), transparent 66%);
  pointer-events: none;
}

.participation-note {
  position: relative;
  margin: 26px 0 0;
  padding: 18px 20px 18px 58px;
  border: 2px solid rgba(33, 52, 73, 0.7);
  border-radius: 20px;
  color: #17314b;
  background:
    radial-gradient(circle at 96% 18%, rgba(120, 199, 243, 0.28), transparent 30%),
    linear-gradient(135deg, #e7f5ff, #fff);
  box-shadow: 5px 5px 0 rgba(30, 49, 71, 0.12);
  font-weight: 900;
  line-height: 1.45;
}

.participation-note::before {
  content: "i";
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid rgba(33, 52, 73, 0.72);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #2f8ff0, #155ba9);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.14);
  font-family: Georgia, serif;
  font-style: italic;
}

.price-panel {
  position: sticky;
  top: 18px;
  overflow: hidden;
  padding: 22px 22px 20px;
  border: 2px solid rgba(33, 52, 73, 0.78);
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 2%, rgba(29, 140, 255, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(233, 246, 255, 0.82));
  backdrop-filter: blur(10px);
  box-shadow:
    8px 8px 0 rgba(30, 49, 71, 0.13),
    0 24px 50px rgba(47, 111, 174, 0.14);
}

.price-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  border: 1px solid rgba(58, 119, 181, 0.14);
  border-radius: 17px;
  pointer-events: none;
}

.price-panel > * {
  position: relative;
  z-index: 1;
}

.price-panel-sticker {
  position: absolute;
  right: -24px;
  top: -20px;
  z-index: 0;
  width: 96px;
  opacity: 0.2;
  transform: rotate(7deg);
  pointer-events: none;
}

.price-status {
  display: inline-flex;
  margin: 0 0 15px;
  padding: 8px 12px;
  border: 2px solid rgba(33, 52, 73, 0.62);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1b72d4, #1d8cff);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.16);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-glow {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.old-price {
  display: inline-flex;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(14, 29, 49, 0.68);
  background: transparent;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: #c84f4f;
  text-decoration-thickness: 3px;
}

.price-meta-row {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 46px;
  margin: 0 0 18px;
  padding: 0 15px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  border: 1px solid rgba(47, 111, 174, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 8px 22px rgba(30, 49, 71, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.price-glow::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -44px;
  top: -54px;
  border-radius: 50%;
  background: rgba(29, 140, 255, 0.12);
}

.master-price {
  position: relative;
  z-index: 1;
  color: #0e1d31;
  text-align: center;
  font-size: clamp(58px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.96;
  white-space: nowrap;
}

.price-caption,
.installment-note,
.payment-hint {
  color: var(--ink-soft);
  font-size: 13px;
}

.price-caption {
  position: relative;
  z-index: 1;
  max-width: 315px;
  margin: 12px auto 0;
  color: #2d5579;
  font-weight: 900;
  line-height: 1.35;
}

.installment-caption {
  display: inline-flex;
  max-width: none;
  padding: 9px 12px;
  align-items: center;
  gap: 6px;
  border: 2px solid rgba(29, 140, 255, 0.2);
  border-radius: 999px;
  color: #175b99;
  background: rgba(229, 244, 255, 0.86);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.08);
}

.installment-caption b {
  color: #0f3e70;
}

.price-included-list {
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 111, 174, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
  list-style: none;
}

.price-included-list li {
  display: flex;
  min-height: 36px;
  padding: 7px 5px;
  gap: 12px;
  align-items: center;
  color: #213449;
  font-size: 14px;
  font-weight: 780;
}

.price-included-list li + li {
  border-top: 1px solid rgba(47, 111, 174, 0.14);
}

.price-included-list li::before {
  content: "✓";
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 30% 25%, #7fd0ff, #1471d5 68%);
  box-shadow:
    0 0 0 3px rgba(29, 140, 255, 0.12),
    2px 2px 0 rgba(30, 49, 71, 0.12);
  font-size: 13px;
  font-weight: 950;
}

.price-countdown {
  display: inline-flex;
  margin: 0;
  padding: 0;
  gap: 6px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.price-countdown span {
  color: #7a5b13;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-countdown strong {
  color: #1169e9;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
}

.offer-timer-separator {
  width: 1px;
  height: 30px;
  background: rgba(47, 111, 174, 0.16);
}

.offer-timer-wrap {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #1169e9;
  font-weight: 950;
}

.offer-timer-icon {
  font-size: 20px;
  line-height: 1;
}

.offer-price-timer.is-expired {
  opacity: 0.82;
}

.lifetime-badge {
  display: flex;
  min-height: 42px;
  margin-top: 16px;
  padding: 9px 14px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(48, 174, 91, 0.22);
  border-radius: 999px;
  color: #18834a;
  background: linear-gradient(135deg, rgba(235, 255, 239, 0.92), rgba(220, 249, 231, 0.84));
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.lifetime-badge span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #26b862;
  font-size: 14px;
}

.installment-note {
  margin: 16px 0 0;
  padding: 14px 15px;
  border: 1px solid rgba(47, 111, 174, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  line-height: 1.43;
}

.consent-row {
  display: grid;
  margin-top: 15px;
  padding: 13px;
  grid-template-columns: auto 1fr;
  gap: 10px;
  border: 1px dashed rgba(47, 111, 174, 0.24);
  border-radius: 13px;
  color: #637990;
  font-size: 11px;
  line-height: 1.42;
  background: rgba(255, 255, 255, 0.66);
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--vk);
}

.consent-row a,
.legal-footer a,
.telegram-return {
  color: var(--vk-deep);
}

.purchase-button {
  width: 100%;
  margin-top: 18px;
  min-height: 66px;
  border-radius: 16px;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-panel .purchase-button {
  margin-top: 18px;
}

.price-panel .consent-row {
  margin-top: 13px;
}

.purchase-button:disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, #9fb4c8, #758da3);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.18);
  filter: grayscale(0.08);
  opacity: 0.72;
  transform: none;
}

.purchase-button:not(:disabled) {
  background: linear-gradient(135deg, #2689f2, #0f63c8);
  box-shadow:
    6px 6px 0 rgba(30, 49, 71, 0.22),
    0 12px 28px rgba(29, 140, 255, 0.22);
}

.purchase-button:not(:disabled):hover {
  box-shadow:
    8px 8px 0 rgba(30, 49, 71, 0.24),
    0 18px 36px rgba(29, 140, 255, 0.28);
}

.telegram-return {
  display: inline-flex;
  width: auto;
  min-height: 0;
  margin: 15px auto 0;
  padding: 4px 8px;
  gap: 7px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #1269e8;
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.telegram-return:hover {
  background: rgba(229, 244, 255, 0.75);
}

.price-included-list {
  border: 1px solid rgba(47, 111, 174, 0.14);
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 251, 255, 0.74));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(47, 111, 174, 0.07);
}

.price-included-list li {
  min-height: 39px;
  padding: 8px 10px;
  gap: 10px;
  font-weight: 840;
}

.price-included-list li::before {
  content: "\2713";
  width: 24px;
  height: 24px;
  background:
    radial-gradient(circle at 30% 24%, #e8fbff 0 12%, #62c8ff 24%, #1776d7 72%);
  box-shadow:
    0 0 0 3px rgba(29, 140, 255, 0.12),
    2px 2px 0 rgba(30, 49, 71, 0.1),
    inset 0 -2px 0 rgba(5, 62, 126, 0.22);
  font-size: 14px;
}

.lifetime-badge {
  border-color: rgba(48, 174, 91, 0.2);
  background:
    radial-gradient(circle at 20% 50%, rgba(43, 190, 99, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(239, 255, 243, 0.95), rgba(220, 249, 231, 0.84));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 10px 22px rgba(48, 174, 91, 0.08);
}

.telegram-return {
  display: flex;
  width: 100%;
  min-height: 46px;
  margin: 14px auto 0;
  padding: 10px 14px;
  gap: 9px;
  border: 1px solid rgba(47, 111, 174, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 50%, rgba(29, 140, 255, 0.15), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 246, 255, 0.82));
  box-shadow:
    0 10px 22px rgba(47, 111, 174, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  font-weight: 950;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.telegram-return:hover {
  border-color: rgba(29, 140, 255, 0.32);
  background:
    radial-gradient(circle at 20% 50%, rgba(29, 140, 255, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(222, 242, 255, 0.9));
  box-shadow:
    0 14px 26px rgba(47, 111, 174, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transform: translateY(-1px);
}

.payment-hint {
  margin: 14px 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(47, 111, 174, 0.18);
  border-left: 5px solid #1d8cff;
  border-radius: 16px;
  color: #2d5579;
  background: rgba(226, 242, 255, 0.74);
  font-weight: 800;
  line-height: 1.35;
}

.payment-support-note {
  margin: 11px 0 0;
  color: #74879a;
  font-size: 12px;
  line-height: 1.38;
}

.payment-choice-page {
  display: grid;
  min-height: 100vh;
  padding: 28px 0 56px;
  place-items: center;
}

.payment-choice-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 5vw, 42px);
  border: 3px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(220, 236, 255, 0.96), transparent 31%),
    radial-gradient(circle at 92% 6%, rgba(120, 199, 243, 0.22), transparent 26%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 9px 9px 0 var(--shadow);
}

.payment-choice-card h1 {
  max-width: 760px;
  margin: 12px 0 12px;
  font-size: clamp(35px, 6vw, 62px);
  letter-spacing: -0.055em;
  text-align: left;
}

.payment-choice-lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.payment-option {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 2px solid rgba(33, 52, 73, 0.82);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 8%, rgba(120, 199, 243, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(235, 247, 255, 0.98));
  box-shadow:
    6px 6px 0 rgba(30, 49, 71, 0.12),
    0 18px 38px rgba(47, 111, 174, 0.1);
}

.payment-option-main {
  border-color: rgba(29, 140, 255, 0.82);
}

.payment-option-badge {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 11px;
  align-items: center;
  border: 2px solid rgba(33, 52, 73, 0.7);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2377dc, #155aa8);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.14);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-option h2 {
  margin: 18px 0 10px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.02;
}

.payment-option-price {
  margin-bottom: 12px;
  color: #102139;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
}

.payment-option p {
  min-height: 54px;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.42;
}

.payment-choice-button {
  width: 100%;
  min-height: 58px;
  margin-top: 12px;
  border-radius: 15px;
  font-size: 15px;
  text-transform: uppercase;
}

.payment-choice-note {
  margin: 22px 0 0;
  color: #4b6380;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.payment-support-link {
  display: flex;
  max-width: 320px;
  margin-inline: auto;
}

.afterpay-grid {
  grid-template-columns: repeat(4, 1fr);
}

.afterpay-grid h3 {
  margin: 6px 0 6px;
  font-size: 18px;
  line-height: 1.08;
}

.faq-section details {
  border-bottom: 1px solid rgba(33, 52, 73, 0.25);
}

.faq-section summary {
  padding: 16px 2px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-section details p {
  margin: -5px 0 16px;
  color: var(--ink-soft);
}

.faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.legal-footer {
  padding: 8px 16px 32px;
  color: #62778e;
  font-size: 12px;
  text-align: center;
}

.legal-footer .section-shell {
  padding-top: 18px;
  border-top: 1px solid rgba(33, 52, 73, 0.18);
}

.legal-footer p {
  margin: 4px 0;
}

.legal-footer nav {
  display: flex;
  gap: 8px 16px;
  margin-top: 11px;
  flex-wrap: wrap;
  justify-content: center;
}

.requisites-line {
  font-weight: 800;
}

.legal-dialog {
  max-height: min(86vh, 720px);
  overflow: auto;
}

.legal-dialog h2 {
  padding-right: 18px;
}

@media (max-width: 980px) and (min-width: 721px) {
  .review-slide {
    flex-basis: 50%;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .section-shell {
    width: min(calc(100vw - 20px), 370px);
    max-width: calc(100vw - 20px);
    margin-left: auto;
    margin-right: auto;
  }

  .master-page,
  .master-section,
  .participation-card {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .lesson-stage {
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 40px;
  }

  .headline-panel,
  .video-panel,
  .offer-locked,
  .offer-page-intro,
  .proof-block,
  .pricing-block {
    border-width: 2px;
    box-shadow: 5px 5px 0 var(--shadow);
  }

  .offer-locked:has(#routeLocked:not([hidden])) {
    padding-bottom: 38px;
  }

  .offer-page-stage {
    gap: 16px;
    padding: 14px 0 40px;
  }

  .route-placeholder,
  .route-button {
    width: 100%;
    justify-content: center;
  }

  .route-cta-row {
    padding-right: 0;
    padding-bottom: 0;
  }

  .route-button {
    min-height: 88px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .route-opened-sticker {
    display: none;
  }

  .route-opened {
    padding-bottom: 22px;
  }

  .desktop-break {
    display: none;
  }

  .route-locked-description {
    max-width: none;
  }

  #routeLocked {
    min-height: 0;
    padding-bottom: 22px;
  }

  .route-locked-sticker {
    width: 70px;
    height: auto;
    top: 8px;
    right: 14px;
    bottom: auto;
    z-index: 1;
  }

  .headline-panel {
    padding: 18px 15px 22px;
  }

  .video-panel {
    padding: 8px;
  }

  .video-card {
    border-width: 2px;
  }

  .video-frame {
    border-bottom-width: 2px;
  }

  .player-controls {
    gap: 1px;
    padding: 24px 6px 7px;
  }

  .player-icon-button,
  .player-text-button,
  .player-quality-button {
    min-width: 28px;
    height: 30px;
    border-radius: 7px;
  }

  .player-icon-button svg {
    width: 20px;
    height: 20px;
  }

  .player-text-button {
    min-width: 33px;
    font-size: 13px;
  }

  .player-time {
    margin-left: 1px;
    font-size: 12px;
  }

  .player-quality-button {
    gap: 3px;
    padding: 0 5px;
  }

  .player-quality-button span {
    font-size: 11px;
  }

  .player-quality-button small {
    font-size: 9px;
  }

  #pipButton {
    display: none;
  }

  .player-menu {
    bottom: 34px;
  }

  .master-page {
    gap: 16px;
    padding: 14px 0 40px;
  }

  .master-hero,
  .master-section,
  .participation-card {
    border-width: 2px;
    box-shadow: 5px 5px 0 var(--shadow);
  }

  .master-hero,
  .master-section {
    padding: 20px 16px;
  }

  .master-hero-grid,
  .participation-card {
    grid-template-columns: 1fr;
  }

  .participation-card {
    grid-template-areas:
      "copy"
      "price"
      "access";
  }

  .price-panel {
    position: relative;
    top: auto;
  }

  .master-hero h1 {
    font-size: clamp(34px, 8vw, 39px);
  }

  .offer-title {
    font-size: clamp(25px, 7.4vw, 30px);
    letter-spacing: -0.035em;
    line-height: 1.03;
    max-width: 100%;
    word-break: break-word;
  }

  .master-section h2,
  .participation-card h2 {
    font-size: clamp(23px, 6.8vw, 30px);
    letter-spacing: -0.035em;
    line-height: 1.06;
  }

  .route-module h3,
  .stage-card h3,
  .case-card h3 {
    font-size: 22px;
    letter-spacing: -0.025em;
  }

  .master-section p,
  .master-section li,
  .proof-stats span {
    overflow-wrap: anywhere;
  }

  .mentor-badge {
    font-size: 14px;
  }

  .mentor-badge img {
    width: 40px;
    height: 40px;
  }

  .proof-section .back-link {
    margin-right: auto;
    margin-left: auto;
  }

  .route-section .section-heading > p:last-child {
    white-space: normal;
  }

  .master-lead,
  .section-copy,
  .section-heading > p:last-child {
    font-size: 16px;
  }

  .unlock-visual {
    min-height: 225px;
  }

  .unlock-path {
    width: 205px;
    top: 54px;
  }

  .unlock-point {
    top: 22px;
  }

  .unlock-key {
    top: 87px;
    right: 91px;
  }

  .issue-grid,
  .included-grid,
  .proof-stats,
  .access-value-list,
  .afterpay-grid {
    grid-template-columns: 1fr;
  }

  .participation-copy > p:not(.eyebrow):not(.participation-note) {
    font-size: 15px;
  }

  .access-pass-row {
    gap: 7px;
  }

  .access-pass-row span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .access-value-list li {
    min-height: 94px;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 5px 13px;
    padding: 13px 44px 13px 12px;
  }

  .access-value-list li b {
    grid-column: 2;
    padding-right: 0;
    font-size: 13px;
  }

  .access-value-list .access-item-copy {
    grid-column: 2;
    margin-top: 0;
    font-size: 12px;
  }

  .access-value-list .access-item-icon {
    width: 52px;
    height: 52px;
    grid-row: 1 / 3;
    border-radius: 13px;
    font-size: 23px;
  }

  .access-value-list li::before {
    right: 10px;
    top: 10px;
    width: 30px;
    height: 26px;
    font-size: 10px;
  }

  .price-meta-row {
    min-height: 40px;
    padding: 0 10px;
    gap: 8px;
  }

  .price-included-list li {
    min-height: 39px;
    font-size: 13px;
  }

  .purchase-button {
    min-height: 60px;
    padding-right: 12px;
    padding-left: 12px;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
  }

  .participation-note {
    margin-top: 18px;
    padding: 14px 15px 14px 50px;
    font-size: 14px;
  }

  .participation-note::before {
    left: 14px;
    top: 14px;
  }

  .price-panel {
    padding: 18px;
  }

  .price-panel-sticker {
    width: 84px;
    right: -26px;
    top: -18px;
  }

  .price-glow {
    padding: 0;
  }

  .master-price {
    font-size: clamp(42px, 13vw, 53px);
  }

  .old-price,
  .price-countdown strong {
    font-size: 14px;
  }

  .offer-timer-separator {
    height: 24px;
  }

  .offer-timer-icon {
    font-size: 17px;
  }

  .route-module {
    padding: 16px;
    grid-template-columns: 1fr;
  }

  .route-card-body {
    grid-template-columns: 1fr;
  }

  .route-visual {
    min-height: 190px;
  }

  .route-visual.has-sticker {
    min-height: 220px;
    overflow: hidden;
  }

  .inside-card-sticker-1,
  .inside-card-sticker-2,
  .inside-card-sticker-3 {
    --sticker-size: 205px;
  }

  .route-module:not(:last-child)::after {
    left: 45px;
  }

  .module-number {
    width: 56px;
    height: 56px;
  }

  .comparison-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid::before {
    display: none;
  }

  .fit-card {
    min-height: auto;
    padding: 16px;
  }

  .fit-card-top {
    align-items: flex-start;
  }

  .fit-summary {
    align-items: flex-start;
  }

  .comparison-section .section-closing {
    white-space: normal;
  }

  .comparison-card {
    min-height: auto;
    padding: 16px;
  }

  .comparison-card-hero {
    min-height: auto;
    margin: -2px -2px 16px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .comparison-sticker,
  .comparison-sticker-guide {
    width: min(100%, 220px);
  }

  .case-card {
    display: block;
  }

  .case-card > p {
    margin-top: 9px;
  }

  .participation-card {
    padding: 16px;
  }

  .price-panel {
    position: static;
  }

  .payment-choice-page {
    padding: 14px 0 40px;
    align-items: start;
  }

  .payment-choice-card {
    border-width: 2px;
    border-radius: 0;
    box-shadow: 5px 5px 0 var(--shadow);
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .payment-option {
    padding: 18px;
  }

  .payment-option p {
    min-height: 0;
  }

  .proof-reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-impact {
    font-size: 14px;
    line-height: 1.35;
  }

  .review-dialog {
    width: min(100% - 18px, 860px);
    padding: 12px;
  }

  .review-dialog[open] {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .modal-review-arrow {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .review-slide {
    flex-basis: 100%;
    padding: 10px;
  }

  .review-slide img {
    height: 480px;
  }

  @media (max-width: 520px) {
    .review-dialog[open] {
      display: block;
    }

    .review-dialog {
      padding: 12px 10px;
    }

    .modal-review-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .modal-review-prev {
      left: 8px;
    }

    .modal-review-next {
      right: 8px;
    }
  }

  .carousel-prev {
    left: -9px;
  }

  .carousel-next {
    right: -9px;
  }

  .puppy-sticker {
    top: -2px;
    left: 3px;
    width: 68px;
    filter: drop-shadow(3px 4px 0 rgba(68, 123, 186, 0.15));
  }

  .warning-strip {
    margin-bottom: 15px;
    padding: 11px 12px 11px 52px;
  }

  .warning-strip strong {
    font-size: 14px;
    letter-spacing: 0.025em;
  }

  .warning-strip span {
    font-size: 10px;
  }

  h1 {
    font-size: clamp(25px, 7.4vw, 37px);
  }

  .lead {
    font-size: 21px;
  }

  .hero-description {
    font-size: 15px;
  }

  .video-panel {
    padding: 8px;
  }

  .video-card,
  .video-frame {
    border-width: 2px;
  }

  .play-button {
    width: 62px;
    height: 62px;
    box-shadow: 4px 4px 0 rgba(23, 33, 43, 0.95);
  }

  .player-controls {
    gap: 0;
    padding: 24px 6px 5px;
  }

  .player-icon-button,
  .player-text-button,
  .player-quality-button {
    min-width: 29px;
    height: 29px;
  }

  .player-icon-button svg {
    width: 20px;
    height: 20px;
  }

  .player-text-button,
  .player-time {
    font-size: 12px;
  }

  .player-quality-button {
    padding: 0 3px;
  }

  .player-quality-button small {
    display: none;
  }

  .stats-row,
  .reviews-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .tariff-card {
    min-height: auto;
  }
}

/* 20260615 legal/payment final refinement */
.participation-card {
  grid-template-columns: minmax(480px, 1fr) minmax(390px, 500px);
  grid-template-areas:
    "copy price"
    "access access";
  column-gap: clamp(34px, 5vw, 76px);
  row-gap: 26px;
  padding: clamp(28px, 4.5vw, 44px);
}

.participation-copy h2 {
  max-width: 610px;
  margin-bottom: 28px;
}

.participation-copy h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1269e8, #58b8ff);
}

.participation-copy > p:not(.eyebrow):not(.participation-note):not(.access-title) {
  max-width: min(100%, 680px);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.72;
}

.participation-access {
  align-self: start;
}

.access-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #17263a;
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.access-title::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1269e8, #58b8ff);
  box-shadow: 0 0 0 5px rgba(18, 105, 232, 0.07);
}

.participation-access .access-value-list,
.access-value-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.access-value-list li {
  min-height: 128px;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 9px 16px;
  padding: 18px 50px 16px 18px;
  border-color: rgba(47, 111, 174, 0.15);
  border-radius: 14px;
  background:
    radial-gradient(circle at 16% 50%, var(--item-soft), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.95));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.82) inset,
    0 12px 28px rgba(47, 111, 174, 0.08),
    inset 0 -4px 0 var(--item-accent);
}

.access-value-list li b {
  align-self: end;
  font-size: 15px;
  line-height: 1.15;
}

.access-value-list .access-item-copy {
  grid-column: 2;
  margin-top: 0;
  font-size: 13px;
  line-height: 1.32;
}

.access-value-list .access-item-number {
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  font-size: 12px;
}

.access-value-list .access-item-icon {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.96), transparent 38%),
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--item-accent) 22%, #ffffff), color-mix(in srgb, var(--item-accent) 9%, #eff7ff));
  box-shadow:
    0 18px 34px color-mix(in srgb, var(--item-accent) 22%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    inset 0 0 0 12px rgba(255, 255, 255, 0.22);
}

.access-value-list .access-item-icon img {
  width: 62%;
  height: 62%;
  border-radius: 16px;
  clip-path: circle(49% at 50% 50%);
  mix-blend-mode: multiply;
  opacity: 0.96;
  filter: saturate(1.2) contrast(1.12) drop-shadow(0 6px 10px rgba(30, 49, 71, 0.16));
}

.price-panel {
  padding: 0;
  border: 1px solid rgba(47, 111, 174, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 94% 5%, rgba(29, 140, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 255, 0.88));
  box-shadow:
    0 20px 50px rgba(47, 111, 174, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.price-panel::before,
.price-panel-sticker {
  display: none;
}

.price-glow {
  padding: 22px 28px 16px;
  border-bottom: 1px solid rgba(47, 111, 174, 0.16);
}

.price-meta-row {
  min-height: 44px;
  margin: 0 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.master-price {
  font-size: clamp(58px, 6vw, 78px);
}

.price-included-list {
  margin: 0;
  padding: 10px 28px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.price-included-list li {
  min-height: 36px;
  padding: 8px 0;
  gap: 14px;
  border-top: 1px dashed rgba(47, 111, 174, 0.16);
  color: #263f58;
  font-size: 15px;
  font-weight: 650;
}

.price-included-list li:first-child {
  border-top: 0;
}

.price-included-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 2px solid #1d8cff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(29, 140, 255, 0.08);
}

.lifetime-badge {
  margin: 10px 28px 0;
  min-height: 38px;
  border-radius: 12px;
}

.lifetime-badge span {
  width: 20px;
  height: 20px;
  font-size: 12px;
}

.purchase-button {
  width: calc(100% - 56px);
  margin: 16px 28px 0;
  min-height: 58px;
  border-radius: 14px;
}

.telegram-return {
  width: calc(100% - 56px);
  min-height: 42px;
  margin: 12px 28px 22px;
  border-color: rgba(29, 140, 255, 0.3);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.afterpay-section .section-copy {
  max-width: 760px;
}

.afterpay-section .afterpay-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.afterpay-grid article p {
  color: #39516b;
}

.legal-footer .section-shell {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.footer-requisites {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  max-width: 980px;
  padding: 12px 16px;
  border: 1px solid rgba(47, 111, 174, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(47, 111, 174, 0.08);
  color: #294560;
  font-size: 14px;
}

.footer-requisites strong {
  color: #17263a;
}

.footer-requisites span::before {
  content: "│";
  margin-right: 10px;
  color: #2f6fae;
  opacity: 0.45;
}

.legal-requisites-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(47, 111, 174, 0.18);
  border-radius: 14px;
  background: rgba(238, 245, 253, 0.72);
}

.legal-requisites-card p {
  margin: 0;
}

@media (max-width: 920px) {
  .participation-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "price"
      "access";
  }

  .participation-access .access-value-list,
  .access-value-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .participation-card {
    padding: 24px 18px;
  }

  .access-value-list li {
    min-height: 118px;
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 16px 46px 15px 14px;
  }

  .access-value-list .access-item-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .price-glow {
    padding: 20px 18px 14px;
  }

  .price-included-list {
    padding: 10px 18px 8px;
  }

  .lifetime-badge {
    margin-left: 18px;
    margin-right: 18px;
  }

  .purchase-button,
  .telegram-return {
    width: calc(100% - 36px);
    margin-left: 18px;
    margin-right: 18px;
  }

  .footer-requisites span::before {
    content: none;
  }
}

.access-claim-page {
  align-items: center;
  padding-inline: 18px;
}

.success-body {
  min-width: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

html:has(.success-body) {
  min-width: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.success-body .access-claim-page {
  display: flex;
  width: 100vw;
  max-width: 100vw;
  justify-content: center;
  padding-right: 10px;
  padding-left: 10px;
  overflow-x: hidden;
}

.access-claim-card {
  display: grid;
  width: min(calc(100vw - 36px), 820px);
  max-width: 820px;
  justify-items: center;
  text-align: center;
}

.access-claim-card > * {
  min-width: 0;
  max-width: 100%;
}

.access-claim-card .back-link {
  justify-self: center;
}

.success-sticker {
  display: block;
  width: clamp(124px, 20vw, 190px);
  height: auto;
  margin: 4px auto 12px;
  filter: drop-shadow(0 18px 22px rgba(30, 49, 71, 0.16));
}

.access-claim-card .eyebrow {
  margin-inline: auto;
}

.access-claim-card h1 {
  max-width: 720px;
  letter-spacing: 0;
  text-align: center;
  overflow-wrap: anywhere;
}

.access-claim-card h1 span {
  display: block;
}

.access-claim-card .payment-choice-lead,
.access-claim-card .payment-choice-note {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  overflow-wrap: anywhere;
}

.access-claim-form {
  display: grid;
  gap: 16px;
  max-width: 620px;
  width: min(100%, 620px);
  margin: 28px auto 26px;
}

.access-claim-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.access-claim-form input {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 2px solid rgba(33, 52, 73, 0.86);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 3px 3px 0 rgba(30, 49, 71, 0.12);
  font: inherit;
  font-weight: 750;
}

.access-claim-form input:focus {
  outline: 3px solid rgba(42, 139, 242, 0.22);
  border-color: var(--vk);
}

.access-claim-submit {
  justify-self: center;
  max-width: 100%;
  margin-top: 4px;
  text-align: center;
  white-space: normal;
}

.access-claim-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 800;
}

.access-claim-status[data-status="success"] {
  color: #137a45;
}

.access-claim-status[data-status="error"] {
  color: #ad3e3e;
}

.access-claim-status[data-status="loading"] {
  color: var(--vk-deep);
}

.access-claim-steps {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.access-claim-steps article {
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .access-claim-page {
    padding-inline: 10px;
  }

  .success-body .access-claim-page {
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
  }

  .access-claim-card {
    width: min(calc(100vw - 20px), 370px);
    padding: 24px 18px 28px;
  }

  .success-body .access-claim-card {
    width: min(330px, calc(100vw - 64px)) !important;
    max-width: min(330px, calc(100vw - 64px)) !important;
    margin: 0 !important;
  }

  .success-body .access-claim-form,
  .success-body .access-claim-steps,
  .success-body .access-claim-steps article,
  .success-body .payment-choice-lead,
  .success-body .payment-choice-note {
    width: 100%;
    max-width: 100%;
  }

  .access-claim-card h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.06;
    max-width: 100%;
  }

  .access-claim-card .payment-choice-lead {
    font-size: 16px;
    line-height: 1.45;
  }

  .access-claim-submit {
    width: 100%;
  }

  .access-claim-steps {
    grid-template-columns: 1fr;
  }
}

.payment-support-link {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .afterpay-section .afterpay-grid {
    grid-template-columns: 1fr;
  }
}

/* 20260615 premium access block refinement */
.participation-section .participation-card {
  row-gap: clamp(42px, 4vw, 56px);
  background:
    radial-gradient(circle at 86% 10%, rgba(29, 140, 255, 0.12), transparent 31%),
    radial-gradient(circle at 13% 84%, rgba(24, 185, 232, 0.09), transparent 34%),
    radial-gradient(rgba(47, 111, 174, 0.12) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(180deg, rgba(245, 251, 255, 0.98), rgba(238, 247, 255, 0.92));
}

.participation-section .participation-access {
  margin-top: 0;
  align-self: start;
}

.participation-section .participation-copy .participation-lead {
  max-width: min(100%, 760px) !important;
  color: #294560;
  font-size: clamp(22px, 1.82vw, 28px) !important;
  font-weight: 500;
  line-height: 1.54 !important;
  letter-spacing: -0.02em;
}

.participation-section .participation-copy .participation-lead + .participation-lead {
  margin-top: 24px !important;
}

.participation-section .access-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: linear-gradient(135deg, #1f8cff 0%, #0866d8 100%);
  color: #ffffff;
  box-shadow:
    0 12px 24px rgba(8, 102, 216, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.participation-section .access-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.participation-section .participation-access .access-value-list,
.participation-section .access-value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 17px;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

.participation-section .access-value-list li {
  --item-accent: #2688eb;
  --item-soft: rgba(38, 136, 235, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 186px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 42px;
  grid-template-rows: auto auto;
  gap: 8px 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(120, 160, 210, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 20%, var(--item-soft), transparent 37%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 255, 0.88));
  box-shadow:
    0 14px 34px rgba(20, 54, 92, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.participation-section .access-value-list li::before {
  content: none;
}

.participation-section .access-value-list li::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--item-accent), color-mix(in srgb, var(--item-accent) 48%, #ffffff));
  opacity: 0.94;
}

.participation-section .access-value-list .access-item-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(38, 136, 235, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.98), transparent 45%),
    radial-gradient(circle at 70% 78%, rgba(38, 136, 235, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(224, 241, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow:
    0 15px 28px rgba(38, 136, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -10px 22px rgba(38, 136, 235, 0.08);
}

.participation-section .access-value-list .access-item-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.participation-section .access-value-list .access-item-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
  border-radius: 0;
  clip-path: none;
  mix-blend-mode: normal;
  opacity: 1;
  filter:
    saturate(1.02)
    drop-shadow(0 8px 14px rgba(38, 136, 235, 0.14));
}

.participation-section .access-value-list .access-item-icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--item-accent);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.8))
    drop-shadow(0 7px 12px color-mix(in srgb, var(--item-accent) 22%, transparent));
}

.participation-section .access-value-list li b {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0;
  padding: 0;
  color: #17212b;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.participation-section .access-value-list .access-item-copy {
  grid-column: 2 / 4;
  grid-row: 2;
  align-self: start;
  margin: 0;
  color: rgba(41, 69, 96, 0.82);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.participation-section .access-value-list .access-item-number {
  grid-column: 3;
  grid-row: 1;
  position: static;
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(38, 136, 235, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2688eb;
  box-shadow: 0 10px 20px rgba(38, 136, 235, 0.12);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.participation-section .access-value-list li:nth-child(1) {
  --item-accent: #2688eb;
  --item-soft: rgba(38, 136, 235, 0.1);
}

.participation-section .access-value-list li:nth-child(2) {
  --item-accent: #2688eb;
  --item-soft: rgba(38, 136, 235, 0.1);
}

.participation-section .access-value-list li:nth-child(3) {
  --item-accent: #2688eb;
  --item-soft: rgba(38, 136, 235, 0.1);
}

.participation-section .access-value-list li:nth-child(4) {
  --item-accent: #2688eb;
  --item-soft: rgba(38, 136, 235, 0.1);
}

.participation-section .access-value-list li:nth-child(5) {
  --item-accent: #2688eb;
  --item-soft: rgba(38, 136, 235, 0.1);
}

.participation-section .access-value-list li:nth-child(6) {
  --item-accent: #2688eb;
  --item-soft: rgba(38, 136, 235, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  .participation-section .access-value-list li:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--item-accent) 38%, rgba(120, 160, 210, 0.28));
    box-shadow:
      0 20px 42px rgba(20, 54, 92, 0.12),
      0 0 0 1px color-mix(in srgb, var(--item-accent) 14%, transparent),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 1120px) {
  .participation-section .participation-access .access-value-list,
  .participation-section .access-value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .participation-section .participation-card {
    row-gap: 34px;
  }

  .participation-section .participation-copy .participation-lead {
    font-size: clamp(18px, 4.4vw, 22px) !important;
    line-height: 1.5 !important;
  }

  .participation-section .participation-copy .participation-lead + .participation-lead {
    margin-top: 18px !important;
  }
}

@media (max-width: 620px) {
  .participation-section .participation-card {
    row-gap: 28px;
  }

  .participation-section .access-title {
    min-height: 32px;
    padding: 0 16px;
    font-size: 12px;
  }

  .participation-section .participation-access .access-value-list,
  .participation-section .access-value-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .participation-section .access-value-list li {
    min-height: 118px;
    grid-template-columns: 56px minmax(0, 1fr) 34px;
    gap: 7px 14px;
    padding: 16px;
    border-radius: 16px;
  }

  .participation-section .access-value-list .access-item-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .participation-section .access-value-list .access-item-icon svg {
    width: 31px;
    height: 31px;
  }

  .participation-section .access-value-list li b {
    font-size: 15px;
    line-height: 1.18;
  }

  .participation-section .access-value-list .access-item-copy {
    font-size: 13px;
    line-height: 1.34;
  }

  .participation-section .access-value-list .access-item-number {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
}
