:root {
    --color-primary: #00ff00;
    --color-accent: #6a1fec;
    --color-bg: #0c0c0c;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.72);
    --color-surface: rgba(12, 12, 12, 0.76);
    --color-surface-strong: rgba(12, 12, 12, 0.94);
    --color-surface-soft: rgba(255, 255, 255, 0.04);
    --color-surface-border: rgba(255, 255, 255, 0.1);
    --color-primary-soft: rgba(0, 255, 0, 0.14);
    --color-primary-glow: rgba(0, 255, 0, 0.28);
    --color-accent-soft: rgba(106, 31, 236, 0.16);
    --color-accent-glow: rgba(106, 31, 236, 0.28);
    --radius-sm: 8px;
    --radius-pill: 999px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --duration-fast: 150ms;
    --duration-base: 200ms;
    --duration-slow: 300ms;
    --bg: var(--color-bg);
    --surface: var(--color-surface);
    --surface-strong: var(--color-surface-strong);
    --surface-border: var(--color-surface-border);
    --text: var(--color-text);
    --text-muted: var(--color-text-muted);
    --accent: var(--color-primary);
    --container: 1240px;
    --header-height: 60px;
    --header-height-sticky: 60px;
    --mobile-nav-offset: 72px;
    --mobile-nav-offset-sm: 72px;
    --font-sans: 'General Sans', 'Inter', 'Segoe UI', sans-serif;
    --font-mono: 'Space Mono', 'IBM Plex Mono', 'Courier New', monospace;
    --ease: var(--duration-base) cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--font-sans);
    color: var(--text);
    background:
        radial-gradient(circle at top center, var(--color-accent-glow), transparent 28%),
        radial-gradient(circle at 50% 0%, var(--color-primary-soft), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 18%),
        var(--bg);
}

body.is-menu-open {
    overflow: hidden;
}

body.is-menu-open .site-header {
    background: #0c0c0c;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.is-menu-open .site-header:not(.is-sticky) {
    box-shadow: none;
}

body.is-menu-open .site-header.is-sticky {
    box-shadow: none;
}

::selection {
    background-color: var(--color-primary);
    color: #000000;
}

::-moz-selection {
    background-color: var(--color-primary);
    color: #000000;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 8px 24px;
    transition:
        padding var(--ease),
        background-color var(--ease),
        border-color var(--ease),
        box-shadow var(--ease),
        backdrop-filter var(--ease),
        -webkit-backdrop-filter var(--ease);
}

.site-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--color-primary);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    transition: opacity 180ms ease, box-shadow 220ms ease;
}

.site-header.is-sticky {
    position: fixed;
    padding-block: 8px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.88) 0%, rgba(12, 12, 12, 0.82) 100%);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.site-header.is-sticky::after {
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.22);
}

body.is-menu-open .site-header::after {
    opacity: 1;
}

.nav-shell {
    width: min(100%, var(--container));
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: min-height var(--ease);
}

.site-header.is-sticky .nav-shell {
    min-height: var(--header-height-sticky);
}

.brand-mark {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    position: relative;
    z-index: 3;
    transform: translateY(1px);
}

.brand-mark img {
    display: block;
    width: auto;
    height: 40px;
}

.mobile-sticky-cta {
    display: none;
}

.site-nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.site-nav__panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(28px, 4vw, 40px);
    width: 100%;
}

.site-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
    margin: 0;
    padding: 0;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: none;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    transition: color var(--ease), opacity var(--ease), text-shadow var(--ease);
}

.site-nav__link::after {
    display: none;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.site-nav__link.is-active {
    color: var(--accent);
    text-shadow: 0 0 14px rgba(0, 255, 0, 0.18);
}

.site-nav__item--dropdown {
    display: inline-flex;
    align-items: center;
}

.site-nav__dropdown-trigger {
    gap: 7px;
}

.site-nav__dropdown-trigger::before {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    opacity: 0.72;
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--ease), opacity var(--ease), color var(--ease);
    order: 2;
}

.site-nav__item--dropdown:hover .site-nav__dropdown-trigger::before,
.site-nav__item--dropdown:has(.site-nav__dropdown-trigger:focus-visible) .site-nav__dropdown-trigger::before,
.site-nav__item--dropdown:has(.site-nav__dropdown-link:focus-visible) .site-nav__dropdown-trigger::before {
    opacity: 1;
    transform: translateY(1px) rotate(45deg);
}

.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 8;
    min-width: 82px;
    padding: 11px 10px 10px;
    border-top: 1px solid var(--accent);
    background: var(--accent);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), 0 0 16px rgba(0, 255, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition:
        opacity var(--ease),
        visibility var(--ease),
        transform var(--ease);
}

.site-nav__dropdown::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
    height: 20px;
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown:has(.site-nav__dropdown-trigger:focus-visible) .site-nav__dropdown,
.site-nav__item--dropdown:has(.site-nav__dropdown-link:focus-visible) .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav__dropdown-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px 7px;
    background: transparent;
    color: rgba(12, 12, 12, 0.86);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color var(--ease),
        color var(--ease),
        text-shadow var(--ease),
        transform var(--ease);
}

.site-nav__dropdown-link::after {
    content: "";
    display: block;
    position: absolute;
    right: 6px;
    bottom: 0;
    left: 6px;
    height: 1px;
    background: rgba(5, 5, 5, 0.72);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition:
        opacity var(--ease),
        transform var(--ease),
        box-shadow var(--ease);
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible,
.site-nav__dropdown-link.is-active {
    background: transparent;
    color: #050505;
    text-shadow: none;
}

.site-nav__dropdown-link:hover::after,
.site-nav__dropdown-link:focus-visible::after,
.site-nav__dropdown-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: none;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
    transform: translateY(-1px);
}

.site-nav__dropdown-link:focus-visible {
    outline: 1px solid rgba(5, 5, 5, 0.3);
    outline-offset: 5px;
}

.site-nav__meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.015);
}

.lang-toggle__button {
    border: 0;
    border-radius: 0;
    padding: 8px 11px;
    background: transparent;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.lang-toggle__button.is-active {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lang-toggle__button:hover,
.lang-toggle__button:focus-visible {
    color: rgba(255, 255, 255, 0.86);
}

.nav-toggle {
    display: none;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: background-color var(--ease), border-color var(--ease), transform var(--ease);
}

.site-header.is-sticky .nav-toggle {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.16);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-primary-soft);
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2.5px;
    background: var(--text);
    border-radius: 0;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition:
        top 180ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 140ms ease,
        width var(--ease),
        height var(--ease),
        background-color var(--ease),
        box-shadow var(--ease);
}

.nav-toggle span:nth-child(1) {
    top: 16px;
}

.nav-toggle span:nth-child(2) {
    top: 23px;
}

.nav-toggle span:nth-child(3) {
    top: 30px;
}

.nav-toggle.is-active span:nth-child(1) {
    top: 23px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    top: 23px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.page-shell {
    position: relative;
    min-height: 100vh;
}

.site-footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c0c0c;
}

.site-footer__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 26px 24px 20px;
    display: grid;
    gap: 22px;
}

.site-footer__content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 36px;
    align-items: start;
}

.site-footer__group {
    display: grid;
    gap: 14px;
    align-content: start;
    align-self: start;
    min-width: 0;
}

.site-footer__group-head {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-footer__group-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.site-footer__group-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.site-footer__group-title {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.site-footer__item {
    display: grid;
    gap: 3px;
}

.site-footer__label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer__value-link {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    transition: color var(--ease), opacity var(--ease);
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
}

.site-footer__social-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: currentColor;
}

.site-footer__social-icon svg {
    display: block;
    width: 17px;
    height: 17px;
}

.site-footer__social-icon--facebook {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
}

.site-footer__value-link:hover,
.site-footer__value-link:focus-visible,
.site-footer__form-link:hover,
.site-footer__form-link:focus-visible {
    color: var(--accent);
}

.site-footer__form-link {
    width: fit-content;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-decoration: none;
    transition: color var(--ease), opacity var(--ease);
}

.site-footer__copyright,
.site-footer__powered-by {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.4;
}

.site-footer__copyright {
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.03em;
}

.site-footer__powered-by {
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer__credit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__credit-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer__logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.site-footer__logo {
    display: block;
    width: auto;
    height: 18px;
    opacity: 0.76;
    filter: invert(1) grayscale(1) brightness(1.2) contrast(0.92);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip;
    isolation: isolate;
    background: var(--bg);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: scale(1.03);
}

.hero__bg.is-active {
    opacity: 1;
}

.hero__bg--01 {
    background-image: url("../assets/images/generated/summer-camp-2026-orbital.png");
    background-position: center 54%;
}

.hero__bg--02 {
    background-image: url("../assets/images/hero02.jpg");
}

.hero__bg--03 {
    background-image: url("../assets/images/news/ranum-efterskole-future-ballers.jpg");
    background-position: center 34%;
}

.hero__bg--04 {
    background-image: url("../assets/images/hero04.jpg");
}

.hero__bg--05 {
    background-image: url("../assets/images/hero05.jpg");
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 12, 12, 0.16) 0%, rgba(12, 12, 12, 0.28) 24%, rgba(12, 12, 12, 0.46) 62%, rgba(12, 12, 12, 0.76) 100%),
        linear-gradient(96deg, rgba(12, 12, 12, 0.58) 0%, rgba(12, 12, 12, 0.24) 45%, rgba(12, 12, 12, 0.56) 100%);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.026) 0%, rgba(255, 255, 255, 0.012) 14%, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.035), transparent 30%);
    z-index: -1;
}

.hero__inner {
    width: min(100%, var(--container));
    min-height: 100svh;
    margin: 0 auto;
    padding: clamp(120px, 22vh, 190px) 24px clamp(128px, 18vh, 168px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    max-width: 780px;
    text-align: center;
}

.hero__meta,
.summer-camp-preview__meta {
    width: min(100%, 74rem);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 32px;
    justify-items: center;
}

.hero__meta[hidden] {
    display: none !important;
}

.hero__meta-item,
.summer-camp-preview__meta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
}

.hero__meta-icon,
.summer-camp-preview__meta-icon {
    flex: 0 0 auto;
    width: clamp(2.8rem, 5vw, 4rem);
    height: clamp(2.8rem, 5vw, 4rem);
    color: var(--accent);
}

.hero__meta-icon svg,
.summer-camp-preview__meta-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero__meta-icon img,
.hero__meta-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__meta-copy,
.summer-camp-preview__meta-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.hero__meta-label,
.summer-camp-preview__meta-label {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero__meta-value,
.summer-camp-preview__meta-value {
    color: #ffffff;
    font-size: clamp(1.1rem, 2.4vw, 1.7rem);
    font-weight: 600;
    line-height: 1.08;
}

.js .hero__content > * {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-gsap-motion .hero__content > * {
    transition: none;
    will-change: transform, opacity;
}

.js .hero__content > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero__eyebrow {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-shadow: 0 0 18px var(--color-primary-glow);
}

.hero__title {
    margin: 0;
    max-width: min(100%, 18ch);
    margin-inline: auto;
    font-size: clamp(2.35rem, 8.4vw, 4.65rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.028em;
    text-transform: none;
    text-wrap: balance;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: var(--accent);
    text-shadow: 0 0 22px rgba(0, 255, 0, 0.22);
}

.hero__title--poster {
    max-width: min(100%, 12ch);
    font-size: clamp(4rem, 14vw, 8.9rem);
    font-style: italic;
    font-weight: 700;
    line-height: 0.84;
    letter-spacing: 0;
    text-transform: uppercase;
    text-wrap: normal;
}

.hero__copy {
    margin: 22px auto 0;
    max-width: 42rem;
    color: var(--text-muted);
    font-size: clamp(0.98rem, 4vw, 1.12rem);
    font-weight: 400;
    line-height: 1.72;
    text-wrap: pretty;
}

.hero--campaign::before {
    background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.62) 0%, rgba(6, 6, 6, 0.26) 22%, rgba(6, 6, 6, 0.12) 38%, rgba(6, 6, 6, 0.64) 100%),
        linear-gradient(96deg, rgba(10, 10, 10, 0.48) 0%, rgba(10, 10, 10, 0.12) 50%, rgba(10, 10, 10, 0.48) 100%);
}

.hero--campaign::after {
    background:
        radial-gradient(circle at 50% 84%, rgba(0, 255, 0, 0.16), transparent 26%),
        radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.05), transparent 28%);
}

.hero--campaign .hero__inner {
    padding-top: clamp(128px, 16vh, 166px);
}

.hero--campaign .hero__content {
    width: min(100%, 70rem);
    max-width: none;
}

.hero--campaign .hero__eyebrow {
    display: none;
}

.hero--campaign .hero__copy {
    max-width: 48rem;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero--campaign .hero__cta {
    min-height: 60px;
    margin-top: 22px;
    padding-inline: 34px;
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    box-shadow: 0 6px 24px rgba(0, 255, 0, 0.28);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 54px;
    margin-top: 32px;
    padding: 0 28px;
    border: 2px solid var(--accent);
    border-radius: 0;
    background: var(--accent);
    color: var(--bg);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    transition:
        transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero__cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.hero__cta:hover,
.hero__cta:focus-visible {
    transform: translateY(-1px);
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.42), inset 0 0 10px rgba(0, 255, 0, 0.16);
    border-color: var(--accent);
}

.hero__cta:hover::after,
.hero__cta:focus-visible::after,
.hero__cta.is-swipe-active::after {
    left: 100%;
}

.hero__cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.js-gsap-motion .hero__cta,
.js-gsap-motion .academy-preview__cta,
.js-gsap-motion .summer-camp-preview__cta {
    will-change: transform;
}

.js-gsap-motion .hero__cta:hover,
.js-gsap-motion .hero__cta:focus-visible,
.js-gsap-motion .academy-preview__cta:hover,
.js-gsap-motion .academy-preview__cta:focus-visible,
.js-gsap-motion .summer-camp-preview__cta:hover,
.js-gsap-motion .summer-camp-preview__cta:focus-visible {
    transform: none;
}

.hero-carousel {
    --hero-carousel-progress-duration: 10000ms;
    position: absolute;
    right: 0;
    bottom: clamp(22px, 4vh, 44px);
    left: 0;
    z-index: 3;
    padding-inline: 24px;
    pointer-events: none;
}

.hero-carousel__inner {
    position: relative;
    width: min(100%, var(--container));
    margin: 0 auto;
    pointer-events: auto;
}

.hero-carousel__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
    min-width: 0;
}

.hero-carousel__item {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 54px;
    padding: 18px 8px 0 0;
    text-align: left;
    text-transform: uppercase;
}

.hero-carousel__line {
    position: absolute;
    top: 0;
    right: 10px;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    transition:
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.hero-carousel__line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 18px var(--color-primary-glow);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
}

.hero-carousel__label {
    display: block;
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 180ms ease, opacity 180ms ease;
}

.hero-carousel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    transform: translateY(-1px);
    transition:
        border-color var(--ease),
        background-color var(--ease),
        color var(--ease),
        transform var(--ease);
}

.hero-carousel__icon svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-carousel__item.is-active {
    color: var(--accent);
}

.hero-carousel__item.is-active .hero-carousel__icon,
.hero-carousel__item:hover .hero-carousel__icon,
.hero-carousel__item:focus-visible .hero-carousel__icon {
    border-color: var(--accent);
    background: var(--accent);
    color: #0c0c0c;
    transform: translateY(-1px);
}

.hero-carousel__item.is-active .hero-carousel__line {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 18px var(--color-primary-glow);
}

.hero-carousel__item.is-active .hero-carousel__line::after {
    opacity: 1;
    animation: heroCarouselLineProgress var(--hero-carousel-progress-duration) linear forwards;
}

.hero-carousel.is-paused .hero-carousel__item.is-active .hero-carousel__line::after {
    animation-play-state: paused;
}

.hero-carousel__item:hover,
.hero-carousel__item:focus-visible {
    color: var(--accent);
}

.hero-carousel__item:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

@media (min-width: 921px) {
    .hero-carousel__label {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }
}

@keyframes heroCarouselLineProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.academy-preview {
    position: relative;
    height: 100svh;
    overflow: clip;
    isolation: isolate;
    padding: 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 7, 1) 0%, rgba(7, 7, 7, 1) 50%, rgba(245, 247, 243, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.academy-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(0, 255, 0, 0.08), transparent 20%),
        radial-gradient(circle at 82% 18%, rgba(106, 31, 236, 0.12), transparent 24%);
    pointer-events: none;
}

.academy-preview__media {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.4) 18%, rgba(8, 8, 8, 0.72) 100%),
        linear-gradient(180deg, rgba(7, 7, 7, 1) 0%, rgba(14, 14, 14, 1) 100%);
}

.academy-preview__media::after {
    display: none;
}

.js .academy-preview__content {
    transition: opacity var(--duration-slow) ease, transform var(--duration-slow) cubic-bezier(0.22, 1, 0.36, 1);
}

.js-gsap-motion .academy-preview__content,
.js-gsap-motion .academy-preview__content > * {
    transition: none;
    will-change: transform, opacity;
}

.js-gsap-motion .academy-preview__media,
.js-gsap-motion .academy-preview__video {
    will-change: transform, opacity;
}

.js .academy-preview.is-pending .academy-preview__content {
    opacity: 0;
    transform: translateY(28px);
}

.js .academy-preview.is-visible .academy-preview__content {
    opacity: 1;
    transform: translateY(0);
}

.academy-preview__inner {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}

.academy-preview__frame {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
}

.academy-preview__content-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: clamp(72px, 6vw, 96px) clamp(28px, 4vw, 56px) clamp(20px, 2vw, 28px);
    background: #ffffff;
}

.academy-preview__content-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0, rgba(0, 0, 0, 0.04) 1px, transparent 1px, transparent 100%);
    pointer-events: none;
}

.academy-preview__content-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.995) 36%, rgba(255, 255, 255, 0.96) 56%, rgba(255, 255, 255, 0.84) 72%, rgba(255, 255, 255, 0.6) 86%, rgba(255, 255, 255, 0.42) 100%),
        url("../assets/images/IMG_3888.jpeg");
    background-position: left top, 100% center;
    background-repeat: no-repeat;
    background-size: auto, cover;
    filter: grayscale(1) brightness(1.04) contrast(0.84);
    opacity: 0.34;
    pointer-events: none;
}

.academy-preview__content {
    width: min(100%, 39rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
}

.academy-preview__eyebrow {
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 8px;
    background: var(--color-primary);
    color: #000000;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.academy-preview__kicker {
    margin: 0 0 18px;
    max-width: 35rem;
    padding: 12px 14px;
    border: 1px solid rgba(106, 31, 236, 0.58);
    border-left: 3px solid var(--color-accent);
    background: linear-gradient(90deg, rgba(106, 31, 236, 0.12), rgba(255, 255, 255, 0.58));
    color: #0c0c0c;
    font-size: 0.64rem;
    font-weight: 600;
    font-family: var(--font-mono);
    font-style: normal;
    letter-spacing: 0.1em;
    box-shadow: none;
    position: relative;
    display: inline-grid;
    align-items: start;
    gap: 7px;
}

.academy-preview__kicker-label {
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.academy-preview__kicker-note {
    max-width: 33rem;
    color: rgba(12, 12, 12, 0.72);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

.academy-preview__title-wrap {
    overflow: hidden;
}

.academy-preview__title {
    margin: 0;
    max-width: min(100%, 22ch);
    color: #0c0c0c;
    font-size: clamp(2.05rem, 3.45vw, 2.95rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.042em;
    text-wrap: balance;
}

.academy-preview__copy {
    margin: 18px 0 0;
    max-width: 35rem;
    color: rgba(12, 12, 12, 0.78);
    font-size: clamp(0.98rem, 1.2vw, 1.04rem);
    line-height: 1.64;
}

.academy-preview__strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.academy-preview__strip-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    align-content: start;
    column-gap: 12px;
    row-gap: 10px;
    min-height: 168px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(12, 12, 12, 0.1);
    background: #ffffff;
    transition:
        border-color var(--ease),
        background-color var(--ease),
        box-shadow var(--ease),
        transform var(--ease);
}

.academy-preview__strip-item:hover,
.academy-preview__strip-item:focus-within,
.academy-preview__strip-item.is-touch-active {
    animation: academy-card-bounce 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.academy-preview__strip-item:hover,
.academy-preview__strip-item:focus-within,
.academy-preview__strip-item.is-touch-active {
    border-color: #00ff00;
    box-shadow: none;
    transform: translateY(-1px);
}

@keyframes academy-card-bounce {
    0% {
        transform: translateY(0);
    }
    45% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(-1px);
    }
}

.academy-preview__strip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(12, 12, 12, 0.1);
    border-radius: 0;
    background: #ffffff;
    color: #0c0c0c;
    transition:
        border-color var(--ease),
        background-color var(--ease),
        color var(--ease);
}

.academy-preview__strip-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.academy-preview__strip-item:hover .academy-preview__strip-icon,
.academy-preview__strip-item:focus-within .academy-preview__strip-icon,
.academy-preview__strip-item.is-touch-active .academy-preview__strip-icon {
    border-color: #00ff00;
    background: #00ff00;
    color: #0c0c0c;
}

.academy-preview__strip-label {
    align-self: center;
    color: rgba(12, 12, 12, 0.48);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.academy-preview__strip-value {
    grid-column: 1 / -1;
    color: #0c0c0c;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    align-self: start;
}

.academy-preview__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 24px;
    padding: 0 26px;
    border: 1px solid #0c0c0c;
    border-radius: 0;
    background: #ffffff;
    color: #0c0c0c;
    box-shadow: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.academy-preview__cta:hover,
.academy-preview__cta:focus-visible {
    background: #00ff00;
    color: #0c0c0c;
    border-color: #00ff00;
    transform: translateY(-1px);
    box-shadow: none;
}

.academy-preview__cta:focus-visible {
    outline: 2px solid rgba(12, 12, 12, 0.6);
    outline-offset: 4px;
}

.academy-preview__mini-link {
    grid-column: 1 / -1;
    align-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0c0c0c;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
    text-decoration: none;
    transition: color var(--ease), transform var(--ease);
}

.academy-preview__mini-link::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(1px) rotate(45deg);
    transition: transform var(--ease), color var(--ease);
}

.academy-preview__mini-link:hover,
.academy-preview__mini-link:focus-visible {
    color: #00ff00;
    transform: translateY(-1px);
}

.academy-preview__mini-link:hover::after,
.academy-preview__mini-link:focus-visible::after {
    transform: translate(2px, 1px) rotate(45deg);
}

.academy-preview__mini-link:focus-visible {
    outline: 2px solid rgba(12, 12, 12, 0.28);
    outline-offset: 3px;
}

.summer-camp-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: clip;
    isolation: isolate;
    padding: 0;
    background: #0c0c0c;
}

.summer-camp-hero::before,
.summer-camp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.summer-camp-hero::before {
    z-index: -1;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.08) 0%, rgba(12, 12, 12, 0.24) 54%, rgba(12, 12, 12, 0.82) 100%);
}

.summer-camp-hero::after {
    display: none;
}

.summer-camp-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("../assets/images/generated/summer-camp-hero-poster.jpg") center center / cover no-repeat;
}

.summer-camp-hero__media::before,
.summer-camp-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.summer-camp-hero__media::before {
    display: none;
}

.summer-camp-hero__media::after {
    z-index: 2;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.18) 0%, rgba(12, 12, 12, 0.42) 58%, #0c0c0c 100%);
}

.summer-camp-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.94) contrast(1.04) brightness(0.78);
}

.summer-camp-hero__video--mobile {
    display: none;
}

.summer-camp-hero__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: clamp(132px, 18vh, 188px) 24px clamp(96px, 16vh, 148px);
    display: flex;
    align-items: flex-end;
}

.summer-camp-hero__content {
    width: min(100%, 58rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
}

.summer-camp-hero__meta {
    width: min(100%, 48rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin: 0 0 24px;
}

.summer-camp-hero__meta-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.summer-camp-hero__meta-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.summer-camp-hero__meta-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.summer-camp-hero__meta-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.summer-camp-hero__meta-label {
    color: var(--accent);
    font-size: 0.78rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.summer-camp-hero__meta-value {
    color: #ffffff;
    font-size: clamp(1.18rem, 2.1vw, 2.2rem);
    font-weight: 500;
    line-height: 1.05;
}

.summer-camp-hero__eyebrow {
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    background: var(--accent);
    color: #050505;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.summer-camp-hero__kicker {
    margin: 0 0 16px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.summer-camp-hero__title {
    margin: 0;
    max-width: min(100%, 12.5ch);
    font-size: clamp(3.15rem, 8vw, 7.2rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.052em;
    text-wrap: balance;
}

.summer-camp-hero__copy {
    margin: 22px 0 0;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.58;
}

.summer-camp-hero__facts {
    width: min(100%, 19rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.summer-camp-hero__fact {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 92px;
    padding: 16px 18px 18px;
    background: rgba(5, 5, 5, 0.52);
    backdrop-filter: blur(10px);
}

.summer-camp-hero__fact-label {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.3;
    text-transform: uppercase;
}

.summer-camp-hero__fact-value {
    color: #ffffff;
    font-size: clamp(0.94rem, 1.2vw, 1.06rem);
    font-weight: 650;
    line-height: 1.25;
}

.summer-camp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.summer-camp-hero__benefits {
    width: min(100%, 72rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.summer-camp-hero__benefit {
    display: grid;
    justify-items: center;
    gap: 12px;
    min-width: 0;
    text-align: center;
}

.summer-camp-hero__benefit-icon {
    width: 64px;
    height: 64px;
    display: block;
    object-fit: contain;
}

.summer-camp-hero__benefit-copy {
    display: grid;
    gap: 6px;
}

.summer-camp-hero__benefit-title {
    margin: 0;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.15;
    text-transform: uppercase;
}

.summer-camp-hero__benefit-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.34;
    text-wrap: balance;
}

.summer-camp-hero__benefit-separator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.summer-camp-hero__benefit-separator img {
    width: 40px;
    height: 156px;
    display: block;
    object-fit: contain;
    opacity: 0.9;
}

.summer-camp-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 28px;
    padding: 0 28px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #050505;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.summer-camp-hero__cta:hover,
.summer-camp-hero__cta:focus-visible {
    background: transparent;
    color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.24);
}

.summer-camp-hero__cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.summer-camp-hero__actions .academy-page__cta {
    margin-top: 0;
}


.summer-camp-preview {
    --summer-camp-blob-x: 72%;
    --summer-camp-blob-y: 72%;
    --summer-camp-blob-opacity: 1;
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    overflow: clip;
    isolation: isolate;
    padding: 0;
    background:
        radial-gradient(circle at 72% 72%, rgba(0, 255, 0, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(12, 12, 12, 1) 100%);
}

.summer-camp-preview::before,
.summer-camp-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.summer-camp-preview::before {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.74) 0%, rgba(8, 8, 8, 0.26) 22%, rgba(8, 8, 8, 0.28) 54%, rgba(8, 8, 8, 0.88) 100%),
        linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.72) 22%, rgba(8, 8, 8, 0.36) 48%, rgba(8, 8, 8, 0.16) 64%, rgba(8, 8, 8, 0.62) 100%);
}

.summer-camp-preview::after {
    z-index: -1;
    background:
        radial-gradient(circle at var(--summer-camp-blob-x) var(--summer-camp-blob-y), rgba(0, 255, 0, calc(0.26 * var(--summer-camp-blob-opacity))), transparent 20%),
        linear-gradient(180deg, transparent 0%, transparent 64%, rgba(0, 255, 0, 0.08) 100%);
}

.summer-camp-preview__bg,
[data-summer-camp-preview-bg] {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: url("../assets/images/generated/summer-camp-2026-orbital.png") center center / cover no-repeat;
    filter: blur(30px) brightness(0.24) contrast(1.06) saturate(1.02);
    opacity: 0.26;
    transform: scale(1.18);
    transform-origin: center center;
}

.summer-camp-preview__inner {
    width: 100%;
    min-height: inherit;
    margin: 0 auto;
    padding: 0;
}

.summer-camp-preview__stage {
    position: relative;
    width: 100%;
    min-height: inherit;
    display: flex;
    align-items: flex-end;
}

.summer-camp-preview__content {
    width: min(100%, var(--container));
    min-height: inherit;
    margin: 0 auto;
    padding: calc(var(--header-height) + 48px) 24px 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-align: left;
}

.summer-camp-preview__meta {
    margin: 0 0 22px;
    width: min(100%, 34rem);
    justify-items: start;
}

.summer-camp-preview__eyebrow {
    margin: 0 0 2px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.summer-camp-preview__accent-line {
    width: clamp(90px, 10vw, 152px);
    height: 4px;
    margin: 18px 0 16px;
    background: var(--accent);
    box-shadow: 0 0 24px rgba(0, 255, 0, 0.4);
}

.summer-camp-preview__kicker {
    margin: 0;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.2;
    text-transform: uppercase;
}

.summer-camp-preview__title {
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 0.28ch;
    max-width: min(100%, 8.9ch);
    font-size: clamp(2.95rem, 5.3vw, 5.2rem);
    font-style: normal;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
    text-wrap: normal;
}

.summer-camp-preview__title-main,
.summer-camp-preview__title-accent {
    display: block;
}

.summer-camp-preview__title-accent {
    color: var(--accent);
    text-shadow: 0 0 18px rgba(0, 255, 0, 0.3);
}

.summer-camp-preview__copy {
    margin: 22px 0 0;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.98rem, 1.14vw, 1.1rem);
    line-height: 1.66;
}

.summer-camp-preview__facts {
    width: min(100%, 66rem);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.summer-camp-preview__fact {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 116px;
    padding: 17px 18px 18px;
    background:
        linear-gradient(180deg, rgba(8, 12, 12, 0.78) 0%, rgba(6, 9, 9, 0.62) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.summer-camp-preview__fact-label {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.summer-camp-preview__fact-value {
    color: #ffffff;
    font-size: clamp(0.94rem, 1.15vw, 1.04rem);
    font-weight: 650;
    line-height: 1.25;
}

.summer-camp-preview__visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    background: rgba(8, 12, 12, 0.2);
}

.summer-camp-preview__visual::before,
.summer-camp-preview__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.summer-camp-preview__visual::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.76) 0%, rgba(8, 8, 8, 0.52) 28%, rgba(8, 8, 8, 0.18) 55%, rgba(8, 8, 8, 0.28) 100%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.1) 0%, rgba(8, 8, 8, 0.44) 100%);
}

.summer-camp-preview__visual::after {
    z-index: 2;
    background:
        radial-gradient(circle at 76% 78%, rgba(0, 255, 0, 0.22), transparent 16%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, transparent 22%, transparent 64%, rgba(8, 8, 8, 0.54) 100%);
}

.summer-camp-preview__video,
.summer-camp-preview__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.summer-camp-preview__video {
    object-fit: cover;
    object-position: center 44%;
    filter: saturate(0.94) contrast(1.04) brightness(0.8);
}

.summer-camp-preview__video--mobile {
    display: none;
    object-position: center 34%;
}

.summer-camp-preview__image {
    z-index: -1;
    background: url("../assets/images/generated/summer-camp-preview-poster.jpg") center center / cover no-repeat;
    opacity: 0.78;
}

.summer-camp-preview__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    overflow: hidden;
    isolation: isolate;
    width: fit-content;
    min-height: 58px;
    margin-top: 28px;
    padding: 0 32px;
    border: 2px solid var(--accent);
    background: var(--accent);
    color: var(--bg);
    font-size: 0.84rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 6px 24px rgba(0, 255, 0, 0.28);
    transition:
        transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.summer-camp-preview__cta::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.summer-camp-preview__cta::after {
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.summer-camp-preview__cta:hover,
.summer-camp-preview__cta:focus-visible {
    transform: translateY(-1px);
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.42), inset 0 0 10px rgba(0, 255, 0, 0.16);
    border-color: var(--accent);
}

.summer-camp-preview__cta:hover::after,
.summer-camp-preview__cta:focus-visible::after,
.summer-camp-preview__cta.is-swipe-active::after {
    left: 100%;
}

.js-gsap-motion .summer-camp-preview,
.js-gsap-motion .summer-camp-preview__bg,
.js-gsap-motion .summer-camp-preview__visual,
.js-gsap-motion .summer-camp-preview__image,
.js-gsap-motion .summer-camp-preview__content > * {
    will-change: transform, opacity, clip-path;
}

.academy-preview__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #000000;
    filter: saturate(0.92) contrast(1.04) brightness(0.86);
}

.academy-preview__frame .plyr {
    display: flex;
    width: 100%;
    height: 100%;
    --plyr-color-main: #00ff00;
    --plyr-video-control-color: #ffffff;
    --plyr-video-controls-background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 0.76) 100%);
    --plyr-menu-background: rgba(12, 12, 12, 0.96);
    --plyr-menu-color: #ffffff;
    --plyr-menu-border-color: rgba(255, 255, 255, 0.08);
    --plyr-range-fill-background: #00ff00;
    --plyr-range-thumb-background: #00ff00;
    --plyr-tooltip-background: rgba(12, 12, 12, 0.96);
    --plyr-tooltip-color: #ffffff;
    --plyr-control-radius: 0;
}

.academy-preview__frame .plyr__video-wrapper,
.academy-preview__frame .plyr video {
    width: 100%;
    height: 100%;
}

.academy-preview__frame .plyr__video-wrapper {
    flex: 1 1 auto;
    aspect-ratio: auto !important;
}

.academy-preview__frame .plyr__poster {
    background-size: cover;
}

.academy-preview__frame .plyr__poster,
.academy-preview__frame .plyr__poster-enabled .plyr__poster,
.academy-preview__frame .plyr__preview-thumb,
.academy-preview__frame .plyr__preview-thumb video {
    inset: 0;
}

.academy-preview__frame .plyr--video .plyr__control--overlaid {
    padding: 1.15rem;
    border: 1px solid rgba(0, 255, 0, 0.22);
    border-radius: 0;
    background: #00ff00;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 26px rgba(0, 255, 0, 0.26),
        0 18px 42px rgba(0, 0, 0, 0.28);
    color: #0c0c0c;
}

.academy-preview__frame .plyr--video .plyr__control--overlaid:hover,
.academy-preview__frame .plyr--video .plyr__control--overlaid:focus-visible {
    background: #00e600;
}

.academy-preview__frame .plyr--video .plyr__control--overlaid svg {
    fill: #0c0c0c;
}

.academy-preview__frame .plyr--full-ui input[type="range"] {
    color: #00ff00;
}

.story-section {
    position: relative;
    padding: clamp(96px, 14vw, 144px) 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.story-section--about {
    overflow: hidden;
    background:
        radial-gradient(circle at 4% 72%, rgba(0, 255, 0, 0.24), transparent 32%),
        linear-gradient(90deg, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.99) 42%, rgba(8, 8, 8, 0.94) 68%, rgba(8, 8, 8, 0.88) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(12, 12, 12, 1) 100%);
    background-repeat: no-repeat;
    background-size: auto, cover, cover;
    background-position: 4% 72%, center center, center center;
}

.story-section--about::before,
.story-section--about::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.story-section--about::before {
    background: url("../assets/images/hero04.jpg") center center / cover no-repeat;
    filter: grayscale(1) brightness(0.78) contrast(0.92);
    opacity: 0.34;
    transform: scaleX(-1);
    z-index: 0;
}

.story-section--about::after {
    background:
        radial-gradient(circle at 2% 76%, rgba(0, 255, 0, 0.17), transparent 34%),
        linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.88) 42%, rgba(8, 8, 8, 0.72) 68%, rgba(8, 8, 8, 0.56) 100%);
    z-index: 0;
}

.story-section--about .story-section__inner {
    position: relative;
    z-index: 1;
}

.story-section--join,
.story-section--tryouts {
    background:
        radial-gradient(circle at 82% 18%, rgba(106, 31, 236, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(12, 12, 12, 1) 0%, rgba(8, 8, 8, 0.98) 100%);
}

.story-section--join {
    overflow: hidden;
}

.story-section--join::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.97) 0%, rgba(8, 8, 8, 0.93) 34%, rgba(8, 8, 8, 0.8) 58%, rgba(8, 8, 8, 0.46) 100%),
        url("../assets/images/IMG_3885.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 62% center;
    filter: grayscale(1) brightness(0.84) contrast(0.9);
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
}

.story-section--join .story-section__inner {
    position: relative;
    z-index: 1;
}

.story-section__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.story-section__inner--split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.story-section__eyebrow,
.contact-cta__eyebrow {
    margin: 0 0 16px;
    display: inline-flex;
    align-items: center;
    justify-self: start;
    width: fit-content;
    min-height: 28px;
    padding: 0 8px;
    background: var(--color-primary);
    color: #000000;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.story-section__title,
.contact-cta__title {
    margin: 0;
    max-width: min(100%, 18ch);
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.034em;
    text-wrap: balance;
}

.story-section__body {
    display: grid;
    gap: 18px;
}

.story-section__body--launch {
    gap: 20px;
}

.story-section__copy,
.contact-cta__copy {
    margin: 0;
    max-width: 38rem;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.7vw, 1.08rem);
    line-height: 1.72;
}

.story-section__copy--lead {
    margin-top: 24px;
}

.story-section__list,
.story-section__principles {
    display: grid;
    gap: 16px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.story-section__principles-title {
    margin: 0;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.story-section__accordion {
    display: grid;
    gap: 0;
}

.story-section__list-item,
.story-section__accordion-item,
.timeline__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-section__accordion-item {
    padding-bottom: 16px;
}

.story-section__accordion-summary {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    cursor: pointer;
    list-style: none;
}

.story-section__accordion-summary::-webkit-details-marker {
    display: none;
}

.story-section__accordion-summary::after {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-left: auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: rgba(255, 255, 255, 0.72);
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--ease), color var(--ease);
}

.story-section__accordion-item[open] .story-section__accordion-summary::after {
    color: var(--accent);
    transform: translateY(2px) rotate(225deg);
}

.story-section__principle-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.7);
    transition:
        border-color var(--ease),
        background-color var(--ease),
        color var(--ease);
}

.story-section__principle-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.story-section__accordion-item[open] .story-section__principle-icon {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.7);
}

.story-section__list-label,
.timeline__title {
    margin: 0;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.story-section__list-copy,
.timeline__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.66;
}

.coaches-module {
    display: grid;
    gap: 20px;
    margin-top: 18px;
}

.coaches-module__intro {
    display: grid;
    gap: 10px;
    max-width: 42rem;
}

.coaches-module__eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-self: start;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.64rem;
    font-weight: 600;
    font-family: var(--font-mono);
    font-style: normal;
    letter-spacing: 0.1em;
    box-shadow: none;
    text-transform: uppercase;
}

.coaches-module__title {
    margin: 0;
    max-width: min(100%, 20ch);
    color: var(--text);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.028em;
    text-wrap: balance;
}

.coaches-module__copy {
    margin: 0;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.66;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.coach-card {
    display: grid;
    grid-template-rows: auto auto;
    min-height: 412px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 12, 0.58);
    overflow: hidden;
    transition:
        border-color var(--ease),
        background-color var(--ease),
        box-shadow var(--ease),
        transform var(--ease);
}

.coach-card__media {
    min-height: 300px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
        linear-gradient(135deg, rgba(0, 255, 0, 0.06) 0%, rgba(106, 31, 236, 0.04) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.coach-card__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-card__image--andreas {
    object-position: center top;
}

.coach-card__media--alex {
    background-image:
        linear-gradient(180deg, rgba(8, 8, 8, 0.06) 0%, rgba(8, 8, 8, 0.18) 100%),
        url("../assets/images/coaches/alex_pp.png");
    background-position: center 24%;
}

.coach-card__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 24% 22%, rgba(0, 255, 0, 0.16), transparent 28%),
        radial-gradient(circle at 78% 72%, rgba(106, 31, 236, 0.18), transparent 34%),
        radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.04), transparent 26%),
        linear-gradient(180deg, rgba(14, 14, 14, 0.92) 0%, rgba(10, 10, 10, 0.98) 100%);
}

.coach-card__placeholder-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(70px, 9vw, 86px);
    height: clamp(70px, 9vw, 86px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #00ff00;
}

.coach-card__placeholder-mark svg {
    width: 30px;
    height: 30px;
    display: block;
}

.coach-card__body {
    display: grid;
    gap: 6px;
    padding: 16px;
    background: rgba(12, 12, 12, 0.92);
    position: relative;
    z-index: 1;
}

.coach-card__name {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.coach-card__role {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.coach-card__role::before {
    content: "";
    width: 12px;
    height: 1px;
    background: rgba(0, 255, 0, 0.9);
}

.coach-card__copy {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.6;
}

.coach-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 8px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: color var(--ease), transform var(--ease);
}

.coach-card__link::after {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(1px) rotate(45deg);
    transition: transform var(--ease);
}

.coach-card__link:hover,
.coach-card__link:focus-visible {
    color: #00ff00;
    transform: translateY(-1px);
}

.coach-card__link:hover::after,
.coach-card__link:focus-visible::after {
    transform: translate(2px, 1px) rotate(45deg);
}

.coach-card__link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.28);
    outline-offset: 3px;
}

.coach-card:hover,
.coach-card:focus-within,
.coach-card.is-touch-active {
    animation: academy-card-bounce 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.coach-card:hover,
.coach-card:focus-within,
.coach-card.is-touch-active {
    border-color: #00ff00;
    box-shadow: none;
}

.js-gsap-motion .coaches-module.is-motion-ready .coaches-module__intro,
.js-gsap-motion .coaches-module.is-motion-ready .coach-card,
.js-gsap-motion .coaches-module.is-motion-ready .coach-card__media,
.js-gsap-motion .coaches-module.is-motion-ready .coach-card__body > * {
    will-change: transform, opacity;
}

.timeline {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline__item {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.timeline__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.2rem;
    min-height: 3.2rem;
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 0.18em;
    line-height: 1;
}

.timeline__content {
    display: grid;
    gap: 8px;
}

.join-hub {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.join-hub__eyebrow {
    margin: 0;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.join-hub__title {
    margin: 0;
    max-width: min(100%, 22ch);
    color: var(--text);
    font-size: clamp(1.55rem, 2.8vw, 2.25rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.026em;
    text-wrap: balance;
}

.join-hub__copy {
    margin: 0;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.68;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    margin-top: 4px;
}

.contact-form__field {
    display: grid;
    gap: 8px;
}

.contact-form__field--full,
.contact-form__footer {
    grid-column: 1 / -1;
}

.contact-form__program-panel[hidden],
.contact-form__program-details[hidden] {
    display: none;
}

.contact-form__program-panel {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.contact-form__program-panel > .contact-form__label {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
}

.contact-form__label {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.1;
    text-transform: uppercase;
}

.contact-form__required-marker {
    margin-left: 4px;
    color: var(--accent);
}

.contact-form__optional-marker {
    margin-left: 6px;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: none;
}

.contact-form__field-error {
    margin: 0;
    padding-left: 10px;
    border-left: 1px solid var(--accent);
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    line-height: 1.45;
}

.contact-form__field-error[hidden] {
    display: none;
}

.contact-form__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.contact-form__counter {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-align: right;
    white-space: nowrap;
}

.contact-form__input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
    line-height: 1.4;
    transition: border-color var(--ease), background-color var(--ease), box-shadow var(--ease);
}

.contact-form__input::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.contact-form__input:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.contact-form__input:focus-visible {
    outline: none;
    border-color: rgba(0, 255, 0, 0.7);
    box-shadow: 0 0 0 1px rgba(0, 255, 0, 0.18);
    background: rgba(255, 255, 255, 0.045);
}

.contact-form__field.is-invalid .contact-form__input {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.contact-form__input--textarea {
    min-height: 152px;
    padding-block: 14px;
    resize: vertical;
}

.contact-form__choice-group {
    display: grid;
    gap: 10px;
}

.contact-form__program-help {
    margin: 12px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(106, 31, 236, 0.58);
    border-left: 3px solid var(--color-accent);
    background: linear-gradient(90deg, rgba(106, 31, 236, 0.18), rgba(255, 255, 255, 0.035));
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-form__choice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    transition: border-color var(--ease), background-color var(--ease), color var(--ease);
}

.contact-form__choice:hover,
.contact-form__choice:focus-within {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.contact-form__choice:has(.contact-form__choice-input:checked) {
    border-color: rgba(0, 255, 0, 0.64);
    background: rgba(0, 255, 0, 0.055);
    color: var(--text);
}

.contact-form__field.is-invalid .contact-form__choice {
    border-color: var(--accent);
}

.contact-form__choice-input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.contact-form__choice-text {
    display: block;
    color: inherit;
    opacity: 1;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
}

.contact-form__program-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 2px;
}

.contact-form__select-wrap {
    position: relative;
}

.contact-form__select-wrap:not(.is-enhanced)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.8);
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.contact-form__input--select {
    appearance: none;
    padding-right: 46px;
}

.contact-form__input--select.is-enhanced-native {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    min-height: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.contact-form__subject-picker {
    position: relative;
    z-index: 5;
}

.contact-form__subject-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 0 46px 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition: border-color var(--ease), background-color var(--ease), box-shadow var(--ease), color var(--ease);
}

.contact-form__subject-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-60%) rotate(45deg);
    transition: color var(--ease), transform var(--ease);
    pointer-events: none;
}

.contact-form__subject-trigger:hover,
.contact-form__subject-picker.is-open .contact-form__subject-trigger {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.contact-form__subject-trigger:focus-visible {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
    background: rgba(255, 255, 255, 0.045);
}

.contact-form__subject-picker.is-open .contact-form__subject-trigger {
    border-color: var(--accent);
    box-shadow: none;
}

.contact-form__field.is-invalid .contact-form__subject-trigger {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.contact-form__subject-picker.is-open .contact-form__subject-trigger::after {
    color: var(--accent);
    transform: translateY(-25%) rotate(225deg);
}

.contact-form__subject-value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-form__subject-trigger-icon {
    display: none;
    flex: 0 0 auto;
}

.contact-form__subject-trigger-icon.is-visible {
    display: inline-flex;
}

.contact-form__subject-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    color: currentColor;
}

.contact-form__subject-icon svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form__subject-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 20;
    display: grid;
    gap: 0;
    padding: 0;
    border: 1px solid var(--accent);
    border-radius: 0;
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
    pointer-events: none;
}

.contact-form__subject-picker.is-open .contact-form__subject-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-form__subject-option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font: inherit;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition: border-color var(--ease), background-color var(--ease), color var(--ease);
}

.contact-form__subject-option:hover,
.contact-form__subject-option:focus-visible {
    outline: none;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.contact-form__subject-option.is-selected {
    border-color: var(--accent);
    background: var(--accent);
    color: #0c0c0c;
}

.contact-form__subject-option.is-selected .contact-form__subject-icon {
    border-color: rgba(12, 12, 12, 0.22);
    background: transparent;
}

.contact-form__footer {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.contact-form__status {
    min-height: 1.4em;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-form__status[data-state="success"] {
    color: rgba(174, 255, 174, 0.94);
}

.contact-form__status[data-state="error"] {
    color: rgba(255, 255, 255, 0.82);
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.contact-form__submit-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.contact-form__submit-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
    background: #00ff00;
    border-color: #00ff00;
    color: #0c0c0c;
    transform: translateY(-1px);
}

.contact-form__submit:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.contact-form__submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.contact-form__honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.academy-page__section--form .contact-form {
    margin-top: 20px;
}

@media (min-width: 921px) {
    .story-section--about {
        min-height: 100svh;
        padding-block: clamp(72px, 8vw, 104px);
        display: grid;
        align-items: center;
    }

    .story-section--about .story-section__inner {
        grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
        gap: clamp(36px, 5vw, 84px);
        align-items: center;
        min-height: calc(100svh - (2 * clamp(72px, 8vw, 104px)));
    }

    .story-section--about .story-section__intro {
        align-self: center;
        max-width: 30rem;
    }

    .story-section--about .story-section__title {
        max-width: min(100%, 17ch);
    }

    .story-section--about .story-section__body {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        align-content: center;
        max-width: 48rem;
    }

    .story-section--about .story-section__copy {
        max-width: 42rem;
    }

    .story-section--about .story-section__list,
    .story-section--about .story-section__principles,
    .story-section--about .coaches-module {
        grid-column: 1 / -1;
    }

    .story-section--about .story-section__list,
    .story-section--about .story-section__principles {
        gap: 16px 18px;
        margin-top: 2px;
    }

    .story-section--about .story-section__accordion {
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .story-section--about .story-section__list-item,
    .story-section--about .story-section__accordion-item {
        padding: 18px 0;
    }

    .story-section--about .story-section__accordion-item {
        grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1fr);
        gap: clamp(22px, 3vw, 42px);
        align-items: start;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .story-section--about .story-section__accordion-item:first-child {
        border-top: 0;
    }

    .story-section--about .story-section__accordion-summary {
        cursor: default;
    }

    .story-section--about .story-section__accordion-summary::after {
        display: none;
    }

    .story-section--about .story-section__principle-icon {
        width: 36px;
        height: 36px;
        border-color: rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.026);
        color: rgba(255, 255, 255, 0.68);
    }

    .story-section--about .story-section__accordion-item[open] .story-section__principle-icon {
        border-color: rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.026);
        color: rgba(255, 255, 255, 0.68);
    }

    .story-section--about .story-section__accordion-item:hover .story-section__list-label,
    .story-section--about .story-section__accordion-item:focus-within .story-section__list-label {
        color: var(--accent);
    }

    .story-section--about .story-section__accordion-item:hover .story-section__principle-icon,
    .story-section--about .story-section__accordion-item:focus-within .story-section__principle-icon,
    .story-section--about .story-section__accordion-item:active .story-section__principle-icon {
        border-color: var(--accent);
        background: var(--accent);
        color: #0c0c0c;
    }

    .story-section--about .story-section__list-copy {
        max-width: 32rem;
        padding-top: 3px;
    }

    .story-section--about .coaches-module {
        gap: 20px;
        margin-top: 10px;
    }

    .story-section--about .coaches-module__intro {
        max-width: 36rem;
        gap: 12px;
    }

    .story-section--about .coaches-grid {
        gap: 18px;
    }

    .story-section--about .coach-card {
        min-height: 0;
    }

    .story-section--about .coach-card__media,
    .story-section--about .coach-card__media--andreas-image {
        min-height: clamp(220px, 20vw, 264px);
    }

    .story-section--about .coach-card__body {
        gap: 8px;
        padding: 18px 18px 20px;
    }

    .story-section--join {
        min-height: 100svh;
        padding-block: clamp(72px, 8vw, 104px);
        display: grid;
        align-items: center;
    }

    .story-section--join::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 82% 18%, rgba(106, 31, 236, 0.17), transparent 34%);
        pointer-events: none;
        z-index: 1;
    }

    .story-section--join .story-section__inner {
        position: relative;
        z-index: 2;
    }

    .story-section--join .story-section__inner--split {
        align-items: center;
        min-height: calc(100svh - (2 * clamp(72px, 8vw, 104px)));
    }

    .story-section--join .story-section__intro,
    .story-section--join .join-hub {
        align-content: center;
    }

    .story-section--join .story-section__title {
        max-width: min(100%, 18ch);
    }

    .story-section--join .story-section__copy--lead,
    .story-section--join .join-hub__copy {
        max-width: 34rem;
    }
}

.contact-cta__button,
.contact-cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
}

.contact-cta__button {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #ffffff;
    color: #0c0c0c;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.contact-cta__button:hover,
.contact-cta__button:focus-visible {
    background: #00ff00;
    border-color: #00ff00;
    color: #0c0c0c;
    transform: translateY(-1px);
}

.contact-cta__button:focus-visible,
.contact-cta__link:focus-visible {
    outline: 2px solid rgba(12, 12, 12, 0.6);
    outline-offset: 4px;
}

.contact-cta__link {
    color: rgba(255, 255, 255, 0.76);
    transition: color var(--ease), transform var(--ease);
}

.contact-cta__link:hover,
.contact-cta__link:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
}

.academy-page {
    min-height: 100svh;
    padding: clamp(110px, 16vw, 150px) 24px 48px;
    background:
        radial-gradient(circle at 82% 24%, rgba(0, 255, 0, 0.08), transparent 22%),
        radial-gradient(circle at 20% 78%, rgba(106, 31, 236, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 14%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.94) 0%, rgba(12, 12, 12, 1) 100%);
}

.academy-page__inner {
    width: min(100%, 980px);
    min-height: calc(100svh - clamp(160px, 18vw, 204px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(28px, 5vw, 56px);
}

.academy-page__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.news-page__copy {
    width: 100%;
}

.news-feed {
    display: grid;
    gap: clamp(40px, 6vw, 68px);
    width: 100%;
    margin-top: clamp(34px, 5vw, 48px);
}

.news-article {
    width: 100%;
}

.news-article--archive {
    position: relative;
}

.news-article--archive::before {
    content: "";
    display: block;
    width: min(100%, 46rem);
    height: 1px;
    margin-bottom: clamp(40px, 5vw, 52px);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.news-article__header {
    display: grid;
    gap: 12px;
    max-width: 46rem;
}

.news-article__title {
    max-width: min(100%, 24ch);
}

.news-article__media {
    width: min(100%, 52rem);
    margin: 24px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.news-article__media img {
    display: block;
    width: 100%;
    height: auto;
}

.news-article__cta {
    max-width: 42rem;
}

.news-article__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.academy-page__eyebrow {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.academy-page__title {
    margin: 0;
    max-width: min(100%, 20ch);
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.034em;
    text-wrap: balance;
}

.academy-page__news-date {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    line-height: 1.5;
}

.academy-page__body {
    margin: 24px 0 0;
    max-width: 36rem;
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.08rem);
    line-height: 1.72;
}

.academy-page__list {
    display: grid;
    gap: 12px;
    width: 100%;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.academy-page__list li {
    position: relative;
    padding: 16px 18px;
    border: 1px solid transparent;
    border-left-color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.55;
    box-shadow: 0 0 18px rgba(0, 255, 0, 0);
    transition:
        background-color var(--ease),
        border-color var(--ease),
        box-shadow var(--ease),
        color var(--ease),
        transform var(--ease);
}

.academy-page__list li:hover,
.academy-page__list li:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.08);
    transform: translateX(2px);
}

.legal-policy .academy-page__list li {
    border-color: transparent;
    border-left-color: rgba(255, 255, 255, 0.18);
}

.legal-policy .privacy-policy__short-list li {
    border-left-color: var(--accent);
}

.legal-policy .academy-page__list li:hover,
.legal-policy .academy-page__list li:focus-within {
    border-color: var(--accent);
}

.academy-page__list-lead {
    color: var(--text);
    font-weight: 700;
}

.academy-page__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
    width: 100%;
    margin: 28px 0 0;
}

.academy-page__meta-card {
    display: block;
    align-self: start;
    min-height: 118px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition:
        border-color var(--ease),
        background-color var(--ease),
        transform var(--ease);
}

.academy-page__meta-card[open] {
    border-color: rgba(0, 255, 0, 0.44);
    background: rgba(255, 255, 255, 0.04);
}

.academy-page__meta-card:hover,
.academy-page__meta-card:focus-within,
.academy-page__meta-card:active {
    animation: academy-card-bounce 260ms cubic-bezier(0.22, 1, 0.36, 1);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.academy-page__meta-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 8px;
    min-width: 0;
    list-style: none;
    cursor: pointer;
}

.academy-page__meta-summary::-webkit-details-marker {
    display: none;
}

.academy-page__meta-summary:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 6px;
}

.academy-page__meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.9);
    transition:
        border-color var(--ease),
        background-color var(--ease),
        color var(--ease);
}

.academy-page__meta-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.academy-page__meta-icon img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(92%) opacity(0.95);
}

.academy-page__meta-card:hover .academy-page__meta-icon,
.academy-page__meta-card:focus-within .academy-page__meta-icon,
.academy-page__meta-card:active .academy-page__meta-icon,
.academy-page__meta-card[open] .academy-page__meta-icon {
    border-color: var(--accent);
    background: var(--accent);
    color: #0c0c0c;
}

.academy-page__meta-card:hover .academy-page__meta-icon img,
.academy-page__meta-card:focus-within .academy-page__meta-icon img,
.academy-page__meta-card:active .academy-page__meta-icon img,
.academy-page__meta-card[open] .academy-page__meta-icon img {
    filter: brightness(0) saturate(100%) invert(6%);
}

.academy-page__meta-label {
    margin: 0;
    align-self: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.academy-page__meta-value {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.academy-page__meta-indicator {
    display: block;
    width: 9px;
    height: 9px;
    margin-left: auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: rgba(255, 255, 255, 0.72);
    transform: translateY(-2px) rotate(45deg);
    transition:
        color var(--ease),
        transform var(--ease);
}

.academy-page__meta-indicator::before,
.academy-page__meta-indicator::after {
    display: none;
}

.academy-page__meta-card:hover .academy-page__meta-indicator,
.academy-page__meta-card:focus-within .academy-page__meta-indicator,
.academy-page__meta-card[open] .academy-page__meta-indicator {
    color: var(--accent);
}

.academy-page__meta-card[open] .academy-page__meta-indicator {
    transform: translateY(2px) rotate(225deg);
}

.academy-page__meta-details {
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.58;
}

.academy-page__section {
    width: 100%;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.academy-page__section--included {
    scroll-margin-top: calc(var(--header-height-sticky) + 28px);
}

.academy-page__section--steps {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1fr);
    column-gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.academy-page__section--steps .academy-page__section-head {
    max-width: 28rem;
}

.academy-page__section-head {
    display: grid;
    gap: 12px;
    max-width: 46rem;
}

.academy-page__section-head--compact {
    max-width: none;
}

.academy-page__section-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-self: start;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.64rem;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.academy-page__section-title {
    margin: 0;
    max-width: min(100%, 28ch);
    color: var(--text);
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.026em;
    text-wrap: balance;
}

.academy-page__section-title--compact {
    max-width: min(100%, 28ch);
    font-size: clamp(1.28rem, 2vw, 1.62rem);
}

.academy-page__section-copy {
    margin: 0;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.66;
}

.academy-page__section-copy--compact {
    max-width: 32rem;
    font-size: 0.94rem;
}

.academy-page__inline-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 0 14px rgba(0, 255, 0, 0.16);
    transition: color 180ms ease, text-shadow 180ms ease;
}

.academy-page__inline-link:hover,
.academy-page__inline-link:focus-visible {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
    text-shadow: 0 0 18px rgba(0, 255, 0, 0.24);
}

.academy-page__inline-link:focus-visible {
    outline: 1px solid var(--accent);
    outline-offset: 4px;
}

.academy-page__included-grid,
.academy-page__details-grid {
    display: grid;
    gap: 14px;
    width: 100%;
    margin-top: 18px;
}

.academy-page__included-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.academy-page__details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.academy-page__included-card,
.academy-page__section--compact {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 148px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition:
        border-color var(--ease),
        background-color var(--ease),
        transform var(--ease);
}

.academy-page__included-card:hover,
.academy-page__included-card:focus-within,
.academy-page__included-card:active {
    animation: academy-card-bounce 260ms cubic-bezier(0.22, 1, 0.36, 1);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.academy-page__included-grid .academy-page__included-card {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
}

.academy-page__included-grid .academy-page__included-icon {
    grid-column: 1;
    grid-row: 1;
}

.academy-page__included-grid .academy-page__included-name {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.academy-page__included-grid .academy-page__included-text,
.academy-page__included-grid .academy-page__mini-link {
    grid-column: 1 / -1;
}

.academy-page__included-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.026);
}

.academy-page__included-icon svg {
    display: block;
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.academy-page__included-card:hover .academy-page__included-icon,
.academy-page__included-card:focus-within .academy-page__included-icon,
.academy-page__included-card:active .academy-page__included-icon {
    border-color: var(--accent);
    background: var(--accent);
    color: #0c0c0c;
}

.academy-page__mini-link {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
    cursor: pointer;
    transition: color var(--ease), transform var(--ease);
}

.academy-page__mini-link::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(1px) rotate(45deg);
    transition: transform var(--ease);
}

.academy-page__mini-link:hover,
.academy-page__mini-link:focus-visible {
    color: var(--accent);
    transform: translateY(-1px);
}

.academy-page__mini-link:hover::after,
.academy-page__mini-link:focus-visible::after {
    transform: translate(2px, 1px) rotate(45deg);
}

.academy-page__mini-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 3px;
}

.academy-page__included-name {
    margin: 0;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.academy-page__included-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.94rem;
    line-height: 1.6;
}

.academy-page__training-list {
    display: grid;
    width: 100%;
    margin: 22px 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.academy-page__training-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color var(--ease), color var(--ease);
}

.academy-page__training-item:first-child {
    border-top: 0;
}

.academy-page__training-number {
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.45;
    transition: color var(--ease), transform var(--ease);
}

.academy-page__training-content {
    display: grid;
    gap: 7px;
}

.academy-page__training-name {
    margin: 0;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    transition: color var(--ease);
}

.academy-page__training-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.6;
}

.academy-page__training-item:hover,
.academy-page__training-item:focus-within {
    border-top-color: rgba(0, 255, 0, 0.34);
}

.academy-page__training-item:hover .academy-page__training-number,
.academy-page__training-item:focus-within .academy-page__training-number,
.academy-page__training-item:hover .academy-page__training-name,
.academy-page__training-item:focus-within .academy-page__training-name {
    color: var(--accent);
}

.academy-page__training-item:hover .academy-page__training-number,
.academy-page__training-item:focus-within .academy-page__training-number {
    transform: translateX(2px);
}

.academy-gallery {
    width: min(calc(100% - 32px), 820px);
    max-height: min(88svh, 780px);
    margin: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: #0c0c0c;
    color: var(--text);
    overflow: auto;
    overscroll-behavior: contain;
}

.academy-gallery::backdrop {
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.academy-gallery__shell {
    position: relative;
    display: grid;
    gap: 12px;
    padding: clamp(14px, 2.4vw, 22px);
    background:
        radial-gradient(circle at 12% 8%, rgba(0, 255, 0, 0.16), transparent 32%),
        radial-gradient(circle at 86% 92%, rgba(106, 31, 236, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

.academy-gallery__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 42px;
    position: relative;
    z-index: 2;
}

.academy-gallery__brandmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 28px;
}

.academy-gallery__brandmark::before {
    content: "";
    display: block;
    width: 12px;
    height: 24px;
    background: var(--accent);
    -webkit-mask: url("../assets/svg/fb_ico.svg") center / 12px 24px no-repeat;
    mask: url("../assets/svg/fb_ico.svg") center / 12px 24px no-repeat;
    opacity: 0.92;
}

.academy-gallery__brandmark img {
    display: none;
}

.academy-gallery__close {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
}

.academy-gallery__close span,
.academy-gallery__close span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 1px;
    background: currentColor;
    content: "";
}

.academy-gallery__close span {
    transform: translate(-50%, -50%) rotate(45deg);
}

.academy-gallery__close span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.academy-gallery__close:hover,
.academy-gallery__close:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
}

.academy-gallery__close:focus-visible,
.academy-gallery__control:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.academy-gallery__viewport {
    position: relative;
    z-index: 1;
    min-height: clamp(380px, 54vw, 560px);
}

.academy-gallery__slide {
    min-height: inherit;
}

.academy-gallery__slide[hidden] {
    display: none;
}

.academy-gallery__figure {
    display: grid;
    min-height: inherit;
    margin: 0;
    place-items: center;
    position: relative;
}

.academy-gallery__image {
    display: block;
    width: min(100%, 700px);
    max-height: min(62vh, 540px);
    object-fit: contain;
    filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.42));
}

.academy-gallery__image--matchkit {
    width: min(100%, 640px);
}

.academy-gallery__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.academy-gallery__control {
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color var(--ease), color var(--ease), background-color var(--ease);
}

.academy-gallery__control:hover,
.academy-gallery__control:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
}

.academy-gallery__control[aria-pressed="true"] {
    border-color: var(--accent);
    background: rgba(0, 255, 0, 0.08);
    color: var(--accent);
}

.academy-gallery__count {
    min-width: 3.8rem;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}

.academy-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.academy-page__cta--secondary {
    border-color: rgba(255, 255, 255, 0.12);
    background: transparent;
}

.academy-page__cta--ghost {
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.74);
}

.academy-page__cta:hover,
.academy-page__cta:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.academy-page__cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

:is(.hero__cta, .academy-preview__cta, .academy-page__cta, .summer-camp-preview__cta, .mobile-sticky-cta) {
    --cta-arrow-size: 0.62rem;
    --cta-arrow-stroke: 2px;
    --cta-arrow-right: 20px;
    --cta-arrow-shift: 0;
    position: relative;
    padding-inline-end: calc(var(--cta-arrow-right) + var(--cta-arrow-size) + 18px);
}

:is(.hero__cta, .academy-preview__cta, .academy-page__cta, .summer-camp-preview__cta, .mobile-sticky-cta)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: var(--cta-arrow-right);
    width: var(--cta-arrow-size);
    height: var(--cta-arrow-size);
    border-top: var(--cta-arrow-stroke) solid currentColor;
    border-right: var(--cta-arrow-stroke) solid currentColor;
    transform: translate3d(var(--cta-arrow-shift), -50%, 0) rotate(45deg);
    transform-origin: center;
    transition: transform var(--ease), border-color var(--ease);
    pointer-events: none;
}

:is(.hero__cta, .academy-preview__cta, .academy-page__cta, .summer-camp-preview__cta, .mobile-sticky-cta):hover::before,
:is(.hero__cta, .academy-preview__cta, .academy-page__cta, .summer-camp-preview__cta, .mobile-sticky-cta):focus-visible::before {
    --cta-arrow-shift: 3px;
}

.academy-page-shell {
    background: #0c0c0c;
}

.academy-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: clip;
    isolation: isolate;
    background: #0c0c0c;
}

.academy-hero__media,
.academy-hero__media::before,
.academy-hero__media::after {
    position: absolute;
    inset: 0;
}

.academy-hero__media {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(12, 12, 12, 0.18) 0%, rgba(12, 12, 12, 0.42) 58%, #0c0c0c 100%),
        url("../assets/images/hero01.jpg");
    background-position: center;
    background-size: cover;
}

.academy-hero__media::before,
.academy-hero__media::after {
    content: "";
    pointer-events: none;
}

.academy-hero__media::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(12, 12, 12, 0.78) 0%, rgba(12, 12, 12, 0.42) 46%, rgba(12, 12, 12, 0.12) 100%),
        radial-gradient(circle at 18% 38%, rgba(0, 255, 0, 0.12), transparent 34%);
}

.academy-hero__media::after {
    z-index: 2;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.18) 0%, rgba(12, 12, 12, 0.42) 58%, #0c0c0c 100%);
}

.academy-hero__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.96) contrast(1.04) brightness(0.88);
}

.academy-hero__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: clamp(132px, 18vh, 188px) 24px clamp(96px, 16vh, 148px);
}

.academy-hero__content {
    width: min(100%, 54rem);
    display: grid;
    justify-items: start;
    gap: 18px;
}

.academy-hero__eyebrow,
.academy-hero__status {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.academy-hero__eyebrow {
    color: var(--accent);
    text-shadow: 0 0 18px rgba(0, 255, 0, 0.24);
}

.academy-hero__status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(106, 31, 236, 0.72);
    background: rgba(106, 31, 236, 0.24);
    color: rgba(246, 240, 255, 0.98);
}

.academy-hero__title {
    margin: 0;
    max-width: min(100%, 9.4em);
    font-size: clamp(3rem, 8vw, 6.4rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.048em;
    text-wrap: balance;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
}

.academy-hero__copy {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.14rem);
    line-height: 1.66;
    text-wrap: pretty;
}

.academy-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.academy-page-shell .academy-page {
    position: relative;
    isolation: isolate;
    min-height: 0;
    padding: 0 24px 64px;
    background:
        linear-gradient(180deg, #0c0c0c 0%, rgba(12, 12, 12, 0.98) 8rem, rgba(12, 12, 12, 0) 18rem),
        radial-gradient(circle at 4% 44%, rgba(0, 255, 0, 0.2), transparent 27%),
        linear-gradient(90deg, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.99) 42%, rgba(8, 8, 8, 0.94) 68%, rgba(8, 8, 8, 0.88) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(12, 12, 12, 1) 100%);
    background-repeat: no-repeat;
    background-size: cover, auto, cover, cover;
    background-position: center top, 4% 44%, center center, center center;
}

.academy-page-shell .academy-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 2% 48%, rgba(0, 255, 0, 0.15), transparent 27%),
        radial-gradient(circle at 92% 76%, rgba(106, 31, 236, 0.15), transparent 27%),
        linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.88) 42%, rgba(8, 8, 8, 0.72) 68%, rgba(8, 8, 8, 0.56) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6rem, rgba(0, 0, 0, 1) 17rem);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6rem, rgba(0, 0, 0, 1) 17rem);
    pointer-events: none;
    z-index: 0;
}

.academy-page-shell .academy-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.04) 0 1px, transparent 1px);
    background-size: 3px 3px, 5px 5px;
    mix-blend-mode: overlay;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.academy-page-shell .academy-page__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    min-height: 0;
    align-items: start;
}

.academy-page-shell .academy-page__meta {
    margin-top: 0;
}

.academy-page-shell .academy-page__section {
    margin-top: 42px;
    padding-top: 38px;
}

.academy-page-shell .academy-page__section--intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
}

.academy-page-shell .academy-page__section--intro .academy-page__section-head {
    grid-column: 1;
    max-width: 34rem;
}

.academy-page-shell .academy-page__section--intro .academy-page__section-kicker {
    grid-column: auto;
}

.academy-page-shell .academy-page__section--intro .academy-page__section-kicker::before {
    content: "";
    width: 8px;
    height: 16px;
    margin-right: 9px;
    flex: 0 0 8px;
    background: var(--accent);
    -webkit-mask: url("../assets/svg/fb_ico.svg") center / 8px 16px no-repeat;
    mask: url("../assets/svg/fb_ico.svg") center / 8px 16px no-repeat;
    opacity: 0.92;
}

.academy-page-shell .academy-page__section--intro .academy-page__section-title {
    grid-column: auto;
    grid-row: auto;
}

.academy-page-shell .academy-page__section--intro .academy-page__section-copy {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
}

.academy-page-shell .academy-page__section--intro .academy-page__training-list {
    grid-column: 2;
    align-self: start;
    margin-top: 4px;
}

.academy-page__cta--primary {
    border-color: var(--accent);
    background: var(--accent);
    color: #0c0c0c;
}

.academy-page__cta--primary:hover,
.academy-page__cta--primary:focus-visible {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.academy-page__inline-action {
    margin-top: 22px;
}

.academy-page__steps {
    position: relative;
    display: grid;
    gap: 0;
    margin-top: 22px;
    padding: 2px 0;
}

.academy-page__steps::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 54px;
    width: 1px;
    background: linear-gradient(180deg, rgba(0, 255, 0, 0.86), rgba(0, 255, 0, 0.12));
}

.academy-page__step {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
    column-gap: 16px;
    row-gap: 8px;
    min-height: 0;
    padding: 0 0 30px;
}

.academy-page__step:last-child {
    padding-bottom: 0;
}

.academy-page__step::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 47px;
    width: 15px;
    height: 15px;
    border: 1px solid var(--accent);
    background: #0c0c0c;
    box-shadow: 0 0 0 5px #0c0c0c;
}

.academy-page__step::after {
    content: "";
    position: absolute;
    top: calc(0.2rem + 4px);
    left: 51px;
    width: 7px;
    height: 7px;
    background: var(--accent);
    opacity: 0;
    transform: scale(0.6);
    transition:
        opacity var(--ease),
        transform var(--ease);
}

.academy-page__step:hover::after,
.academy-page__step:focus-within::after {
    opacity: 1;
    transform: scale(1);
}

.academy-page__step-number {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin: 0;
    padding-top: 1px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.academy-page__step-title {
    grid-column: 2;
    margin: 0;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.academy-page__step-copy {
    grid-column: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.6;
}

.academy-page__step:hover .academy-page__step-title,
.academy-page__step:focus-within .academy-page__step-title {
    color: var(--accent);
}

@media (max-width: 768px) {
    .academy-hero {
        min-height: 92svh;
    }

    .academy-hero__media::before {
        background:
            linear-gradient(180deg, rgba(12, 12, 12, 0.34) 0%, rgba(12, 12, 12, 0.38) 34%, rgba(12, 12, 12, 0.76) 100%),
            radial-gradient(circle at 28% 44%, rgba(0, 255, 0, 0.1), transparent 36%);
    }

    .academy-hero__video {
        object-position: 52% center;
    }

    .academy-hero__inner {
        padding: 116px 22px 76px;
        align-self: end;
    }

    .academy-hero__content {
        width: min(100%, 33rem);
        gap: 14px;
    }

    .academy-hero__title {
        max-width: min(100%, 12ch);
        font-size: clamp(2.55rem, 13vw, 4.4rem);
    }

    .academy-hero__copy {
        max-width: 29rem;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .academy-hero__actions {
        width: 100%;
        margin-top: 6px;
    }

    .academy-hero__actions .academy-page__cta {
        width: 100%;
    }

    .academy-page__included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .academy-gallery {
        width: min(calc(100% - 20px), 680px);
        height: min(760px, calc(100svh - 20px));
        max-height: calc(100svh - 20px);
        overflow: hidden;
    }

    .academy-gallery__shell {
        grid-template-rows: auto minmax(0, 1fr) auto;
        height: 100%;
        padding: 14px;
    }

    .academy-gallery__head {
        min-height: 38px;
    }

    .academy-gallery__viewport {
        min-height: 0;
        overflow: hidden;
    }

    .academy-gallery__slide,
    .academy-gallery__figure {
        min-height: 0;
        height: 100%;
    }

    .academy-gallery__figure {
        align-content: center;
        padding: 4px 0 18px;
    }

    .academy-gallery__image {
        width: 100%;
        max-width: none;
        max-height: calc(100svh - 150px);
    }

    .academy-gallery__image--matchkit {
        width: 100%;
    }

    .academy-page-shell .academy-page {
        padding-inline: 22px;
        padding-bottom: 46px;
        background:
            linear-gradient(180deg, #0c0c0c 0%, rgba(12, 12, 12, 0.98) 6rem, rgba(12, 12, 12, 0) 14rem),
            radial-gradient(circle at 12% 30%, rgba(0, 255, 0, 0.14), transparent 22%),
            linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(12, 12, 12, 1) 100%);
        background-position: center top, 12% 30%, center center;
    }

    .academy-page-shell .academy-page::before {
        background:
            radial-gradient(circle at 8% 34%, rgba(0, 255, 0, 0.11), transparent 22%),
            radial-gradient(circle at 94% 82%, rgba(106, 31, 236, 0.13), transparent 22%),
            linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.58) 44%, rgba(8, 8, 8, 0.82) 100%);
        -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 4.5rem, rgba(0, 0, 0, 1) 13rem);
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 4.5rem, rgba(0, 0, 0, 1) 13rem);
    }

    .academy-page-shell .academy-page::after {
        opacity: 0.3;
    }

    .academy-page-shell .academy-page__section--intro,
    .academy-page-shell .academy-page__section--intro .academy-page__section-head,
    .academy-page__section--steps,
    .academy-page__steps {
        grid-template-columns: 1fr;
    }

    .academy-page-shell .academy-page__section--intro .academy-page__section-kicker,
    .academy-page-shell .academy-page__section--intro .academy-page__section-title,
    .academy-page-shell .academy-page__section--intro .academy-page__section-copy {
        grid-column: auto;
        grid-row: auto;
    }

    .academy-page-shell .academy-page__section--intro .academy-page__training-list {
        grid-column: auto;
        margin-top: 8px;
    }

    .academy-page__step {
        min-height: 0;
    }

    .academy-page__section--steps .academy-page__section-head {
        max-width: none;
    }

    .academy-page__steps {
        margin-top: 22px;
    }
}

@media (max-width: 480px) {
    .academy-hero__inner {
        padding: 104px 18px 64px;
    }

    .academy-hero__title {
        font-size: clamp(2.3rem, 12vw, 3.2rem);
    }

    .academy-page-shell .academy-page {
        padding-inline: 18px;
    }

    .academy-gallery__close {
        width: 38px;
        height: 38px;
    }

    .academy-gallery {
        width: calc(100% - 16px);
        height: min(680px, calc(100svh - 16px));
        max-height: calc(100svh - 16px);
    }

    .academy-gallery__shell {
        padding: 12px;
    }

    .academy-gallery__head {
        min-height: 36px;
    }

    .academy-gallery__figure {
        padding-bottom: 16px;
    }

    .academy-gallery__image {
        max-height: calc(100svh - 138px);
    }

    .academy-gallery__controls {
        gap: 7px;
    }

    .academy-gallery__control {
        min-height: 32px;
        padding-inline: 10px;
        font-size: 0.62rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js .hero__content > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .academy-hero__video {
        display: none;
    }

    .academy-preview__content {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .summer-camp-preview,
    .summer-camp-preview__bg,
    .summer-camp-preview__visual,
    .summer-camp-preview__image,
    .summer-camp-preview__content > * {
        transform: none;
        transition: none;
        will-change: auto;
    }

    .summer-camp-preview__video {
        display: none;
    }

    .summer-camp-hero__video {
        display: none;
    }

    .hero-carousel__line,
    .hero-carousel__label {
        transition: none;
    }

    .hero-carousel__item.is-active .hero-carousel__line::after {
        animation: none;
        transform: scaleX(1);
    }
}

@media (max-width: 1280px) {
    .hero__inner {
        padding-inline: 32px;
    }

    .hero__title {
        max-width: min(100%, 18ch);
        font-size: clamp(2.7rem, 5vw, 4.1rem);
    }

    .hero__copy {
        max-width: 38rem;
    }

    .academy-preview__content-shell {
        padding: 60px 28px 24px 32px;
    }

    .academy-preview__content {
        width: min(100%, 35rem);
    }

    .academy-preview__title {
        max-width: min(100%, 22ch);
        font-size: clamp(2rem, 2.95vw, 2.8rem);
    }

    .academy-preview__copy {
        max-width: 31rem;
        font-size: 0.96rem;
    }

    .academy-preview__strip-item {
        min-height: 156px;
    }

    .summer-camp-hero__inner {
        padding-inline: 32px;
    }

    .summer-camp-hero__title {
        font-size: clamp(3rem, 7.5vw, 6rem);
    }

    .story-section__inner,
    .story-section__inner--split {
        gap: clamp(24px, 4vw, 52px);
    }

    .academy-page__inner {
        gap: clamp(24px, 4vw, 44px);
    }
}

@media (max-width: 1100px) {
    .site-header {
        padding-inline: 18px;
    }

    .site-footer__inner {
        padding-inline: 22px;
    }

    .nav-shell {
        gap: 18px;
    }

    .site-nav__panel {
        gap: 24px;
    }

    .site-nav__list {
        gap: 18px;
    }

    .hero__inner {
        padding: clamp(116px, 16vh, 150px) 28px clamp(132px, 18vh, 158px);
    }

    .hero__title {
        max-width: min(100%, 18ch);
        font-size: clamp(2.55rem, 4.7vw, 3.7rem);
    }

    .hero__copy {
        max-width: 34rem;
        font-size: 0.98rem;
    }

    .summer-camp-hero__meta {
        grid-template-columns: 1fr;
        width: min(100%, 30rem);
    }

    .academy-preview {
        background:
            linear-gradient(90deg, rgba(7, 7, 7, 1) 0%, rgba(7, 7, 7, 1) 48%, rgba(255, 255, 255, 1) 48%, rgba(255, 255, 255, 1) 100%);
    }

    .academy-preview__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }

    .academy-preview__content-shell {
        padding: 56px 24px 20px 28px;
    }

    .academy-preview__content {
        width: min(100%, 32rem);
    }

    .academy-preview__eyebrow {
        min-height: 26px;
        font-size: 0.68rem;
    }

    .academy-preview__title {
        max-width: min(100%, 22ch);
        font-size: clamp(1.95rem, 2.7vw, 2.55rem);
    }

    .academy-preview__copy {
        max-width: 29rem;
        margin-top: 14px;
        line-height: 1.58;
    }

    .academy-preview__strip {
        gap: 10px;
        margin-top: 18px;
    }

    .academy-preview__strip-item {
        min-height: 148px;
        padding: 14px;
    }

    .academy-preview__strip-value {
        font-size: 0.92rem;
    }

    .academy-preview__cta {
        min-height: 50px;
        margin-top: 20px;
        padding-inline: 22px;
    }

    .summer-camp-hero__inner {
        padding: clamp(112px, 16vh, 150px) 28px clamp(56px, 9vh, 86px);
    }

    .summer-camp-hero__content {
        width: min(100%, 50rem);
    }

    .summer-camp-hero__title {
        max-width: min(100%, 13ch);
        font-size: clamp(2.7rem, 7.2vw, 5rem);
    }

    .summer-camp-hero__copy {
        max-width: 36rem;
    }

    .summer-camp-hero__benefits {
        gap: 14px;
        margin-top: 36px;
    }

    .summer-camp-hero__benefit-icon {
        width: 58px;
        height: 58px;
    }

    .summer-camp-hero__benefit-title {
        font-size: 0.72rem;
    }

    .summer-camp-hero__benefit-text {
        font-size: 0.81rem;
    }

    .summer-camp-hero__benefit-separator img {
        width: 34px;
        height: 136px;
    }

    .story-section {
        padding-block: clamp(76px, 10vw, 108px);
    }

    .story-section__title,
    .contact-cta__title {
        max-width: min(100%, 18ch);
        font-size: clamp(2rem, 4.2vw, 3.4rem);
    }

    .story-section__copy,
    .join-hub__copy {
        font-size: 0.98rem;
        line-height: 1.64;
    }

    .coaches-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .academy-page {
        padding-top: clamp(96px, 11vw, 132px);
    }

    .academy-page__title {
        max-width: min(100%, 20ch);
        font-size: clamp(2.2rem, 4vw, 3.6rem);
    }
}
@media (max-width: 920px) {
    .site-header {
        padding-inline: 16px;
    }

    .site-footer__inner {
        padding-inline: 20px;
    }

    .site-footer__content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer__group {
        padding-block: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-footer__group:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .site-footer__credit {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__credit-brand {
        justify-content: flex-start;
    }

    .nav-shell {
        min-height: 72px;
        gap: 12px;
    }

    .mobile-sticky-cta {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        margin-left: auto;
        padding: 0 12px;
        overflow: hidden;
        isolation: isolate;
        border: 1px solid var(--accent);
        background: var(--accent);
        color: #050505;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        line-height: 1;
        text-decoration: none;
        text-transform: uppercase;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-4px);
        transition:
            opacity var(--ease),
            visibility var(--ease),
            transform var(--ease),
            background-color var(--ease),
            border-color var(--ease),
            color var(--ease),
            box-shadow var(--ease);
    }

    .mobile-sticky-cta::after {
        content: "";
        position: absolute;
        inset: 0 auto 0 -100%;
        width: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
        transition: left 0.5s ease;
        z-index: -1;
    }

    .site-header.is-sticky .mobile-sticky-cta {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        box-shadow: none;
    }

    .mobile-sticky-cta:hover,
    .mobile-sticky-cta:focus-visible {
        background: transparent;
        color: var(--accent);
    }

    .mobile-sticky-cta:hover::after,
    .mobile-sticky-cta:focus-visible::after,
    .mobile-sticky-cta.is-swipe-active::after {
        left: 100%;
    }

    body.is-menu-open .mobile-sticky-cta {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible,
    .site-header.is-sticky .nav-toggle,
    .site-header.is-sticky .nav-toggle:hover,
    .site-header.is-sticky .nav-toggle:focus-visible {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .nav-toggle span {
        width: 24px;
        height: 3.5px;
    }

    .nav-toggle span:nth-child(1) {
        top: 10px;
    }

    .nav-toggle span:nth-child(2) {
        top: 18px;
    }

    .nav-toggle span:nth-child(3) {
        top: 26px;
    }

    .nav-toggle.is-active span:nth-child(1),
    .nav-toggle.is-active span:nth-child(3) {
        top: 18px;
    }

    .site-header.is-sticky .nav-toggle span {
        background: var(--accent);
        box-shadow: 0 0 12px var(--color-primary-glow);
    }

    .summer-camp-hero__video--desktop {
        display: none;
    }

    .summer-camp-hero__video--mobile {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: var(--mobile-nav-offset);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        display: flex;
        align-items: stretch;
        justify-content: flex-end;
        background: rgba(6, 6, 6, 0.28);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity var(--duration-base) ease, visibility var(--duration-base) ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav__panel {
        width: 100%;
        min-height: calc(100dvh - var(--mobile-nav-offset));
        padding: 24px 24px 28px;
        background:
            radial-gradient(circle at top center, rgba(0, 255, 0, 0.08), transparent 28%),
            radial-gradient(circle at 84% 12%, rgba(106, 31, 236, 0.14), transparent 22%),
            linear-gradient(180deg, rgba(18, 18, 18, 0.96) 0%, rgba(12, 12, 12, 0.99) 100%);
        box-shadow: -24px 0 64px rgba(0, 0, 0, 0.42);
        transform: translateX(100%);
        transition: transform var(--duration-slow) cubic-bezier(0.22, 1, 0.36, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
    }

    body.is-menu-open .site-nav {
        background: #0c0c0c;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.is-menu-open .site-nav__panel {
        background: #0c0c0c;
        box-shadow: none;
    }

    .site-nav.is-open .site-nav__panel {
        transform: translateX(0);
    }

    .js-gsap-motion .site-nav,
    .js-gsap-motion .site-nav__panel,
    .js-gsap-motion .site-nav__link,
    .js-gsap-motion .site-nav__meta {
        transition: none;
    }

    .js-gsap-motion .site-nav__panel,
    .js-gsap-motion .site-nav__link,
    .js-gsap-motion .site-nav__meta {
        will-change: transform, opacity;
    }

    .site-nav__list {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: auto 0;
        text-align: center;
    }

    .site-nav__list li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .site-nav__item--dropdown {
        flex-direction: column;
        gap: 2px;
    }

    .site-nav__dropdown-trigger::before {
        width: 7px;
        height: 7px;
        transform: translateY(-3px) rotate(45deg);
    }

    .site-nav__dropdown {
        position: static;
        display: flex;
        justify-content: center;
        min-width: 0;
        width: auto;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .site-nav__dropdown::before {
        display: none;
    }

    .site-nav__dropdown::after {
        display: none;
    }

    .site-nav__item--dropdown:hover .site-nav__dropdown,
    .site-nav__item--dropdown:has(.site-nav__dropdown-trigger:focus-visible) .site-nav__dropdown,
    .site-nav__item--dropdown:has(.site-nav__dropdown-link:focus-visible) .site-nav__dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .site-nav__dropdown-link {
        display: inline-flex;
        visibility: visible;
        pointer-events: auto;
        gap: 9px;
        min-height: 44px;
        padding: 4px 18px;
        background: transparent;
        color: rgba(255, 255, 255, 0.66);
        font-size: 0.9rem;
        letter-spacing: 0.12em;
    }

    .site-nav__dropdown-link::before {
        content: "";
        width: 7px;
        height: 7px;
        border-right: 1px solid var(--accent);
        border-bottom: 1px solid var(--accent);
        transform: rotate(-45deg);
        transition: transform var(--ease), opacity var(--ease);
        opacity: 0.9;
    }

    .site-nav__dropdown-link:hover,
    .site-nav__dropdown-link:focus-visible,
    .site-nav__dropdown-link:active,
    .site-nav__dropdown-link.is-active {
        background: transparent;
        color: var(--accent);
        text-shadow: 0 0 12px rgba(0, 255, 0, 0.16);
        transform: none;
    }

    .js-gsap-motion .site-nav__dropdown-link {
        transform: none !important;
    }

    .site-nav__dropdown-link::after {
        display: none;
    }

    .site-nav__link,
    .site-nav__meta {
        opacity: 0;
        transform: translateX(24px);
        transition:
            transform var(--duration-slow) cubic-bezier(0.22, 1, 0.36, 1),
            opacity var(--duration-base) ease;
    }

    .site-nav.is-open .site-nav__link,
    .site-nav.is-open .site-nav__meta {
        opacity: 1;
        transform: translateX(0);
    }

    .site-nav.is-open .site-nav__list li:nth-child(1) .site-nav__link {
        transition-delay: 70ms;
    }

    .site-nav.is-open .site-nav__list li:nth-child(2) .site-nav__link {
        transition-delay: 110ms;
    }

    .site-nav.is-open .site-nav__list li:nth-child(3) .site-nav__link {
        transition-delay: 150ms;
    }

    .site-nav.is-open .site-nav__list li:nth-child(4) .site-nav__link {
        transition-delay: 190ms;
    }

    .site-nav.is-open .site-nav__list li:nth-child(5) .site-nav__link {
        transition-delay: 230ms;
    }

    .site-nav.is-open .site-nav__list li:nth-child(6) .site-nav__link {
        transition-delay: 270ms;
    }

    .site-nav.is-open .site-nav__meta {
        transition-delay: 310ms;
    }

    .site-nav__link {
        min-height: 52px;
        font-size: clamp(1.35rem, 6.5vw, 1.95rem);
        font-weight: 700;
        letter-spacing: 0.05em;
    }

    .site-nav__link::after {
        left: 50%;
        bottom: 4px;
        width: 28px;
        transform: translateX(-50%);
        transform-origin: center;
    }

    .site-nav__link:hover::after,
    .site-nav__link:focus-visible::after {
        opacity: 1;
    }

    .site-nav__link--cta {
        min-height: 52px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-nav__link--cta::after {
        display: block;
    }

    .site-nav__link--cta:hover,
    .site-nav__link--cta:focus-visible {
        border: 0;
        background: transparent;
    }

    .site-nav__meta {
        width: 100%;
        justify-content: center;
        gap: 0;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

        .lang-toggle {
        padding: 3px;
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .lang-toggle__button {
        min-width: 46px;
        padding: 10px 13px;
    }
}

@media (min-width: 921px) {
    html[lang="sv"] .academy-preview__title {
        max-width: min(100%, 22ch);
    }

    .academy-preview__media {
        min-height: 0;
    }

    .academy-preview__content-shell {
        justify-content: flex-start;
        padding: 68px 34px 24px 56px;
    }

    .academy-preview__content-shell::after {
        background-position: left top, 100% center;
    }

    .academy-preview__frame {
        min-height: 0;
    }

    .academy-preview__content {
        width: min(100%, 38rem);
    }

    .academy-preview__title {
        max-width: min(100%, 22ch);
        font-size: clamp(2.05rem, 2.75vw, 2.85rem);
    }

    .academy-preview__copy {
        max-width: 33rem;
        margin-top: 18px;
        font-size: 0.98rem;
        line-height: 1.62;
    }

    .academy-preview__strip {
        margin-top: 24px;
    }

    .academy-preview__strip-item {
        min-height: 160px;
    }

    .brand-mark {
        transform: translateY(0);
    }

    .brand-mark img {
        height: 41px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(6, 6, 6, 0.56) 0%, rgba(6, 6, 6, 0.24) 16%, rgba(6, 6, 6, 0.06) 30%, rgba(6, 6, 6, 0) 42%),
            linear-gradient(180deg, rgba(12, 12, 12, 0.14) 0%, rgba(12, 12, 12, 0.26) 24%, rgba(12, 12, 12, 0.42) 60%, rgba(12, 12, 12, 0.74) 100%),
            linear-gradient(96deg, rgba(12, 12, 12, 0.58) 0%, rgba(12, 12, 12, 0.24) 45%, rgba(12, 12, 12, 0.56) 100%);
    }

    .hero__bg {
        background-position: center 18%;
    }

    .hero__bg--01 {
        background-position: center 54%;
    }

    .hero__inner {
        padding-inline: 40px;
    }

    .hero__title {
        max-width: min(100%, 18ch);
    }

    html[lang="sv"] .hero__title {
        max-width: min(100%, 19ch);
    }
}

@media (max-width: 640px) {
    .site-header {
        padding-top: 14px;
    }

    .mobile-sticky-cta {
        min-height: 32px;
        padding: 0 10px;
        font-size: 0.56rem;
        letter-spacing: 0.12em;
    }

    .brand-mark img {
        height: 33px;
    }

    .site-nav__panel {
        min-height: calc(100dvh - var(--mobile-nav-offset-sm));
        padding: 18px 18px 24px;
    }

    .site-nav__list {
        gap: 10px;
    }

    .site-nav__link {
        min-height: 52px;
        font-size: clamp(1.35rem, 6.5vw, 1.95rem);
        font-weight: 700;
        letter-spacing: 0.05em;
    }

    .site-nav__meta {
        justify-content: center;
    }

    .site-nav {
        top: var(--mobile-nav-offset-sm);
    }

    .hero__bg {
        background-position: 56% center;
    }

    .hero__bg--01 {
        background-position: center 58%;
    }

    .hero__bg--02 {
        background-position: 32% center;
    }

    .hero__bg--03 {
        background-position: 58% 28%;
    }

    .hero__bg--04 {
        background-position: 42% center;
    }

    .hero__bg--05 {
        background-position: 38% center;
    }

    .hero__inner {
        padding: 118px 24px 164px;
    }

    .hero__content {
        max-width: 380px;
    }

    .hero__eyebrow {
        margin-bottom: 18px;
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }

    .hero__title {
        max-width: min(100%, 18ch);
        font-size: clamp(2.6rem, 10.4vw, 3.05rem);
        line-height: 1.02;
        letter-spacing: -0.034em;
    }

    .hero__copy {
        max-width: 21rem;
        margin-top: 18px;
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .hero__meta,
    .summer-camp-preview__meta {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero__meta-item,
    .summer-camp-preview__meta-item {
        align-items: flex-start;
    }

    .hero__meta-item {
        display: grid;
        grid-template-columns: 2.5rem auto;
        align-items: center;
        justify-content: initial;
        column-gap: 14px;
        width: 100%;
        text-align: left;
    }

    .hero__meta-copy {
        text-align: left;
    }

    .hero--campaign .hero__inner {
        padding: 118px 24px 164px;
    }

    .hero--campaign .hero__content {
        max-width: 30rem;
    }

    .hero__meta,
    .summer-camp-preview__meta {
        width: min(100%, 32rem);
        margin-bottom: 22px;
        gap: 12px 18px;
    }

    .hero__meta {
        width: max-content;
        max-width: 100%;
        justify-items: stretch;
    }

    .hero__meta-icon,
    .summer-camp-preview__meta-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hero__meta-value,
    .summer-camp-preview__meta-value {
        font-size: clamp(0.95rem, 2vw, 1.2rem);
    }

    .hero--campaign .hero__title {
        max-width: min(100%, 8.5ch);
        font-size: clamp(3.05rem, 17vw, 4.8rem);
        line-height: 0.84;
    }

    .hero--campaign .hero__copy {
        max-width: 21rem;
        margin-top: 12px;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .hero__cta {
        width: auto;
        min-width: 236px;
        min-height: 48px;
        margin-top: 22px;
        padding: 0 24px;
    }

    .hero-carousel {
        bottom: 14px;
        padding-inline: 18px;
    }

    .hero-carousel__inner {
        width: min(100%, 34rem);
    }

    .hero-carousel__track {
        grid-auto-columns: minmax(92px, 1fr);
        grid-auto-flow: column;
        grid-template-columns: none;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .hero-carousel__track::-webkit-scrollbar {
        display: none;
    }

    .hero-carousel__item {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 8px;
        min-height: 46px;
        padding: 13px 6px 0 0;
    }

    .hero-carousel__icon {
        width: 30px;
        height: 30px;
    }

    .hero-carousel__icon svg {
        width: 15px;
        height: 15px;
    }

    .hero-carousel__label {
        font-size: 0.56rem;
    }

    .academy-preview {
        height: auto;
        min-height: 100svh;
        background: #ffffff;
    }

    .academy-preview__inner {
        grid-template-columns: 1fr;
        min-height: 100svh;
        height: auto;
    }

    .academy-preview__media {
        position: relative;
        min-height: 58svh;
    }

    .academy-preview__media::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -1px;
        left: 0;
        display: block;
        height: clamp(92px, 24vw, 150px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.36) 42%, rgba(255, 255, 255, 0.82) 74%, #ffffff 100%);
        pointer-events: none;
        z-index: 2;
    }

    .academy-preview__frame {
        min-height: min(58svh, 30rem);
    }

    .academy-preview__content-shell {
        min-height: 42svh;
        padding: 24px 16px 36px;
        background: #ffffff;
    }

    .academy-preview__content-shell::after {
        display: none;
    }

    .academy-preview__content {
        width: 100%;
        max-width: none;
    }

    .academy-preview__title {
        max-width: min(100%, 22ch);
        font-size: clamp(1.74rem, 7.8vw, 2.18rem);
        line-height: 1;
    }

    html[lang="sv"] .academy-preview__title {
        max-width: min(100%, 22ch);
    }

    .academy-preview__copy {
        max-width: 22rem;
        margin-top: 16px;
        line-height: 1.62;
    }

    .academy-preview__eyebrow {
        min-height: 26px;
        padding-inline: 9px;
        margin-bottom: 12px;
    }

    .academy-preview__kicker {
        margin-bottom: 16px;
        padding: 8px 12px 7px;
        font-size: 0.62rem;
    }

    .academy-preview__strip {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
    }

    .academy-preview__strip-item {
        min-height: 136px;
    }

    .academy-preview__cta {
        width: 100%;
    }

    .summer-camp-hero {
        min-height: 100svh;
    }

    .summer-camp-hero::before {
        background: linear-gradient(180deg, rgba(8, 8, 8, 0.14) 0%, rgba(8, 8, 8, 0.32) 38%, rgba(8, 8, 8, 0.84) 100%);
    }

    .summer-camp-hero__media {
        background-position: 42% center;
    }

    .summer-camp-hero__inner {
        padding: 104px 16px 44px;
    }

    .summer-camp-hero__meta {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 18px;
    }

    .summer-camp-hero__meta-icon {
        width: 44px;
        height: 44px;
    }

    .summer-camp-hero__meta-value {
        font-size: clamp(1rem, 5vw, 1.45rem);
    }

    .summer-camp-hero__title {
        max-width: min(100%, 12ch);
        font-size: clamp(2.45rem, 13vw, 4.1rem);
        line-height: 0.96;
    }

    .summer-camp-hero__copy {
        max-width: 28rem;
        margin-top: 18px;
        font-size: 0.96rem;
        line-height: 1.56;
    }

    .summer-camp-hero__benefits {
        width: min(100%, 34rem);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 16px;
        margin-top: 30px;
    }

    .summer-camp-hero__benefit {
        gap: 10px;
    }

    .summer-camp-hero__benefit-icon {
        width: 54px;
        height: 54px;
    }

    .summer-camp-hero__benefit-title {
        font-size: 0.7rem;
    }

    .summer-camp-hero__benefit-text {
        font-size: 0.78rem;
        line-height: 1.28;
    }

    .summer-camp-hero__benefit-separator {
        display: none;
    }

    .summer-camp-hero__facts {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 24px;
    }

    .summer-camp-hero__fact {
        min-height: 72px;
        padding: 13px 14px 14px;
    }

    .summer-camp-hero__cta {
        width: 100%;
        margin-top: 24px;
    }

    .story-section,
    .story-section__inner,
    .story-section__inner--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .story-section--about {
        background:
            radial-gradient(circle at 12% 30%, rgba(0, 255, 0, 0.14), transparent 22%),
            linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(12, 12, 12, 1) 100%);
        overflow: hidden;
    }

    .story-section--about::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: min(44svh, 24rem);
        background:
            linear-gradient(180deg, rgba(8, 8, 8, 0.08) 0%, rgba(8, 8, 8, 0.16) 18%, rgba(8, 8, 8, 0.34) 42%, rgba(8, 8, 8, 0.62) 70%, rgba(8, 8, 8, 0.84) 88%, rgba(8, 8, 8, 0.96) 100%),
            radial-gradient(circle at 8% 34%, rgba(0, 255, 0, 0.11), transparent 22%),
            url("../assets/images/hero04.jpg");
        background-repeat: no-repeat;
        background-size: cover, auto, cover;
        background-position: center center, 18% 16%, center 20%;
        filter: grayscale(1) brightness(0.84) contrast(0.9);
        -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 54%, rgba(0, 0, 0, 0.92) 68%, rgba(0, 0, 0, 0.56) 84%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 54%, rgba(0, 0, 0, 0.92) 68%, rgba(0, 0, 0, 0.56) 84%, rgba(0, 0, 0, 0) 100%);
        transform: none;
        pointer-events: none;
        z-index: 0;
    }

    .story-section--about::after {
        display: none;
    }

    .story-section--about .story-section__inner {
        position: relative;
        z-index: 1;
    }

    .story-section--join {
        background:
            radial-gradient(circle at 88% 72%, rgba(106, 31, 236, 0.16), transparent 29%),
            linear-gradient(180deg, rgba(12, 12, 12, 1) 0%, rgba(8, 8, 8, 0.98) 100%);
    }

    .story-section--join::after {
        display: none;
    }

    .story-section--join::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: min(44svh, 24rem);
        background:
            linear-gradient(180deg, rgba(8, 8, 8, 0.08) 0%, rgba(8, 8, 8, 0.18) 18%, rgba(8, 8, 8, 0.34) 40%, rgba(8, 8, 8, 0.56) 62%, rgba(8, 8, 8, 0.82) 84%, rgba(8, 8, 8, 0.96) 100%),
            radial-gradient(circle at 94% 82%, rgba(106, 31, 236, 0.16), transparent 29%),
            url("../assets/images/IMG_3885.jpeg");
        background-repeat: no-repeat;
        background-size: cover, auto, cover;
        background-position: center center, 94% 82%, 62% center;
        filter: grayscale(1) brightness(0.84) contrast(0.9);
        -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 52%, rgba(0, 0, 0, 0.92) 66%, rgba(0, 0, 0, 0.56) 84%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 52%, rgba(0, 0, 0, 0.92) 66%, rgba(0, 0, 0, 0.56) 84%, rgba(0, 0, 0, 0) 100%);
        pointer-events: none;
        z-index: 0;
    }

    .story-section--join .story-section__inner {
        position: relative;
        z-index: 1;
    }

    .story-section__title,
    .join-hub__title {
        max-width: min(100%, 20ch);
    }

    .timeline__item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .coaches-grid,
    .contact-form,
    .contact-form__program-details,
    .academy-page__meta,
    .academy-page__included-grid,
    .academy-page__details-grid {
        grid-template-columns: 1fr;
    }

    .coach-card__media {
        min-height: 300px;
    }

    .coach-card__image--andreas {
        object-position: center 8%;
        transform: none;
    }

    .coach-card__media--alex {
        background-position: center 8%;
    }

    .coach-card {
        min-height: 0;
    }

    .coach-card__media {
        min-height: 300px;
    }

    .timeline__step {
        min-width: 2.8rem;
        min-height: 2.8rem;
    }

    .join-hub__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-cta__button,
    .contact-cta__link {
        width: 100%;
    }

    .academy-page {
        padding-inline: 20px;
        padding-bottom: 40px;
    }

    .academy-page__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-feed {
        gap: 36px;
    }

    .news-article--archive::before {
        margin-bottom: 36px;
    }

    .academy-page__title {
        max-width: min(100%, 20ch);
    }

    .academy-page__body {
        line-height: 1.64;
    }

    .academy-page__section-title,
    .academy-page__section-title--compact {
        max-width: min(100%, 28ch);
    }

    .academy-page__cta {
        width: 100%;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .hero__inner {
        padding: 112px 22px 156px;
    }

    .hero__content {
        max-width: 31rem;
    }

    .hero__title {
        max-width: min(100%, 18ch);
        font-size: clamp(2.4rem, 8vw, 3.2rem);
        line-height: 1;
    }

    .hero__copy {
        max-width: 24rem;
        margin-top: 16px;
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .hero__cta {
        min-width: 220px;
        margin-top: 24px;
    }

    .hero--campaign .hero__content {
        max-width: 40rem;
    }

    .hero--campaign .hero__title {
        max-width: min(100%, 8.8ch);
        font-size: clamp(4rem, 12vw, 6rem);
    }

    .hero--campaign .hero__copy {
        max-width: 27rem;
        font-size: 1rem;
        line-height: 1.36;
    }

    .academy-preview {
        min-height: auto;
        background: #ffffff;
    }

    .academy-preview__inner {
        min-height: auto;
    }

    .academy-preview__media {
        min-height: 54svh;
    }

    .academy-preview__media::after {
        height: clamp(82px, 26vw, 132px);
    }

    .academy-preview__frame {
        min-height: 54svh;
    }

    .academy-preview__content-shell {
        min-height: auto;
        padding: 24px 24px 34px;
        justify-content: flex-start;
        background: #ffffff;
    }

    .academy-preview__content-shell::after {
        display: none;
    }

    .academy-preview__content {
        width: 100%;
        max-width: 34rem;
    }

    .academy-preview__eyebrow {
        min-height: 24px;
        padding-inline: 7px;
        font-size: 0.64rem;
    }

    .academy-preview__kicker {
        margin-bottom: 14px;
        font-size: 0.6rem;
    }

    .academy-preview__title {
        max-width: min(100%, 22ch);
        font-size: clamp(1.9rem, 8.2vw, 2.25rem);
    }

    .academy-preview__copy {
        max-width: 25rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .academy-preview__strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .academy-preview__strip-item {
        min-height: 136px;
    }

    .academy-preview__strip-item:last-child {
        grid-column: 1 / -1;
    }

    .story-section {
        padding-block: 72px;
    }

    .story-section__inner,
    .story-section__inner--split {
        gap: 22px;
    }

    .academy-page {
        padding: 104px 22px 40px;
    }

    .academy-page__inner {
        gap: 22px;
    }

    .academy-page__body {
        max-width: 33rem;
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding-inline: 14px;
    }

    .site-footer__inner {
        padding-inline: 18px;
    }

    .hero__inner {
        padding: 104px 18px 150px;
    }

    .hero__title {
        max-width: min(100%, 18ch);
        font-size: clamp(2.2rem, 11vw, 2.8rem);
    }

    .hero--campaign .hero__inner {
        padding: 104px 18px 150px;
    }

    .hero--campaign .hero__title {
        max-width: min(100%, 8.2ch);
        font-size: clamp(2.72rem, 16vw, 4rem);
    }

    .hero--campaign .hero__copy {
        max-width: 17.5rem;
        margin-top: 10px;
        font-size: 0.84rem;
        line-height: 1.24;
    }

    .hero__copy {
        max-width: 18rem;
        font-size: 0.88rem;
    }

    .hero__cta {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        margin-top: 18px;
    }

    .hero--campaign .hero__cta {
        width: 100%;
    }

    .hero__meta,
    .summer-camp-preview__meta {
        margin-bottom: 18px;
        gap: 10px;
    }

    .hero__meta {
        width: max-content;
        max-width: 100%;
        justify-items: stretch;
    }

    .hero__meta-item {
        grid-template-columns: 2.1rem auto;
        column-gap: 12px;
    }

    .hero__meta-icon,
    .summer-camp-preview__meta-icon {
        width: 2.1rem;
        height: 2.1rem;
    }

    .hero__meta-label,
    .summer-camp-preview__meta-label {
        font-size: 0.56rem;
        letter-spacing: 0.12em;
    }

    .hero__meta-value,
    .summer-camp-preview__meta-value {
        font-size: 0.94rem;
    }

    .hero-carousel {
        bottom: 10px;
        padding-inline: 14px;
    }

    .hero-carousel__inner {
        width: 100%;
    }

    .hero-carousel__track {
        grid-auto-columns: minmax(78px, 1fr);
        gap: 6px;
    }

    .hero-carousel__item {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 6px;
        min-height: 42px;
        padding-top: 12px;
    }

    .hero-carousel__icon {
        width: 28px;
        height: 28px;
    }

    .hero-carousel__icon svg {
        width: 14px;
        height: 14px;
    }

    .hero-carousel__label {
        font-size: 0.5rem;
    }

    .academy-preview__media,
    .academy-preview__frame {
        min-height: 46svh;
    }

    .academy-preview__content-shell {
        padding: 22px 14px 28px;
        background: #ffffff;
    }

    .academy-preview__content-shell::after {
        display: none;
    }

    .academy-preview__title {
        max-width: min(100%, 22ch);
        font-size: clamp(1.68rem, 7.4vw, 1.98rem);
        line-height: 1;
    }

    .story-section--about::before {
        height: min(39svh, 19rem);
        background-position: center center, 18% 16%, center 18%;
    }

    .story-section--join::before {
        height: min(39svh, 19rem);
        background-position: center center, 84% 16%, 16% 22%, 66% center;
    }


    .academy-preview__copy {
        font-size: 0.92rem;
    }

    .academy-preview__strip {
        grid-template-columns: 1fr;
    }

    .academy-preview__strip-item:last-child {
        grid-column: auto;
    }

    .academy-preview__strip-item {
        min-height: 124px;
    }

    .academy-preview__cta {
        width: 100%;
    }

    .summer-camp-hero__inner {
        padding: 98px 18px 34px;
    }

    .summer-camp-hero__eyebrow {
        min-height: 24px;
        font-size: 0.62rem;
    }

    .summer-camp-hero__kicker {
        margin-bottom: 12px;
        font-size: 0.62rem;
    }

    .summer-camp-hero__title {
        font-size: clamp(2.1rem, 11.5vw, 3.05rem);
    }

    .summer-camp-hero__copy {
        font-size: 0.92rem;
    }

    .summer-camp-hero__benefits {
        width: min(100%, 26rem);
        gap: 16px 12px;
        margin-top: 26px;
    }

    .summer-camp-hero__benefit-icon {
        width: 48px;
        height: 48px;
    }

    .summer-camp-hero__benefit-title {
        font-size: 0.66rem;
    }

    .summer-camp-hero__benefit-text {
        font-size: 0.74rem;
    }

    .summer-camp-hero__facts {
        margin-top: 20px;
    }

    .summer-camp-hero__fact-value {
        font-size: 0.92rem;
    }

    .story-section,
    .academy-page {
        padding-inline: 18px;
    }

    .story-section__title,
    .join-hub__title,
    .academy-page__title {
        max-width: min(100%, 20ch);
    }

    .coach-card__image--andreas {
        object-position: center 4%;
        transform: none;
    }

    .coach-card__media--alex {
        min-height: 380px;
        background-position: center 4%;
    }

    .coach-card__media--andreas-image {
        min-height: 380px;
    }
}

@media (max-width: 1280px) {
    .summer-camp-preview {
        min-height: 100svh;
    }

    .summer-camp-preview__title {
        font-size: clamp(2.7rem, 5.9vw, 4.6rem);
    }
}

@media (max-width: 920px) {
    .hero__meta,
    .summer-camp-preview__meta {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero__meta-item,
    .summer-camp-preview__meta-item {
        align-items: flex-start;
    }

    .summer-camp-preview {
        --summer-camp-blob-x: 64%;
        --summer-camp-blob-y: 78%;
    }

    .summer-camp-preview__stage {
        min-height: inherit;
    }

    .summer-camp-preview__visual {
        inset: 0;
    }

    .summer-camp-preview__visual::after {
        background:
            radial-gradient(circle at 72% 78%, rgba(0, 255, 0, 0.2), transparent 18%),
            linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, transparent 24%, transparent 58%, rgba(8, 8, 8, 0.56) 100%);
    }

    .summer-camp-preview__content {
        padding: calc(var(--header-height) + 40px) 22px 42px;
    }

    .summer-camp-preview__meta {
        width: min(100%, 30rem);
    }

    .summer-camp-preview__facts {
        width: min(100%, 100%);
    }
}

@media (max-width: 640px) {
    .summer-camp-preview {
        min-height: 100svh;
    }

    .summer-camp-preview__title {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .summer-camp-preview__content {
        padding: calc(var(--header-height) + 30px) 16px 34px;
        align-items: flex-start;
        text-align: left;
    }

    .summer-camp-preview__meta {
        width: 100%;
        margin-bottom: 18px;
        justify-items: start;
    }

    .summer-camp-preview__copy {
        max-width: 30rem;
        margin-top: 18px;
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .summer-camp-preview__title {
        max-width: min(100%, 9ch);
    }

    .summer-camp-preview__facts {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .summer-camp-preview__fact {
        min-height: 84px;
    }

    .summer-camp-preview__cta {
        width: 100%;
        min-height: 56px;
        margin-top: 24px;
        padding-inline: 20px;
        font-size: 0.76rem;
    }

    .summer-camp-preview__video--desktop {
        display: none;
    }

    .summer-camp-preview__video--mobile {
        display: block;
    }

    .summer-camp-preview__visual::before {
        background:
            linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.34) 28%, rgba(8, 8, 8, 0.18) 52%, rgba(8, 8, 8, 0.66) 100%),
            linear-gradient(90deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.48) 32%, rgba(8, 8, 8, 0.22) 70%, rgba(8, 8, 8, 0.46) 100%);
    }
}

@media (max-width: 480px) {
    .summer-camp-preview__eyebrow {
        font-size: 0.56rem;
        letter-spacing: 0.34em;
    }

    .summer-camp-preview__content {
        padding-inline: 16px;
    }

    .summer-camp-preview__kicker {
        font-size: 0.62rem;
    }

    .summer-camp-preview__title {
        font-size: clamp(2.02rem, 11.2vw, 3rem);
    }

    .summer-camp-preview__meta-value {
        font-size: 1rem;
    }

    .summer-camp-preview__copy,
    .summer-camp-preview__fact-value {
        font-size: 0.92rem;
    }

    .summer-camp-preview__fact {
        padding-inline: 16px;
    }
}

:is(.hero__cta, .academy-preview__cta, .academy-page__cta, .summer-camp-preview__cta, .mobile-sticky-cta) {
    --cta-arrow-size: 0.62rem;
    --cta-arrow-stroke: 2px;
    --cta-arrow-right: 20px;
    --cta-arrow-gap: 18px;
    padding-inline-end: calc(var(--cta-arrow-right) + var(--cta-arrow-size) + var(--cta-arrow-gap));
}

.hero__cta,
.summer-camp-preview__cta {
    --cta-arrow-size: 0.72rem;
    --cta-arrow-right: 22px;
}

.academy-preview__cta,
.academy-page__cta {
    --cta-arrow-size: 0.64rem;
    --cta-arrow-right: 18px;
    --cta-arrow-gap: 16px;
}

.mobile-sticky-cta {
    --cta-arrow-size: 0.5rem;
    --cta-arrow-right: 10px;
    --cta-arrow-gap: 8px;
    --cta-arrow-stroke: 1.8px;
}
