@font-face {
  font-family: "Google Sans";
  src: url("assets/fonts/google-sans-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #111111;
  --paper: #ffffff;
  --yellow: #fdc52d;
  --gold: #d0a84f;
  --bright-gold: #e6ad00;
  --red: #e93d3d;
  --charcoal: #1d2327;
  --muted: #c3c4c7;
  --rule: #333333;
  --wrap: 1180px;
  --section-wrap: 940px;
  --ease-clash: cubic-bezier(.22, 1, .36, 1);
}

/* Match every section below the hero to the hero's visible content edges. */
main > section > :is(
  .tickets__inner,
  .guarantee__inner,
  .fit__inner,
  .ticket-checkpoint__inner,
  .learn__inner,
  .programme__inner,
  .bonuses__inner,
  .testimonials__inner,
  .paths__inner,
  .reality__inner,
  .mentors__inner,
  .closing-assurance__inner
) {
  width: min(calc(100% - 48px), var(--section-wrap));
  max-width: none;
  margin-inline: auto;
}

@media (max-width: 800px) {
  main > section > :is(
    .tickets__inner,
    .guarantee__inner,
    .fit__inner,
    .ticket-checkpoint__inner,
    .learn__inner,
    .programme__inner,
    .bonuses__inner,
    .testimonials__inner,
    .paths__inner,
    .reality__inner,
    .mentors__inner,
    .closing-assurance__inner
  ) {
    width: min(calc(100% - 32px), var(--section-wrap));
  }
}

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

html {
  min-width: 320px;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Google Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2 {
  font-weight: 900;
  -webkit-text-stroke: 1px currentColor;
  paint-order: stroke fill;
}

h3,
h4 {
  font-weight: 800;
  -webkit-text-stroke: .55px currentColor;
  paint-order: stroke fill;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  color: #ffffff;
  background: #111111;
  border-bottom: 4px solid var(--yellow);
}

.site-header__inner {
  width: min(calc(100% - 48px), var(--wrap));
  min-height: 98px;
  margin: 0 auto;
  padding: 12px 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 96px);
}

.clash-logo {
  flex: 0 0 auto;
  display: block;
  width: 180px;
  height: 74px;
  overflow: hidden;
  text-decoration: none;
}

.clash-logo img {
  width: 270px;
  max-width: none;
  height: auto;
  transform: translate(-29px, -9px);
}

.event-meta {
  display: contents;
  text-align: left;
}

.event-meta__item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.event-meta__item--live {
  color: var(--yellow);
  font-weight: 800;
}

.event-meta__icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-meta__note {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--wrap));
  min-height: 680px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, .65fr);
  align-items: center;
  gap: clamp(52px, 5vw, 76px);
}

.hero__content {
  max-width: 820px;
}

.hero__title {
  margin: 0;
  color: #111111;
  font-size: clamp(2.35rem, 2.7vw, 2.75rem);
  font-weight: 900;
  letter-spacing: .012em;
  line-height: 1.12;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px currentColor;
  paint-order: stroke fill;
}

.hero__title > span {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: #334155;
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
}

.hero__benefits {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.hero__benefits li {
  position: relative;
  padding-left: 35px;
  color: #222222;
  font-size: clamp(.96rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero__benefits li::before {
  content: "✓";
  position: absolute;
  top: .04em;
  left: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #111111;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 900;
  line-height: 1;
}

.hero__benefits li:last-child::before {
  color: #111111;
  background: var(--yellow);
}

.hero__benefits strong {
  font-weight: 900;
}

.hero__media {
  width: min(100%, 340px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  justify-self: center;
  padding: 18px;
  overflow: hidden;
  background: #1d2327;
  border-top: 4px solid var(--yellow);
}

.hero__video-intro {
  width: 100%;
  margin: 0;
  padding: 6px 6px 24px;
  color: #ffffff;
  font-size: clamp(.92rem, 1.05vw, 1rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  text-wrap: pretty;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  color: #ffffff;
  background: #1d2327;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
}

.video-placeholder__center {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity .2s ease;
}

.video-placeholder__play {
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: #111111;
  background: var(--yellow);
  border-radius: 50%;
}

.video-placeholder__play svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.video-placeholder__label,
.video-placeholder__status {
  display: block;
  text-transform: uppercase;
}

.video-placeholder__label {
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.video-placeholder__status {
  margin-top: 9px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.video-placeholder__corner {
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: var(--yellow);
  border-style: solid;
}

.video-placeholder__corner--top {
  top: 0;
  left: 0;
  border-width: 5px 0 0 5px;
}

.video-placeholder__corner--bottom {
  right: 0;
  bottom: 0;
  border-width: 0 5px 5px 0;
}

.tickets {
  padding: clamp(76px, 8vw, 116px) 0;
  color: #ffffff;
  background: #111111;
  border-top: 4px solid var(--yellow);
}

.tickets__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(28px, 4vw, 54px);
}

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #111111;
  background: #ffffff;
  border: 2px solid #333333;
}

.ticket-card--vip {
  border-color: var(--gold);
}

.ticket-stub {
  --punch-gap: 27px;
  --punch-spread: 54px;
  --ticket-cut-mask:
    radial-gradient(circle 5px at 0 calc(50% - var(--punch-spread)), transparent 0 4.2px, #000 4.8px),
    radial-gradient(circle 5px at 0 calc(50% - var(--punch-gap)), transparent 0 4.2px, #000 4.8px),
    radial-gradient(circle 5px at 0 50%, transparent 0 4.2px, #000 4.8px),
    radial-gradient(circle 5px at 0 calc(50% + var(--punch-gap)), transparent 0 4.2px, #000 4.8px),
    radial-gradient(circle 5px at 0 calc(50% + var(--punch-spread)), transparent 0 4.2px, #000 4.8px),
    radial-gradient(circle 5px at 100% calc(50% - var(--punch-spread)), transparent 0 4.2px, #000 4.8px),
    radial-gradient(circle 5px at 100% calc(50% - var(--punch-gap)), transparent 0 4.2px, #000 4.8px),
    radial-gradient(circle 5px at 100% 50%, transparent 0 4.2px, #000 4.8px),
    radial-gradient(circle 5px at 100% calc(50% + var(--punch-gap)), transparent 0 4.2px, #000 4.8px),
    radial-gradient(circle 5px at 100% calc(50% + var(--punch-spread)), transparent 0 4.2px, #000 4.8px);
  position: relative;
  width: min(calc(100% - 72px), 400px);
  height: 170px;
  min-height: 170px;
  margin: 38px auto 0;
  padding: 22px 100px 22px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, .11), transparent 34%),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #293238 0%, #151a1e 52%, #232b30 100%);
  border: 2px solid #4a565e;
  box-shadow:
    0 22px 34px rgba(17, 17, 17, .3),
    0 7px 12px rgba(17, 17, 17, .2),
    inset 0 2px 0 rgba(255, 255, 255, .2),
    inset 0 -3px 0 rgba(0, 0, 0, .46),
    inset 2px 0 0 rgba(255, 255, 255, .07),
    inset -2px 0 0 rgba(0, 0, 0, .3);
  filter: drop-shadow(0 13px 12px rgba(17, 17, 17, .2));
  -webkit-mask-image: var(--ticket-cut-mask);
  mask-image: var(--ticket-cut-mask);
  -webkit-mask-composite: source-in, source-in, source-in, source-in, source-in, source-in, source-in, source-in, source-in;
  mask-composite: intersect, intersect, intersect, intersect, intersect, intersect, intersect, intersect, intersect;
  transform: rotate(-1.25deg);
}

.ticket-card--vip .ticket-stub {
  color: #080808;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, rgba(89, 58, 8, .035) 1px 3px),
    linear-gradient(104deg,
      transparent 0%,
      transparent 34%,
      rgba(255, 247, 199, .1) 39%,
      rgba(255, 249, 214, .5) 46%,
      rgba(255, 255, 255, .18) 51%,
      transparent 59%,
      transparent 100%),
    linear-gradient(112deg,
      #9a711d 0%,
      #c69a39 20%,
      #e5c66f 39%,
      #b28325 55%,
      #d9b654 76%,
      #a77a21 100%);
  border-color: #8d6717;
  box-shadow:
    0 22px 34px rgba(17, 17, 17, .32),
    0 7px 12px rgba(17, 17, 17, .2),
    inset 0 2px 0 rgba(255, 250, 210, .72),
    inset 0 -3px 0 rgba(83, 51, 3, .46),
    inset 2px 0 0 rgba(255, 255, 255, .2),
    inset -2px 0 0 rgba(71, 45, 4, .3);
  transform: rotate(1.25deg);
}

.ticket-stub::before,
.ticket-stub::after {
  display: none;
}

.ticket-stub__perforation {
  position: absolute;
  top: 10px;
  right: 72px;
  bottom: 10px;
  width: 2px;
  border-left: 2px dashed currentColor;
  opacity: .58;
}

.ticket-stub__logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -4px;
  width: 82px;
  max-width: none;
  height: auto;
  opacity: .86;
  pointer-events: none;
  transform: translateY(-50%) rotate(90deg);
}

.ticket-card--vip .ticket-stub__logo {
  opacity: .66;
  filter: brightness(0);
}

.ticket-stub :is(h2, h3) {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: .025em;
  line-height: 1.05;
  text-shadow: 0 2px 2px rgba(0, 0, 0, .62);
  text-transform: uppercase;
}

.ticket-card--vip .ticket-stub :is(h2, h3) {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .48);
}

.ticket-stub :is(h2, h3)::after {
  content: "Ден 1 и 2";
  width: fit-content;
  margin-top: 12px;
  padding: 6px 9px;
  display: block;
  color: #111111;
  background: #ffffff;
  border: 1px dashed currentColor;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-shadow: none;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
}

.ticket-card--vip .ticket-stub :is(h2, h3)::after {
  background: rgba(255, 255, 255, .84);
}

.ticket-stub__points {
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
  list-style: none;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .72);
}

.ticket-card--vip .ticket-stub__points {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .42);
}

.ticket-stub__points li {
  position: relative;
  padding-left: 14px;
}

.ticket-stub__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.ticket-card--vip .ticket-stub__points li::before {
  color: #111111;
}

.ticket-stub h2,
.ticket-checkpoint .ticket-stub h3 {
  -webkit-text-stroke: 1px currentColor;
  paint-order: stroke fill;
}

.ticket-card__body {
  flex: 1;
  padding: clamp(34px, 4vw, 52px);
  display: flex;
  flex-direction: column;
}

.ticket-card__body h3 {
  margin: 0;
  font-size: clamp(1.48rem, 2.1vw, 1.95rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.ticket-card__summary {
  min-height: 3.1em;
  margin: 24px 0 0;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.55;
}

.ticket-card__features {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.ticket-card__features li {
  position: relative;
  padding-left: 27px;
  color: #333333;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.58;
}

.ticket-card__features li::before {
  content: "";
  position: absolute;
  top: .64em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #1d2327;
  border-radius: 50%;
}

.ticket-card--vip .ticket-card__features li::before {
  background: var(--bright-gold);
}

.ticket-card__features strong {
  color: #111111;
  font-weight: 900;
}

.ticket-card__footer {
  margin-top: auto;
  padding-top: 38px;
}

.ticket-card__price {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #111111;
  border-top: 2px solid #111111;
  padding-top: 18px;
}

.ticket-card__price span {
  font-size: .98rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket-card__price strong {
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  font-weight: 900;
  letter-spacing: .015em;
  line-height: 1;
}

.ticket-card--vip .ticket-card__price strong {
  color: var(--bright-gold);
}

.ticket-card__availability {
  width: fit-content;
  margin: 14px auto 0;
  padding: 0;
  color: #111111;
  background: transparent;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.ticket-card--vip .ticket-card__availability {
  color: #111111;
  background: transparent;
}

.ticket-card__button {
  width: 100%;
  margin-top: 24px;
  padding: 17px 22px;
  display: block;
  color: #ffffff;
  background: #111111;
  border: 2px solid #111111;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(17, 17, 17, 0);
  transition: box-shadow .22s ease, transform .22s var(--ease-clash);
}

.ticket-card__button:hover {
  box-shadow: 0 7px 0 rgba(17, 17, 17, .2), 0 15px 26px rgba(17, 17, 17, .2);
  transform: translateY(-4px) scale(1.01);
}

.ticket-card__button:active {
  box-shadow: 0 3px 0 rgba(17, 17, 17, .16), 0 7px 14px rgba(17, 17, 17, .14);
  transform: translateY(-1px) scale(.995);
}

.ticket-card--vip .ticket-card__button {
  color: #111111;
  background: var(--bright-gold);
  border-color: var(--bright-gold);
}

.guarantee {
  padding: clamp(84px, 9vw, 132px) 0;
  color: #111111;
  background: #f0f0f1;
  border-top: 4px solid var(--yellow);
}

.guarantee__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(58px, 8vw, 112px);
}

.guarantee__mark {
  width: min(100%, 360px);
}

.guarantee__mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(17, 17, 17, .12));
}

.guarantee__content {
  max-width: 760px;
}

.guarantee__content p {
  margin: 0;
  color: #334155;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 500;
  line-height: 1.72;
}

.guarantee__content p + p {
  margin-top: 24px;
}

.guarantee__content strong {
  color: #111111;
  font-weight: 900;
}

.guarantee__lead {
  color: #111111 !important;
  font-size: clamp(1rem, 1.35vw, 1.16rem) !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

.guarantee__closing {
  padding-left: 20px;
  color: #111111 !important;
  border-left: 5px solid var(--yellow);
  font-weight: 800 !important;
}

.media-proof {
  padding: clamp(56px, 6.5vw, 84px) 0;
  background: #111111;
}

.media-proof__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.media-proof h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: .012em;
  line-height: 1.15;
  text-align: center;
}

.media-proof__logos {
  margin-top: clamp(34px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(26px, 4vw, 62px);
}

.media-proof__logos img {
  width: auto;
  max-width: 100%;
  height: clamp(40px, 4.2vw, 56px);
  margin: 0 auto;
  object-fit: contain;
}

.fit {
  padding: clamp(84px, 9vw, 120px) 0;
  background: #fffdf7;
}

.fit__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.fit__header {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.fit__header h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: .98;
  text-wrap: balance;
}

.fit__header p {
  max-width: none;
  margin: 28px auto 0;
  color: #4b5563;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  white-space: nowrap;
}

.fit__header strong {
  color: #111111;
  font-weight: 900;
}

.fit__layout {
  margin: clamp(54px, 7vw, 82px) 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .75fr);
  align-items: start;
  gap: clamp(54px, 7vw, 96px);
}

.fit__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: fit-point;
}

.fit__list li {
  min-height: 0;
  padding: 0 0 0 68px;
  position: relative;
  display: flex;
  align-items: flex-start;
  counter-increment: fit-point;
}

.fit__list li + li {
  margin-top: 22px;
}

.fit__list li::before {
  content: counter(fit-point, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
}

.fit__list li span {
  color: #242424;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 600;
  line-height: 1.58;
  text-wrap: pretty;
}

.fit__visual {
  position: sticky;
  top: 32px;
  padding-bottom: clamp(92px, 9vw, 126px);
}

.fit__image {
  aspect-ratio: 1 / 1.08;
  position: relative;
  overflow: hidden;
  border: 1px solid #444444;
  background: #1d2327;
}

.fit__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(var(--yellow), var(--yellow)) left top / 42px 4px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) left top / 4px 42px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 42px 4px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) right bottom / 4px 42px no-repeat;
}

.fit__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.fit__visual > p {
  width: min(88%, 560px);
  margin: 0 auto;
  padding: clamp(28px, 3.5vw, 42px);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  color: #111111;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, .12);
  font-size: clamp(1.15rem, 1.75vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.2;
  text-wrap: balance;
}

.fit__visual > p strong {
  color: #111111;
  font-weight: 900;
}

.ticket-checkpoint {
  padding: clamp(74px, 8vw, 112px) 0 clamp(84px, 9vw, 124px);
  color: #ffffff;
  background: #111111;
  border-top: 4px solid var(--yellow);
}

.ticket-checkpoint__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.ticket-checkpoint__event {
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 26px clamp(24px, 3.5vw, 42px);
  border: 1px solid #393939;
  border-left: 5px solid var(--yellow);
  background: #1d2327;
}

.ticket-checkpoint__fact {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 800;
  line-height: 1.3;
}

.ticket-checkpoint__fact--live {
  color: var(--yellow);
}

.ticket-checkpoint__fact svg {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ticket-checkpoint__fact small {
  color: #c3c4c7;
  font-size: .78em;
  font-weight: 600;
}

.ticket-checkpoint__event > p {
  margin: 0;
  color: #c3c4c7;
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
  text-align: right;
}

.ticket-checkpoint__event > p strong {
  color: #ffffff;
  font-weight: 900;
}

.ticket-checkpoint > .ticket-checkpoint__inner > h2 {
  margin: clamp(54px, 6vw, 78px) 0 clamp(38px, 4.5vw, 54px);
  color: #ffffff;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: .98;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.ticket-checkpoint .tickets__inner {
  width: 100%;
}

.ticket-checkpoint .ticket-stub h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: .025em;
  line-height: 1;
  text-transform: uppercase;
}

.ticket-checkpoint .ticket-card__body h4 {
  margin: 0;
  font-size: clamp(1.48rem, 2.1vw, 1.95rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.ticket-checkpoint--last > .ticket-checkpoint__inner > h2 {
  margin-top: 0;
}

.closing-offer {
  margin-top: clamp(56px, 7vw, 84px);
  text-align: center;
}

.closing-offer h3 {
  max-width: 1000px;
  margin: clamp(42px, 5vw, 62px) auto 0;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -.012em;
  line-height: 1.12;
  text-wrap: balance;
}

.closing-offer__guarantee {
  max-width: 860px;
  margin: 26px auto 0;
  color: var(--yellow);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.35;
  text-wrap: balance;
}

.closing-offer__guarantee strong {
  font-weight: 900;
}

.closing-offer__choice {
  margin: 34px 0 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  font-weight: 700;
  line-height: 1.5;
}

.closing-offer__choice strong {
  color: var(--yellow);
  font-weight: 900;
}

.closing-offer__scarcity {
  width: fit-content;
  margin: 14px auto 0;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}

.learn {
  padding: clamp(84px, 9vw, 124px) 0;
  color: #111111;
  background: #fffdf7;
}

.learn__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.learn h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(2.45rem, 5.5vw, 5.1rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .98;
  text-align: center;
  text-wrap: balance;
}

.learn__columns {
  margin-top: clamp(56px, 7vw, 84px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(28px, 4vw, 52px);
}

.learn__column {
  padding: clamp(32px, 4vw, 48px);
  background: #ffffff;
  border: 1px solid #ded9cc;
  border-top: 6px solid var(--yellow);
}

.learn__column--yes {
  background: #e9f5ec;
  border-color: #bdd8c4;
  border-top-color: #4e9f67;
}

.learn__column--no {
  background: #f8e8e8;
  border-color: #e4bcbc;
  border-top-color: var(--red);
}

.learn__column h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.55vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.15;
  text-wrap: balance;
}

.learn__column ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.learn__column li {
  min-height: 58px;
  padding: 22px 0 22px 50px;
  position: relative;
  color: #333333;
  border-top: 1px solid #ded9cc;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 500;
  line-height: 1.58;
  text-wrap: pretty;
}

.learn__column--yes li {
  border-top-color: #c9dfcf;
}

.learn__column--no li {
  border-top-color: #e8caca;
}

.learn__column li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.learn__column--yes li::before {
  content: "✓";
  color: #ffffff;
  background: #16a34a;
}

.learn__column--no li::before {
  content: "×";
  color: #ffffff;
  background: var(--red);
  font-size: 1.25rem;
}

.learn__column strong {
  color: #111111;
  font-weight: 900;
}

.programme {
  padding: clamp(76px, 8vw, 110px) 0;
  color: #ffffff;
  background: #111111;
  border-top: 4px solid var(--yellow);
}

.programme__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.programme h2 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

.programme__day {
  margin-top: clamp(58px, 6.5vw, 82px);
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(44px, 5.5vw, 72px);
}

.programme__day + .programme__day {
  margin-top: clamp(80px, 9vw, 118px);
}

.programme__media {
  min-width: 0;
}

.programme__portrait {
  aspect-ratio: 4 / 5;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #1d2327;
  border: 1px solid #393939;
  border-radius: 24px;
}

.js .reveal-from-left {
  opacity: 0;
  transform: translateX(-52px);
  transition:
    opacity .78s var(--ease-clash),
    transform .78s var(--ease-clash);
  will-change: opacity, transform;
}

.js .reveal-from-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

.programme__portrait::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-top: 5px solid var(--yellow);
  border-left: 5px solid var(--yellow);
  pointer-events: none;
}

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

.programme__portrait--slavi {
  background:
    radial-gradient(circle at 50% 38%, rgba(253, 197, 45, .18), transparent 42%),
    #1d2327;
}

.programme__portrait--slavi img {
  object-fit: cover;
  object-position: center 34%;
}

.programme__portrait--georgi img {
  object-position: center 34%;
}

.programme__portrait figcaption {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: fit-content;
  padding: 9px 13px;
  color: #111111;
  background: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.programme__content h3 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.04;
  white-space: nowrap;
}

.programme__lead {
  margin: 28px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.5;
}

.programme__lead > span,
.programme__number {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: #111111;
  background: var(--yellow);
  border-radius: 3px;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
}

.programme__intro {
  margin: 23px 0 0;
  color: #c3c4c7;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 600;
  line-height: 1.65;
}

.programme__topics {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.programme__topics li {
  padding: 16px 0 16px 24px;
  position: relative;
  color: #dfe1e3;
  border-top: 1px solid #34383b;
  font-size: clamp(.98rem, 1.25vw, 1.08rem);
  font-weight: 500;
  line-height: 1.62;
  text-wrap: pretty;
}

.programme__topics li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  background: var(--yellow);
  border-radius: 50%;
}

.programme__topics strong,
.programme__copy strong {
  color: #ffffff;
  font-weight: 900;
}

.programme__task {
  margin: 24px 0 0;
  min-height: 148px;
  padding: 21px 24px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #1d2327;
  border-left: 5px solid var(--yellow);
  font-size: clamp(.96rem, 1.2vw, 1.06rem);
  font-weight: 700;
  line-height: 1.65;
}

.programme__copy {
  margin-top: 28px;
}

.programme__copy p {
  margin: 0;
  color: #dfe1e3;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 500;
  line-height: 1.7;
  text-wrap: pretty;
}

.programme__copy p + p {
  margin-top: 0;
  padding-top: 19px;
  border-top: 1px solid #34383b;
}

.programme__copy p:first-child {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding-bottom: 19px;
}

.programme__copy p:not(:first-child) {
  padding-bottom: 19px;
}

.bonuses {
  padding: clamp(84px, 9vw, 124px) 0;
  color: #111111;
  background: #fffdf7;
}

.bonuses--closing {
  color: #ffffff;
  background: var(--charcoal);
  border-top: 4px solid var(--yellow);
}

.bonuses--closing h2 {
  color: #ffffff;
}

.bonuses--closing .bonus-card {
  color: #111111;
  background: #fffdf7;
}

.bonuses--closing .bonus-card h3 {
  color: #111111;
}

.bonuses--closing .bonus-card__content > p:last-child {
  color: #3f3d38;
}

.bonuses__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.bonuses h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

.bonuses__grid {
  width: min(100%, 1000px);
  margin-top: clamp(48px, 6vw, 72px);
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 14px;
}

.bonus-card {
  min-height: 184px;
  padding: 24px 30px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  color: #ffffff;
  background: var(--charcoal);
  border-top: 6px solid var(--yellow);
}

.bonus-card__label {
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 9px;
  position: relative;
  z-index: 1;
  color: #111111;
  background: var(--yellow);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.bonus-card__icon {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  color: #111111;
  background: var(--yellow);
}

.bonus-card__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.bonus-card__content {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.bonus-card h3 {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: clamp(1.4rem, 1.85vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.08;
  text-wrap: balance;
}

.bonus-card__content > p:last-child {
  margin: 14px 0 0;
  position: relative;
  z-index: 1;
  color: #dfe1e3;
  font-size: clamp(.94rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
}

.testimonials {
  padding: clamp(84px, 9vw, 124px) 0;
  color: #111111;
  background: #fffdf7;
}

.testimonials__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.testimonials h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5.2vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

.testimonials__grid {
  width: min(100%, 940px);
  margin-top: clamp(48px, 6vw, 72px);
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-video {
  aspect-ratio: 9 / 16;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-top: 5px solid var(--yellow);
}

.testimonial-video video {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-width: 0;
  display: block;
  object-fit: cover;
  background: var(--charcoal);
  cursor: pointer;
}

.testimonial-video__play {
  width: clamp(64px, 6vw, 76px);
  aspect-ratio: 1;
  padding: 0;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: rgba(17, 17, 17, .68);
  border: 3px solid #ff9f1c;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    opacity 220ms var(--ease-clash),
    transform 220ms var(--ease-clash);
}

.testimonial-video__play svg {
  width: 44%;
  margin-left: 7%;
  fill: currentColor;
}

.testimonial-video__play:hover {
  box-shadow: none;
  transform: translate(-50%, calc(-50% - 2px)) scale(1.04);
}

.testimonial-video__play.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(.92);
}

.paths {
  padding: clamp(84px, 9vw, 124px) 0;
  color: #ffffff;
  background: #111111;
  border-top: 4px solid var(--yellow);
}

.paths__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.paths h2 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 4.9vw, 4.55rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.03;
  text-align: center;
  text-wrap: balance;
}

.paths h2 span {
  color: var(--red);
  text-transform: uppercase;
}

.paths h2 strong {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.paths__grid {
  margin-top: clamp(52px, 6vw, 76px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto repeat(6, auto);
  align-items: stretch;
  column-gap: 24px;
}

.path-column {
  min-width: 0;
  display: grid;
  grid-row: 1 / span 7;
  grid-template-rows: subgrid;
}

.path-column--hard {
  grid-column: 1;
  color: #111111;
  background: #f8e8e8;
  border-top: 6px solid var(--red);
}

.path-column--easy {
  grid-column: 2;
  color: #111111;
  background: #e9f5ec;
  border-top: 6px solid #4e9f67;
}

.path-column h3 {
  margin: 0;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

.path-column h3 > span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  line-height: 1;
}

.path-column--hard h3 > span {
  color: #ffffff;
  background: var(--red);
}

.path-column--easy h3 > span {
  color: #ffffff;
  background: #087f3d;
}

.path-item {
  min-height: 104px;
  padding: 23px 30px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-top: 1px solid;
}

.path-column--hard .path-item {
  border-color: #e8caca;
}

.path-column--easy .path-item {
  grid-template-columns: 12px minmax(0, 1fr);
  border-color: #c9dfcf;
}

.path-item__marker {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
}

.path-column--easy .path-item__marker {
  width: 12px;
  height: 12px;
  background: #087f3d;
  border-radius: 50%;
}

.path-item p {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 500;
  line-height: 1.55;
  text-wrap: pretty;
}

.path-item strong {
  font-weight: 900;
}

.reality {
  padding: clamp(68px, 7vw, 92px) 0;
  color: #111111;
  background: #fffdf7;
}

.reality__inner {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
}

.reality h2 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.reality__flow {
  max-width: 860px;
  margin: clamp(28px, 3vw, 36px) auto 0;
}

.reality__statement {
  padding: clamp(15px, 1.7vw, 19px) 0;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.reality__marker {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
}

.reality__statement--warning .reality__marker {
  background: var(--red);
}

.reality__statement--solution .reality__marker {
  background: var(--yellow);
}

.reality__statement p {
  margin: 0;
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.55;
  text-wrap: pretty;
}

.reality__statement strong {
  color: #111111;
  font-weight: 900;
}

.reality__question {
  margin: 4px 0;
  padding: clamp(20px, 2.3vw, 26px) 0;
  color: #111111;
  font-size: clamp(1.3rem, 2.15vw, 1.72rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.28;
  text-align: left;
  text-wrap: balance;
}

.reality__closing {
  margin: clamp(8px, 1vw, 12px) 0 0;
  padding: clamp(20px, 2.3vw, 26px) 0 0;
  color: #111111;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.28;
  text-align: left;
  text-wrap: balance;
  border-top: 4px solid var(--yellow);
}

.reality__closing strong {
  font-weight: 900;
}

.mentors {
  padding: clamp(84px, 9vw, 120px) 0;
  color: #111111;
  background: #fffdf7;
}

.mentors__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.mentors__header {
  text-align: center;
}

.mentors__eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #57534c;
  font-size: clamp(.72rem, 1vw, .82rem);
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mentors__eyebrow::before {
  content: "";
  flex: 0 0 32px;
  width: 32px;
  height: 4px;
  background: var(--yellow);
}

.mentors h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.6rem, 5.4vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.03;
  text-align: center;
  text-wrap: balance;
}

.mentors__list {
  margin-top: clamp(56px, 7vw, 88px);
}

.mentor-profile {
  padding: clamp(40px, 5vw, 64px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
  border-top: 1px solid var(--rule);
}

.mentor-profile:last-child {
  border-bottom: 1px solid var(--rule);
}

.mentor-profile__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #e7e2d8;
}

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

.mentor-profile__portrait--slavi {
  background: var(--charcoal);
}

.mentor-profile__portrait--slavi img {
  object-fit: cover;
  object-position: center 32%;
}

.mentor-profile__portrait--georgi img {
  object-position: center 18%;
}

.mentor-profile__corner {
  width: 46px;
  height: 46px;
  position: absolute;
  border-color: var(--yellow);
  border-style: solid;
  pointer-events: none;
}

.mentor-profile__corner--top {
  top: 16px;
  left: 16px;
  border-width: 4px 0 0 4px;
}

.mentor-profile__corner--bottom {
  right: 16px;
  bottom: 16px;
  border-width: 0 4px 4px 0;
}

.mentor-profile__content {
  max-width: 680px;
}

.mentor-profile__content h3 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.012em;
  line-height: 1;
  text-wrap: balance;
}

.mentor-profile__content p {
  margin: 0;
  color: #3f3d38;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 500;
  line-height: 1.68;
  text-wrap: pretty;
}

.mentor-profile__content p + p {
  margin-top: 18px;
}

.mentor-profile__content strong {
  color: #111111;
  font-weight: 800;
}

.mentor-profile__pending {
  color: #77736b !important;
  font-style: italic;
}

.tickets,
.ticket-checkpoint {
  scroll-margin-top: 24px;
}

.section-ticket-cta {
  margin-top: clamp(40px, 5vw, 60px);
  display: flex;
  justify-content: center;
}

.hero .section-ticket-cta {
  margin-top: 30px;
  justify-content: flex-start;
}

.section-ticket-cta__link {
  min-width: 260px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  background: var(--yellow);
  border: 3px solid #111111;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: translateY(0) scale(1);
  transition: box-shadow 220ms var(--ease-clash), transform 220ms var(--ease-clash);
}

.section-ticket-cta__link:hover {
  box-shadow: 0 8px 0 rgba(17, 17, 17, .18), 0 16px 28px rgba(0, 0, 0, .26);
  transform: translateY(-4px) scale(1.01);
}

.section-ticket-cta__link:active {
  box-shadow: 0 3px 0 rgba(17, 17, 17, .14), 0 8px 16px rgba(0, 0, 0, .2);
  transform: translateY(-1px) scale(.995);
}

.site-footer {
  color: #c9cacc;
  background: #111111;
  border-top: 1px solid #34383b;
}

.site-footer__inner {
  width: min(calc(100% - 48px), var(--wrap));
  min-height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.site-footer__brand {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-footer__links a {
  color: #ffffff;
  font-size: .86rem;
  font-weight: 700;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 220ms var(--ease-clash), text-decoration-color 220ms var(--ease-clash);
}

.site-footer__links a:hover {
  color: var(--yellow);
  text-decoration-color: currentColor;
}

.site-footer__inner > p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.45;
  text-align: right;
}

.legal-body {
  min-height: 100vh;
  color: #111111;
  background: #fffdf7;
}

.legal-header {
  color: #ffffff;
  background: var(--charcoal);
  border-bottom: 4px solid var(--yellow);
}

.legal-header__inner {
  width: min(calc(100% - 48px), 1040px);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header__brand,
.legal-header__back {
  color: #ffffff;
  text-decoration: none;
}

.legal-header__brand {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.legal-header__back {
  font-size: .9rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.legal-header__back:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.legal-page {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.legal-page__hero {
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 4px solid var(--yellow);
}

.legal-page__eyebrow {
  margin: 0 0 16px;
  color: #6d6a63;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1;
  text-wrap: balance;
}

.legal-page__updated {
  margin: 20px 0 0;
  color: #6d6a63;
  font-size: .92rem;
  font-weight: 600;
}

.legal-document {
  padding-top: clamp(36px, 5vw, 56px);
}

.legal-document > p:first-child {
  margin-top: 0;
  color: #2c2b28;
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  font-weight: 600;
  line-height: 1.7;
}

.legal-document section {
  margin-top: 42px;
}

.legal-document h2 {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: .025em;
  line-height: 1.25;
  text-transform: uppercase;
  text-wrap: balance;
}

.legal-document p,
.legal-document li,
.legal-document address {
  color: #45423d;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-wrap: pretty;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p {
  margin-top: 16px;
}

.legal-document ul {
  margin: 16px 0 0;
  padding-left: 24px;
}

.legal-document li + li {
  margin-top: 9px;
}

.legal-document strong {
  color: #111111;
  font-weight: 800;
}

.legal-document a {
  color: #111111;
  font-weight: 800;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.legal-document address {
  margin-top: 14px;
  font-style: normal;
}

.legal-page__copyright {
  margin: 56px 0 0;
  padding-top: 24px;
  color: #6d6a63;
  border-top: 1px solid var(--rule);
  font-size: .82rem;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .section-ticket-cta {
    margin-top: 34px;
  }

  .hero .section-ticket-cta {
    margin-top: 26px;
    justify-content: center;
  }

  .section-ticket-cta__link {
    min-width: 230px;
    padding: 15px 24px;
    font-size: .95rem;
  }

  .site-footer__inner {
    width: min(calc(100% - 32px), var(--wrap));
    padding: 32px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .site-footer__links {
    flex-direction: column;
    gap: 14px;
  }

  .site-footer__inner > p {
    text-align: center;
  }

  .legal-header__inner,
  .legal-page {
    width: min(calc(100% - 32px), 820px);
  }

  .legal-header__inner {
    min-height: 78px;
  }

  .legal-header__brand {
    font-size: .9rem;
  }

  .legal-header__back {
    font-size: .78rem;
  }

  .legal-page {
    padding: 58px 0 72px;
  }

  .legal-page h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .legal-document section {
    margin-top: 34px;
  }

  .legal-document p,
  .legal-document li,
  .legal-document address {
    font-size: .96rem;
    line-height: 1.68;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(230px, .65fr);
    gap: 42px;
  }

  .hero__title {
    font-size: clamp(1.55rem, 3.65vw, 2rem);
  }

  .tickets__inner {
    gap: 24px;
  }

  .ticket-stub {
    height: 126px;
    min-height: 126px;
    padding: 26px 92px 26px 28px;
  }

  .ticket-stub__perforation {
    right: 64px;
  }

  .ticket-stub__logo {
    right: -5px;
    width: 74px;
  }

  .ticket-card__body {
    padding: 32px 26px;
  }

  .guarantee__inner {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 44px;
  }

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

  .programme__day {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .programme__portrait {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .bonuses__grid {
    width: min(100%, 720px);
  }

  .bonus-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 24px;
  }

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

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

  .paths__grid {
    display: block;
  }

  .path-column {
    display: block;
  }

  .path-column + .path-column {
    margin-top: 28px;
  }
}

/* Keep the easy-path success accents green across every breakpoint. */
.path-column--easy h3 > span {
  color: #ffffff !important;
  background: #087f3d !important;
}

.path-column--easy .path-item__marker {
  background: #087f3d !important;
}

@media (max-width: 600px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
    width: min(calc(100% - 28px), var(--wrap));
    min-height: 78px;
    padding: 10px 0;
    gap: 16px;
  }

  .clash-logo {
    width: 108px;
    height: 46px;
  }

  .clash-logo img {
    width: 164px;
    transform: translate(-18px, -5px);
  }

  .event-meta {
    display: grid;
    gap: 5px;
  }

  .event-meta__item {
    gap: 7px;
    font-size: .8rem;
  }

  .event-meta__icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }

  .event-meta__note {
    display: block;
  }

  .hero__inner {
    width: min(calc(100% - 32px), var(--wrap));
    min-height: 0;
    padding: 52px 0 76px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero__title {
    font-size: clamp(1.32rem, 6vw, 1.65rem);
    letter-spacing: .01em;
    line-height: 1.12;
    -webkit-text-stroke-width: 1px;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero__benefits {
    margin-top: 26px;
    gap: 12px;
  }

  .hero__benefits li {
    padding-left: 32px;
    font-size: .92rem;
  }

  .video-placeholder {
    width: 100%;
  }

  .hero__media {
    width: min(82vw, 315px);
    padding: 15px;
  }

  .hero__video-intro {
    width: 100%;
  }

  .tickets {
    padding: 68px 0;
  }

  .tickets__inner {
    width: min(calc(100% - 32px), var(--wrap));
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ticket-stub {
    --punch-gap: 24px;
    --punch-spread: 48px;
    width: min(calc(100% - 24px), 340px);
    height: 156px;
    min-height: 156px;
    margin-top: 28px;
    padding: 18px 78px 18px 28px;
  }

  .ticket-stub__perforation {
    right: 60px;
  }

  .ticket-stub__logo {
    right: -4px;
    width: 70px;
  }

  .ticket-stub :is(h2, h3) {
    font-size: 1.12rem;
  }

  .ticket-checkpoint .ticket-stub h3 {
    font-size: 1.12rem;
  }

  .ticket-stub :is(h2, h3)::after {
    margin-top: 8px;
    padding: 5px 7px;
    font-size: .6rem;
  }

  .ticket-stub__points {
    margin-top: 8px;
    gap: 3px;
    font-size: .59rem;
  }

  .ticket-card__body {
    padding: 34px 24px;
  }

  .ticket-card__features {
    gap: 15px;
  }

  .ticket-card__summary {
    min-height: 0;
  }

  .ticket-card__features li {
    font-size: .98rem;
  }

  .guarantee {
    padding: 72px 0 78px;
  }

  .guarantee__inner {
    width: min(calc(100% - 32px), var(--wrap));
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .guarantee__mark {
    width: min(76vw, 280px);
    margin: 0 auto;
  }

  .guarantee__content p {
    font-size: .98rem;
    line-height: 1.65;
  }

  .guarantee__lead {
    font-size: 1.12rem !important;
  }

  .media-proof {
    padding: 58px 0 64px;
  }

  .media-proof__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .media-proof__logos {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .media-proof__logos img {
    height: 48px;
  }

  .fit {
    padding: 72px 0 80px;
  }

  .fit__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .fit__header h2 {
    font-size: clamp(2.2rem, 11vw, 3.05rem);
    line-height: 1.02;
  }

  .fit__header p {
    margin-top: 22px;
    font-size: 1.04rem;
    white-space: normal;
  }

  .fit__layout {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .fit__list li {
    min-height: 0;
    padding: 0 0 0 54px;
  }

  .fit__list li + li {
    margin-top: 26px;
  }

  .fit__list li::before {
    top: 50%;
    font-size: 1.12rem;
  }

  .fit__list li span {
    font-size: .97rem;
    line-height: 1.55;
  }

  .fit__visual {
    position: relative;
    top: auto;
    padding-bottom: 82px;
  }

  .fit__image {
    aspect-ratio: 4 / 5;
  }

  .fit__visual > p {
    width: calc(100% - 30px);
    padding: 25px 22px;
    font-size: clamp(1.15rem, 5.6vw, 1.45rem);
  }

  .ticket-checkpoint {
    padding: 64px 0 78px;
  }

  .ticket-checkpoint__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .ticket-checkpoint__event {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 22px;
  }

  .ticket-checkpoint__fact {
    font-size: .98rem;
  }

  .ticket-checkpoint__event > p {
    padding-top: 17px;
    border-top: 1px solid #444444;
    text-align: left;
  }

  .ticket-checkpoint > .ticket-checkpoint__inner > h2 {
    margin: 50px 0 34px;
    font-size: clamp(2.25rem, 11.5vw, 3.25rem);
  }

  .ticket-checkpoint--last > .ticket-checkpoint__inner > h2 {
    margin-top: 0;
  }

  .closing-offer {
    margin-top: 50px;
  }

  .closing-offer h3 {
    margin-top: 36px;
    font-size: clamp(1.35rem, 6vw, 1.72rem);
    line-height: 1.16;
  }

  .closing-offer__guarantee {
    margin-top: 22px;
    font-size: 1.18rem;
  }

  .closing-offer__choice {
    margin-top: 28px;
    font-size: 1rem;
  }

  .learn {
    padding: 72px 0 80px;
  }

  .learn__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .learn h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
    line-height: 1.02;
  }

  .learn__columns {
    margin-top: 46px;
    gap: 28px;
  }

  .learn__column {
    padding: 30px 24px;
  }

  .learn__column h3 {
    font-size: 1.55rem;
  }

  .learn__column ul {
    margin-top: 26px;
  }

  .learn__column li {
    padding: 19px 0 19px 44px;
    font-size: .97rem;
    line-height: 1.55;
  }

  .learn__column li::before {
    width: 28px;
    height: 28px;
  }

  .programme {
    padding: 64px 0 72px;
  }

  .programme__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .programme h2 {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    line-height: 1.04;
  }

  .programme__day {
    margin-top: 44px;
    gap: 30px;
  }

  .programme__day + .programme__day {
    margin-top: 68px;
  }

  .programme__portrait {
    border-radius: 18px;
  }

  .programme__content h3 {
    font-size: clamp(1.4rem, 6.2vw, 1.58rem);
  }

  .programme__lead {
    margin-top: 23px;
    font-size: 1rem;
  }

  .programme__intro {
    margin-top: 20px;
    font-size: .98rem;
  }

  .programme__topics {
    margin-top: 18px;
  }

  .programme__topics li {
    padding: 15px 0 15px 22px;
    font-size: .95rem;
  }

  .programme__task {
    margin-top: 20px;
    min-height: 132px;
    padding: 19px 20px;
    font-size: .96rem;
  }

  .programme__copy {
    margin-top: 23px;
  }

  .programme__copy p {
    font-size: .96rem;
  }

  .bonuses {
    padding: 72px 0 80px;
  }

  .bonuses__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .bonuses h2 {
    font-size: clamp(2.05rem, 10.4vw, 2.9rem);
    line-height: 1.04;
  }

  .bonuses__grid {
    margin-top: 42px;
    gap: 18px;
  }

  .bonus-card {
    min-height: 0;
    padding: 26px 24px 30px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    text-align: center;
  }

  .bonus-card__label {
    margin: 0 auto 16px;
  }

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

  .bonus-card__icon img {
    width: 70px;
    height: 70px;
  }

  .bonus-card h3 {
    font-size: 1.55rem;
  }

  .bonus-card__content > p:last-child {
    max-width: 30rem;
    margin-inline: auto;
  }

  .testimonials {
    padding: 72px 0 80px;
  }

  .testimonials__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .testimonials h2 {
    font-size: clamp(2.05rem, 10.4vw, 2.9rem);
    line-height: 1.04;
  }

  .testimonials__grid {
    margin-top: 42px;
    gap: 18px;
  }

  .testimonial-video {
    width: 100%;
    max-width: 300px;
    justify-self: center;
  }

  .paths {
    padding: 72px 0 80px;
  }

  .paths__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .paths h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.05;
  }

  .paths__grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto repeat(6, auto);
    column-gap: 8px;
  }

  .path-column {
    display: grid;
    grid-row: 1 / span 7;
    grid-template-rows: subgrid;
  }

  .path-column + .path-column {
    margin-top: 0;
  }

  .path-column h3 {
    padding: 16px 10px;
    gap: 8px;
    font-size: clamp(.78rem, 3.4vw, .9rem);
    line-height: 1.15;
  }

  .path-column h3 > span {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .path-item {
    min-height: 0;
    padding: 14px 10px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 7px;
  }

  .path-item__marker {
    width: 22px;
    height: 22px;
    font-size: .9rem;
  }

  .path-item p {
    font-size: clamp(.72rem, 3.2vw, .82rem);
    line-height: 1.42;
  }

  .path-column--easy .path-item {
    grid-template-columns: 8px minmax(0, 1fr);
  }

  .path-column--easy .path-item__marker {
    width: 8px;
    height: 8px;
  }

  .reality {
    padding: 58px 0 66px;
  }

  .reality__inner {
    width: min(calc(100% - 32px), 980px);
  }

  .reality h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .reality__flow {
    margin-top: 24px;
  }

  .reality__statement {
    padding: 14px 0;
    gap: 16px;
  }

  .reality__statement p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .reality__question {
    margin: 4px 0;
    padding: 18px 0;
    font-size: 1.18rem;
  }

  .reality__closing {
    padding: 18px 0 0;
    font-size: 1.28rem;
  }

  .mentors {
    padding: 68px 0 76px;
  }

  .mentors__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .mentors h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    line-height: 1.04;
  }

  .mentors__eyebrow {
    max-width: 310px;
    margin-bottom: 14px;
    gap: 9px;
    font-size: .68rem;
    letter-spacing: .075em;
  }

  .mentors__eyebrow::before {
    flex-basis: 22px;
    width: 22px;
    height: 3px;
  }

  .mentors__list {
    margin-top: 44px;
  }

  .mentor-profile {
    padding: 34px 0 42px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mentor-profile__portrait {
    width: min(100%, 340px);
    justify-self: center;
  }

  .mentor-profile__portrait--plamen {
    width: min(100%, 250px);
    aspect-ratio: 1;
  }

  .mentor-profile__content h3 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .mentor-profile__content p {
    font-size: .98rem;
    line-height: 1.62;
  }
}

/* September layout refinement: denser Boyana-style rhythm and clearer hierarchy */
.site-header__inner {
  min-height: 78px;
  padding-block: 10px;
}

.clash-logo {
  width: auto;
  height: auto;
  overflow: visible;
  color: #ffffff;
  white-space: nowrap;
}

.clash-logo span {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: .7px currentColor;
}

.hero {
  color: #111111;
  background: #ffffff;
}

.hero__inner {
  min-height: calc(100svh - 82px);
  padding: clamp(42px, 5vw, 72px) 0;
  grid-template-columns: minmax(0, 560px) minmax(300px, 340px);
  align-items: start;
  justify-content: center;
  gap: clamp(24px, 2vw, 32px);
}

.hero__content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__title {
  color: #111111;
  font-size: clamp(2.7rem, 4.3vw, 4.65rem);
  letter-spacing: -.025em;
  line-height: 1.16;
}

.hero__title > span {
  white-space: normal;
}

.hero__title > span:first-child {
  font-size: 1em;
  line-height: 1.16;
  white-space: nowrap;
}

.hero__title > span:not(:first-child) {
  color: var(--yellow);
  font-size: .7em;
  letter-spacing: .02em;
  line-height: 1.16;
  text-transform: none;
  white-space: nowrap;
}

.hero__lead {
  max-width: 680px;
  margin-top: 30px;
  color: #334155;
  font-size: clamp(1.18rem, 1.6vw, 1.4rem);
  line-height: 1.72;
}

.hero__benefits {
  margin-top: 30px;
  gap: 18px;
}

.hero__benefits li {
  color: #222222;
  font-size: clamp(1.03rem, 1.3vw, 1.16rem);
  line-height: 1.42;
}

.hero__benefits li::before {
  color: #ffffff;
  background: #dc2626;
}

.hero__benefits li:last-child::before {
  color: #ffffff;
  background: #16a34a;
}

.hero__media {
  width: min(100%, 340px);
  padding: 12px 22px 22px;
  background: #202629;
  border: 1px solid #40484d;
  border-top: 6px solid var(--yellow);
}

.hero__video-intro {
  padding: 0 5px 16px;
  font-size: clamp(.92rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
}

.video-placeholder {
  height: auto;
  aspect-ratio: 9 / 16;
  background: #0e1113;
}

.video-placeholder__preview,
.video-placeholder__animated-preview,
.video-placeholder__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder__preview {
  object-fit: cover;
  object-position: center 24%;
  transform: scale(1.04);
  animation: hero-preview-loop 7s var(--ease-clash) infinite alternate;
}

.video-placeholder video.video-placeholder__preview {
  object-position: center;
  transform: none;
  animation: none;
}

.video-placeholder__animated-preview {
  z-index: 1;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: opacity .2s ease;
}

.video-placeholder__shade {
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .5));
  transition: opacity .2s ease;
}

.video-placeholder__center,
.video-placeholder__corner {
  z-index: 3;
}

.video-placeholder.is-playing .video-placeholder__animated-preview,
.video-placeholder.is-playing .video-placeholder__shade,
.video-placeholder.is-playing .video-placeholder__center {
  opacity: 0;
  pointer-events: none;
}

.video-placeholder__play {
  width: 82px;
  height: 82px;
  border: 4px solid #111111;
  box-shadow: 0 0 0 4px rgba(253, 197, 45, .28);
}

.video-placeholder__play svg {
  width: 39px;
  height: 39px;
}

.video-placeholder__label {
  font-size: .82rem;
}

.video-placeholder__status {
  color: #ffffff;
}

@keyframes hero-preview-loop {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(0, -1.8%, 0); }
}

.tickets,
.ticket-checkpoint {
  padding: clamp(30px, 4vh, 46px) 0;
}

.ticket-checkpoint__event {
  padding: 15px 24px;
}

.ticket-checkpoint > .ticket-checkpoint__inner > h2 {
  margin: clamp(22px, 3vh, 32px) 0 clamp(20px, 2.6vh, 28px);
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.ticket-stub {
  width: min(calc(100% - 50px), 380px);
  height: 126px;
  min-height: 126px;
  margin-top: 20px;
  padding: 16px 92px 16px 34px;
}

.ticket-stub :is(h2, h3),
.ticket-checkpoint .ticket-stub h3 {
  font-size: clamp(1.12rem, 1.55vw, 1.4rem);
}

.ticket-stub :is(h2, h3)::after {
  margin-top: 8px;
  padding: 5px 8px;
}

.ticket-stub__points {
  margin-top: 7px;
  gap: 2px;
  font-size: .61rem;
}

.ticket-card {
  border-width: 2px;
}

.ticket-card--vip {
  z-index: 1;
  border: 5px solid var(--bright-gold);
  background: linear-gradient(180deg, #fffdf2 0%, #fff7d1 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
  transform: none;
}

.ticket-card__body {
  padding: clamp(22px, 2.4vw, 30px);
}

.ticket-card__body h3,
.ticket-checkpoint .ticket-card__body h4 {
  font-size: clamp(1.3rem, 1.75vw, 1.65rem);
}

.ticket-card__summary {
  min-height: 0;
  margin-top: 13px;
  font-size: .96rem;
  line-height: 1.4;
}

.ticket-card__features {
  margin-top: 16px;
  gap: 9px;
}

.ticket-card__features li {
  padding-left: 22px;
  font-size: clamp(.87rem, 1.05vw, .96rem);
  line-height: 1.38;
}

.ticket-card__footer {
  padding-top: 18px;
}

.ticket-card__price {
  justify-content: center;
  gap: 10px;
  padding-top: 12px;
  text-align: center;
}

.ticket-card__price span {
  font-size: 1.05rem;
}

.ticket-card__price strong {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.ticket-card__button {
  margin-top: 14px;
  padding: 13px 18px;
  font-size: 1rem;
}

.ticket-card__availability {
  margin-top: 8px;
  font-size: .78rem;
}

.guarantee {
  padding: clamp(54px, 6vw, 78px) 0;
}

.guarantee__inner {
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 74px);
}

.guarantee__content p + p {
  margin-top: 16px;
}

.media-proof--embedded {
  width: min(calc(100% - 48px), var(--wrap));
  margin: clamp(42px, 5vw, 58px) auto 0;
  padding: clamp(30px, 4vw, 44px);
  background: #111111;
  border-left: 5px solid var(--yellow);
}

.media-proof--embedded .media-proof__inner {
  width: 100%;
}

.media-proof--embedded h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.media-proof--embedded .media-proof__logos {
  margin-top: 26px;
}

.media-proof--embedded .section-ticket-cta {
  margin-top: 30px;
  justify-content: center;
}

.fit,
.learn,
.programme,
.bonuses,
.testimonials,
.paths,
.reality,
.mentors {
  padding-top: clamp(60px, 7vw, 88px);
  padding-bottom: clamp(60px, 7vw, 88px);
}

.fit__header h2,
.learn h2,
.programme h2,
.bonuses h2,
.testimonials h2,
.paths h2,
.reality h2,
.mentors h2 {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.02;
}

.learn__column--yes,
.path-column--easy {
  background: #9de0b6;
  border-color: #198754;
  border-top-color: #087f3d;
}

.learn__column--no,
.path-column--hard {
  background: #f2a4a4;
  border-color: #c92a2a;
  border-top-color: #c5162e;
}

.learn__column--yes li,
.path-column--easy .path-item {
  border-color: rgba(8, 127, 61, .32);
}

.learn__column--no li,
.path-column--hard .path-item {
  border-color: rgba(139, 0, 22, .3);
}

.programme__day {
  margin-top: clamp(44px, 5vw, 62px);
}

.programme__day + .programme__day {
  margin-top: clamp(58px, 7vw, 86px);
}

.mentor-profile__label {
  display: inline;
  padding: 0;
  color: var(--bright-gold);
  background: transparent;
  font-weight: 900;
}

.mentor-profile__highlight {
  color: var(--bright-gold);
  background: transparent;
}

.mentor-profile__spotlight {
  padding: 0;
  color: var(--bright-gold);
  background: transparent;
  font-weight: 900;
}

.mentor-profile__content .mentor-profile__label,
.mentor-profile__content .mentor-profile__highlight,
.mentor-profile__content .mentor-profile__spotlight {
  color: var(--bright-gold);
  background: transparent;
}

.closing-assurance {
  padding: clamp(42px, 5vw, 64px) 0;
  color: #ffffff;
  background: #ffffff;
  border-top: 4px solid var(--yellow);
}

.closing-assurance__inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2vw, 26px);
}

.closing-assurance .closing-offer {
  margin: 0;
  padding: 0;
  color: #111111;
  text-align: left;
  background: transparent;
  border: 0;
}

.closing-assurance .closing-offer .ticket-checkpoint__event {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px 20px;
  color: #ffffff;
  background: #1d2327;
  border-color: #393939;
  border-left-color: var(--yellow);
}

.closing-assurance .closing-offer .ticket-checkpoint__fact,
.closing-assurance .closing-offer .ticket-checkpoint__event > p {
  color: #ffffff;
}

.closing-assurance .closing-offer .ticket-checkpoint__fact--live {
  color: var(--yellow);
}

.closing-assurance .closing-offer .ticket-checkpoint__fact--time {
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.45;
}

.closing-assurance .closing-offer .ticket-checkpoint__fact--time svg {
  margin-top: 2px;
}

.closing-assurance .closing-offer .ticket-checkpoint__fact--time strong {
  font-weight: 900;
}

.closing-assurance .closing-offer h3 {
  margin: 28px 0 0;
  color: #111111;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
  text-align: left;
}

.closing-assurance .closing-offer__guarantee,
.closing-assurance .closing-offer__choice {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.closing-assurance .closing-offer__guarantee {
  color: #111111;
  font-weight: 900;
}

.closing-assurance .closing-offer__choice {
  color: #111111;
}

.closing-assurance .closing-offer__choice strong {
  color: #111111;
  font-weight: 900;
}

.closing-assurance .closing-offer__scarcity {
  margin-right: 0;
  margin-left: 0;
}

.closing-assurance__guarantee {
  padding: clamp(26px, 3vw, 36px);
  color: #ffffff;
  background: #111111;
  border-top: 5px solid var(--yellow);
}

.closing-assurance__guarantee .guarantee__mark {
  width: min(42%, 180px);
  margin: 0 auto 22px;
}

.closing-assurance__guarantee .guarantee__content {
  max-width: none;
}

.closing-assurance__guarantee .guarantee__content p {
  color: #dfe1e3;
}

.closing-assurance__guarantee .guarantee__content .guarantee__lead,
.closing-assurance__guarantee .guarantee__content .guarantee__closing,
.closing-assurance__guarantee .guarantee__content strong {
  color: #ffffff !important;
}

.closing-assurance__guarantee .section-ticket-cta {
  justify-content: flex-start;
}

main > section:not(.hero) h2[id] {
  font-size: clamp(1.75rem, 2.6vw, 2.75rem) !important;
  letter-spacing: .025em;
  line-height: 1.08;
}

.learn__columns {
  margin-top: 30px;
  gap: 20px;
}

.learn__column {
  padding: 20px 24px;
}

.learn__column h3 {
  font-size: 1.35rem;
}

.learn__column ul {
  margin-top: 18px;
}

.learn__column li {
  min-height: 0;
  padding: 12px 0 12px 40px;
  font-size: .94rem;
  line-height: 1.38;
}

.learn__column li::before {
  width: 24px;
  height: 24px;
  font-size: .84rem;
}

.paths__grid {
  margin-top: 30px;
  column-gap: 18px;
}

.path-column h3 {
  padding: 18px 20px;
  gap: 10px;
  font-size: 1.35rem;
}

.path-column h3 > span {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  font-size: 1.1rem;
}

.path-item {
  min-height: 68px;
  padding: 12px 20px;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
}

.path-item__marker {
  width: 30px;
  height: 30px;
  font-size: 1.05rem;
}

.path-item p {
  font-size: .94rem;
  line-height: 1.35;
}

.media-proof--embedded {
  margin-top: 32px;
  padding: 42px 52px 46px;
  border-left: 0;
  border-radius: 18px;
  background: #111111;
}

main > section:not(.hero) .media-proof--embedded h2#media-proof-title {
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.15rem) !important;
  font-weight: 500;
  letter-spacing: .025em;
  -webkit-text-stroke: 0;
}

.media-proof--embedded .media-proof__logos {
  margin-top: 24px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}

.media-proof--embedded .media-proof__logos img {
  height: clamp(30px, 3vw, 42px);
}

.media-proof__cta {
  margin-top: 22px;
  justify-content: center;
}

/* Keep paired content visually connected and reduce unnecessary section height. */
.fit,
.guarantee,
.programme,
.mentors {
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 64px);
}

.fit__layout {
  margin-top: clamp(32px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr);
  gap: clamp(24px, 3vw, 38px);
}

main > section.fit > .fit__inner {
  width: min(calc(100% - 48px), var(--wrap));
}

.fit__list li + li {
  margin-top: 16px;
}

.guarantee__inner {
  gap: clamp(24px, 3vw, 40px);
}

.tickets__inner,
.ticket-checkpoint .tickets__inner {
  gap: clamp(16px, 2vw, 24px);
}

.programme__day {
  gap: clamp(24px, 3vw, 38px);
}

.programme__day + .programme__day {
  margin-top: clamp(42px, 5vw, 62px);
}

.mentors__list {
  margin-top: clamp(34px, 4vw, 48px);
}

.mentor-profile {
  padding: clamp(26px, 3vw, 38px) 0;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 290px);
  gap: clamp(24px, 3vw, 40px);
}

.mentor-profile__content {
  grid-column: 1;
  grid-row: 1;
  max-width: none;
}

.mentor-profile__portrait {
  grid-column: 2;
  grid-row: 1;
}

/* Premium emphasis for the VIP option. */
.ticket-card--vip {
  isolation: isolate;
  overflow: visible;
  border: 5px solid #e0ac19;
  background: #ffffff;
  box-shadow:
    0 0 0 3px #ffffff,
    0 0 0 5px rgba(224, 172, 25, .78),
    0 0 28px rgba(253, 197, 45, .46),
    0 24px 50px rgba(0, 0, 0, .34),
    inset 0 0 0 1px rgba(224, 172, 25, .12);
}

.ticket-card--vip::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -12px;
  border-radius: 8px;
  background: transparent;
  border: 2px solid rgba(253, 197, 45, .22);
  box-shadow: 0 0 24px rgba(253, 197, 45, .42);
  filter: none;
  opacity: .75;
  pointer-events: none;
  animation: none;
}

.ticket-card--vip .ticket-card__body h3,
.ticket-checkpoint .ticket-card--vip .ticket-card__body h4 {
  color: #111111;
  letter-spacing: .045em;
  text-shadow: none;
}

.ticket-card--vip .ticket-card__summary {
  color: #111111;
}

.ticket-card--vip .ticket-card__features li {
  color: #111111;
}

.ticket-card--vip .ticket-card__features strong {
  color: #111111;
}

.ticket-card--vip .ticket-card__features li::before {
  width: 7px;
  height: 7px;
  background: #111111;
  box-shadow: none;
}

.ticket-card--vip .ticket-card__price {
  color: #111111;
  border-top-color: rgba(17, 17, 17, .72);
}

.ticket-card--vip .ticket-card__price strong {
  color: #111111;
  text-shadow: none;
}

.ticket-card--vip .ticket-card__button {
  color: #111111;
  background: var(--yellow);
  border-color: #c89400;
  box-shadow: none;
}

.ticket-card--vip .ticket-card__button:hover {
  box-shadow: none;
}

.ticket-card--vip .ticket-card__availability {
  color: #111111;
  letter-spacing: .075em;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, .9fr);
  }

  .ticket-card--vip {
    transform: none;
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    min-height: 72px;
  }

  .clash-logo {
    width: auto;
    height: auto;
  }

  .clash-logo span {
    font-size: 1rem;
  }

  .hero__inner {
    min-height: 0;
    padding: 44px 0 58px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero__title {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
  }

  .hero__title > span:not(:first-child) {
    font-size: .82em;
    white-space: normal;
  }

  .hero__lead {
    font-size: .96rem;
    letter-spacing: -.012em;
  }

  .hero__lead-break--desktop {
    display: none;
  }

  .hero__media {
    width: min(100%, 390px);
    padding: 18px;
  }

  .hero__video-intro {
    font-size: 1.06rem;
  }

  .video-placeholder {
    height: auto;
    aspect-ratio: 9 / 16;
  }

  .tickets,
  .ticket-checkpoint {
    padding: 48px 0;
  }

  .ticket-stub {
    height: 142px;
    min-height: 142px;
    margin-top: 22px;
  }

  .ticket-card__body {
    padding: 28px 22px;
  }

  .ticket-card--vip {
    border-width: 5px;
  }

  .ticket-checkpoint > .ticket-checkpoint__inner > h2 {
    margin: 34px 0 28px;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

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

  .media-proof--embedded {
    width: min(calc(100% - 32px), var(--wrap));
    padding: 30px 24px 32px;
  }

  .media-proof--embedded .media-proof__logos {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-proof--embedded .media-proof__logos img {
    height: 40px;
  }

  .fit__header h2,
  .learn h2,
  .programme h2,
  .bonuses h2,
  .testimonials h2,
  .paths h2,
  .reality h2,
  .mentors h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.6rem);
  }

  .fit__layout,
  .programme__day,
  .mentor-profile {
    gap: 28px;
  }

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

  main > section.fit > .fit__inner {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .mentor-profile {
    grid-template-columns: 1fr;
  }

  .mentor-profile__portrait,
  .mentor-profile__content {
    grid-column: auto;
    grid-row: auto;
  }

  .closing-assurance__inner {
    width: min(calc(100% - 32px), var(--wrap));
    grid-template-columns: 1fr;
  }

  .closing-assurance .closing-offer {
    margin: 0;
  }

  .closing-assurance__guarantee .section-ticket-cta {
    justify-content: center;
  }
}

:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal-from-left {
    opacity: 1;
    transform: none;
  }
}
