:root {
    --pt-black: #02070a;
    --pt-navy: #03131d;
    --pt-blue: #0077ff;
    --pt-cyan: #46e6ff;
    --pt-lime: #d8ff45;
    --pt-white: #f7fbfd;
    --pt-grey: #9aaab2;
}

body {
    overflow-x: hidden;
    background: var(--pt-black);
}

.site-header {
    background: rgba(2, 7, 10, 0.58);
    border-color: rgba(255,255,255,.10);
}

.pt-container {
    width: min(calc(100% - 48px), 1380px);
    margin: 0 auto;
}

.pt-display {
    margin: 0;
    font-size: clamp(58px, 9vw, 154px);
    line-height: .82;
    letter-spacing: -.075em;
    font-weight: 900;
    text-transform: uppercase;
}

.pt-kicker {
    margin-bottom: 24px;
    color: var(--pt-cyan);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 800;
}

.pt-accent {
    color: var(--pt-lime);
}

.pt-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease;
}

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

.pt-button-light {
    background: var(--pt-white);
    color: var(--pt-black);
}

.pt-button-glass {
    color: var(--pt-white);
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
}

.pt-button-dark {
    background: var(--pt-black);
    color: var(--pt-white);
}

.pt-hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #000;
}

.pt-hero-video,
.pt-scene-video {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.pt-hero-video {
    transform: scale(1.07);
}

.pt-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.18) 58%, rgba(0,0,0,.40)),
        linear-gradient(0deg, rgba(0,0,0,.88), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,.30), transparent 30%);
}

.pt-water-light {
    width: 58vw;
    height: 58vw;
    position: absolute;
    right: -15vw;
    bottom: -35vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52,210,255,.35), transparent 66%);
    filter: blur(45px);
}

.pt-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 150px;
    padding-bottom: 92px;
}

.pt-hero-kicker {
    margin-bottom: 30px;
    color: rgba(255,255,255,.70);
    letter-spacing: .28em;
    font-size: 11px;
    font-weight: 800;
}

.pt-hero-title {
    font-size: clamp(86px, 15vw, 245px);
}

.pt-hero-title span {
    display: block;
}

.pt-hero-title span:last-child {
    margin-left: 12vw;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,.92);
}

.pt-hero-bottom {
    margin-top: 46px;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: end;
    gap: 40px;
}

.pt-hero-role {
    color: var(--pt-lime);
    font-size: clamp(15px, 1.4vw, 20px);
    font-weight: 800;
    letter-spacing: .08em;
}

.pt-hero-intro {
    max-width: 670px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 17px;
}

.pt-hero-actions,
.pt-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pt-scroll-hint {
    position: absolute;
    right: 25px;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

.pt-scroll-hint i {
    width: 54px;
    height: 1px;
    background: rgba(255,255,255,.45);
}

.pt-statement {
    min-height: 180vh;
    position: relative;
    background: var(--pt-black);
}

.pt-statement-media {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.pt-statement-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.14);
}

.pt-statement-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.12)),
        linear-gradient(0deg, rgba(0,0,0,.85), transparent 60%);
    pointer-events: none;
}

.pt-statement-content {
    min-height: 100vh;
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pt-statement-title span {
    display: block;
}

.pt-statement-content p {
    max-width: 600px;
    margin: 36px 0 0 auto;
    color: rgba(255,255,255,.68);
    font-size: 19px;
}

.pt-disciplines {
    padding: 150px 0 120px;
    overflow: hidden;
    background: #f1f4f5;
    color: #05090b;
}

.pt-section-head {
    max-width: 1120px;
    margin-bottom: 70px;
}

.pt-disciplines .pt-kicker,
.pt-training-scene .pt-kicker {
    color: #006c89;
}

.pt-disciplines-slider {
    padding-left: max(24px, calc((100vw - 1380px) / 2));
}

.pt-disciplines-slider .swiper-slide {
    width: min(74vw, 600px);
}

.pt-discipline-card {
    height: min(72vh, 720px);
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 34px;
    background: #0b151a;
    color: white;
}

.pt-discipline-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.pt-discipline-card:hover img {
    transform: scale(1.055);
}

.pt-card-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.10), transparent 35%),
        linear-gradient(0deg, rgba(0,0,0,.90), transparent 65%);
}

.pt-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
}

.pt-card-number {
    position: absolute;
    top: 28px;
    left: 30px;
    color: var(--pt-lime);
    font-size: 12px;
    font-weight: 900;
}

.pt-card-content h3 {
    margin-bottom: 13px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: .9;
    letter-spacing: -.055em;
}

.pt-card-content p {
    max-width: 420px;
    margin-bottom: 20px;
    color: rgba(255,255,255,.68);
}

.pt-card-content > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 50%;
}

.pt-slider-footer {
    margin-top: 38px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
}

.pt-slider-footer .swiper-scrollbar {
    position: static;
    height: 2px;
    background: rgba(0,0,0,.14);
}

.pt-slider-footer .swiper-scrollbar-drag {
    background: #111;
}

.pt-slider-controls {
    display: flex;
    gap: 8px;
}

.pt-slider-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0,0,0,.16);
    border-radius: 50%;
    background: transparent;
    font-size: 19px;
    cursor: pointer;
}

.pt-show-scene {
    min-height: 110vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #000;
}

.pt-scene-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.08)),
        linear-gradient(0deg, rgba(0,0,0,.92), transparent 60%);
}

.pt-scene-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 100px;
}

.pt-scene-title span {
    display: block;
}

.pt-scene-copy {
    margin-top: 38px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
}

.pt-scene-copy p {
    max-width: 570px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 19px;
}

.pt-training-scene {
    min-height: 110vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--pt-lime);
    color: #061015;
}

.pt-training-media {
    width: 49%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.pt-training-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--pt-lime), transparent 36%);
}

.pt-training-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-training-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 90px minmax(0, 690px);
    gap: 30px;
}

.pt-training-number {
    font-size: 13px;
    font-weight: 900;
}

.pt-training-grid h2 {
    font-size: clamp(55px, 7vw, 112px);
}

.pt-training-grid p {
    max-width: 600px;
    margin: 32px 0;
    font-size: 18px;
    color: rgba(0,0,0,.64);
}

.pt-world {
    min-height: 110vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 70% 50%, rgba(27,150,255,.23), transparent 35%),
        #02090d;
}

.pt-world-globe {
    width: min(72vw, 980px);
    aspect-ratio: 1;
    position: absolute;
    right: -20vw;
    display: grid;
    place-items: center;
}

.pt-world-core {
    width: 34%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(70,230,255,.42);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70,230,255,.17), transparent 68%);
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
}

.pt-world-ring {
    position: absolute;
    border: 1px solid rgba(70,230,255,.20);
    border-radius: 50%;
}

.pt-ring-one {
    width: 62%;
    height: 62%;
}

.pt-ring-two {
    width: 92%;
    height: 92%;
    border-style: dashed;
}

.pt-world-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(330px,.72fr);
    gap: 80px;
    align-items: center;
}

.pt-world-grid h2 {
    font-size: clamp(58px, 8vw, 125px);
}

.pt-world-grid p {
    max-width: 620px;
    margin-top: 30px;
    color: rgba(255,255,255,.64);
    font-size: 18px;
}

.pt-country-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pt-country-grid a {
    min-height: 94px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(15px);
    font-size: 14px;
}

.pt-country-grid span {
    color: var(--pt-cyan);
    font-size: 11px;
    font-weight: 900;
}

.pt-gallery {
    padding: 150px 0;
    background: #eef1f2;
    color: #05090b;
}

.pt-gallery .pt-kicker {
    color: #006c89;
}

.pt-gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.pt-gallery-grid figure {
    min-height: 360px;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #0a151b;
}

.pt-gallery-grid .pt-gallery-large {
    grid-row: 1 / 3;
    min-height: 740px;
}

.pt-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.pt-gallery-grid figure:hover img {
    transform: scale(1.04);
}

.pt-final {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 75% 55%, rgba(0,115,255,.33), transparent 30%),
        var(--pt-black);
}

.pt-final-art {
    width: 58%;
    height: 94%;
    position: absolute;
    right: -2%;
    bottom: 0;
}

.pt-final-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 0 70px rgba(54,220,255,.23));
}

.pt-final-content {
    position: relative;
    z-index: 2;
}

.pt-final-content h2 span {
    display: block;
}

.pt-final-content h2 {
    max-width: 1000px;
}

.pt-final-actions {
    margin-top: 50px;
}

@media (max-width: 900px) {
    .pt-container {
        width: min(calc(100% - 30px), 1380px);
    }

    .pt-hero-content {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .pt-hero-title {
        font-size: clamp(76px, 22vw, 150px);
    }

    .pt-hero-title span:last-child {
        margin-left: 0;
    }

    .pt-hero-bottom,
    .pt-world-grid {
        grid-template-columns: 1fr;
    }

    .pt-scroll-hint {
        display: none;
    }

    .pt-statement-title,
    .pt-display {
        font-size: clamp(54px, 15vw, 105px);
    }

    .pt-statement-content p {
        margin-left: 0;
    }

    .pt-disciplines-slider .swiper-slide {
        width: 86vw;
    }

    .pt-scene-copy {
        flex-direction: column;
        align-items: flex-start;
    }

    .pt-training-scene {
        align-items: flex-end;
        padding-bottom: 70px;
    }

    .pt-training-media {
        width: 100%;
        opacity: .38;
    }

    .pt-training-media::after {
        background: linear-gradient(0deg, var(--pt-lime), transparent 70%);
    }

    .pt-training-grid {
        grid-template-columns: 1fr;
    }

    .pt-world {
        padding: 110px 0;
    }

    .pt-world-globe {
        opacity: .32;
        right: -45vw;
    }

    .pt-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .pt-gallery-grid .pt-gallery-large {
        grid-row: auto;
        min-height: 540px;
    }

    .pt-gallery-grid figure {
        min-height: 420px;
    }

    .pt-final-art {
        width: 100%;
        opacity: .25;
    }
}

@media (max-width: 560px) {
    .pt-hero-actions,
    .pt-final-actions {
        flex-direction: column;
    }

    .pt-button {
        width: 100%;
    }

    .pt-country-grid {
        grid-template-columns: 1fr;
    }

    .pt-discipline-card {
        height: 68vh;
        border-radius: 24px;
    }

    .pt-card-content {
        padding: 25px;
    }

    .pt-gallery,
    .pt-disciplines {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

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

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

/* Stable baseline between sections. */
.pt-hero,
.pt-statement,
.pt-disciplines,
.pt-show-scene,
.pt-training-scene,
.pt-world,
.pt-gallery,
.pt-final {
    margin-top: 0;
    clip-path: none;
    opacity: 1;
    filter: none;
    border-radius: 0;
    box-shadow: none;
}

.pt-disciplines {
    padding-top: 150px;
}

.pt-gallery {
    padding-top: 150px;
}

@media (max-width: 900px) {
    .pt-disciplines,
    .pt-gallery {
        padding-top: 100px;
    }
}

/* =========================================================
   SINGLE ISOLATED CINEMATIC TRANSITION
   Statement -> Disciplines
   ========================================================= */

.pt-cinematic-transition {
    height: 175vh;
    position: relative;
    overflow: visible;
    background: var(--pt-black);
}

.pt-cinematic-sticky {
    height: calc(100vh - 78px);
    min-height: 620px;
    position: sticky;
    top: 78px;
    overflow: hidden;
    background: var(--pt-black);
    isolation: isolate;
}

.pt-cinematic-dark {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 56%,
            rgba(0, 126, 185, 0.20),
            transparent 24%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(70, 230, 255, 0.10),
            transparent 42%
        ),
        #02070a;
}

.pt-cinematic-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(70, 230, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(70, 230, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image:
        radial-gradient(circle at center, #000, transparent 72%);
}

.pt-cinematic-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(70, 230, 255, 0.19);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.pt-cinematic-orbit-one {
    width: min(66vw, 900px);
    aspect-ratio: 1;
}

.pt-cinematic-orbit-two {
    width: min(92vw, 1260px);
    aspect-ratio: 1;
    border-style: dashed;
}

.pt-cinematic-point {
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background: var(--pt-cyan);
    box-shadow:
        0 0 16px var(--pt-cyan),
        0 0 80px rgba(70, 230, 255, 0.70);
    transform: translate(-50%, -50%);
}

.pt-cinematic-panel {
    position: absolute;
    inset: 7vh 6vw;
    z-index: 3;
    overflow: hidden;
    border-radius: 52px;
    background:
        radial-gradient(
            circle at 68% 26%,
            rgba(255, 255, 255, 0.98),
            transparent 24%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #eef2f3 58%,
            #dfe7e9
        );
    color: #05090b;
    box-shadow:
        0 38px 120px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(255, 255, 255, 0.20);
    transform-origin: center center;
    will-change: transform, border-radius;
}

.pt-cinematic-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            115deg,
            transparent 18%,
            rgba(255, 255, 255, 0.82) 42%,
            transparent 64%
        );
    transform: translateX(-110%);
}

.pt-cinematic-panel-glow {
    width: 52vw;
    height: 52vw;
    position: absolute;
    top: -35vw;
    right: -15vw;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(70, 230, 255, 0.30),
            transparent 68%
        );
    filter: blur(25px);
}

.pt-cinematic-panel-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 6vw, 96px);
}

.pt-cinematic-index {
    position: absolute;
    top: clamp(30px, 4vw, 58px);
    left: clamp(38px, 6vw, 96px);
    color: rgba(5, 9, 11, 0.48);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.pt-cinematic-panel .pt-kicker {
    color: #006c89;
}

.pt-cinematic-word {
    font-size: clamp(62px, 10.5vw, 176px);
}

.pt-cinematic-word span {
    display: block;
}

.pt-cinematic-word span:last-child {
    margin-left: 8vw;
    color: transparent;
    -webkit-text-stroke: 2px rgba(5, 9, 11, 0.88);
}

.pt-cinematic-meta {
    margin-top: clamp(30px, 5vh, 62px);
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.pt-cinematic-meta span {
    padding: 9px 13px;
    border: 1px solid rgba(5, 9, 11, 0.18);
    border-radius: 999px;
    color: rgba(5, 9, 11, 0.66);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.10em;
}

.pt-cinematic-water {
    height: 24%;
    position: absolute;
    right: -8%;
    bottom: -5%;
    left: -8%;
    z-index: 2;
    border-radius: 50%;
    background:
        radial-gradient(
            ellipse,
            rgba(0, 149, 190, 0.23),
            transparent 68%
        );
    filter: blur(12px);
}

.pt-cinematic-progress {
    width: min(340px, 36vw);
    height: 2px;
    position: absolute;
    right: 4vw;
    bottom: 28px;
    z-index: 8;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.pt-cinematic-progress span {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--pt-lime);
    transform: scaleX(0);
    transform-origin: left center;
}

/*
 * После sticky-перехода реальный светлый раздел начинается
 * с того же цвета, поэтому визуального шва не возникает.
 */
.pt-cinematic-transition + .pt-disciplines {
    background:
        linear-gradient(
            to bottom,
            #eef2f3 0,
            #f1f4f5 160px
        );
}

@media (max-width: 900px) {
    .pt-cinematic-transition {
        height: 155vh;
    }

    .pt-cinematic-sticky {
        height: calc(100svh - 68px);
        min-height: 540px;
        top: 68px;
    }

    .pt-cinematic-panel {
        inset: 5vh 15px;
        border-radius: 30px;
    }

    .pt-cinematic-panel-content {
        padding: 30px 22px;
    }

    .pt-cinematic-index {
        top: 26px;
        left: 22px;
    }

    .pt-cinematic-word {
        font-size: clamp(54px, 17vw, 102px);
    }

    .pt-cinematic-word span:last-child {
        margin-left: 0;
        -webkit-text-stroke-width: 1px;
    }

    .pt-cinematic-progress {
        right: 20px;
        bottom: 18px;
        width: 160px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pt-cinematic-transition {
        height: auto;
    }

    .pt-cinematic-sticky {
        height: auto;
        min-height: 80vh;
        position: relative;
        top: auto;
        display: flex;
        align-items: center;
        padding: 35px 15px;
    }

    .pt-cinematic-panel {
        min-height: 70vh;
        position: relative;
        inset: auto;
        border-radius: 28px;
    }

    .pt-cinematic-dark,
    .pt-cinematic-progress {
        display: none;
    }
}

.pt-cinematic-panel {
    --pt-shine-position: -110%;
}

.pt-cinematic-panel::before {
    transform: translateX(var(--pt-shine-position));
}

/* =========================================================
   CINEMATIC TRANSITION — ENERGY BUILD-UP EFFECTS
   ========================================================= */

.pt-cinematic-fx,
.pt-cinematic-panel-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pt-cinematic-fx {
    z-index: 2;
    overflow: hidden;
}

.pt-cinematic-ripple {
    width: min(36vw, 520px);
    aspect-ratio: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(70, 230, 255, 0.72);
    border-radius: 50%;
    opacity: 0;
    transform:
        translate(-50%, -50%)
        scale(0.12);
    box-shadow:
        0 0 22px rgba(70, 230, 255, 0.20),
        inset 0 0 22px rgba(70, 230, 255, 0.12);
    will-change: transform, opacity;
}

.pt-cinematic-ripple-two {
    border-color: rgba(216, 255, 69, 0.58);
}

.pt-cinematic-ripple-three {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.34);
}

.pt-cinematic-particles {
    position: absolute;
    inset: 0;
}

.pt-cinematic-particles i {
    width: 4px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    background: var(--pt-cyan);
    box-shadow:
        0 0 8px currentColor,
        0 0 22px currentColor;
    will-change: transform, opacity;
}

.pt-cinematic-particles i:nth-child(3n) {
    width: 3px;
    height: 3px;
    color: var(--pt-lime);
    background: currentColor;
}

.pt-cinematic-particles i:nth-child(4n) {
    width: 6px;
    height: 6px;
    color: #ffffff;
    background: currentColor;
}

.pt-cinematic-energy-line {
    width: 1px;
    height: 42vh;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(70, 230, 255, 0.85),
            transparent
        );
    transform-origin: center bottom;
}

.pt-energy-line-one {
    transform: translate(-50%, -50%) rotate(36deg);
}

.pt-energy-line-two {
    transform: translate(-50%, -50%) rotate(156deg);
}

.pt-energy-line-three {
    transform: translate(-50%, -50%) rotate(276deg);
}

.pt-cinematic-panel-fx {
    z-index: 2;
    overflow: hidden;
    border-radius: inherit;
}

.pt-cinematic-scan {
    width: 34%;
    height: 160%;
    position: absolute;
    top: -30%;
    left: -42%;
    opacity: 0;
    transform: skewX(-17deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.82),
            rgba(70, 230, 255, 0.20),
            transparent
        );
    filter: blur(5px);
    will-change: transform, opacity;
}

.pt-cinematic-edge {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(70, 230, 255, 0);
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 rgba(70, 230, 255, 0),
        0 0 0 rgba(70, 230, 255, 0);
    opacity: 0;
}

.pt-cinematic-flare {
    width: 32vw;
    height: 32vw;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform:
        translate(-50%, -50%)
        scale(0.12);
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.95) 0,
            rgba(70, 230, 255, 0.48) 15%,
            rgba(70, 230, 255, 0.08) 42%,
            transparent 70%
        );
    filter: blur(9px);
    mix-blend-mode: screen;
}

.pt-cinematic-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform:
        translate(-50%, -43%)
        scale(0.88);
    text-align: center;
    font-weight: 900;
    font-size: clamp(46px, 8vw, 132px);
    line-height: 0.78;
    letter-spacing: -0.075em;
    color: rgba(5, 9, 11, 0.92);
    white-space: nowrap;
}

.pt-cinematic-preview span:last-child {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(5, 9, 11, 0.68);
}

.pt-cinematic-coordinates {
    position: absolute;
    right: 34px;
    bottom: 28px;
    left: 34px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    opacity: 0;
    color: rgba(5, 9, 11, 0.43);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.pt-cinematic-point {
    z-index: 5;
}

.pt-cinematic-panel-content {
    z-index: 5;
}

/*
 * До появления основного контента показываем preview.
 * Основной текст затем заменяет его в той же композиции.
 */
.pt-cinematic-preview,
.pt-cinematic-coordinates,
.pt-cinematic-scan,
.pt-cinematic-edge,
.pt-cinematic-flare {
    backface-visibility: hidden;
    will-change: transform, opacity;
}

@media (max-width: 900px) {
    .pt-cinematic-ripple {
        width: 62vw;
    }

    .pt-cinematic-flare {
        width: 74vw;
        height: 74vw;
    }

    .pt-cinematic-preview {
        font-size: clamp(46px, 14vw, 88px);
    }

    .pt-cinematic-coordinates {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .pt-cinematic-coordinates span:first-child {
        display: none;
    }

    .pt-cinematic-coordinates {
        justify-content: flex-end;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pt-cinematic-fx,
    .pt-cinematic-panel-fx {
        display: none;
    }
}

/*
 * Faster cinematic sequence.
 * Preview appears immediately, but remains visually subordinate
 * to the final content.
 */
.pt-cinematic-preview {
    font-size: clamp(42px, 6.8vw, 112px);
}

.pt-cinematic-preview span:first-child {
    color: rgba(5, 9, 11, 0.78);
}

.pt-cinematic-preview span:last-child {
    -webkit-text-stroke-color: rgba(5, 9, 11, 0.46);
}

.pt-cinematic-panel-content {
    transform: translateZ(0);
}

/* Main heading always renders above the temporary preview. */
.pt-cinematic-panel-content {
    z-index: 8;
}

.pt-cinematic-panel-fx {
    z-index: 4;
}

@media (max-width: 900px) {
    .pt-cinematic-preview {
        font-size: clamp(42px, 12vw, 76px);
    }
}

/* =========================================================
   CINEMATIC TYPOGRAPHY CLEANUP V2
   CSS-only override. JavaScript effects remain untouched.
   ========================================================= */

/*
 * Temporary duplicate headline remains in the DOM for the existing
 * GSAP timeline, but is visually hidden. This avoids modifying the
 * animation chain and prevents overlapping GLOBAL FLYBOARD headings.
 */
.pt-cinematic-preview {
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Keep all decorative and energy effects operational. */
.pt-cinematic-fx,
.pt-cinematic-panel-fx,
.pt-cinematic-ripples,
.pt-cinematic-particles,
.pt-cinematic-energy-line,
.pt-cinematic-scan,
.pt-cinematic-edge,
.pt-cinematic-flare {
    visibility: visible;
}

/* Clean, single typographic hierarchy. */
.pt-cinematic-panel-content {
    width: min(100%, 1180px);
    right: auto;
    z-index: 8;
    justify-content: center;
    padding:
        clamp(48px, 5.5vw, 86px)
        clamp(42px, 6.5vw, 96px);
}

.pt-cinematic-word {
    max-width: 980px;
    font-size: clamp(62px, 7.5vw, 122px);
    line-height: 0.82;
    letter-spacing: -0.065em;
}

.pt-cinematic-word span:first-child {
    color: #05090b;
}

.pt-cinematic-word span:last-child {
    margin-top: 0.07em;
    margin-left: 0;
    color: transparent;
    -webkit-text-stroke: 1.4px rgba(5, 9, 11, 0.74);
}

.pt-cinematic-panel .pt-kicker {
    max-width: 500px;
    margin-bottom: clamp(18px, 2.5vh, 28px);
}

.pt-cinematic-meta {
    max-width: 720px;
    margin-top: clamp(24px, 3.5vh, 38px);
    gap: 7px;
}

.pt-cinematic-meta span {
    padding: 8px 11px;
    font-size: 9px;
}

/*
 * Keep decorative layers behind the text, but above the panel
 * background.
 */
.pt-cinematic-panel-fx {
    z-index: 4;
}

.pt-cinematic-panel-content {
    z-index: 8;
}

@media (max-width: 900px) {
    .pt-cinematic-panel-content {
        padding: 34px 22px;
    }

    .pt-cinematic-word {
        font-size: clamp(50px, 13vw, 80px);
        line-height: 0.84;
    }

    .pt-cinematic-meta {
        margin-top: 22px;
    }
}

/* =========================================================
   GLOBAL FLYBOARD — PREMIUM EDITORIAL SCENE
   ========================================================= */

.pt-cinematic-panel {
    background:
        radial-gradient(
            circle at 77% 42%,
            rgba(64, 225, 255, 0.22),
            transparent 25%
        ),
        radial-gradient(
            circle at 67% 88%,
            rgba(216, 255, 69, 0.13),
            transparent 28%
        ),
        linear-gradient(
            118deg,
            #f8faf9 0%,
            #edf3f3 49%,
            #dbe9eb 100%
        );
    box-shadow:
        0 42px 140px rgba(0, 0, 0, 0.54),
        inset 0 0 0 1px rgba(255, 255, 255, 0.76);
}

/*
 * Убираем эффект презентационного слайда.
 * Панель становится сценой с контролируемой глубиной.
 */
.pt-cinematic-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        linear-gradient(
            rgba(0, 45, 58, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 45, 58, 0.055) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82),
            rgba(0,0,0,.18) 62%,
            transparent
        );
}

.pt-cinematic-panel-glow {
    opacity: 0.58;
}

/* Старые декоративные эффекты переводим во второй план. */
.pt-cinematic-particles,
.pt-cinematic-energy-line {
    opacity: 0.34;
}

.pt-cinematic-ripple {
    border-width: 1px;
    box-shadow: none;
}

.pt-cinematic-point {
    width: 5px;
    height: 5px;
    opacity: 0.65;
}

/* Основная композиция. */
.pt-cinematic-panel-content {
    width: 56%;
    max-width: 850px;
    right: auto;
    z-index: 12;
    justify-content: center;
    padding:
        clamp(54px, 6vw, 96px)
        clamp(46px, 6.4vw, 104px);
}

.pt-cinematic-index {
    top: clamp(30px, 4vw, 54px);
    left: clamp(46px, 6.4vw, 104px);
    color: rgba(5, 9, 11, 0.42);
}

.pt-cinematic-panel .pt-kicker {
    max-width: 480px;
    margin-bottom: clamp(24px, 3.2vh, 40px);
    color: #006f89;
    font-size: 10px;
    letter-spacing: 0.26em;
}

.pt-cinematic-word {
    max-width: 760px;
    font-size: clamp(68px, 7.4vw, 126px);
    line-height: 0.77;
    letter-spacing: -0.076em;
}

.pt-cinematic-word span:first-child {
    color: #020709;
}

.pt-cinematic-word span:last-child {
    margin-top: 0.04em;
    margin-left: 0;
    color: transparent;
    -webkit-text-stroke:
        1.5px
        rgba(2, 7, 9, 0.76);
}

.pt-global-manifesto {
    margin-top: clamp(24px, 4vh, 44px);
    display: flex;
    gap: 18px;
    color: rgba(4, 17, 21, 0.56);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.pt-global-manifesto span {
    position: relative;
}

.pt-global-manifesto span:not(:last-child)::after {
    content: "";
    width: 3px;
    height: 3px;
    position: absolute;
    top: 50%;
    right: -11px;
    border-radius: 50%;
    background: #13bfdc;
    transform: translateY(-50%);
}

/*
 * Старые pills превращаем в единую техническую строку.
 */
.pt-cinematic-meta {
    max-width: 720px;
    margin-top: clamp(20px, 3vh, 34px);
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(5, 18, 22, 0.14);
    border-bottom: 1px solid rgba(5, 18, 22, 0.14);
}

.pt-cinematic-meta span {
    padding: 11px 13px;
    border: 0;
    border-radius: 0;
    color: rgba(5, 18, 22, 0.48);
    font-size: 8px;
    letter-spacing: 0.11em;
}

.pt-cinematic-meta span:first-child {
    padding-left: 0;
}

.pt-cinematic-meta span:not(:last-child)::after {
    content: "/";
    margin-left: 14px;
    color: rgba(5, 18, 22, 0.20);
}

/* =========================================================
   ATHLETE VISUAL
   ========================================================= */

.pt-global-visual {
    position: absolute;
    inset: 0;
    z-index: 6;
    overflow: hidden;
    pointer-events: none;
}

.pt-global-aura {
    width: min(64vw, 920px);
    aspect-ratio: 1;
    position: absolute;
    top: 50%;
    right: -11%;
    border-radius: 50%;
    opacity: 0.88;
    transform: translateY(-50%);
    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.90) 0,
            rgba(55, 220, 255, .30) 22%,
            rgba(55, 220, 255, .08) 47%,
            transparent 70%
        );
    filter: blur(12px);
}

.pt-global-athlete-wrap {
    width: min(43vw, 650px);
    height: 94%;
    position: absolute;
    right: 2.5%;
    bottom: -2%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform-origin: center bottom;
    will-change: transform, opacity;
}

.pt-global-athlete {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter:
        drop-shadow(0 26px 38px rgba(0, 20, 28, .24))
        drop-shadow(0 0 34px rgba(55, 220, 255, .19));
    transform: translateZ(0);
}

.pt-global-water-ring {
    position: absolute;
    top: 50%;
    right: 4%;
    border: 1px solid rgba(0, 150, 188, 0.26);
    border-radius: 50%;
    transform: translateY(-50%);
}

.pt-global-water-ring-one {
    width: min(42vw, 630px);
    aspect-ratio: 1;
}

.pt-global-water-ring-two {
    width: min(55vw, 830px);
    aspect-ratio: 1;
    right: -3%;
    border-style: dashed;
    border-color: rgba(109, 196, 211, 0.20);
}

.pt-global-speed-line {
    height: 1px;
    position: absolute;
    right: 3%;
    opacity: 0.54;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 141, 177, 0.42),
            transparent
        );
}

.pt-global-speed-line-one {
    width: 44%;
    top: 31%;
}

.pt-global-speed-line-two {
    width: 36%;
    top: 55%;
}

.pt-global-speed-line-three {
    width: 48%;
    top: 73%;
}

.pt-global-country-code {
    position: absolute;
    right: 30px;
    bottom: 27px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(5, 18, 22, 0.42);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.pt-global-country-code span:first-child {
    color: #0088a6;
}

/*
 * Убираем слишком яркий центр и эффект дешёвой вспышки.
 */
.pt-cinematic-flare {
    opacity: 0;
    mix-blend-mode: soft-light;
}

.pt-cinematic-scan {
    width: 24%;
    opacity: 0;
    filter: blur(13px);
}

.pt-cinematic-edge {
    border-color: rgba(0, 147, 181, 0);
}

/* Небольшой кинематографичный шум без внешних изображений. */
.pt-global-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.045;
    pointer-events: none;
    background-image:
        repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            rgba(0,0,0,.55) 1px,
            transparent 2px
        );
    background-size: 5px 5px;
    mix-blend-mode: multiply;
}

@media (max-width: 1100px) {
    .pt-cinematic-panel-content {
        width: 61%;
    }

    .pt-global-athlete-wrap {
        width: 45vw;
        right: -1%;
    }

    .pt-cinematic-word {
        font-size: clamp(62px, 8vw, 104px);
    }
}

@media (max-width: 900px) {
    .pt-cinematic-panel-content {
        width: 100%;
        max-width: none;
        justify-content: flex-end;
        padding: 32px 22px 42px;
        background:
            linear-gradient(
                to top,
                rgba(244,249,249,.98) 0%,
                rgba(244,249,249,.88) 43%,
                transparent 72%
            );
    }

    .pt-global-athlete-wrap {
        width: 74vw;
        height: 68%;
        top: 0;
        right: -10%;
        bottom: auto;
    }

    .pt-global-aura {
        width: 110vw;
        top: 31%;
        right: -38%;
    }

    .pt-global-water-ring-one {
        width: 76vw;
        top: 35%;
        right: -12%;
    }

    .pt-global-water-ring-two {
        width: 98vw;
        top: 35%;
        right: -26%;
    }

    .pt-cinematic-index {
        top: 22px;
        left: 22px;
    }

    .pt-cinematic-word {
        max-width: 100%;
        font-size: clamp(52px, 14vw, 82px);
        line-height: 0.81;
    }

    .pt-global-manifesto {
        margin-top: 18px;
        gap: 14px;
        font-size: 8px;
    }

    .pt-cinematic-meta {
        margin-top: 15px;
        overflow: hidden;
        white-space: nowrap;
    }

    .pt-cinematic-meta span {
        padding: 9px 5px;
        font-size: 6.8px;
    }

    .pt-cinematic-meta span:not(:last-child)::after {
        margin-left: 8px;
    }

    .pt-global-country-code {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pt-global-athlete-wrap,
    .pt-global-aura,
    .pt-global-water-ring,
    .pt-global-speed-line {
        transform: none !important;
        opacity: 1 !important;
    }
}
