:root {
  --ink: #1c1024;
  --paper: #fff8ee;
  --white: #ffffff;
  --orange: #ef8054;
  --pink: #d94d9d;
  --violet: #8f60a8;
  --turquoise: #5cc8dc;
  --yellow: #dde57f;
  --green: #44b98a;
  --text-soft: rgba(28, 16, 36, 0.72);
  --border: rgba(28, 16, 36, 0.12);
  --shadow: 0 28px 80px rgba(28, 16, 36, 0.16);
}

@font-face {
  font-family: "JuniorDisplay";
  src: url("fonts/NeueMetanaNext-SemiBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NeueMetanaNext";
  src: url("fonts/NeueMetanaNext-SemiBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metana";
  src: url("fonts/NeueMetanaNext-SemiBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.top-banner {
  position: relative;
  min-height: 112px;
  padding: 22px 76px;
  background:
    radial-gradient(circle at 16% 18%, rgba(143, 216, 255, 0.34), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(196, 153, 220, 0.26), transparent 34%),
    linear-gradient(135deg, #0e1328 0%, #182c55 46%, #171033 100%);
  border-bottom: 4px solid rgba(143, 216, 255, 0.88);
  box-shadow:
    inset 0 -12px 30px rgba(0, 0, 0, 0.26),
    0 14px 42px rgba(92, 200, 220, 0.22);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  overflow: hidden;
  cursor: default;
}

.top-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.18), transparent 48%);
  transform: translateX(-62%);
  transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.top-banner:hover::before {
  transform: translateX(62%);
}

.top-banner strong,
.top-banner span,
.top-banner em {
  position: relative;
  z-index: 1;
  line-height: 1.15;
}

.top-banner strong {
  font-family: "Metana", "NeueMetanaNext", "JuniorDisplay", Arial, Helvetica, sans-serif !important;
  color: var(--white);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(143, 216, 255, 0.38),
    0 0 34px rgba(196, 153, 220, 0.24);
}

.top-banner span {
  max-width: 720px;
  display: grid;
  gap: 10px;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
}

.top-banner span b {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(143, 216, 255, 0.72);
  background: rgba(143, 216, 255, 0.16);
  color: var(--white);
  font-family: "Metana", "NeueMetanaNext", "JuniorDisplay", Arial, Helvetica, sans-serif;
  font-size: clamp(21px, 2vw, 34px);
  line-height: 1;
  font-weight: 700;
  text-shadow:
    0 0 10px rgba(143, 216, 255, 0.78),
    0 0 24px rgba(196, 153, 220, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 18px rgba(143, 216, 255, 0.30);
}

.top-banner span small {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.top-banner-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.top-banner em {
  min-height: 56px;
  padding: 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  outline: 4px solid rgba(143, 216, 255, 0.80);
  background: linear-gradient(135deg, rgba(143, 216, 255, 0.98), rgba(196, 153, 220, 0.90));
  color: #0e1328;
  box-shadow:
    0 0 18px rgba(143, 216, 255, 0.48),
    0 18px 42px rgba(0, 0, 0, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Metana", "NeueMetanaNext", "JuniorDisplay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(8px);
}

.top-banner:hover {
  background:
    radial-gradient(circle at 16% 18%, rgba(143, 216, 255, 0.42), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(196, 153, 220, 0.32), transparent 34%),
    linear-gradient(135deg, #11183a 0%, #21406f 46%, #21143e 100%);
}

.top-banner:hover em {
  outline-color: rgba(196, 153, 220, 0.86);
  box-shadow:
    0 0 20px rgba(143, 216, 255, 0.58),
    0 0 34px rgba(196, 153, 220, 0.34),
    0 22px 54px rgba(0, 0, 0, 0.30);
  transform: translateY(8px);
}

@media (max-width: 900px) {
  .top-banner {
    min-height: 176px;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
  }

  .top-banner em {
    width: fit-content;
    transform: translateY(4px);
  }
}

@media (max-width: 620px) {
  .top-banner {
    min-height: auto;
    padding: 18px;
  }

  .top-banner strong {
    font-size: clamp(30px, 9vw, 42px);
  }

  .top-banner span b {
    width: 100%;
    font-size: 23px;
    text-align: center;
  }

  .top-banner em {
    width: 100%;
  }
}

.site-header {
  height: 92px;
  padding: 0 80px;
  background: rgba(248, 244, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(28, 16, 36, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: auto;
  height: 50px;
  display: block;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.menu a[aria-current="page"],
.menu a:hover {
  color: var(--pink);
}

.hero {
  min-height: calc(100vh - 86px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("images/herojunior.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 16, 36, 0.88) 0%, rgba(28, 16, 36, 0.58) 43%, rgba(28, 16, 36, 0.12) 100%),
    linear-gradient(0deg, rgba(28, 16, 36, 0.74) 0%, rgba(28, 16, 36, 0) 52%);
}

.hero-content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 220px 64px 82px;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "JuniorDisplay", Arial, Helvetica, sans-serif;
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: 138px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-title-row {
  display: block;
  position: relative;
  z-index: 0;
  padding-right: 0;
}

.hero-title-row::before {
  content: "";
  position: absolute;
  top: -28px;
  bottom: -24px;
  left: -64px;
  z-index: -1;
  width: calc(100% + 100px);
  background: rgba(28, 16, 36, 0.46);
  backdrop-filter: blur(1px);
}

.hero-title-row h1 {
  position: relative;
  z-index: 1;
}


.hero-age-badge {
  width: clamp(180px, 12vw, 210px);
  aspect-ratio: 1 / 1;
  padding: 26px 22px 22px;
  background: rgba(28, 16, 36, 0.58);
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  outline: 5px solid rgba(143, 216, 255, 0.72);
  outline-offset: -13px;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 2;
  transform: rotate(-4deg);
}

.hero-age-badge span,
.hero-age-badge em {
  color: var(--yellow);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-age-badge strong {
  margin: 10px 0 8px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-age-badge strong span {
  color: var(--white);
  font-size: clamp(54px, 4.2vw, 66px);
  line-height: 0.88;
  letter-spacing: -1px;
}

.hero-age-badge strong small {
  color: var(--yellow);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 670px;
  margin: 30px 0 0;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button:hover {
  transform: translateY(-2px);
}

body.js-scroll-motion .hero-media {
  transform: scale(var(--hero-scale, 1.02)) translate3d(0, var(--hero-y, 0px), 0);
  transform-origin: center;
  will-change: transform;
}

body.js-scroll-motion .hero-overlay {
  opacity: var(--hero-overlay-opacity, 1);
}

body.js-scroll-motion .hero-content > * {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  animation: heroRise 0.95s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

body.js-scroll-motion .hero-content > :nth-child(2) {
  animation-delay: 0.12s;
}

body.js-scroll-motion .hero-content > :nth-child(3) {
  animation-delay: 0.24s;
}

body.js-scroll-motion .hero-content > :nth-child(4) {
  animation-delay: 0.36s;
}

body.js-scroll-motion .scroll-scene {
  position: relative;
}

body.js-scroll-motion .junior-intro.scroll-scene {
  position: sticky;
  top: 0;
  z-index: 1;
}

body.js-scroll-motion .scroll-scene > .section-inner {
  transform: translate3d(0, var(--section-y, 18px), 0);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  will-change: transform, opacity;
}

body.js-scroll-motion .scroll-scene.is-leaving > .section-inner {
  opacity: 0.5;
  transform: translate3d(0, -34px, 0) scale(0.985);
}

body.js-scroll-motion .junior-intro.scroll-scene > .section-inner,
body.js-scroll-motion .junior-intro.scroll-scene.is-leaving > .section-inner {
  opacity: 1;
  transform: none;
}

body.js-scroll-motion .junior-intro .scroll-reveal-item {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

body.js-scroll-motion .scroll-reveal-item {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  filter: blur(8px);
  transition:
    opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.85s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.85s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}

body.js-scroll-motion .section-kicker.scroll-reveal-item,
body.js-scroll-motion h2.scroll-reveal-item {
  transform: translate3d(-28px, 42px, 0);
}

body.js-scroll-motion article.scroll-reveal-item,
body.js-scroll-motion .benefit-list span.scroll-reveal-item,
body.js-scroll-motion .contact-form label.scroll-reveal-item {
  transform: translate3d(0, 52px, 0) scale(0.965);
}

body.js-scroll-motion .is-visible .scroll-reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

body.js-scroll-motion .is-leaving .scroll-reveal-item {
  opacity: 0.42;
  transform: translate3d(0, -20px, 0) scale(0.985);
  filter: blur(2px);
  transition-delay: 0s;
}

body.js-scroll-motion .promise-description.scroll-reveal-item {
  transform: translate3d(68px, 0, 0);
  filter: blur(6px);
  transition-duration: 0.95s;
}

body.js-scroll-motion .promise.is-visible .promise-description.scroll-reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

body.js-scroll-motion .promise-tags span {
  opacity: 0;
  transform: rotate(var(--tag-rotate, 0deg)) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.65s ease;
  will-change: opacity, transform, filter;
}

body.js-scroll-motion .promise-tags span:nth-child(1) {
  transition-delay: 0.14s;
}

body.js-scroll-motion .promise-tags span:nth-child(2) {
  transition-delay: 0.22s;
}

body.js-scroll-motion .promise-tags span:nth-child(3) {
  transition-delay: 0.30s;
}

body.js-scroll-motion .promise-tags span:nth-child(4) {
  transition-delay: 0.38s;
}

body.js-scroll-motion .promise-tags span:nth-child(5) {
  transition-delay: 0.46s;
}

body.js-scroll-motion .promise-tags span:nth-child(6) {
  transition-delay: 0.54s;
}

body.js-scroll-motion .promise.is-visible .promise-tags span {
  opacity: 1;
  transform: rotate(var(--tag-rotate, 0deg)) scale(1);
  filter: blur(0);
}

body.js-scroll-motion .final-performance .performance-image {
  transform: translate3d(-38px, 0, 0) scale(1.04);
  transition: transform 0.95s cubic-bezier(0.19, 1, 0.22, 1), filter 0.95s ease;
  filter: saturate(0.84);
}

body.js-scroll-motion .final-performance .performance-copy {
  opacity: 0;
  transform: translate3d(42px, 0, 0);
  transition:
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

body.js-scroll-motion .final-performance.is-visible .performance-image,
body.js-scroll-motion .final-performance.is-visible .performance-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1);
}

body.js-scroll-motion .info-cards article.scroll-reveal-item:nth-child(odd),
body.js-scroll-motion .modules-grid article.scroll-reveal-item:nth-child(odd),
body.js-scroll-motion .benefit-list span.scroll-reveal-item:nth-child(odd) {
  transform: translate3d(-36px, 48px, 0) rotate(-2deg) scale(0.965);
}

body.js-scroll-motion .info-cards article.scroll-reveal-item:nth-child(even),
body.js-scroll-motion .modules-grid article.scroll-reveal-item:nth-child(even),
body.js-scroll-motion .benefit-list span.scroll-reveal-item:nth-child(even) {
  transform: translate3d(36px, 48px, 0) rotate(2deg) scale(0.965);
}

body.js-scroll-motion .is-visible .info-cards article.scroll-reveal-item,
body.js-scroll-motion .is-visible .modules-grid article.scroll-reveal-item,
body.js-scroll-motion .is-visible .benefit-list span.scroll-reveal-item {
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 96px 64px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: 58px;
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 900;
}

.promise-title {
  display: grid;
  gap: 0.18em;
}

.promise-title > span {
  display: block;
}

p {
  font-size: 19px;
  line-height: 1.56;
}

.promise {
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 77, 157, 0.28), transparent 32%),
    radial-gradient(circle at 12% 86%, rgba(92, 200, 220, 0.18), transparent 34%),
    linear-gradient(135deg, #1c1024 0%, #21142e 52%, #0e1328 100%);
  overflow: hidden;
  position: relative;
}

.promise .section-inner {
  width: min(100%, 1420px);
  padding-top: 118px;
  padding-bottom: 118px;
  padding-left: 42px;
  padding-right: 42px;
  position: relative;
  z-index: 1;
}

.promise-grid {
  display: grid;
  grid-template-columns: minmax(660px, 1.24fr) minmax(390px, 0.76fr);
  gap: 36px;
  align-items: center;
}

.promise-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 44px 42px 40px;
  background: rgba(14, 19, 40, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.32),
    -16px 16px 0 rgba(143, 216, 255, 0.88);
}

.promise-copy::before {
  content: "";
  width: 132px;
  height: 7px;
  background: var(--pink);
  position: absolute;
  top: 24px;
  right: 30px;
  transform: rotate(-3deg);
  box-shadow: 0 0 22px rgba(217, 77, 157, 0.42);
}

.promise .section-kicker {
  color: var(--yellow);
}

.promise-title {
  color: var(--white);
}

.promise p:not(.section-kicker) {
  max-width: 820px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.text-yellow {
  color: var(--yellow);
  font-weight: 900;
}

.promise-tags-title {
  margin: 28px 0 0;
  color: var(--junior-sky, var(--yellow));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3.2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.promise-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
}

.promise-tags span {
  min-height: 62px;
  min-width: 142px;
  padding: 0 24px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  outline: 5px solid var(--tag-outline, rgba(92, 200, 220, 0.78));
  outline-offset: -11px;
  background:
    radial-gradient(circle at 18% 16%, var(--tag-glow-a, rgba(219, 229, 127, 0.44)), transparent 36%),
    linear-gradient(135deg, var(--tag-bg-a, rgba(28, 16, 36, 0.96)), var(--tag-bg-b, rgba(217, 77, 157, 0.88)));
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow:
    0 0 18px var(--tag-shadow, rgba(92, 200, 220, 0.32)),
    0 18px 34px rgba(0, 0, 0, 0.24);
}

.promise-tags span::before {
  content: "";
  position: absolute;
  inset: -55%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.32) 48%, transparent 64%);
  opacity: 0.58;
  transform: translateX(-18%) rotate(-9deg);
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.promise-tags span:hover::before {
  opacity: 0.95;
  transform: translateX(16%) rotate(8deg);
}

.promise-tags span:nth-child(1) {
  --tag-bg-a: rgba(30, 28, 60, 0.96);
  --tag-bg-b: rgba(91, 128, 172, 0.72);
  --tag-outline: rgba(143, 216, 255, 0.72);
  --tag-glow-a: rgba(143, 216, 255, 0.30);
  --tag-shadow: rgba(143, 216, 255, 0.26);
  --tag-rotate: -2deg;
  transform: rotate(var(--tag-rotate));
}

.promise-tags span:nth-child(2) {
  --tag-bg-a: rgba(40, 24, 58, 0.96);
  --tag-bg-b: rgba(156, 93, 155, 0.72);
  --tag-outline: rgba(196, 153, 220, 0.72);
  --tag-glow-a: rgba(196, 153, 220, 0.30);
  --tag-shadow: rgba(196, 153, 220, 0.26);
  --tag-rotate: 1.5deg;
  transform: rotate(var(--tag-rotate));
}

.promise-tags span:nth-child(3) {
  --tag-bg-a: rgba(20, 32, 62, 0.96);
  --tag-bg-b: rgba(91, 151, 178, 0.70);
  --tag-outline: rgba(116, 217, 230, 0.68);
  --tag-glow-a: rgba(116, 217, 230, 0.28);
  --tag-shadow: rgba(116, 217, 230, 0.24);
  color: var(--white);
  --tag-rotate: -1deg;
  transform: rotate(var(--tag-rotate));
}

.promise-tags span:nth-child(4) {
  --tag-bg-a: rgba(34, 27, 64, 0.96);
  --tag-bg-b: rgba(132, 104, 178, 0.72);
  --tag-outline: rgba(143, 216, 255, 0.66);
  --tag-glow-a: rgba(217, 77, 157, 0.24);
  --tag-shadow: rgba(132, 104, 178, 0.26);
  color: var(--white);
  --tag-rotate: 2deg;
  transform: rotate(var(--tag-rotate));
}

.promise-tags span:nth-child(5) {
  --tag-bg-a: rgba(28, 28, 62, 0.96);
  --tag-bg-b: rgba(91, 128, 172, 0.70);
  --tag-outline: rgba(143, 216, 255, 0.70);
  --tag-glow-a: rgba(143, 216, 255, 0.28);
  --tag-shadow: rgba(143, 216, 255, 0.24);
  --tag-rotate: -1.5deg;
  transform: rotate(var(--tag-rotate));
}

.promise-tags span:nth-child(6) {
  --tag-bg-a: rgba(42, 24, 58, 0.96);
  --tag-bg-b: rgba(156, 93, 155, 0.70);
  --tag-outline: rgba(196, 153, 220, 0.72);
  --tag-glow-a: rgba(196, 153, 220, 0.28);
  --tag-shadow: rgba(196, 153, 220, 0.24);
  --tag-rotate: 1.5deg;
  transform: rotate(var(--tag-rotate));
}

.promise-visual {
  margin: 0;
  aspect-ratio: 1.28 / 1;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.promise-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none;
}

body.js-scroll-motion .promise-visual.scroll-reveal-item {
  opacity: 0;
  transform: translate3d(-72px, 34px, 0) rotate(-4deg) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 0.72s ease,
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.08s;
  will-change: opacity, transform, filter;
}

body.js-scroll-motion .promise.is-visible .promise-visual.scroll-reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.letter-reveal.is-ready {
  visibility: hidden;
}

.letter-reveal.is-ready .letter {
  display: inline-block;
  opacity: 0;
  visibility: visible;
  transform: translateY(34px) rotate(5deg);
  transform-origin: 50% 100%;
  transition:
    opacity 0.45s ease,
    transform 0.62s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(var(--letter-index) * 0.018s);
  will-change: opacity, transform;
}

.letter-reveal.is-ready .letter-word {
  display: inline-block;
  white-space: nowrap;
  margin-right: 0.22em;
}

.letter-reveal.is-ready .letter-line {
  display: block;
}

.letter-reveal.is-ready .letter-space {
  display: none;
}

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

.audience {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.audience .section-inner {
  position: relative;
  z-index: 2;
}

.audience-doodle {
  position: absolute;
  inset: -12% -8%;
  z-index: 1;
  pointer-events: none;
  background-image: url("images/doodle-overlay.png");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: rotate(-2deg) scale(1.04);
  mix-blend-mode: multiply;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 235px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 14px 38px rgba(28, 16, 36, 0.08);
}

.info-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.info-card strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.info-card p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 16px;
}

.program {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.program::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  background: url("images/retino home.png") center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.program .section-inner {
  position: relative;
  z-index: 1;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.program-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

.modules-grid article {
  min-height: 170px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  cursor: default;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  border: 3px solid rgba(255, 255, 255, 0.88);
  outline: 7px solid var(--module-outline, rgba(92, 200, 220, 0.75));
  outline-offset: -14px;
  background:
    linear-gradient(135deg, var(--module-bg-a, rgba(28, 16, 36, 0.96)), var(--module-bg-b, rgba(217, 77, 157, 0.88)));
  box-shadow:
    0 26px 70px rgba(28, 16, 36, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.modules-grid article::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 18%, var(--module-glow-a, rgba(219, 229, 127, 0.42)), transparent 30%),
    radial-gradient(circle at 78% 26%, var(--module-glow-b, rgba(92, 200, 220, 0.34)), transparent 32%),
    linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.24) 44%, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.52;
  transform: translate3d(-9%, -5%, 0) rotate(-8deg);
  transition:
    opacity 0.45s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.module-title {
  position: relative;
  z-index: 3;
  transition:
    opacity 0.34s ease,
    filter 0.34s ease,
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-quote {
  position: absolute;
  inset: 22px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.36s ease,
    filter 0.36s ease,
    transform 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.module-quote q {
  quotes: none;
  font-size: clamp(16px, 1.42vw, 21px);
  line-height: 1.12;
  font-weight: 900;
}

.module-quote q::before,
.module-quote q::after {
  content: "";
}

.module-quote em {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.82;
}

.modules-grid article:hover .module-title,
.modules-grid article:focus .module-title,
.modules-grid article:focus-within .module-title {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px) scale(0.94);
}

.modules-grid article:hover .module-quote,
.modules-grid article:focus .module-quote,
.modules-grid article:focus-within .module-quote {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.modules-grid article:hover::before,
.modules-grid article:focus::before,
.modules-grid article:focus-within::before {
  opacity: 0.9;
  transform: translate3d(6%, 4%, 0) rotate(6deg);
}

.program .section-heading {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.program.reveal-ready .section-heading {
  opacity: 0;
  transform: translateY(24px);
}

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

.program.reveal-ready .modules-grid article {
  opacity: 0;
  filter: blur(3px);
  transform: translateX(var(--entry-x)) translateY(var(--entry-y)) rotate(var(--entry-rotate)) scale(0.86);
  transition:
    opacity 0.58s ease,
    filter 0.58s ease,
    transform 0.92s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--item-delay);
  will-change: opacity, filter, transform;
}

.program.reveal-ready .modules-grid article:nth-child(odd) {
  --entry-x: -120px;
  --entry-y: 38px;
  --entry-rotate: -7deg;
}

.program.reveal-ready .modules-grid article:nth-child(even) {
  --entry-x: 120px;
  --entry-y: -32px;
  --entry-rotate: 7deg;
}

.program.reveal-ready .modules-grid article:nth-child(3n) {
  --entry-y: 64px;
  --entry-rotate: 10deg;
}

.program.reveal-ready.is-visible .modules-grid article {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) translateY(0) rotate(0) scale(1);
}

.program.reveal-ready.is-visible .modules-grid article::before {
  animation: moduleFlash 1.15s ease var(--item-delay) both;
}

.program.reveal-ready.is-visible .modules-grid article:hover {
  transition-delay: 0s;
  transform: translateY(-8px) rotate(-1.5deg) scale(1.02);
}

@keyframes moduleFlash {
  0%,
  100% {
    opacity: 0.52;
    transform: translate3d(-9%, -5%, 0) rotate(-8deg);
  }

  42% {
    opacity: 1;
    transform: translate3d(8%, 4%, 0) rotate(7deg);
  }
}

.modules-grid article:nth-child(1) {
  --module-bg-a: rgba(28, 16, 36, 0.96);
  --module-bg-b: rgba(217, 77, 157, 0.90);
  --module-outline: rgba(92, 200, 220, 0.78);
  --module-glow-a: rgba(219, 229, 127, 0.44);
  --module-glow-b: rgba(92, 200, 220, 0.36);
}

.modules-grid article:nth-child(2) {
  --module-bg-a: rgba(219, 229, 127, 0.94);
  --module-bg-b: rgba(92, 200, 220, 0.90);
  --module-outline: rgba(219, 229, 127, 0.80);
  --module-glow-a: rgba(217, 77, 157, 0.42);
  --module-glow-b: rgba(219, 229, 127, 0.36);
  color: var(--ink);
}

.modules-grid article:nth-child(3) {
  --module-bg-a: rgba(28, 16, 36, 0.96);
  --module-bg-b: rgba(239, 128, 84, 0.90);
  --module-outline: rgba(217, 77, 157, 0.76);
  --module-glow-a: rgba(92, 200, 220, 0.38);
  --module-glow-b: rgba(219, 229, 127, 0.38);
}

.modules-grid article:nth-child(4) {
  --module-bg-a: rgba(18, 9, 21, 0.96);
  --module-bg-b: rgba(143, 96, 168, 0.90);
  --module-outline: rgba(239, 128, 84, 0.78);
  --module-glow-a: rgba(219, 229, 127, 0.42);
  --module-glow-b: rgba(217, 77, 157, 0.36);
}

.modules-grid article:nth-child(5) {
  --module-bg-a: rgba(14, 19, 40, 0.96);
  --module-bg-b: rgba(217, 77, 157, 0.86);
  --module-outline: rgba(58, 190, 122, 0.82);
  --module-glow-a: rgba(92, 200, 220, 0.40);
  --module-glow-b: rgba(239, 128, 84, 0.38);
}

.modules-grid article:nth-child(6) {
  --module-bg-a: rgba(68, 185, 138, 0.92);
  --module-bg-b: rgba(92, 200, 220, 0.86);
  --module-outline: rgba(143, 96, 168, 0.82);
  --module-glow-a: rgba(219, 229, 127, 0.42);
  --module-glow-b: rgba(239, 128, 84, 0.38);
  color: var(--ink);
}

.final-performance {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 690px;
  background: #090d1e;
  color: var(--white);
}

.performance-image {
  min-height: 520px;
  background-image:
    linear-gradient(0deg, rgba(28, 16, 36, 0.18), rgba(28, 16, 36, 0.18)),
    url("images/scena.png");
  background-size: cover;
  background-position: center;
}

.performance-copy {
  align-self: center;
  padding: 86px 76px;
}

.performance-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(54px, 5.8vw, 88px);
  line-height: 0.9;
}

.performance-copy p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.performance-copy p:not(.section-kicker) + p {
  margin-top: 18px;
}

.performance-highlight {
  color: var(--yellow);
  font-weight: 900;
}

.benefits {
  background: var(--paper);
}

.benefits .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
}

.benefits-intro p:not(.section-kicker) {
  color: var(--text-soft);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.benefit-list span {
  min-height: 100px;
  min-width: 0;
  padding: 22px 24px 22px 34px;
  position: relative;
  overflow: visible;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  white-space: normal;
  box-shadow:
    0 14px 38px rgba(28, 16, 36, 0.08);
}

.benefit-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--benefit-line, var(--orange));
  box-shadow:
    0 0 10px var(--benefit-glow-strong, rgba(239, 128, 84, 0.68)),
    0 0 22px var(--benefit-glow, rgba(239, 128, 84, 0.42)),
    0 0 36px var(--benefit-glow, rgba(239, 128, 84, 0.42));
}

.benefit-list span:nth-child(1) {
  --benefit-line: var(--orange);
  --benefit-glow: rgba(239, 128, 84, 0.42);
  --benefit-glow-strong: rgba(239, 128, 84, 0.72);
}

.benefit-list span:nth-child(2) {
  --benefit-line: var(--pink);
  --benefit-glow: rgba(217, 77, 157, 0.42);
  --benefit-glow-strong: rgba(217, 77, 157, 0.72);
}

.benefit-list span:nth-child(3) {
  --benefit-line: var(--turquoise);
  --benefit-glow: rgba(92, 200, 220, 0.42);
  --benefit-glow-strong: rgba(92, 200, 220, 0.72);
}

.benefit-list span:nth-child(4) {
  --benefit-line: var(--yellow);
  --benefit-glow: rgba(143, 216, 255, 0.44);
  --benefit-glow-strong: rgba(143, 216, 255, 0.76);
}

.benefit-list span:nth-child(5) {
  --benefit-line: var(--violet);
  --benefit-glow: rgba(143, 96, 168, 0.42);
  --benefit-glow-strong: rgba(143, 96, 168, 0.72);
}

.benefit-list span:nth-child(6) {
  --benefit-line: var(--green);
  --benefit-glow: rgba(68, 185, 138, 0.42);
  --benefit-glow-strong: rgba(68, 185, 138, 0.72);
}

.practical {
  position: relative;
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 216, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 24%, rgba(92, 200, 220, 0.16), transparent 32%),
    linear-gradient(145deg, #120d24 0%, #0b1631 56%, #21142e 100%);
  color: var(--white);
  overflow: hidden;
}

.practical::before {
  content: none;
}

.practical .section-inner {
  position: relative;
  z-index: 1;
}

.practical-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 42px 56px;
  align-items: center;
}

.practical-intro {
  max-width: 620px;
}

.practical-intro h2 {
  max-width: 560px;
  color: var(--yellow);
}

.practical-intro p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.55;
}

.practical-intro p.performance-highlight {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.practical-intro p + p {
  margin-top: 18px;
}

.practical-link {
  width: fit-content;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 18px;
  background: var(--yellow);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}

.practical-link:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.practical-levelup {
  margin: 0;
  justify-self: end;
  width: min(100%, 430px);
  position: relative;
}

.practical-levelup::before {
  content: "";
  position: absolute;
  inset: 18px -16px -16px 18px;
  background: rgba(143, 216, 255, 0.42);
  z-index: -1;
}

.practical-levelup img {
  width: 100%;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.practical-levelup-copy {
  grid-column: 1 / -1;
  width: min(100%, 820px);
  margin: 4px auto 0;
  padding: 24px 26px;
  background: rgba(28, 16, 36, 0.42);
  border-left: 6px solid var(--yellow);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.practical-levelup-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.practical-levelup-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.52;
}

.practical-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-column: 1 / -1;
  width: min(100%, 820px);
  margin: 0 auto;
  gap: 20px 24px;
  align-items: start;
}

.practical-card {
  min-height: 118px;
  padding: 18px;
  background: rgba(28, 16, 36, 0.50);
  border: 2px solid rgba(255, 255, 255, 0.62);
  outline: 4px solid rgba(143, 216, 255, 0.78);
  outline-offset: -10px;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
  background 0.32s ease;
}

.practical-card-compact {
  justify-content: flex-start;
}

.practical-card-hours {
  justify-content: flex-start;
}

.practical-card-hours span {
  margin-bottom: 12px;
}

.practical-card-compact span {
  margin-bottom: 12px;
}

.practical-card-wide,
.practical-card-frequency {
  grid-column: 1 / -1;
}

.practical-card-hours {
  grid-column: 1 / span 3;
}

.practical-card-compact {
  grid-column: 4 / -1;
}

.practical-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.practical-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.practical-card-frequency strong {
  font-size: clamp(20px, 1.85vw, 28px);
}

.practical-dash {
  color: var(--yellow);
  font-size: 0.46em;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  vertical-align: 0.18em;
}

.practical-card p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 15px;
  line-height: 1.45;
}

.practical-card strong + p {
  margin-top: 18px;
}

.practical-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.82);
  transform: translateY(-4px);
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  padding: 32px;
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 24px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(28, 16, 36, 0.18);
  background: #fffaf1;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  padding: 14px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(217, 77, 157, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.form-full {
  grid-column: 1 / -1;
}

.contact-form label.form-full {
  margin-bottom: 22px;
}

.contact-form .button {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

@media (max-width: 900px) {
  .site-header {
    height: 76px;
    padding: 0 24px;
    align-items: center;
    flex-direction: row;
  }

  .menu {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(28, 16, 36, 0.82), rgba(28, 16, 36, 0.28)),
      linear-gradient(0deg, rgba(28, 16, 36, 0.82), rgba(28, 16, 36, 0.08));
  }

  .hero-content,
  .section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 86px;
  }

  .hero-title-row {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding-right: 0;
  }

  .hero-age-badge {
    width: min(190px, 100%);
    min-height: 0;
    margin-top: 24px;
    position: relative;
    top: auto;
    right: auto;
    transform: rotate(-2deg);
  }

  .hero-subtitle {
    font-size: 22px;
  }

  h2 {
    font-size: 42px;
  }

  .promise .section-inner {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .promise-visual {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .promise-copy {
    max-width: 100%;
    padding: 36px 30px 34px;
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.30),
      -8px 8px 0 rgba(143, 216, 255, 0.88);
  }

  .info-card strong,
  .modules-grid article,
  .benefit-list span {
    font-size: 28px;
  }

  .final-performance,
  .benefits .section-inner,
  .practical-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .practical-intro {
    position: static;
  }

  .practical-levelup {
    justify-self: center;
    width: min(100%, 420px);
  }

  .performance-copy {
    padding: 64px 24px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .logo {
    flex: 0 0 auto;
  }

  .logo img {
    height: 42px;
  }

  .menu a {
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-content {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-age-badge {
    width: 160px;
  }

  .hero-age-badge strong {
    gap: 8px;
  }

  .hero-age-badge strong span {
    font-size: 48px;
  }

  .hero-age-badge strong small {
    font-size: 15px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .promise-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .promise-copy {
    padding: 32px 22px 30px;
  }

  .promise-copy::before {
    width: 92px;
    right: 22px;
  }

  h2 {
    font-size: 34px;
  }

  .info-card strong,
  .modules-grid article,
  .benefit-list span {
    font-size: 24px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .info-cards,
  .modules-grid,
  .benefit-list,
  .practical-cards,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .practical-card-wide,
  .practical-card-frequency,
  .practical-card-hours,
  .practical-card-compact {
    grid-column: auto;
  }

  .practical-card {
    aspect-ratio: auto;
    min-height: 150px;
    padding: 22px;
  }

  .practical-card strong {
    font-size: 28px;
  }

  .contact-form {
    padding: 22px;
  }
}

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

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

  body.js-scroll-motion .hero-media,
  body.js-scroll-motion .hero-content > *,
  body.js-scroll-motion .scroll-scene > .section-inner,
  body.js-scroll-motion .scroll-reveal-item,
  body.js-scroll-motion .final-performance .performance-image,
  body.js-scroll-motion .final-performance .performance-copy {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* DARK IMMERSIVE THEME */

:root {
  --paper: #0e1328;
  --ink: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.14);
}

body {
  background: var(--paper);
  color: var(--white);
}

main > section:not(.hero) {
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 77, 157, 0.18), transparent 34%),
    linear-gradient(145deg, #0e1328 0%, #171033 50%, #090d1e 100%);
  color: var(--white);
}

.site-header {
  background: rgba(14, 19, 40, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.logo,
.menu a {
  color: rgba(255, 255, 255, 0.86);
}

.menu a[aria-current="page"],
.menu a:hover {
  color: var(--pink);
}

.button-primary {
  color: #1c1024;
}

.audience,
.program {
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 77, 157, 0.18), transparent 34%),
    linear-gradient(145deg, #0e1328 0%, #171033 50%, #090d1e 100%);
  color: var(--white);
}

.final-performance,
.benefits,
.contact {
  background:
    radial-gradient(circle at 86% 14%, rgba(92, 200, 220, 0.16), transparent 34%),
    linear-gradient(135deg, #120d24 0%, #0b1631 56%, #21142e 100%);
  color: var(--white);
}

h2,
.info-card h3,
.modules-grid h3,
.performance-copy,
.contact-copy {
  color: var(--white);
}

.section-heading p:not(.section-kicker),
.performance-copy p:not(.section-kicker),
.contact-copy p,
.info-card p,
.modules-grid p {
  color: var(--text-soft);
}

.info-card,
.modules-grid article,
.benefit-list span,
.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: var(--white);
}

.performance-image {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.promise-copy h2 + p,
.performance-copy h2 + p,
.benefits-intro h2 + p,
.practical-intro h2 + p,
.contact-copy h2 + p {
  margin-top: 28px;
}

main p:not(.section-kicker),
.hero-subtitle {
  text-align: justify;
  text-align-last: left;
}

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

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

  .letter-reveal.is-ready,
  .letter-reveal.is-ready .letter {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .program.reveal-ready .section-heading,
  .program.reveal-ready .modules-grid article {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

h2,
h3,
.practical-card strong,
.benefit-list span {
  font-family: "JuniorDisplay", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
.practical-card strong {
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.benefit-list span {
  text-transform: uppercase;
  overflow-wrap: normal;
}

.benefit-list span {
  font-size: clamp(23px, 2.5vw, 28px);
  word-break: normal;
}

@media (max-width: 640px) {
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit-list span {
    white-space: normal;
  }
}

.practical-card strong {
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.02;
}

.hero h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-title-row::before {
  display: none;
}

main p:not(.section-kicker),
blockquote {
  text-align: justify;
  text-align-last: left;
}

h1,
h2,
h3,
.practical-card strong,
.benefit-list span {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

/* Cinearte neon hover */
h2 {
  --cinearte-glow-core: rgba(92, 200, 220, 0.96);
  --cinearte-glow-a: rgba(219, 229, 127, 0.70);
  --cinearte-glow-b: rgba(217, 77, 157, 0.62);
  --cinearte-glow-c: rgba(143, 96, 168, 0.52);
  cursor: default;
}

h2:hover {
  color: var(--white);
  text-shadow:
    0 0 7px var(--cinearte-glow-core),
    0 0 18px var(--cinearte-glow-a),
    0 0 34px var(--cinearte-glow-b),
    0 0 58px var(--cinearte-glow-c),
    0 0 78px rgba(239, 128, 84, 0.42);
}

/* CTA neon treatment */
.button,
.practical-link,
.contact-form .button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.88);
  outline: 4px solid var(--cta-outline, rgba(217, 77, 157, 0.76));
  outline-offset: -10px;
  background:
    linear-gradient(135deg, var(--cta-a, var(--yellow)), var(--cta-b, var(--turquoise)));
  color: var(--ink);
  box-shadow:
    0 0 18px var(--cta-glow, rgba(143, 216, 255, 0.46)),
    0 18px 42px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    outline-color 0.3s ease;
}

.button-secondary,
.practical-link {
  --cta-a: var(--orange);
  --cta-b: var(--pink);
  --cta-outline: rgba(92, 200, 220, 0.76);
  --cta-glow: rgba(239, 128, 84, 0.46);
  color: var(--white);
}

.button::before,
.practical-link::before,
.contact-form .button::before {
  content: "";
  position: absolute;
  inset: -65%;
  z-index: auto;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.44) 50%, transparent 66%);
  opacity: 0.6;
  transform: translateX(-24%) rotate(-8deg);
  transition:
    opacity 0.32s ease,
    transform 0.56s cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover,
.practical-link:hover,
.contact-form .button:hover {
  background:
    linear-gradient(135deg, var(--cta-a, var(--yellow)), var(--cta-b, var(--turquoise)));
  color: var(--ink);
  transform: translateY(-3px) scale(1.035);
  outline-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.34),
    0 0 30px var(--cta-glow, rgba(143, 216, 255, 0.46)),
    0 22px 54px rgba(0, 0, 0, 0.30);
}

.button-secondary:hover,
.practical-link:hover {
  color: var(--white);
}

.button:hover::before,
.practical-link:hover::before,
.contact-form .button:hover::before {
  opacity: 0.95;
  transform: translateX(18%) rotate(8deg);
}

/* JUNIOR RESPONSIVE REFINEMENTS */

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
  }

  .site-header {
    height: 84px;
    padding: 0 32px;
    flex-direction: row;
  }

  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(28, 16, 36, 0.06);
    color: var(--ink);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(28, 16, 36, 0.18);
    border-radius: 0;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: currentColor;
    display: block;
    transition:
      transform 0.24s ease,
      opacity 0.24s ease;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    z-index: 40;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
    background: rgba(248, 244, 255, 0.98);
    border: 1px solid rgba(28, 16, 36, 0.12);
    box-shadow: 0 24px 60px rgba(28, 16, 36, 0.22);
  }

  .site-header.is-menu-open .menu {
    display: grid;
  }

  .menu a {
    min-height: 46px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    font-size: 15px;
    border-bottom: 1px solid rgba(28, 16, 36, 0.10);
  }

  .menu a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: min(820px, calc(100svh - 84px));
  }

  .hero-content,
  .section-inner {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .logo img {
    height: 40px;
  }

  .menu {
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 62px 18px 50px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 76px);
    line-height: 0.86;
  }

  .hero-age-badge {
    width: 150px;
    margin-top: 18px;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.4;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .practical-link,
  .contact-form .button {
    width: 100%;
    min-height: 50px;
  }

  .promise-grid,
  .info-cards,
  .modules-grid,
  .final-performance,
  .benefits .section-inner,
  .benefit-list,
  .practical-grid,
  .practical-cards,
  .contact-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .promise .section-inner,
  .program .section-inner,
  .benefits .section-inner,
  .practical .section-inner,
  .contact .section-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 0.98;
  }

  .promise-copy,
  .program .section-inner,
  .benefits .section-inner,
  .contact-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .promise-visual,
  .performance-image {
    min-height: 300px;
  }

  .performance-copy {
    padding: 52px 18px;
  }

  .practical-intro {
    position: static;
  }

  .practical-levelup {
    justify-self: center;
    width: min(100%, 360px);
  }

  .practical-levelup::before {
    inset: 12px -10px -10px 12px;
  }

  .practical-card-wide,
  .practical-card-frequency,
  .practical-card-hours,
  .practical-card-compact {
    grid-column: auto;
  }

  .practical-card {
    aspect-ratio: auto;
  }

  .practical-card strong,
  .benefit-list span,
  .modules-grid article {
    font-size: clamp(22px, 7vw, 30px);
  }

  main p:not(.section-kicker),
  blockquote {
    font-size: 16px;
    line-height: 1.48;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(46px, 17vw, 62px);
  }

  .hero-age-badge {
    width: 138px;
  }

  .hero-age-badge strong span {
    font-size: 42px;
  }

  .hero-age-badge strong small {
    font-size: 14px;
  }

  .promise-visual,
  .performance-image {
    min-height: 260px;
  }
}

/* HAMBURGER CONSISTENCY */

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    background: rgba(14, 19, 40, 0.94);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .menu {
    background: rgba(14, 19, 40, 0.98);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  }

  .menu a {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.10);
  }
}

/* MOBILE HERO TITLE SAFETY */

@media (max-width: 768px) {
  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-title-row,
  .hero h1,
  .hero-subtitle,
  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 0.92;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.38;
    text-align: left;
    text-align-last: left;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(31px, 10vw, 42px);
  }
}

/* JUNIOR PALETTE TUNE */

@media (min-width: 1025px) {
  .hero-age-badge {
    width: clamp(144px, 9.6vw, 168px);
    top: calc(100% + 112px);
    right: clamp(170px, 16vw, 320px);
  }

  .hero-age-badge strong span {
    font-size: clamp(43px, 3.36vw, 53px);
  }

  .hero-age-badge strong small {
    font-size: 15px;
  }
}

:root {
  --junior-sky: #8fd8ff;
  --junior-blue: #335b8d;
  --junior-navy: #101325;
  --junior-plum: #3d2447;
  --junior-pink: #d94d9d;
  --junior-green: #74d99e;
  --yellow: var(--junior-sky);
}

.promise-copy {
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.32),
    -16px 16px 0 rgba(143, 216, 255, 0.86);
}

.promise .section-kicker,
.text-yellow,
.performance-highlight {
  color: var(--junior-sky);
}

.modules-grid article {
  color: var(--white);
  outline-color: var(--module-outline, rgba(143, 216, 255, 0.72));
  background:
    linear-gradient(135deg, var(--module-bg-a, rgba(16, 19, 37, 0.97)), var(--module-bg-b, rgba(61, 36, 71, 0.90)));
}

.modules-grid article::before {
  background:
    radial-gradient(circle at 20% 18%, var(--module-glow-a, rgba(143, 216, 255, 0.36)), transparent 30%),
    radial-gradient(circle at 78% 26%, var(--module-glow-b, rgba(116, 217, 158, 0.28)), transparent 32%),
    linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.20) 44%, transparent 60%);
}

.modules-grid article:nth-child(1) {
  --module-bg-a: rgba(16, 19, 37, 0.98);
  --module-bg-b: rgba(61, 36, 71, 0.92);
  --module-outline: rgba(143, 216, 255, 0.76);
  --module-glow-a: rgba(143, 216, 255, 0.38);
  --module-glow-b: rgba(217, 77, 157, 0.30);
}

.modules-grid article:nth-child(2) {
  --module-bg-a: rgba(16, 19, 37, 0.98);
  --module-bg-b: rgba(51, 91, 141, 0.88);
  --module-outline: rgba(217, 77, 157, 0.74);
  --module-glow-a: rgba(143, 216, 255, 0.36);
  --module-glow-b: rgba(116, 217, 158, 0.30);
  color: var(--white);
}

.modules-grid article:nth-child(3) {
  --module-bg-a: rgba(16, 19, 37, 0.98);
  --module-bg-b: rgba(217, 77, 157, 0.78);
  --module-outline: rgba(116, 217, 158, 0.74);
  --module-glow-a: rgba(143, 216, 255, 0.34);
  --module-glow-b: rgba(217, 77, 157, 0.28);
}

.modules-grid article:nth-child(4) {
  --module-bg-a: rgba(16, 19, 37, 0.98);
  --module-bg-b: rgba(68, 185, 138, 0.72);
  --module-outline: rgba(143, 216, 255, 0.76);
  --module-glow-a: rgba(116, 217, 158, 0.34);
  --module-glow-b: rgba(143, 216, 255, 0.30);
}

.modules-grid article:nth-child(5) {
  --module-bg-a: rgba(16, 19, 37, 0.98);
  --module-bg-b: rgba(61, 36, 71, 0.92);
  --module-outline: rgba(217, 77, 157, 0.72);
  --module-glow-a: rgba(143, 216, 255, 0.34);
  --module-glow-b: rgba(116, 217, 158, 0.30);
}

.modules-grid article:nth-child(6) {
  --module-bg-a: rgba(16, 19, 37, 0.98);
  --module-bg-b: rgba(51, 91, 141, 0.88);
  --module-outline: rgba(116, 217, 158, 0.72);
  --module-glow-a: rgba(143, 216, 255, 0.38);
  --module-glow-b: rgba(217, 77, 157, 0.28);
  color: var(--white);
}

.button-primary,
.practical-link,
.contact-form .button {
  background:
    linear-gradient(135deg, rgba(143, 216, 255, 0.96), rgba(196, 153, 220, 0.88));
  color: #101325;
}

.button-secondary {
  border-color: rgba(143, 216, 255, 0.62);
}

.button,
.contact-form .button {
  --cta-a: rgba(143, 216, 255, 0.96);
  --cta-b: rgba(196, 153, 220, 0.88);
  --cta-outline: rgba(217, 77, 157, 0.56);
  --cta-glow: rgba(143, 216, 255, 0.34);
}

.button-secondary,
.button-secondary.dark {
  --cta-a: rgba(61, 36, 71, 0.92);
  --cta-b: rgba(51, 91, 141, 0.86);
  --cta-outline: rgba(143, 216, 255, 0.54);
  --cta-glow: rgba(196, 153, 220, 0.30);
}

.info-card,
.benefit-list span,
.practical-card,
.contact-form {
  background:
    linear-gradient(135deg, rgba(16, 19, 37, 0.88), rgba(61, 36, 71, 0.76));
  border-color: rgba(143, 216, 255, 0.28);
  color: var(--white);
}

.info-card span,
.practical-card span,
.practical-dash,
.practical-intro p.performance-highlight,
.performance-highlight,
.text-yellow {
  color: var(--junior-sky);
}

.benefit-list span::before {
  background: var(--benefit-line, var(--junior-sky));
  box-shadow:
    0 0 10px var(--benefit-glow-strong, rgba(143, 216, 255, 0.64)),
    0 0 22px var(--benefit-glow, rgba(143, 216, 255, 0.34)),
    0 0 36px var(--benefit-glow, rgba(143, 216, 255, 0.34));
}

.benefit-list span:nth-child(1),
.practical-card:nth-child(1) {
  --benefit-line: var(--junior-sky);
  --benefit-glow: rgba(143, 216, 255, 0.34);
  --benefit-glow-strong: rgba(143, 216, 255, 0.64);
}

.benefit-list span:nth-child(2),
.practical-card:nth-child(2) {
  --benefit-line: rgba(217, 77, 157, 0.86);
  --benefit-glow: rgba(217, 77, 157, 0.30);
  --benefit-glow-strong: rgba(217, 77, 157, 0.58);
}

.benefit-list span:nth-child(3),
.practical-card:nth-child(3) {
  --benefit-line: rgba(196, 153, 220, 0.86);
  --benefit-glow: rgba(196, 153, 220, 0.30);
  --benefit-glow-strong: rgba(196, 153, 220, 0.58);
}

.benefit-list span:nth-child(4),
.practical-card:nth-child(4) {
  --benefit-line: rgba(91, 151, 178, 0.86);
  --benefit-glow: rgba(91, 151, 178, 0.30);
  --benefit-glow-strong: rgba(91, 151, 178, 0.58);
}

.benefit-list span:nth-child(5),
.practical-card:nth-child(5) {
  --benefit-line: rgba(132, 104, 178, 0.88);
  --benefit-glow: rgba(132, 104, 178, 0.30);
  --benefit-glow-strong: rgba(132, 104, 178, 0.58);
}

.benefit-list span:nth-child(6),
.practical-card:nth-child(6) {
  --benefit-line: rgba(116, 217, 230, 0.86);
  --benefit-glow: rgba(116, 217, 230, 0.30);
  --benefit-glow-strong: rgba(116, 217, 230, 0.58);
}

.practical-card {
  outline-color: var(--benefit-line, rgba(143, 216, 255, 0.72));
}

.contact-form label {
  color: var(--junior-sky);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--junior-sky);
  box-shadow: 0 0 0 3px rgba(143, 216, 255, 0.20);
}

/* JUNIOR INTRO PAYOFF */

.junior-stack {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 16% 12%, rgba(217, 77, 157, 0.24), transparent 36%),
    radial-gradient(circle at 82% 28%, rgba(92, 200, 220, 0.20), transparent 34%),
    radial-gradient(circle at 52% 92%, rgba(219, 229, 127, 0.08), transparent 32%),
    linear-gradient(135deg, #1A1230 0%, #15204A 52%, #281A38 100%);
  isolation: isolate;
}

.junior-intro {
  min-height: 68vh;
  position: sticky;
  top: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 16% 12%, rgba(217, 77, 157, 0.24), transparent 36%),
    radial-gradient(circle at 82% 28%, rgba(92, 200, 220, 0.20), transparent 34%),
    radial-gradient(circle at 52% 92%, rgba(219, 229, 127, 0.08), transparent 32%),
    linear-gradient(135deg, #1A1230 0%, #15204A 52%, #281A38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.junior-intro .section-inner {
  width: min(100%, 1480px);
  padding-top: clamp(36px, 5vw, 62px);
  padding-bottom: clamp(36px, 5vw, 62px);
}

.junior-intro-grid {
  display: block;
}

.junior-intro-heading {
  width: 100%;
  text-align: center;
}

.junior-payoff-title {
  width: min(100%, 1280px);
  max-width: none;
  margin: 0 auto;
  padding: 0 0.06em;
  color: transparent !important;
  font-family: "JuniorDisplay", Arial, Helvetica, sans-serif;
  font-size: clamp(52px, 7.4vw, 108px);
  font-weight: 700 !important;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  -webkit-text-stroke: clamp(1px, 0.13vw, 2px) rgba(255, 255, 255, 0.88);
  text-stroke: clamp(1px, 0.13vw, 2px) rgba(255, 255, 255, 0.88);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("images/herojunior.jpg");
  background-size: 145% auto;
  background-position: 18% 46%;
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  background-clip: text;
  filter: saturate(1.12) contrast(1.04);
  animation: juniorPayoffDrift 12s linear infinite alternate;
}

.junior-payoff-title:hover {
  color: transparent !important;
  text-shadow: none !important;
}

@keyframes juniorPayoffDrift {
  from {
    background-position: 18% 46%;
  }

  to {
    background-position: 82% 54%;
  }
}

@media (max-width: 768px) {
  .junior-intro {
    min-height: 62vh;
  }

  .junior-intro .section-inner {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .junior-payoff-title {
    width: min(100%, calc(100vw - 36px));
    padding: 0;
    font-size: clamp(40px, 12vw, 62px);
    line-height: 0.92;
  }

}

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

/* LEVEL FORMULA */

.junior-academy-layer {
  position: relative;
  z-index: 6;
  margin-top: -5vh;
  min-height: 100vh;
  background: #090d1e;
  box-shadow: 0 -40px 90px rgba(0, 0, 0, 0.30);
}

.level-formula {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #090d1e;
  color: var(--white);
}

.level-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.level-decor-left,
.level-decor-right {
  top: 0;
  bottom: 0;
  width: clamp(160px, 15vw, 300px);
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  mix-blend-mode: screen;
  filter: saturate(0.85) contrast(0.98);
}

.level-decor-left {
  left: 0;
  object-position: left top;
}

.level-decor-right {
  right: 0;
  object-position: right top;
}

.level-decor-arrow {
  top: clamp(42px, 7vw, 96px);
  left: clamp(132px, 15.5vw, 292px);
  width: clamp(85px, 13.1vw, 200px);
  opacity: 0.92;
  filter:
    brightness(1.08)
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.68))
    drop-shadow(0 0 28px rgba(143, 216, 255, 0.36));
}

.level-formula::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background: none;
  opacity: 0;
  pointer-events: none;
  transform: scaleY(-1);
}

.level-formula .section-inner {
  width: min(100%, 1180px);
  position: relative;
  z-index: 2;
  padding-top: clamp(40px, 5.4vw, 74px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.final-performance .performance-copy {
  align-self: stretch;
  padding-top: clamp(32px, 4.6vw, 58px);
}

.final-performance .performance-copy h2 {
  margin-top: 0;
}

.level-formula-title {
  width: min(100%, 1160px);
  margin: 0 auto;
  color: var(--white);
  font-family: "NeueMetanaNext", "Metana", "JuniorDisplay", Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  line-height: 0.88;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.level-formula-title span,
.level-formula-title strong {
  display: block;
  font-family: "NeueMetanaNext", "Metana", "JuniorDisplay", Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0;
  white-space: nowrap;
}

.level-formula-title span {
  width: fit-content;
  padding: 0 0.1em 0.02em;
  color: var(--white);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.9;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.42),
    0 0 26px rgba(143, 216, 255, 0.24);
}

.level-formula-title strong {
  width: fit-content;
  margin-top: 0.12em;
  padding: 0 0 0.13em;
  position: relative;
  color: var(--white);
  font-size: clamp(52px, 6.6vw, 108px);
  line-height: 0.82;
  background: transparent;
  box-shadow: none;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.58),
    0 0 18px rgba(255, 104, 215, 0.38),
    0 0 32px rgba(255, 104, 215, 0.22);
}

.level-formula-title strong::after {
  content: "";
  height: 3px;
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.58),
    0 0 18px rgba(255, 104, 215, 0.42),
    0 0 34px rgba(255, 104, 215, 0.28);
}

.level-formula .level-formula-intro {
  width: min(100%, 1080px);
  max-width: none;
  margin: 14px auto clamp(42px, 5vw, 66px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.32;
  font-weight: 700;
  text-align: left !important;
  text-align-last: left !important;
  text-wrap: pretty;
}

@media (min-width: 1080px) {
  .level-formula .level-formula-intro {
    width: min(100%, 1160px);
  }

  .level-formula .level-formula-intro br {
    display: block;
  }
}

.level-cards {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 42px);
}

.level-row {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  grid-template-areas: "logo panel";
  align-items: center;
  gap: clamp(28px, 4.4vw, 56px);
}

.level-row-days {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  grid-template-areas: "panel logo";
  margin-top: clamp(-34px, -2.4vw, -18px);
}

.level-logo {
  margin: 0;
  grid-area: logo;
  display: flex;
  align-items: center;
  justify-content: center;
}

.level-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.20));
}

.level-logo-academy {
  width: min(100%, 330px);
  justify-self: center;
  transform: translateY(clamp(18px, 1.8vw, 30px));
}

.level-logo-days {
  width: min(100%, 330px);
  justify-self: center;
  transform: translateY(clamp(18px, 3vw, 38px));
}

.level-plus {
  align-self: center;
  margin: clamp(4px, 1.2vw, 16px) 0 clamp(-22px, -1.6vw, -10px);
  width: auto;
  padding-left: 0;
  color: var(--white);
  font-family: "JuniorDisplay", Arial, Helvetica, sans-serif;
  font-size: clamp(72px, 10vw, 132px);
  font-weight: 700;
  line-height: 0.72;
  text-shadow:
    0 0 18px rgba(143, 216, 255, 0.72),
    0 0 42px rgba(143, 216, 255, 0.38),
    0 0 58px rgba(217, 77, 157, 0.22);
  transform: rotate(-4deg);
}

.level-panel {
  min-height: 0;
  padding: clamp(10px, 1.4vw, 16px) 0 clamp(10px, 1.4vw, 16px) clamp(22px, 3vw, 34px);
  grid-area: panel;
  position: relative;
  overflow: visible;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.level-panel::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 6px;
  z-index: -1;
  background: var(--level-line, rgba(143, 216, 255, 0.88));
  box-shadow:
    0 0 12px var(--level-line, rgba(143, 216, 255, 0.74)),
    0 0 28px var(--level-line, rgba(143, 216, 255, 0.52)),
    0 0 48px var(--level-shadow, rgba(143, 216, 255, 0.30));
  opacity: 0.95;
  transform: rotate(-1deg);
}

.level-panel::after {
  content: "";
  width: clamp(92px, 12vw, 142px);
  height: 5px;
  position: absolute;
  left: clamp(22px, 3vw, 34px);
  bottom: -4px;
  z-index: -1;
  background: var(--level-line, rgba(143, 216, 255, 0.88));
  box-shadow:
    0 0 12px var(--level-line, rgba(143, 216, 255, 0.74)),
    0 0 28px var(--level-line, rgba(143, 216, 255, 0.50)),
    0 0 46px var(--level-shadow, rgba(143, 216, 255, 0.28));
  transform: rotate(-1deg);
}

.level-row-days .level-panel {
  padding: clamp(10px, 1.4vw, 16px) clamp(22px, 3vw, 34px) clamp(10px, 1.4vw, 16px) 0;
  text-align: right;
}

.level-row-days .level-panel::before {
  right: 0;
  left: auto;
}

.level-row-days .level-panel::after {
  right: clamp(22px, 3vw, 34px);
  left: auto;
}

.level-time {
  margin: 0;
  color: var(--white) !important;
  font-size: clamp(18px, 2.1vw, 24px) !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
  text-align: left !important;
  text-align-last: left !important;
}

.level-row-days .level-time {
  text-align: right !important;
  text-align-last: right !important;
}

.level-panel p:not(.level-time) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.75vw, 20px);
  line-height: 1.4;
  font-weight: 800;
  text-align: left;
  text-align-last: left;
}

.level-row-days .level-panel p:not(.level-time) {
  text-align: right;
  text-align-last: right;
}

.level-panel p strong {
  color: var(--white);
  font-weight: 900;
}

.level-row-academy .level-panel {
  --level-bg-a: rgba(42, 35, 76, 0.94);
  --level-bg-b: rgba(217, 77, 157, 0.82);
  --level-glow-a: rgba(217, 77, 157, 0.26);
  --level-accent: var(--junior-sky);
  --level-outline: rgba(116, 217, 230, 0.82);
  --level-line: rgba(196, 239, 96, 0.94);
  --level-shadow: rgba(196, 239, 96, 0.34);
}

.level-row-days .level-panel {
  --level-bg-a: rgba(27, 41, 72, 0.94);
  --level-bg-b: rgba(51, 91, 141, 0.82);
  --level-glow-a: rgba(143, 216, 255, 0.22);
  --level-accent: var(--junior-sky);
  --level-outline: rgba(217, 77, 157, 0.74);
  --level-line: rgba(255, 104, 215, 0.94);
  --level-shadow: rgba(255, 104, 215, 0.34);
}

@media (max-width: 980px) {
  .level-decor-left,
  .level-decor-right {
    width: clamp(90px, 18vw, 150px);
    opacity: 0.42;
  }

  .level-decor-arrow {
    width: clamp(80px, 16vw, 130px);
    opacity: 0.62;
  }

  .level-formula .section-inner {
    width: min(100%, 760px);
  }

  .level-row {
    grid-template-columns: minmax(170px, 230px) minmax(0, 1fr);
    gap: 24px;
  }

  .level-row-days {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 230px);
  }

  .level-plus {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .level-decor-left,
  .level-decor-right {
    display: none;
  }

  .level-decor-arrow {
    display: none;
  }

  .junior-academy-layer {
    margin-top: -3vh;
  }

  .level-formula .section-inner {
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }

  .level-formula-title {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .level-formula-title span {
    font-size: clamp(28px, 8vw, 40px);
    white-space: normal;
  }

  .level-formula-title strong {
    width: 100%;
    max-width: 100%;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.88;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .level-cards {
    gap: 20px;
  }

  .level-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "panel";
    gap: 14px;
  }

  .level-row-days {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "panel";
    margin-top: 0;
  }

  .level-logo-academy {
    width: min(248px, 78vw);
  }

  .level-logo-days {
    width: min(270px, 82vw);
    transform: translateY(0);
  }

  .level-plus {
    margin: -2px 0 0;
    padding-left: 0;
    text-align: center;
    font-size: clamp(64px, 20vw, 96px);
  }

  .level-panel {
    min-height: 0;
    padding: 18px 20px;
  }

  .level-row-days .level-panel,
  .level-row-days .level-time,
  .level-row-days .level-panel p:not(.level-time) {
    text-align: left !important;
    text-align-last: left !important;
  }

  .level-row-days .level-panel {
    padding: 18px 20px;
  }

  .level-row-days .level-panel::before {
    right: auto;
    left: 0;
  }

  .level-row-days .level-panel::after {
    right: auto;
    left: 20px;
  }
}

/* LEVEL FORMULA ENTRANCE */

body.js-scroll-motion .level-row.scroll-reveal-item {
  opacity: 0;
  filter: saturate(0.9) blur(4px);
  transform: translate3d(var(--level-entry-x, 0), 0, 0) rotate(var(--level-entry-rotate, 0deg));
  transition:
    opacity 0.86s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.86s ease,
    transform 0.94s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-scroll-motion .level-row-academy.scroll-reveal-item {
  --level-entry-x: -96px;
  --level-entry-rotate: -1.5deg;
}

body.js-scroll-motion .level-row-days.scroll-reveal-item {
  --level-entry-x: 96px;
  --level-entry-rotate: 1.5deg;
}

body.js-scroll-motion .level-formula.is-visible .level-row.scroll-reveal-item {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) rotate(0);
}

body.js-scroll-motion .level-row .scroll-reveal-item {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

@media (max-width: 980px) {
  body.js-scroll-motion .level-row-academy.scroll-reveal-item,
  body.js-scroll-motion .level-row-days.scroll-reveal-item {
    --level-entry-x: 0;
    --level-entry-rotate: 0deg;
  }
}

/* Benefits layout correction */
.benefits .section-inner {
  grid-template-columns: minmax(360px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(56px, 5vw, 84px);
}

.benefits-intro {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.benefits-intro h2 {
  max-width: 430px;
  font-size: clamp(42px, 3.2vw, 58px);
  line-height: 0.94;
}

.benefit-list {
  min-width: 0;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.benefit-list span {
  min-width: 0;
}

@media (max-width: 1180px) {
  .benefits .section-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .benefits-intro h2 {
    max-width: 760px;
    font-size: clamp(44px, 8vw, 72px);
  }
}

/* Text-only yellow harmonization */
.section-kicker,
.promise .section-kicker,
.text-yellow,
.performance-highlight,
.practical-intro p.performance-highlight {
  color: #DBE57F !important;
}
