﻿:root {
    --paper: #ffffff;
    --paper-soft: #fbfbf8;
    --ink: #163a63;
    --ink-strong: #0d2741;
    --muted: #55708d;
    --paper-rgb: 255, 255, 255;
    --accent-rgb: 0, 51, 102;
    --ink-rgb: 22, 58, 99;
    --line: rgba(0, 51, 102, 0.12);
    --accent: #003366;
    --shadow: 0 22px 70px rgba(0, 51, 102, 0.08);
    --site-header-height: 92px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.015), rgba(0, 0, 0, 0) 180px),
        repeating-linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.012) 0,
            rgba(0, 0, 0, 0.012) 1px,
            transparent 1px,
            transparent 42px
        ),
        var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    overflow-x: clip;
    line-height: 1.6;
    position: relative;
    width: 100%;
    min-width: 0;
    touch-action: auto;
}

main,
.container,
.hero,
.section,
.site-footer,
.hero-signature {
    max-width: 100%;
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body.scroll-locked {
    overflow: hidden;
    overscroll-behavior: none;
}

body.menu-open .top-header {
    z-index: 260;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 26%, rgba(12, 84, 168, 0.08), transparent 24%),
        radial-gradient(circle at 82% 22%, rgba(7, 74, 154, 0.07), transparent 26%),
        radial-gradient(circle at 54% 78%, rgba(96, 173, 243, 0.05), transparent 22%),
        linear-gradient(115deg, transparent 18%, rgba(111, 185, 244, 0.05) 30%, transparent 42%, rgba(255, 255, 255, 0.04) 56%, transparent 70%);
    background-size: 140% 140%, 150% 150%, 130% 130%, 200% 200%;
    mix-blend-mode: soft-light;
    filter: blur(10px);
    opacity: 0.22;
    animation: none;
}

.page-aura {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% -6%, rgba(4, 43, 88, 0.1), transparent 24%),
        radial-gradient(circle at 84% -10%, rgba(4, 43, 88, 0.09), transparent 28%),
        linear-gradient(180deg, rgba(6, 36, 74, 0.035), transparent 18%, transparent 82%, rgba(6, 36, 74, 0.035));
}

.page-aura::before,
.page-aura::after {
    content: '';
    position: absolute;
    top: -28vh;
    width: 34vw;
    height: 168vh;
    border-radius: 999px;
    mix-blend-mode: multiply;
}

.page-aura::before {
    left: -14vw;
    background: linear-gradient(
        110deg,
        transparent 12%,
        rgba(3, 37, 78, 0.02) 24%,
        rgba(6, 63, 128, 0.14) 40%,
        rgba(12, 90, 168, 0.26) 50%,
        rgba(6, 63, 128, 0.13) 60%,
        rgba(3, 37, 78, 0.03) 70%,
        transparent 84%
    );
    filter: blur(18px);
    opacity: 0.32;
    transform: rotate(-17deg) translateX(-12vw);
    animation: none;
}

.page-aura::after {
    right: -12vw;
    left: auto;
    width: 31vw;
    background: linear-gradient(
        70deg,
        transparent 14%,
        rgba(3, 35, 74, 0.02) 28%,
        rgba(8, 58, 122, 0.13) 40%,
        rgba(16, 84, 156, 0.22) 50%,
        rgba(8, 58, 122, 0.11) 60%,
        rgba(3, 35, 74, 0.03) 70%,
        transparent 84%
    );
    filter: blur(18px);
    opacity: 0.3;
    transform: rotate(17deg) translateX(14vw);
    animation: none;
}

a {
    color: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.top-header {
    position: sticky;
    top: 0;
    z-index: 220;
    padding: 14px 24px;
    background: rgba(0, 51, 102, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    isolation: isolate;
    overflow: hidden;
    transition: padding 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.top-header.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(0, 41, 84, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 44px rgba(0, 23, 46, 0.16);
}

.top-header__inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    min-height: 48px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 3;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 14px 28px rgba(0, 24, 54, 0.18);
    outline: none;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: fit-content;
    text-decoration: none;
}

.site-brand__copy,
.site-footer__brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-brand strong {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #ffffff;
}

.site-brand__copy span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(226, 241, 255, 0.82);
}

.site-brand:hover,
.site-brand:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.site-brand {
    transition: transform 0.24s ease;
}

.header-nav-shell {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 2;
}

.header-nav-shell::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.site-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
}

.site-menu a,
.social-link,
.footer-action {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.site-menu a {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
    white-space: nowrap;
}

.site-menu a::before,
.social-link::before,
.footer-action::before,
.header-cta::before {
    content: '';
    position: absolute;
    inset: -40% auto -40% -30%;
    width: 32%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.66), transparent);
    transform: translateX(-220%) skewX(-18deg);
    animation: buttonSheen 6.4s linear infinite;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.site-menu a:hover,
.site-menu a:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 24, 54, 0.18);
    outline: none;
}

.site-menu a.is-active {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(0, 22, 44, 0.2);
}

.header-cta {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(115, 191, 255, 0.24), rgba(255, 255, 255, 0.08));
    color: #ffffff;
    text-decoration: none;
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(129, 204, 255, 0.32), rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 30px rgba(0, 24, 54, 0.2);
    outline: none;
}

.site-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-social--desktop {
    flex: 0 0 auto;
}

.site-social--mobile {
    display: none;
    flex: 0 0 auto;
}

.site-social--mobile .social-link {
    width: 40px;
    height: 40px;
}

.site-social--mobile .social-link--instagram {
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.24), transparent 36%),
        linear-gradient(180deg, rgba(120, 177, 233, 0.24), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.24);
}

.site-social--mobile .social-link--youtube {
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.22), transparent 36%),
        linear-gradient(180deg, rgba(255, 126, 126, 0.24), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 214, 214, 0.24);
}

.social-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.social-link svg {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 14px 28px rgba(0, 24, 54, 0.18);
    outline: none;
}

.hero {
    --hero-header-offset: 0px;
    --hero-header-gap: 0px;
    position: relative;
    z-index: 1;
    height: 88vh;
    min-height: 680px;
    padding-top: 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at top, rgba(0, 51, 102, 0.11), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.34) 58%, rgba(255, 255, 255, 0.82) 88%, #ffffff 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 18vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22) 58%, rgba(255, 255, 255, 0.72) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    transition: transform 0.15s linear, opacity 0.15s linear;
    padding: 24px 24px 96px;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 20, 44, 0.18), rgba(0, 20, 44, 0.04) 42%, rgba(255, 255, 255, 0.08) 86%, rgba(255, 255, 255, 0.2) 100%);
    pointer-events: none;
}

.hero-mosaic {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr 0.95fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(1180px, 100%);
    height: 100%;
    margin: 0 auto;
    opacity: 1;
    filter: none;
}

.hero-tile {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 22px 60px rgba(0, 23, 46, 0.18);
    background: #dbe7f2;
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    opacity: 1;
}

.hero-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 15, 34, 0.03), rgba(0, 15, 34, 0.01) 52%, rgba(0, 15, 34, 0.04) 100%);
}

.hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translate3d(0, 0, 0) scale(1.025);
    filter: none;
    image-rendering: auto;
    transition: transform 0.18s linear;
    will-change: transform;
}

.hero-tile--singer {
    --hero-intro-angle: -88deg;
    --hero-intro-delay: 0.02s;
    grid-column: 1;
    grid-row: 1 / span 2;
}

.hero-tile--wide {
    --hero-intro-angle: 88deg;
    --hero-intro-delay: 0.12s;
    grid-column: 2 / span 2;
    grid-row: 1;
}

.hero-tile--drums {
    --hero-intro-angle: -78deg;
    --hero-intro-delay: 0.2s;
    grid-column: 4;
    grid-row: 1;
}

.hero-tile--keys {
    --hero-intro-angle: 82deg;
    --hero-intro-delay: 0.27s;
    grid-column: 2;
    grid-row: 2;
}

.hero-tile--bass {
    --hero-intro-angle: -84deg;
    --hero-intro-delay: 0.34s;
    grid-column: 3 / span 2;
    grid-row: 2;
}

.hero.hero-intro-ready .hero-tile {
    animation: heroTileFlipIn 0.54s cubic-bezier(0.22, 0.92, 0.28, 1) both;
    animation-delay: var(--hero-intro-delay, 0s);
}

.hero.hero-intro-ready .hero-tile img {
    animation: heroTileImageSettle 0.6s cubic-bezier(0.22, 0.92, 0.28, 1) both;
    animation-delay: var(--hero-intro-delay, 0s);
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1180px;
    height: 100%;
    margin: 0 auto;
    padding: clamp(30px, 4vw, 52px) 24px 11vh;
    display: grid;
    align-items: end;
    pointer-events: none;
    isolation: isolate;
}

.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    bottom: -24%;
    width: min(48vw, 620px);
    height: 132%;
    pointer-events: none;
    z-index: 1;
    border-radius: 999px 999px 0 0;
    filter: blur(10px);
    opacity: 0.58;
}

.hero-content::before {
    left: -14%;
    background:
        radial-gradient(circle at 18% 92%, rgba(39, 131, 255, 0.3), transparent 18%),
        linear-gradient(
            76deg,
            transparent 0%,
            rgba(0, 22, 52, 0.04) 18%,
            rgba(2, 44, 96, 0.2) 32%,
            rgba(7, 76, 158, 0.38) 44%,
            rgba(112, 188, 255, 0.26) 50%,
            rgba(7, 76, 158, 0.3) 57%,
            rgba(2, 44, 96, 0.1) 68%,
            transparent 84%
        );
    transform-origin: bottom left;
    transform: rotate(19deg);
    animation: heroSpotlightLeft 24s ease-in-out infinite;
}

.hero-content::after {
    right: -12%;
    background:
        radial-gradient(circle at 82% 92%, rgba(39, 131, 255, 0.28), transparent 18%),
        linear-gradient(
            104deg,
            transparent 0%,
            rgba(0, 22, 52, 0.04) 18%,
            rgba(2, 44, 96, 0.18) 32%,
            rgba(8, 72, 152, 0.34) 44%,
            rgba(112, 188, 255, 0.24) 50%,
            rgba(8, 72, 152, 0.28) 57%,
            rgba(2, 44, 96, 0.1) 68%,
            transparent 84%
        );
    transform-origin: bottom right;
    transform: rotate(-19deg);
    animation: heroSpotlightRight 26s ease-in-out infinite;
}

.hero-copy {
    max-width: 500px;
    padding: 30px 54px 24px 24px;
    background: none;
    border: 0;
    backdrop-filter: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    opacity: 1;
    transform: none;
    z-index: 2;
}

.hero.hero-intro-ready .hero-copy {
    animation: heroReveal 1.3s 0.25s both cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-copy::before {
    content: '';
    position: absolute;
    inset: -18px -8px -18px -18px;
    background:
        linear-gradient(92deg, rgba(0, 24, 48, 0.52) 0%, rgba(0, 24, 48, 0.34) 38%, rgba(0, 24, 48, 0.14) 68%, rgba(0, 24, 48, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    backdrop-filter: blur(1.6px);
    box-shadow: 0 12px 28px rgba(0, 22, 43, 0.1);
    opacity: 1;
}

.hero-copy::after {
    content: '';
    position: absolute;
    inset: -24%;
    background:
        radial-gradient(circle at 82% 16%, rgba(104, 178, 244, 0.08), transparent 22%),
        linear-gradient(120deg, transparent 18%, rgba(140, 203, 255, 0.06) 34%, transparent 52%);
    transform: translateX(-20%);
    opacity: 0.16;
    animation: none;
    pointer-events: none;
}

.hero-copy > * {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.18rem, 4.1vw, 3.9rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 23, 46, 0.28);
}

.hero p {
    max-width: 560px;
    margin: 22px 0 0;
    font-size: clamp(1.04rem, 1.8vw, 1.24rem);
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 4px 18px rgba(0, 15, 34, 0.28);
}

.hero-slogan {
    max-width: 470px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 230, 255, 0.92);
    text-shadow: 0 0 24px rgba(14, 95, 187, 0.28);
}

@media (max-width: 1380px) {
    .top-header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .top-header__inner {
        width: min(1320px, 100%);
        gap: 10px;
    }

    .site-brand strong {
        font-size: 0.88rem;
        letter-spacing: 0.12em;
    }

    .site-brand__copy span {
        font-size: 0.64rem;
    }

    .site-menu a {
        padding: 9px 10px;
        font-size: 0.65rem;
        letter-spacing: 0.11em;
    }

    .header-cta {
        padding: 10px 16px;
        font-size: 0.66rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .hero-content {
        padding-top: clamp(28px, 3.8vw, 46px);
    }

    .hero-copy {
        padding-top: 28px;
    }
}

@media (max-width: 1180px) {
    .site-social--desktop {
        display: none;
    }

    .top-header__inner {
        width: min(1260px, 100%);
    }

    .site-menu a {
        padding: 9px 9px;
        font-size: 0.63rem;
        letter-spacing: 0.1em;
    }

    .header-cta {
        padding: 10px 14px;
        font-size: 0.64rem;
        letter-spacing: 0.11em;
    }

    .hero-content {
        padding-top: clamp(24px, 3.5vw, 40px);
    }

    .hero-copy {
        padding-top: 24px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
    pointer-events: auto;
}

.scroll-cue {
    position: absolute;
    left: 24px;
    bottom: 38px;
    z-index: 4;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.scroll-cue::after {
    content: '';
    display: block;
    width: 1px;
    height: 78px;
    margin-top: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
    animation: cueDrift 2.2s infinite ease-in-out;
}

.hero-signature {
    position: relative;
    z-index: 6;
    width: min(760px, calc(100% - 72px));
    margin: 6px auto 34px;
    padding: 18px 28px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    overflow: hidden;
    overflow: clip;
}

.hero-signature__mark {
    flex: 0 0 auto;
    width: 110px;
    color: rgba(120, 177, 233, 0.76);
    filter: drop-shadow(0 10px 20px rgba(0, 51, 102, 0.08));
    opacity: 0.92;
}

.hero-signature__mark svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-signature__mark path,
.hero-signature__mark circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-signature__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    justify-items: start;
    text-align: left;
}

.hero-signature__label {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: rgba(0, 51, 102, 0.62);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-signature strong {
    display: block;
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 22px rgba(255, 255, 255, 0.74);
}

.container {
    position: relative;
    z-index: 5;
    max-width: 1180px;
    margin: -1vh auto 0;
    padding: clamp(32px, 5vw, 54px) 24px 80px;
    overflow-x: hidden;
}

.hero,
.section,
.site-footer {
    scroll-margin-top: 110px;
}

.section {
    margin: 0 0 30px;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 252, 249, 0.94));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    opacity: 1;
    transform: none;
    transition:
        opacity 0.38s ease-out,
        transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.24s ease,
        border-color 0.24s ease;
    text-align: center;
    will-change: transform, opacity;
    contain: layout paint;
    max-width: 100%;
}

.section::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(112deg, transparent 0%, rgba(59, 143, 235, 0.08) 18%, rgba(255, 255, 255, 0.82) 34%, rgba(93, 171, 245, 0.1) 46%, transparent 60%);
    transform: translateX(-135%);
    opacity: 0.2;
    animation: surfaceSweep 10s ease-in-out infinite;
    pointer-events: none;
}

.section > * {
    position: relative;
    z-index: 1;
}

.section.reveal-hidden {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
}

.section.reveal-hidden.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-card {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.36s ease-out,
        transform 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
}

.reveal-card.reveal-hidden {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
}

.reveal-card.reveal-hidden.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-card--turn.reveal-hidden {
    transform: perspective(1200px) rotateY(var(--reveal-turn, 10deg)) rotateZ(var(--reveal-roll, 1deg)) translate3d(0, 18px, 0);
    transform-origin: center center;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.reveal-card--turn.reveal-hidden.visible {
    transform: perspective(1200px) rotateY(0deg) rotateZ(0deg) translate3d(0, 0, 0) scale(1);
}

.section:hover {
    border-color: rgba(0, 51, 102, 0.24);
    box-shadow: 0 18px 54px rgba(0, 51, 102, 0.08);
}

h2 {
    margin: 0 0 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--accent);
    text-align: center;
}

.section p {
    margin: 0;
    max-width: 760px;
    color: var(--ink);
    font-size: 1.03rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section > p + .gallery,
.section > p + .video-showcase,
.section > p + .song-showcase,
.section > p + .song-list,
.section > p + .centered,
.section > p + .show-shell,
.section > p + .contact-grid {
    margin-top: 24px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    background: rgba(231, 241, 252, 0.7);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker--light {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(229, 242, 255, 0.94);
}

.section--immersive {
    background:
        radial-gradient(circle at 18% 20%, rgba(108, 183, 255, 0.18), transparent 28%),
        radial-gradient(circle at 84% 76%, rgba(108, 183, 255, 0.14), transparent 24%),
        linear-gradient(160deg, rgba(7, 37, 72, 0.98) 0%, rgba(5, 28, 58, 0.98) 42%, rgba(4, 20, 42, 0.98) 100%);
    border-color: rgba(141, 199, 255, 0.18);
    box-shadow: 0 28px 76px rgba(0, 26, 54, 0.24);
}

.section--immersive::before {
    background: linear-gradient(114deg, transparent 0%, rgba(145, 206, 255, 0.18) 18%, rgba(255, 255, 255, 0.3) 34%, rgba(145, 206, 255, 0.12) 46%, transparent 60%);
    opacity: 0.5;
}

.section--immersive h2,
.section--immersive p {
    color: #ffffff;
}

.section--immersive p {
    max-width: 840px;
    color: rgba(226, 241, 255, 0.9);
}

.section-lead {
    max-width: 860px;
}

.section-lead--light {
    color: rgba(226, 241, 255, 0.9);
}

.section--showcase {
    background:
        radial-gradient(circle at 14% 16%, rgba(116, 191, 255, 0.18), transparent 26%),
        radial-gradient(circle at 84% 20%, rgba(116, 191, 255, 0.12), transparent 22%),
        linear-gradient(160deg, rgba(7, 36, 70, 0.985) 0%, rgba(4, 23, 48, 0.992) 48%, rgba(2, 14, 30, 1) 100%);
    border-color: rgba(147, 207, 255, 0.18);
    box-shadow: 0 30px 82px rgba(0, 24, 48, 0.26);
}

.section--showcase::before {
    background: linear-gradient(114deg, transparent 0%, rgba(145, 206, 255, 0.18) 18%, rgba(255, 255, 255, 0.28) 34%, rgba(145, 206, 255, 0.12) 46%, transparent 60%);
    opacity: 0.52;
}

.section--showcase::after {
    content: '';
    position: absolute;
    inset: auto -12% -24%;
    height: 50%;
    background:
        radial-gradient(circle at 18% 0%, rgba(126, 197, 255, 0.14), transparent 30%),
        radial-gradient(circle at 82% 0%, rgba(126, 197, 255, 0.12), transparent 28%);
    filter: blur(30px);
    opacity: 0.82;
    pointer-events: none;
}

.section--showcase h2,
.section--showcase p {
    color: #ffffff;
}

.section--showcase p {
    max-width: 880px;
    color: rgba(225, 240, 255, 0.88);
}

.section-cta {
    margin: 24px auto 0;
    max-width: 860px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.section-cta span {
    max-width: 38rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: left;
}

.section-cta--light span {
    color: rgba(226, 241, 255, 0.84);
}

.experience-showcase {
    position: relative;
    margin-top: 30px;
    padding: 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 44px rgba(0, 17, 34, 0.18);
    overflow: hidden;
    isolation: isolate;
}

.experience-showcase > * {
    position: relative;
    z-index: 1;
}

.experience-showcase .experience-grid {
    margin-top: 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
    perspective: 1600px;
}

.experience-card {
    min-height: 100%;
    padding: 24px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    box-shadow: 0 20px 38px rgba(0, 16, 34, 0.18);
    text-align: left;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.experience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 0%, rgba(146, 208, 255, 0.12) 20%, rgba(255, 255, 255, 0.14) 34%, transparent 52%);
    transform: translateX(-128%);
    animation: surfaceSweep 13s ease-in-out infinite;
    pointer-events: none;
}

.experience-card > * {
    position: relative;
    z-index: 1;
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(178, 220, 255, 0.26);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    box-shadow: 0 28px 52px rgba(0, 17, 34, 0.24);
}

.experience-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(118, 193, 255, 0.24), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.experience-card strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.28;
}

.experience-card p {
    margin-top: 12px;
    max-width: none;
    text-align: left;
    color: rgba(226, 241, 255, 0.84);
    font-size: 0.94rem;
}

.legacy-shell {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.28fr);
    gap: 22px;
    align-items: stretch;
    perspective: 1600px;
}

.legacy-panel,
.legacy-note {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(233, 243, 255, 0.94));
    box-shadow: 0 20px 42px rgba(0, 51, 102, 0.1);
}

.legacy-panel::before,
.legacy-note::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 2%, rgba(54, 132, 225, 0.1) 20%, rgba(255, 255, 255, 0.64) 34%, transparent 52%);
    transform: translateX(-128%);
    animation: surfaceSweep 13s ease-in-out infinite;
    pointer-events: none;
}

.legacy-panel::after {
    content: '';
    position: absolute;
    inset: auto -12% -26%;
    height: 44%;
    background:
        radial-gradient(circle at 14% 0%, rgba(134, 198, 255, 0.2), transparent 34%),
        radial-gradient(circle at 84% 0%, rgba(103, 175, 245, 0.16), transparent 28%);
    filter: blur(22px);
    opacity: 0.9;
    pointer-events: none;
}

.legacy-panel > *,
.legacy-note > * {
    position: relative;
    z-index: 1;
}

.legacy-panel {
    display: grid;
    gap: 16px;
    padding: 28px 26px;
    align-content: start;
}

.legacy-note--inline {
    margin-top: 4px;
    padding: 18px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(243, 248, 255, 0.98), rgba(231, 241, 252, 0.94));
    box-shadow: 0 14px 28px rgba(0, 51, 102, 0.08);
}

.legacy-video-trigger {
    display: grid;
    grid-template-columns: minmax(240px, 1.08fr) minmax(0, 0.92fr);
    gap: 16px;
    align-items: center;
    width: 100%;
    margin-top: 2px;
    padding: 16px;
    border: 1px solid rgba(173, 221, 255, 0.18);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.legacy-video-trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 4%, rgba(160, 220, 255, 0.1) 22%, rgba(255, 255, 255, 0.18) 36%, transparent 54%);
    transform: translateX(-128%);
    animation: surfaceSweep 12s ease-in-out infinite;
    pointer-events: none;
}

.legacy-video-trigger > * {
    position: relative;
    z-index: 1;
}

.legacy-video-trigger:hover,
.legacy-video-trigger:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(190, 229, 255, 0.3);
    box-shadow: 0 18px 36px rgba(0, 25, 52, 0.18);
    outline: none;
}

.legacy-video-trigger__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 30px rgba(0, 17, 34, 0.18);
}

.legacy-video-trigger__media::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    pointer-events: none;
    z-index: 2;
}

.legacy-video-trigger__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.legacy-video-trigger__play {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(0, 77, 154, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 14px 28px rgba(0, 24, 54, 0.22);
    z-index: 3;
}

.legacy-video-trigger__play::before,
.legacy-video-trigger__play::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.legacy-video-trigger__play::before {
    inset: -7px;
    border: 1px solid rgba(170, 220, 255, 0.24);
    opacity: 0.72;
}

.legacy-video-trigger__play::after {
    inset: auto 10px -16px;
    height: 16px;
    background: radial-gradient(circle, rgba(127, 193, 255, 0.46), transparent 72%);
    filter: blur(8px);
}

.legacy-video-trigger__body {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.legacy-video-trigger__kicker {
    color: rgba(201, 230, 255, 0.88);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legacy-video-trigger__body strong {
    color: #ffffff;
    font-size: 1.44rem;
    line-height: 1.08;
}

.legacy-video-trigger__text {
    color: rgba(229, 242, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.58;
}

.legacy-video-trigger__trail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.legacy-video-trigger__trail span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(173, 221, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(234, 245, 255, 0.94);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legacy-video-trigger__action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: start;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(180, 226, 255, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
    color: #f5fbff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.legacy-video-trigger__action::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #a8dbff, #4a9ef0);
    box-shadow: 0 0 0 5px rgba(124, 196, 255, 0.12);
}

.legacy-panel__kicker,
.legacy-note__kicker,
.legacy-phase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    background: rgba(233, 242, 253, 0.9);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legacy-panel__kicker,
.legacy-note__kicker {
    justify-self: start;
}

.legacy-panel strong {
    display: block;
    color: var(--accent);
    font-size: 1.34rem;
    line-height: 1.18;
    max-width: 14ch;
}

.legacy-panel p {
    max-width: none;
    margin: 0;
    text-align: left;
    font-size: 0.97rem;
    line-height: 1.72;
    color: var(--ink);
}

.legacy-timeline {
    display: flex;
    align-items: stretch;
    gap: 18px;
}

.legacy-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.legacy-card {
    min-height: 100%;
    padding: 24px 22px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 244, 255, 0.94));
    box-shadow: 0 18px 38px rgba(0, 51, 102, 0.08);
    text-align: left;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.legacy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 2%, rgba(54, 132, 225, 0.08) 20%, rgba(255, 255, 255, 0.6) 34%, transparent 52%);
    transform: translateX(-128%);
    animation: surfaceSweep 13s ease-in-out infinite;
    animation-delay: 0.9s;
    pointer-events: none;
}

.legacy-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 51, 102, 0.9), rgba(102, 176, 244, 0.82));
    opacity: 0.84;
}

.legacy-card > * {
    position: relative;
    z-index: 1;
}

.legacy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 81, 162, 0.22);
    box-shadow: 0 26px 48px rgba(0, 51, 102, 0.12);
}

.legacy-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(230, 241, 253, 0.92);
    border: 1px solid rgba(0, 51, 102, 0.12);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legacy-phase {
    margin-left: 10px;
    padding-inline: 11px;
    font-size: 0.64rem;
    letter-spacing: 0.11em;
}

.legacy-card strong {
    display: block;
    margin-top: 18px;
    color: var(--accent);
    font-size: 1.04rem;
    line-height: 1.28;
}

.legacy-card p {
    margin-top: 12px;
    max-width: none;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.65;
}

.legacy-note {
    padding: 22px 24px;
}

.legacy-note p {
    margin: 14px 0 0;
    max-width: none;
    text-align: left;
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.7;
}

.legacy-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
}

.legacy-stats span {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 11px 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    background: rgba(235, 243, 252, 0.84);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

#legado .legacy-shell {
    margin-top: 24px;
    gap: 18px;
    grid-template-columns: minmax(280px, 1fr) minmax(260px, 320px);
    align-items: start;
    justify-content: center;
}

#legado .legacy-shell--player-only {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(320px, 560px);
    align-items: center;
    justify-content: center;
    gap: 32px;
}

#legado .legacy-intro {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 18px;
    text-align: left;
}

#legado .legacy-intro .section-kicker,
#legado .legacy-intro h2,
#legado .legacy-intro .section-lead {
    margin: 0;
}

#legado .legacy-intro .section-lead {
    max-width: 31ch;
    text-align: left;
}

#legado .legacy-track {
    gap: 14px;
}

#legado.section {
    overflow: hidden;
    border-color: rgba(164, 214, 255, 0.18);
    background:
        radial-gradient(circle at 14% 12%, rgba(121, 194, 255, 0.12), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(83, 162, 247, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(10, 50, 96, 0.98), rgba(5, 28, 56, 0.98));
    box-shadow: 0 24px 54px rgba(0, 32, 72, 0.18);
}

#legado.section::before {
    background: linear-gradient(116deg, transparent 8%, rgba(129, 201, 255, 0.08) 24%, rgba(255, 255, 255, 0.2) 38%, transparent 56%);
}

#legado h2,
#legado .section-lead,
#legado .section-kicker {
    color: #ffffff;
}

#legado .section-kicker {
    border-color: rgba(173, 221, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #eaf5ff;
}

#legado .section-lead {
    color: rgba(229, 242, 255, 0.9);
}

#legado .legacy-panel {
    min-height: 100%;
    aspect-ratio: 1 / 1;
    align-content: start;
    border: 1px solid rgba(223, 239, 255, 0.76);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
    box-shadow: 0 24px 42px rgba(0, 17, 34, 0.16);
    padding: 24px 22px;
    gap: 14px;
}

#legado .legacy-panel::before,
#legado .legacy-panel::after {
    display: none;
}

#legado .legacy-panel__kicker {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: rgba(0, 77, 154, 0.72);
    box-shadow: none;
    letter-spacing: 0.14em;
}

#legado .legacy-panel strong {
    max-width: 11ch;
    font-size: 1.24rem;
    line-height: 1.12;
    color: #0d3d77;
}

#legado .legacy-panel p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.56;
    color: rgba(27, 67, 110, 0.82);
}

#legado .legacy-panel .legacy-statements li {
    color: #0d3d77;
}

#legado .legacy-panel .legacy-statements li::before {
    background: linear-gradient(180deg, rgba(12, 107, 212, 0.96), rgba(8, 69, 138, 0.96));
    box-shadow: 0 0 0 5px rgba(12, 107, 212, 0.12);
}

#legado .legacy-panel .legacy-closing {
    color: rgba(27, 67, 110, 0.9);
}

#legado .legacy-note,
#legado .legacy-card {
    border-color: rgba(164, 214, 255, 0.18);
    background:
        radial-gradient(circle at 14% 16%, rgba(120, 194, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(10, 50, 96, 0.98), rgba(5, 28, 56, 0.98));
    box-shadow: 0 24px 54px rgba(0, 32, 72, 0.18);
}

#legado .legacy-note::before,
#legado .legacy-card::before {
    background: linear-gradient(116deg, transparent 8%, rgba(129, 201, 255, 0.08) 24%, rgba(255, 255, 255, 0.24) 38%, transparent 56%);
}

#legado .legacy-card strong,
#legado .legacy-note strong {
    color: #ffffff;
}

#legado .legacy-card p,
#legado .legacy-note p {
    color: rgba(229, 242, 255, 0.9);
}

#legado .legacy-card {
    padding: 20px 18px;
}

#legado .legacy-card::after {
    background: linear-gradient(90deg, rgba(158, 214, 255, 0.96), rgba(255, 255, 255, 0.58));
    opacity: 1;
}

#legado .legacy-card strong {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.2;
}

#legado .legacy-card p {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.52;
}

.legacy-statements {
    display: grid;
    gap: 10px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}

.legacy-statements li {
    position: relative;
    padding-left: 18px;
    color: rgba(239, 247, 255, 0.94);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.45;
    text-transform: uppercase;
}

.legacy-statements li::before {
    content: '';
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(168, 219, 255, 0.98), rgba(74, 158, 240, 0.98));
    box-shadow: 0 0 0 5px rgba(124, 196, 255, 0.12);
}

.legacy-closing {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 26ch;
}

#legado .legacy-timeline {
    min-height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: 0;
}

.legacy-feature-card {
    min-height: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 26px 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
    box-shadow: 0 24px 42px rgba(0, 17, 34, 0.16);
}

.legacy-feature-card__kicker {
    color: rgba(0, 77, 154, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legacy-feature-card strong {
    max-width: 11ch;
    color: #0d3d77;
    font-size: 1.42rem;
    line-height: 1.08;
}

.legacy-feature-card p {
    max-width: 28ch;
    margin: 0;
    color: rgba(27, 67, 110, 0.82);
    font-size: 0.95rem;
    line-height: 1.58;
}

#legado .legacy-video-trigger--feature {
    display: block;
    width: 100%;
    max-width: 500px;
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 0;
    align-content: stretch;
    justify-items: stretch;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    justify-self: stretch;
}

#legado .legacy-video-trigger--feature::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -18px;
    height: 28px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(117, 191, 255, 0.28), transparent 72%);
    filter: blur(12px);
    opacity: 0.5;
    z-index: 0;
}

#legado .legacy-video-trigger--feature .legacy-video-trigger__media {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 0;
    justify-self: stretch;
    overflow: hidden;
    border-radius: 28px;
    border: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(0, 51, 102, 0.08);
    box-shadow: 0 18px 32px rgba(0, 17, 34, 0.14);
}

#legado .legacy-video-trigger--feature .legacy-video-trigger__media::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 28%, rgba(88, 172, 238, 0.12) 64%, rgba(255, 255, 255, 0.08) 100%),
        repeating-linear-gradient(170deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 18px);
    mix-blend-mode: screen;
    opacity: 0.46;
    pointer-events: none;
    z-index: 2;
}

#legado .legacy-video-trigger--feature .legacy-video-trigger__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px;
    box-shadow: none;
}

#legado .legacy-video-trigger--feature .legacy-video-trigger__play {
    width: 86px;
    height: 86px;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    font-size: 1.32rem;
    background: linear-gradient(180deg, rgba(19, 96, 192, 0.95), rgba(8, 56, 118, 0.98));
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 16px 26px rgba(0, 18, 40, 0.22);
    backdrop-filter: blur(8px);
}

.section--repertoire .section-lead,
.section--tickets .section-lead {
    max-width: 820px;
}

.section--repertoire {
    overflow: hidden;
}

.repertoire-doodles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.repertoire-doodle {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 89, 178, 0.16);
    background: rgba(255, 255, 255, 0.74);
    color: rgba(0, 77, 154, 0.34);
    box-shadow: 0 12px 28px rgba(0, 51, 102, 0.06);
}

.repertoire-doodle svg {
    width: 20px;
    height: 20px;
    display: block;
}

.repertoire-doodle em {
    font-style: normal;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.repertoire-doodle--rei {
    top: 24px;
    left: 24px;
    transform: rotate(-8deg);
}

.repertoire-doodle--calhambeque {
    top: 18px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
}

.repertoire-doodle--spotify {
    top: 84px;
    right: 32px;
    transform: rotate(10deg);
}

.repertoire-doodle--daniel {
    left: 34px;
    bottom: 22px;
    transform: rotate(-9deg);
}

.repertoire-shell {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.repertoire-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 24px 22px;
    border: 1px solid rgba(164, 214, 255, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 14% 16%, rgba(120, 194, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(10, 50, 96, 0.98), rgba(5, 28, 56, 0.98));
    box-shadow: 0 22px 48px rgba(0, 32, 72, 0.16);
    text-align: left;
}

.repertoire-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 4%, rgba(129, 201, 255, 0.08) 22%, rgba(255, 255, 255, 0.24) 36%, transparent 54%);
    transform: translateX(-128%);
    animation: surfaceSweep 14s ease-in-out infinite;
    pointer-events: none;
}

.repertoire-card > * {
    position: relative;
    z-index: 1;
}

.repertoire-card__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(173, 221, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #eaf5ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.repertoire-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.04rem;
    line-height: 1.28;
}

.repertoire-card p {
    margin: 12px 0 0;
    max-width: none;
    text-align: left;
    font-size: 0.94rem;
    line-height: 1.62;
    color: rgba(229, 242, 255, 0.9);
}

.section--tickets {
    overflow: hidden;
}

.tickets-shell {
    position: relative;
    margin-top: 26px;
    padding: 34px 28px 28px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
    box-shadow: 0 22px 44px rgba(0, 51, 102, 0.08);
    overflow: hidden;
    isolation: isolate;
}

.tickets-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(116deg, transparent 8%, rgba(125, 196, 255, 0.08) 24%, rgba(255, 255, 255, 0.66) 38%, transparent 56%);
    transform: translateX(-130%);
    animation: surfaceSweep 14s ease-in-out infinite;
    pointer-events: none;
}

.tickets-shell > * {
    position: relative;
    z-index: 1;
}

.tickets-doodles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ticket-doodle {
    position: absolute;
    width: 88px;
    height: 88px;
    color: rgba(0, 77, 154, 0.2);
}

.ticket-doodle svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ticket-doodle--one {
    top: 18px;
    left: 18px;
    transform: rotate(-12deg);
}

.ticket-doodle--two {
    top: 16px;
    right: 22px;
    transform: rotate(14deg);
}

.ticket-doodle--three {
    right: 88px;
    bottom: 12px;
    transform: rotate(-10deg);
}

.tickets-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.tickets-copy strong {
    display: block;
    color: var(--accent);
    font-size: 1.18rem;
    line-height: 1.28;
}

.tickets-copy p {
    margin: 12px auto 0;
    max-width: 680px;
}

.tickets-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.tickets-actions .btn {
    margin-top: 0;
}

@media (min-width: 1100px) {
    #legado.section {
        padding: 32px 28px;
    }

    #legado h2 {
        margin-bottom: 16px;
        font-size: clamp(2.1rem, 3.2vw, 2.85rem);
    }

    #legado .section-lead {
        max-width: 760px;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    #legado .legacy-shell {
        margin-top: 22px;
        gap: 16px;
        grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    }

    #legado .legacy-panel {
        gap: 14px;
        padding: 22px 18px;
    }

    #legado .legacy-panel strong {
        font-size: 1.2rem;
        max-width: 13ch;
    }

    #legado .legacy-panel p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    #legado .legacy-statements {
        gap: 8px;
    }

    #legado .legacy-statements li {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    #legado .legacy-timeline {
        gap: 14px;
    }

    .legacy-feature-card {
        padding: 22px 20px;
    }

    .legacy-feature-card strong {
        font-size: 1.24rem;
    }

    .legacy-feature-card p {
        font-size: 0.9rem;
    }

    #legado .legacy-video-trigger--feature .legacy-video-trigger__media {
        padding: 0;
    }

    #legado .legacy-video-trigger--feature .legacy-video-trigger__media img {
        min-height: 0;
    }

    #legado .legacy-track {
        gap: 12px;
    }

    #legado .legacy-card {
        padding: 20px 18px;
    }

    #legado .legacy-year {
        margin-bottom: 12px;
        padding: 8px 12px;
        font-size: 0.74rem;
    }

    #legado .legacy-phase {
        font-size: 0.6rem;
    }

    #legado .legacy-card strong {
        margin-top: 14px;
        font-size: 0.98rem;
        line-height: 1.22;
    }

    #legado .legacy-card p {
        margin-top: 10px;
        font-size: 0.89rem;
        line-height: 1.55;
    }

    #legado .legacy-note {
        padding: 18px 18px;
    }

    #legado .legacy-note p {
        margin-top: 10px;
        font-size: 0.91rem;
        line-height: 1.55;
    }
}

.section--bio p {
    max-width: none;
}

.section--bio,
.section--contacts {
    overflow: hidden;
}

.bio-doodles,
.contact-doodles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bio-doodle,
.contact-doodle {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 89, 178, 0.16);
    background: rgba(255, 255, 255, 0.74);
    color: rgba(0, 77, 154, 0.34);
    box-shadow: 0 12px 28px rgba(0, 51, 102, 0.06);
}

.bio-doodle svg,
.contact-doodle svg {
    width: 20px;
    height: 20px;
    display: block;
}

.bio-doodle em,
.contact-doodle em {
    font-style: normal;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.bio-doodle--daniel {
    top: 24px;
    left: 24px;
    transform: rotate(-9deg);
}

.bio-doodle--mic {
    top: 74px;
    right: 32px;
    transform: rotate(8deg);
}

.bio-doodle--calhambeque {
    right: 64px;
    bottom: 18px;
    transform: rotate(-6deg);
}

.bio-intro {
    max-width: 920px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 1.08rem;
    color: var(--accent);
    font-weight: 700;
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bio-preview {
    max-width: 760px;
    margin: 0 auto;
}

.bio-card {
    padding: 22px 24px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    background: linear-gradient(180deg, rgba(234, 242, 251, 0.38), rgba(255, 255, 255, 0.92));
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 16px 34px rgba(0, 51, 102, 0.06);
    text-align: left;
}

.bio-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(118deg, transparent 0%, rgba(0, 81, 162, 0.05) 20%, rgba(255, 255, 255, 0.66) 36%, transparent 56%);
    transform: translateX(-124%);
    animation: surfaceSweep 16s ease-in-out infinite;
    animation-delay: 1.2s;
    pointer-events: none;
}

.bio-card > * {
    position: relative;
    z-index: 1;
}

.bio-card p + p {
    margin-top: 16px;
}

.contact-doodle--daniel {
    top: 26px;
    left: 28px;
    transform: rotate(-8deg);
}

.contact-doodle--phone {
    top: 82px;
    right: 30px;
    transform: rotate(9deg);
}

.contact-doodle--calhambeque {
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%) rotate(-4deg);
}

.bio-quote {
    margin-top: 20px;
    padding: 20px 24px;
    border-left: 4px solid var(--accent);
    background: rgba(232, 241, 251, 0.52);
    color: var(--ink-strong);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
}

.bio-actions {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.bio-toggle {
    border: 1px solid rgba(0, 51, 102, 0.16);
    background: white;
    color: var(--accent);
    padding: 13px 20px;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bio-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 51, 102, 0.3);
    box-shadow: 0 12px 28px rgba(0, 51, 102, 0.12);
}

.bio-more[hidden] {
    display: none;
}

.bio-more {
    margin-top: 18px;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding: 15px 26px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn--ghost {
    background: transparent;
    color: var(--accent);
}

.btn--light {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.btn::before,
.bio-toggle::before,
.video-modal-link::before,
.video-nav::before {
    content: '';
    position: absolute;
    inset: -40% auto -40% -30%;
    width: 34%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: translateX(-220%) skewX(-18deg);
    animation: buttonSheen 5.6s ease-in-out infinite;
    mix-blend-mode: screen;
    z-index: -1;
}

.btn::after,
.bio-toggle::after,
.video-modal-link::after,
.video-nav::after {
    content: '';
    position: absolute;
    inset: auto 16px -18px;
    height: 22px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 72%);
    opacity: 0.44;
    filter: blur(10px);
    animation: buttonGlow 4.8s ease-in-out infinite;
    mix-blend-mode: screen;
    z-index: -1;
}

.btn:hover,
.bio-toggle:hover,
.video-modal-link:hover,
.video-nav:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 18px 36px rgba(0, 51, 102, 0.22);
}

.btn:hover::before,
.bio-toggle:hover::before,
.video-modal-link:hover::before,
.video-nav:hover::before {
    animation-duration: 2.3s;
}

.btn:hover::after,
.bio-toggle:hover::after,
.video-modal-link:hover::after,
.video-nav:hover::after {
    animation-duration: 1.9s;
    opacity: 0.82;
}

.video-showcase {
    margin-top: 18px;
    display: grid;
    gap: 20px;
}

.video-showcase__top,
.song-showcase__top,
.gallery-showcase__top {
    padding: 24px 26px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    box-shadow: 0 24px 44px rgba(0, 15, 34, 0.18);
}

.video-showcase__top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 18px 22px;
    align-items: center;
}

.song-showcase {
    margin-top: 18px;
    display: grid;
    gap: 20px;
}

.gallery-showcase {
    margin-top: 18px;
    display: grid;
    gap: 20px;
}

.song-showcase__top {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.96fr);
    gap: 18px 22px;
    align-items: center;
}

.gallery-showcase__top {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: 18px 22px;
    align-items: center;
}

.video-showcase__intro,
.song-showcase__intro,
.gallery-showcase__intro {
    display: grid;
    gap: 8px;
    text-align: left;
}

.video-showcase__intro strong,
.song-showcase__intro strong,
.gallery-showcase__intro strong {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.video-showcase__intro span,
.song-showcase__intro span,
.gallery-showcase__intro span {
    color: rgba(221, 238, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.65;
}

.gallery-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(213, 236, 255, 0.88);
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.video-badges,
.song-badges,
.gallery-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.video-badges span,
.song-badges span,
.gallery-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(232, 244, 255, 0.94);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.gallery-showcase--ensaios {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.gallery-showcase__stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.gallery-sticker {
    position: absolute;
    display: grid;
    place-items: center;
    width: clamp(52px, 5vw, 78px);
    aspect-ratio: 1;
    color: rgba(214, 235, 255, 0.18);
    filter: drop-shadow(0 12px 24px rgba(0, 21, 44, 0.12));
}

.gallery-sticker svg {
    width: 100%;
    height: 100%;
}

.gallery-sticker--mic {
    top: 24px;
    right: 40px;
}

.gallery-sticker--wave {
    bottom: 112px;
    left: 12px;
}

.gallery-sticker--keys {
    right: 24px;
    bottom: 34px;
}

#ensaios .gallery-showcase__top,
#ensaios .ensaios-track-frame,
#ensaios .gallery-controls {
    position: relative;
    z-index: 1;
}

#ensaios .gallery-showcase__top {
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(129, 194, 255, 0.18), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(49, 112, 192, 0.08));
}

#ensaios .gallery-showcase__top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 10%, rgba(255, 255, 255, 0.18) 34%, transparent 58%);
    transform: translateX(-126%);
    animation: surfaceSweep 13s ease-in-out infinite;
    pointer-events: none;
}

#ensaios .gallery-showcase__intro {
    gap: 10px;
}

#ensaios .gallery-showcase__intro strong {
    font-size: 1.22rem;
    line-height: 1.2;
}

#ensaios .gallery-showcase__intro span {
    max-width: 30rem;
}

#ensaios .gallery-badges {
    justify-content: flex-end;
}

.video-track-frame,
.song-grid-shell,
.ensaios-track-frame {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 44px rgba(0, 17, 34, 0.18);
    contain: layout paint;
}

.song-grid-shell::before,
.song-grid-shell::after,
.video-track-frame::before,
.video-track-frame::after {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    width: clamp(24px, 3vw, 40px);
    z-index: 2;
    pointer-events: none;
}

.song-grid-shell::before {
    left: 18px;
    background: linear-gradient(90deg, rgba(4, 29, 58, 0.82), rgba(4, 29, 58, 0));
}

.song-grid-shell::after {
    right: 18px;
    background: linear-gradient(270deg, rgba(4, 29, 58, 0.82), rgba(4, 29, 58, 0));
}

.video-track-frame::before {
    left: 18px;
    background: linear-gradient(90deg, rgba(4, 29, 58, 0.78), rgba(4, 29, 58, 0));
}

.video-track-frame::after {
    right: 18px;
    background: linear-gradient(270deg, rgba(4, 29, 58, 0.78), rgba(4, 29, 58, 0));
}

.show-shell {
    margin-top: 26px;
    position: relative;
    overflow: hidden;
}

.show-doodles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.show-doodle {
    position: absolute;
    width: 104px;
    height: 104px;
    color: rgba(0, 77, 154, 0.3);
    filter: drop-shadow(0 14px 26px rgba(0, 51, 102, 0.06));
}

.show-doodle svg {
    width: 100%;
    height: 100%;
    display: block;
}

.show-doodle--calendar {
    top: 14px;
    left: 14px;
    transform: rotate(-10deg);
}

.show-doodle--ticket {
    top: 16px;
    right: 18px;
    transform: rotate(12deg);
}

.show-doodle--calhambeque {
    right: 76px;
    bottom: 8px;
    transform: rotate(-9deg);
}

.show-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 242, 253, 0.94));
    box-shadow: 0 22px 46px rgba(0, 51, 102, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.show-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 2%, rgba(54, 132, 225, 0.1) 20%, rgba(255, 255, 255, 0.62) 34%, transparent 52%);
    transform: translateX(-128%);
    animation: surfaceSweep 12s ease-in-out infinite;
    pointer-events: none;
}

.show-card > * {
    position: relative;
    z-index: 1;
}

.show-date {
    min-width: 148px;
    padding: 20px 16px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 18%, rgba(155, 214, 255, 0.22), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(8, 52, 100, 0.98), rgba(5, 33, 64, 0.98));
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(0, 33, 66, 0.22);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.show-date::before {
    content: '';
    position: absolute;
    inset: -44% auto -44% -32%;
    width: 44%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.06) 18%, rgba(255, 255, 255, 0.84) 42%, rgba(255, 255, 255, 0.2) 58%, transparent 78%);
    transform: translateX(-220%) skewX(-18deg);
    opacity: 0.96;
    animation: buttonSheen 3.6s linear infinite;
    mix-blend-mode: screen;
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 0;
}

.show-date::after {
    content: '';
    position: absolute;
    inset: auto 12% -22%;
    height: 36%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(148, 210, 255, 0.56), transparent 72%);
    filter: blur(16px);
    opacity: 0.76;
    animation: ambientButtonAura 4.1s ease-in-out infinite;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.show-date > * {
    position: relative;
    z-index: 1;
}

.show-date__day {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 0.82;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.show-date__meta {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(223, 240, 255, 0.9);
}

.show-content {
    display: grid;
    gap: 12px;
}

.show-content strong {
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1.2;
}

.show-content p {
    max-width: none;
    margin: 0;
    text-align: left;
}

.show-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.show-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    background: rgba(235, 243, 252, 0.9);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.show-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.show-actions .btn {
    margin-top: 0;
    min-width: 208px;
}

.video-controls,
.gallery-controls,
.song-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -4px;
}

.swipe-hint {
    display: none;
    width: fit-content;
    margin: 10px auto 0;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(179, 221, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(227, 241, 255, 0.8);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.video-nav {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 51, 102, 0.14);
    background: white;
    color: var(--accent);
    font: inherit;
    font-size: 1.15rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    touch-action: manipulation;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.video-nav:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 51, 102, 0.28);
    box-shadow: 0 12px 28px rgba(0, 51, 102, 0.12);
}

.video-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 320px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 10px;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.section--showcase .video-track {
    scrollbar-color: transparent transparent;
}

.video-track::-webkit-scrollbar {
    display: none;
}

.ensaios-track-frame {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(105, 178, 255, 0.14), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.ensaios-track-frame::before,
.ensaios-track-frame::after {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    width: clamp(30px, 4vw, 48px);
    z-index: 2;
    pointer-events: none;
}

.ensaios-track-frame::before {
    left: 18px;
    background: linear-gradient(90deg, rgba(4, 29, 58, 0.86), rgba(4, 29, 58, 0));
}

.ensaios-track-frame::after {
    right: 18px;
    background: linear-gradient(270deg, rgba(4, 29, 58, 0.86), rgba(4, 29, 58, 0));
}

.ensaios-track {
    --ensaios-card-width: clamp(248px, 28vw, 356px);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--ensaios-card-width);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(2px, calc((100% - var(--ensaios-card-width)) / 2));
    padding: 2px max(2px, calc((100% - var(--ensaios-card-width)) / 2)) 10px;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.ensaios-track::-webkit-scrollbar {
    display: none;
}

.ensaios-card {
    --ensaios-rotate: 0deg;
    --ensaios-scale: 0.94;
    --ensaios-offset: 8px;
    --ensaios-opacity: 0.74;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border: 1px solid rgba(160, 210, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(69, 108, 160, 0.08));
    box-shadow: 0 20px 40px rgba(0, 17, 34, 0.22);
    isolation: isolate;
    opacity: var(--ensaios-opacity);
    transform: perspective(1400px) rotateY(var(--ensaios-rotate)) translateY(var(--ensaios-offset)) scale(var(--ensaios-scale));
    transform-origin: center center;
    transition: transform 0.34s ease, box-shadow 0.26s ease, opacity 0.24s ease, border-color 0.24s ease;
    will-change: transform, opacity;
}

.ensaios-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 4%, rgba(145, 206, 255, 0.1) 20%, rgba(255, 255, 255, 0.14) 34%, transparent 54%);
    pointer-events: none;
    z-index: 2;
}

.ensaios-card::after {
    content: '';
    position: absolute;
    inset: auto -18% -24% auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 178, 255, 0.34), transparent 72%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.ensaios-card.is-active {
    border-color: rgba(190, 229, 255, 0.34);
    box-shadow:
        0 28px 54px rgba(0, 17, 34, 0.24),
        0 0 0 1px rgba(186, 225, 255, 0.14);
}

.ensaios-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    cursor: pointer;
    filter: none;
    image-rendering: auto;
    transition: transform 0.28s ease;
    will-change: transform;
}

.ensaios-card:hover img,
.ensaios-card.is-active img {
    transform: scale(1.035);
}

.ensaios-card__caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 5px;
    padding: 20px 18px 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(4, 22, 44, 0.7) 50%, rgba(4, 22, 44, 0.96) 100%);
    pointer-events: none;
    z-index: 3;
}

.ensaios-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(199, 229, 255, 0.18);
    background: rgba(6, 31, 58, 0.58);
    color: rgba(235, 245, 255, 0.92);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ensaios-card__caption strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.2;
}

.ensaios-card__text {
    color: rgba(223, 240, 255, 0.82);
    font-size: 0.84rem;
    line-height: 1.45;
}

.video-card {
    padding: 0;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 255, 0.92));
    text-align: left;
    cursor: pointer;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-shadow: 0 18px 38px rgba(0, 51, 102, 0.1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 2%, rgba(54, 132, 225, 0.1) 20%, rgba(255, 255, 255, 0.62) 34%, transparent 52%);
    transform: none;
    opacity: 0.3;
    pointer-events: none;
}

.video-card::after {
    content: '';
    position: absolute;
    inset: auto 18px -20px;
    height: 26px;
    background: radial-gradient(circle, rgba(89, 171, 255, 0.28), transparent 72%);
    opacity: 0.42;
    filter: blur(7px);
    pointer-events: none;
}

.video-card > * {
    position: relative;
    z-index: 1;
}

.video-card:hover {
    transform: translateY(-7px) scale(1.01);
    border-color: rgba(0, 81, 162, 0.24);
    box-shadow: 0 26px 50px rgba(0, 51, 102, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(229, 241, 255, 0.96));
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #d7e3ef;
    border-radius: 20px 20px 0 0;
}

.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 17, 38, 0.02), rgba(0, 17, 38, 0.1) 100%),
        radial-gradient(circle at 78% 18%, rgba(111, 187, 255, 0.12), transparent 24%);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    filter: none;
    image-rendering: auto;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    right: 14px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(11, 80, 151, 0.96), rgba(4, 45, 90, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 1rem;
    box-shadow: 0 12px 26px rgba(0, 51, 102, 0.28);
    backdrop-filter: blur(8px);
    animation: playPulse 3.6s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover .video-play {
    transform: scale(1.08);
    box-shadow: 0 16px 30px rgba(0, 51, 102, 0.34);
}

.video-meta {
    padding: 14px 14px 18px;
    text-align: center;
}

.video-meta strong {
    display: block;
    color: var(--accent);
    font-size: 0.98rem;
    line-height: 1.3;
}

.video-meta span {
    display: block;
    margin-top: 6px;
    color: var(--ink);
    font-size: 0.84rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    position: relative;
    isolation: isolate;
    max-width: 100%;
    margin: 28px auto 0;
}

.gallery::before {
    content: '';
    position: absolute;
    inset: -6% -4%;
    background: linear-gradient(115deg, transparent 12%, rgba(95, 168, 242, 0.08) 24%, rgba(255, 255, 255, 0.06) 34%, transparent 46%, rgba(95, 168, 242, 0.05) 58%, transparent 72%);
    filter: blur(10px);
    opacity: 0.22;
    pointer-events: none;
}

.gallery img {
    width: 100%;
    height: clamp(220px, 26vw, 290px);
    object-fit: cover;
    display: block;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(0, 51, 102, 0.12);
    filter: none;
    image-rendering: auto;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease, border-color 0.4s ease;
}

.gallery img:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 26px 54px rgba(0, 51, 102, 0.16);
    border-color: rgba(0, 51, 102, 0.18);
}

.gallery__image-modal:focus-visible {
    outline: 3px solid rgba(0, 51, 102, 0.34);
    outline-offset: 4px;
}

.gallery__image-modal {
    touch-action: manipulation;
}

#ensaios h2 {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    margin-bottom: 18px;
}

#ensaios {
    background: linear-gradient(155deg, #063469 0%, #0a4d94 52%, #083562 100%);
    border-color: rgba(150, 205, 255, 0.24);
    box-shadow: 0 28px 80px rgba(0, 34, 74, 0.24);
}

#ensaios::before {
    background: linear-gradient(118deg, transparent 0%, rgba(153, 212, 255, 0.12) 20%, rgba(255, 255, 255, 0.2) 34%, transparent 54%);
}

#ensaios h2,
#ensaios > p {
    color: #ffffff;
}

#ensaios > p {
    max-width: 920px;
    margin-bottom: 38px;
    color: rgba(233, 244, 255, 0.9);
}

#ensaios .gallery-showcase__intro strong,
#ensaios .gallery-showcase__intro span,
#ensaios .gallery-badges span {
    color: #ffffff;
}

.song-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(168px, 184px);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 10px;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.song-grid::-webkit-scrollbar {
    display: none;
}

.song-grid-shell .song-grid {
    margin-top: 0;
}

.gallery,
.song-grid,
.experience-grid,
.legacy-track,
.contact-grid {
    contain: layout paint;
}

.contact-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    perspective: 1600px;
}

.contact-card {
    display: grid;
    gap: 12px;
    padding: 24px 22px;
    border: 1px solid rgba(164, 214, 255, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 14% 18%, rgba(120, 194, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(10, 50, 96, 0.98), rgba(5, 28, 56, 0.98));
    box-shadow: 0 22px 44px rgba(0, 26, 54, 0.2);
    text-decoration: none;
    text-align: left;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    touch-action: manipulation;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 2%, rgba(145, 206, 255, 0.18) 20%, rgba(255, 255, 255, 0.28) 34%, transparent 52%);
    transform: translateX(-128%);
    animation: surfaceSweep 12s ease-in-out infinite;
    animation-delay: 1.1s;
    pointer-events: none;
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-card:hover {
    transform: translateY(-7px);
    border-color: rgba(189, 227, 255, 0.3);
    box-shadow: 0 28px 52px rgba(0, 20, 40, 0.28);
    background:
        radial-gradient(circle at 14% 18%, rgba(132, 203, 255, 0.2), transparent 30%),
        linear-gradient(180deg, rgba(12, 58, 108, 1), rgba(6, 30, 60, 0.99));
}

.contact-card__kicker {
    color: rgba(210, 232, 255, 0.78);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-card strong {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.2;
}

.contact-card > span:last-of-type {
    color: rgba(225, 240, 255, 0.84);
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.contact-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.contact-card__action:hover,
.contact-card__action:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 24px rgba(0, 16, 34, 0.18);
    outline: none;
}

.contact-card__action--accent {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.96);
    color: var(--accent);
}

.contact-card__action--accent:hover,
.contact-card__action--accent:focus-visible {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--accent);
}

.contact-card__stack {
    display: grid;
    gap: 14px;
}

.contact-card__person {
    display: grid;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 51, 102, 0.1);
}

.contact-card__person:first-of-type {
    padding-top: 2px;
    border-top: 0;
}

.contact-card__number {
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.song-card {
    padding: 0;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 255, 0.92));
    text-align: left;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    touch-action: manipulation;
    box-shadow: 0 18px 34px rgba(0, 51, 102, 0.1);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.song-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 2%, rgba(54, 132, 225, 0.1) 20%, rgba(255, 255, 255, 0.62) 34%, transparent 52%);
    transform: none;
    opacity: 0.3;
    pointer-events: none;
}

.song-card::after {
    content: '';
    position: absolute;
    inset: auto 12px -18px;
    height: 24px;
    background: radial-gradient(circle, rgba(89, 171, 255, 0.28), transparent 72%);
    opacity: 0.52;
    filter: blur(7px);
    pointer-events: none;
}

.song-card > * {
    position: relative;
    z-index: 1;
}

.song-card:hover {
    transform: translateY(-7px) scale(1.01);
    border-color: rgba(0, 81, 162, 0.24);
    box-shadow: 0 24px 44px rgba(0, 51, 102, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(229, 241, 255, 0.96));
}

.song-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #dbe6f0;
    border-radius: 20px 20px 0 0;
}

.song-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 17, 38, 0.02), rgba(0, 17, 38, 0.1) 100%),
        radial-gradient(circle at 80% 18%, rgba(111, 187, 255, 0.12), transparent 24%);
}

.song-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none;
    image-rendering: auto;
    transition: transform 0.45s ease;
}

.song-card:hover .song-card__media img {
    transform: scale(1.05);
}

.song-card__play {
    position: absolute;
    right: 12px;
    bottom: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(11, 80, 151, 0.96), rgba(4, 45, 90, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.88rem;
    box-shadow: 0 12px 24px rgba(0, 51, 102, 0.28);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.song-card:hover .song-card__play {
    transform: scale(1.08);
    box-shadow: 0 16px 28px rgba(0, 51, 102, 0.34);
}

.song-card__body {
    display: grid;
    gap: 4px;
    padding: 12px 12px 14px;
}

.song-card__title {
    margin: 0;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.3;
}

.song-card__meta {
    color: var(--ink);
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.bio-card::before,
.experience-card::before,
.legacy-card::before,
.contact-card::before {
    transform: translateX(-128%);
    opacity: 0.22;
    animation: surfaceSweep 14s ease-in-out infinite;
}

.video-play,
.song-card__play {
    backdrop-filter: none;
    animation: playPulse 4.8s ease-in-out infinite;
}

.social-link::before,
.footer-action::before,
.bio-toggle::before,
.bio-toggle::after {
    opacity: 0.44;
}

.social-link::before,
.footer-action::before,
.bio-toggle::before {
    animation: buttonSheen 6.8s ease-in-out infinite;
}

.bio-toggle::after {
    animation: buttonGlow 5.8s ease-in-out infinite;
    opacity: 0.3;
}

.section--showcase .video-nav {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 15, 33, 0.18);
}

.section--showcase .video-nav:hover {
    border-color: rgba(173, 218, 255, 0.32);
    box-shadow: 0 20px 34px rgba(0, 18, 38, 0.24);
}

.section--showcase .video-card,
.section--showcase .song-card,
.section--showcase .ensaios-card {
    border-color: rgba(160, 210, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(69, 108, 160, 0.08));
    box-shadow: 0 20px 40px rgba(0, 17, 34, 0.22);
}

.section--showcase .video-card::before,
.section--showcase .song-card::before,
.section--showcase .ensaios-card::before {
    background: linear-gradient(118deg, transparent 0%, rgba(145, 206, 255, 0.18) 18%, rgba(255, 255, 255, 0.22) 34%, transparent 52%);
}

.section--showcase .video-card::after,
.section--showcase .song-card::after,
.section--showcase .ensaios-card::after {
    background: radial-gradient(circle, rgba(105, 178, 255, 0.34), transparent 72%);
}

.section--showcase .video-card:hover,
.section--showcase .song-card:hover,
.section--showcase .ensaios-card:hover {
    border-color: rgba(187, 225, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(84, 128, 186, 0.11));
    box-shadow: 0 30px 54px rgba(0, 18, 38, 0.28);
}

.section--showcase .video-thumb,
.section--showcase .song-card__media {
    background: #25456a;
}

.section--showcase .video-thumb::after,
.section--showcase .song-card__media::after {
    background:
        linear-gradient(180deg, rgba(0, 14, 30, 0.04), rgba(0, 14, 30, 0.28) 100%),
        radial-gradient(circle at 78% 18%, rgba(128, 198, 255, 0.22), transparent 26%);
}

.section--showcase .video-meta strong,
.section--showcase .song-card__title {
    color: #ffffff;
}

.section--showcase .video-meta span,
.section--showcase .song-card__meta {
    color: rgba(223, 240, 255, 0.84);
}

.section--showcase .video-play,
.section--showcase .song-card__play {
    background: linear-gradient(180deg, rgba(15, 78, 150, 0.92), rgba(3, 36, 79, 0.96));
    border-color: rgba(216, 236, 255, 0.34);
    box-shadow: 0 16px 28px rgba(0, 15, 33, 0.28);
}

.section--showcase .video-card:hover .video-play,
.section--showcase .song-card:hover .song-card__play {
    box-shadow: 0 20px 34px rgba(0, 17, 34, 0.34);
}

.site-footer {
    position: relative;
    z-index: 5;
    padding: 0 24px 36px;
}

.site-footer__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 30px clamp(22px, 4vw, 36px);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(9, 37, 68, 0.98), rgba(5, 24, 46, 0.96));
    box-shadow: 0 26px 70px rgba(0, 30, 60, 0.18);
    color: #ffffff;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.site-footer__inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(112deg, transparent 0%, rgba(86, 165, 242, 0.14) 18%, rgba(255, 255, 255, 0.32) 32%, rgba(103, 181, 255, 0.18) 44%, transparent 58%);
    transform: translateX(-126%);
    opacity: 0.72;
    animation: surfaceSweep 3.8s linear infinite;
    pointer-events: none;
}

.site-footer__brand,
.site-footer__connect,
.site-footer__social {
    position: relative;
    z-index: 1;
}

.site-footer__brand {
    display: grid;
    gap: 14px;
}

.site-footer__brand strong {
    display: block;
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer__brand-copy span {
    color: rgba(226, 241, 255, 0.8);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__brand p {
    margin: 0;
    max-width: 430px;
    color: rgba(226, 241, 255, 0.84);
    font-size: 0.96rem;
    line-height: 1.7;
}

.site-footer__network {
    margin: 0;
    color: rgba(226, 241, 255, 0.76);
    font-size: 0.84rem;
    line-height: 1.6;
}

.site-footer__network a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.42);
    text-underline-offset: 0.22em;
}

.site-footer__network a:hover,
.site-footer__network a:focus-visible {
    text-decoration-color: rgba(255, 255, 255, 0.88);
}

.site-footer__connect {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    align-content: center;
}

.footer-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(226, 241, 255, 0.9);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-lead {
    margin: 0;
    max-width: 340px;
    color: rgba(226, 241, 255, 0.86);
    font-size: 0.96rem;
    line-height: 1.7;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-action {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.footer-action:hover,
.footer-action:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 14px 28px rgba(0, 18, 38, 0.18);
    outline: none;
}

.footer-action--ghost {
    background: transparent;
    color: rgba(226, 241, 255, 0.88);
}

.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    grid-column: 1 / -1;
    padding-top: 4px;
}

.site-footer__copy {
    width: min(1180px, 100%);
    margin: 18px auto 0;
    text-align: center;
    color: rgba(19, 58, 99, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(14px);
    padding: 24px;
}

.modal-content {
    width: min(920px, 100%);
    padding: 34px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 255, 0.96));
    box-shadow: 0 30px 70px rgba(0, 51, 102, 0.14);
    position: relative;
    overflow: hidden;
}

.modal-content--jukebox {
    width: min(900px, 100%);
    padding: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 248, 255, 0.96));
    max-height: min(88vh, 760px);
    overflow: auto;
    scrollbar-width: none;
}

.modal-content--jukebox::-webkit-scrollbar {
    display: none;
}

.modal-content--video {
    width: min(920px, 100%);
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 248, 255, 0.96));
    max-height: min(92vh, 920px);
    overflow: auto;
    scrollbar-width: none;
}

.modal-content--video::-webkit-scrollbar {
    display: none;
}

.video-modal-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(170, 220, 255, 0.16);
    background:
        radial-gradient(circle at 14% 18%, rgba(124, 198, 255, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(10, 50, 96, 0.98), rgba(5, 28, 56, 0.98));
    box-shadow: 0 26px 58px rgba(0, 26, 56, 0.22);
}

.video-modal-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 8%, rgba(135, 204, 255, 0.08) 24%, rgba(255, 255, 255, 0.22) 38%, transparent 56%);
    transform: translateX(-130%);
    animation: surfaceSweep 12.6s ease-in-out infinite;
    pointer-events: none;
}

.video-modal-shell > * {
    position: relative;
    z-index: 1;
}

.video-modal-bar {
    margin-top: 18px;
    display: grid;
    gap: 8px;
    text-align: left;
}

.jukebox-modal-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 18px 22px;
    align-items: start;
    border-radius: 26px;
    border: 1px solid rgba(170, 220, 255, 0.16);
    background:
        radial-gradient(circle at 14% 18%, rgba(124, 198, 255, 0.2), transparent 24%),
        linear-gradient(180deg, rgba(10, 50, 96, 0.98), rgba(5, 28, 56, 0.98));
    box-shadow: 0 26px 58px rgba(0, 26, 56, 0.22);
}

.jukebox-modal-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 8%, rgba(135, 204, 255, 0.08) 24%, rgba(255, 255, 255, 0.24) 38%, transparent 56%);
    transform: translateX(-130%);
    animation: surfaceSweep 12.6s ease-in-out infinite;
    pointer-events: none;
}

.jukebox-modal-shell > * {
    position: relative;
    z-index: 1;
}

.jukebox-modal-stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.jukebox-sticker {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(243, 250, 255, 0.92);
    box-shadow: 0 14px 28px rgba(0, 14, 30, 0.14);
}

.jukebox-sticker svg {
    width: 20px;
    height: 20px;
    display: block;
}

.jukebox-sticker em {
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.jukebox-sticker--rei {
    top: 18px;
    right: 20px;
    transform: rotate(8deg);
}

.jukebox-sticker--spotify {
    right: 22px;
    bottom: 24px;
    transform: rotate(-9deg);
}

.jukebox-sticker--daniel {
    left: 20px;
    bottom: 26px;
    transform: rotate(-8deg);
}

.jukebox-modal-head {
    display: contents;
}

.jukebox-modal-cover {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: 1 / 1;
    max-width: 220px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 32px rgba(0, 18, 38, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.jukebox-modal-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.jukebox-modal-meta {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    gap: 10px;
    text-align: left;
    align-content: start;
    padding-top: 6px;
}

.jukebox-modal-kicker {
    color: rgba(201, 230, 255, 0.88);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.jukebox-modal-meta strong {
    color: #ffffff;
    font-size: clamp(1.66rem, 2.2vw, 2.2rem);
    line-height: 1;
    font-weight: 800;
}

.jukebox-modal-artist {
    color: rgba(223, 239, 255, 0.92);
    font-size: 1rem;
    font-weight: 700;
}

.jukebox-modal-meta p {
    margin: 0;
    max-width: 32ch;
    color: rgba(223, 239, 255, 0.86);
    line-height: 1.52;
    font-size: 0.96rem;
}

.jukebox-modal-player {
    grid-column: 2;
    grid-row: 2;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 10px;
    align-self: start;
}

.jukebox-modal-player iframe {
    display: block;
    height: clamp(164px, 18vw, 212px);
    border-radius: 16px;
    background: transparent;
}

.jukebox-modal-link {
    margin: 8px 0 0;
    background: #ffffff;
    border-color: #ffffff;
    color: var(--accent);
}

.jukebox-modal-link:hover,
.jukebox-modal-link:focus-visible {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--ink-strong);
}

.video-frame-wrap {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 48px rgba(0, 18, 38, 0.22);
}

.video-player-host,
.video-native-player,
.video-player-host iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-native-player {
    display: block;
    background: #020f21;
    object-fit: cover;
}

.video-native-player[hidden] {
    display: none;
}

.video-player-host[hidden] {
    display: none;
}

.video-frame-wrap[hidden] {
    display: none;
}

.video-modal-note {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-top: 18px;
    padding: 0;
    text-align: left;
}

.video-modal-note[hidden] {
    display: none;
}

.video-modal-preview {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #dbe7f2;
    border-radius: 20px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    box-shadow: 0 18px 36px rgba(0, 51, 102, 0.1);
}

.video-modal-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-modal-meta {
    display: grid;
    gap: 12px;
    align-content: start;
}

.video-modal-kicker {
    color: rgba(0, 51, 102, 0.68);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.video-modal-title {
    color: var(--accent);
    font-size: 1.65rem;
    line-height: 1.05;
    font-weight: 800;
}

.video-modal-shell .video-modal-kicker,
.video-modal-shell .video-modal-title,
.video-modal-subtitle {
    color: rgba(244, 249, 255, 0.96);
}

.video-modal-shell .video-modal-kicker {
    color: rgba(201, 230, 255, 0.88);
}

.video-modal-subtitle {
    margin: 0;
    max-width: 48ch;
    color: rgba(223, 239, 255, 0.84);
    line-height: 1.58;
}

.video-modal-note p {
    margin: 0;
    color: var(--ink);
    line-height: 1.6;
}

.video-modal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    padding: 13px 18px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: white;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.close-modal {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 24px rgba(0, 51, 102, 0.08);
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    color: var(--accent);
    padding: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.close-modal:hover,
.close-modal:focus-visible {
    color: var(--ink-strong);
    transform: scale(1.04);
    outline: none;
}

.modal-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(162, 214, 255, 0.18);
    background: linear-gradient(180deg, rgba(8, 52, 100, 0.98), rgba(4, 36, 72, 0.98));
    color: #ffffff;
    font: inherit;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 28, 58, 0.22);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-back-link:hover,
.modal-back-link:focus-visible {
    background: linear-gradient(180deg, rgba(10, 62, 118, 0.98), rgba(5, 42, 84, 0.98));
    border-color: rgba(198, 229, 255, 0.3);
    box-shadow: 0 18px 32px rgba(0, 28, 58, 0.24);
    transform: translateY(-1px);
    outline: none;
}

.video-modal-note .modal-back-link,
.jukebox-modal-meta .modal-back-link {
    max-width: 320px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 18, 38, 0.82);
    backdrop-filter: blur(18px);
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(5, 28, 56, 0.78);
    color: rgba(255, 255, 255, 0.88);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
    color: #ffffff;
    outline: none;
}

.lightbox__dialog {
    position: relative;
    width: min(940px, 100%);
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(166, 214, 255, 0.14);
    background: linear-gradient(180deg, rgba(9, 37, 68, 0.96), rgba(5, 24, 46, 0.96));
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.lightbox__chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 54px 12px 0;
}

.lightbox__counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(166, 214, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(226, 240, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lightbox__navs {
    display: flex;
    gap: 10px;
}

.lightbox__nav {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(166, 214, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(244, 249, 255, 0.92);
    font: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(198, 229, 255, 0.28);
    transform: translateY(-1px);
    outline: none;
}

.lightbox__figure {
    margin: 0;
    display: grid;
    gap: 14px;
}

.lightbox__image {
    width: 100%;
    max-height: 76vh;
    display: block;
    object-fit: contain;
    border-radius: 20px;
    border: 1px solid rgba(166, 214, 255, 0.14);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

.lightbox__caption {
    margin: 0;
    display: grid;
    gap: 4px;
    color: rgba(225, 240, 255, 0.9);
    font-size: 0.94rem;
    line-height: 1.6;
    text-align: center;
}

.lightbox__caption strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.lightbox__caption span {
    color: rgba(225, 240, 255, 0.82);
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cueDrift {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

@keyframes heroTileFlipIn {
    0% {
        opacity: 0;
        transform: perspective(1400px) rotateY(var(--hero-intro-angle, 90deg)) scale(0.98);
    }
    56% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: perspective(1400px) rotateY(0deg) scale(1);
    }
}

@keyframes heroTileImageSettle {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1.025);
    }
}

@keyframes pageLightSweep {
    from {
        transform: rotate(-17deg) translateX(-18vw);
        opacity: 0.62;
    }
    to {
        transform: rotate(-11deg) translateX(44vw);
        opacity: 0.82;
    }
}

@keyframes pageLightSweepReverse {
    from {
        transform: rotate(17deg) translateX(18vw);
        opacity: 0.56;
    }
    to {
        transform: rotate(11deg) translateX(-44vw);
        opacity: 0.74;
    }
}

@keyframes buttonSheen {
    0%, 12% {
        transform: translateX(-220%) skewX(-18deg);
        opacity: 0;
    }
    22% {
        opacity: 0.18;
    }
    38% {
        opacity: 0.88;
    }
    58%, 100% {
        transform: translateX(380%) skewX(-18deg);
        opacity: 0;
    }
}

@keyframes buttonGlow {
    0%, 100% {
        opacity: 0.34;
        transform: scale(0.96);
    }
    50% {
        opacity: 0.76;
        transform: scale(1.08);
    }
}

@keyframes surfaceSweep {
    0%, 14% {
        transform: translateX(-125%);
        opacity: 0;
    }
    24% {
        opacity: 0.34;
    }
    44%, 100% {
        transform: translateX(126%);
        opacity: 0;
    }
}

@keyframes heroPanelGlow {
    0%, 100% {
        transform: translateX(-18%) scale(1);
        opacity: 0.42;
    }
    50% {
        transform: translateX(8%) scale(1.04);
        opacity: 0.86;
    }
}

@keyframes heroSpotlightLeft {
    0%, 100% {
        transform: rotate(17deg) translate3d(-2%, 0, 0);
        opacity: 0.7;
    }
    50% {
        transform: rotate(24deg) translate3d(5%, -2%, 0);
        opacity: 0.96;
    }
}

@keyframes heroSpotlightRight {
    0%, 100% {
        transform: rotate(-17deg) translate3d(2%, 0, 0);
        opacity: 0.68;
    }
    50% {
        transform: rotate(-24deg) translate3d(-5%, -2%, 0);
        opacity: 0.94;
    }
}

@keyframes waterField {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    50% {
        transform: translate3d(2%, 2%, 0) scale(1.04);
    }
    100% {
        transform: translate3d(-1%, 4%, 0) scale(1.01);
    }
}

@keyframes waterGlide {
    0% {
        transform: translate3d(-12%, 0, 0) skewX(-12deg);
    }
    50% {
        transform: translate3d(8%, -2%, 0) skewX(-8deg);
    }
    100% {
        transform: translate3d(-6%, 1%, 0) skewX(-12deg);
    }
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 12px 26px rgba(0, 51, 102, 0.24);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 18px 34px rgba(0, 51, 102, 0.32);
    }
}

@media (max-width: 1200px) {
    .experience-grid,
    .legacy-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legacy-shell {
        grid-template-columns: 1fr;
    }

    .video-showcase__top,
    .song-showcase__top,
    .gallery-showcase__top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .video-controls,
    .song-controls,
    .gallery-controls {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .song-grid {
        grid-auto-columns: minmax(164px, 24vw);
    }
}

@keyframes ambientPanelGlow {
    0%, 100% {
        opacity: 0.24;
        transform: scale(0.985);
    }
    50% {
        opacity: 0.46;
        transform: scale(1.035);
    }
}

@keyframes ambientButtonAura {
    0%, 100% {
        opacity: 0.22;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.48;
        transform: scale(1.06);
    }
}

@media (max-width: 900px) {
    .top-header,
    .top-header.is-scrolled {
        padding: 12px 16px;
    }

    .top-header__inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        min-height: 52px;
    }

    .site-brand {
        flex: 1 1 auto;
        min-width: 0;
        align-items: flex-start;
        text-align: left;
    }

    .site-brand__copy {
        min-width: 0;
    }

    .site-brand strong {
        font-size: 0.84rem;
        letter-spacing: 0.09em;
    }

    .site-brand__copy span {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
        flex: 0 0 auto;
    }

    .site-social--desktop {
        display: none;
    }

    .site-social--mobile {
        display: flex;
        order: 2;
        margin-left: auto;
        margin-right: 10px;
        align-items: center;
        gap: 8px;
    }

    .site-social--mobile .social-link {
        width: 42px;
        height: 42px;
    }

    .header-nav-shell {
        position: fixed;
        top: var(--mobile-menu-top, 82px);
        right: 12px;
        left: auto;
        width: min(348px, calc(100vw - 24px));
        display: none;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        justify-items: stretch;
        align-content: start;
        padding: 14px;
        max-height: calc(100vh - var(--mobile-menu-top, 82px) - 12px);
        max-height: calc(100dvh - var(--mobile-menu-top, 82px) - 12px);
        overflow: hidden;
        overscroll-behavior: contain;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(5, 32, 64, 0.995), rgba(4, 20, 40, 0.995));
        backdrop-filter: blur(16px);
        box-shadow: 0 28px 64px rgba(0, 20, 40, 0.28);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
        z-index: 210;
    }

    .header-nav-shell.is-open {
        display: grid;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .site-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        flex: none;
        align-self: stretch;
        justify-self: stretch;
    }

    .site-menu a {
        display: flex;
        width: 100%;
        max-width: none;
        min-height: 52px;
        padding: 14px 18px;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.76rem;
        letter-spacing: 0.14em;
    }

    .header-cta {
        display: inline-flex;
        width: 100%;
        min-height: 54px;
        max-width: none;
        justify-content: center;
        justify-self: stretch;
        align-self: stretch;
        text-align: center;
        padding: 14px 18px;
    }

    .hero {
        --hero-header-offset: 0px;
        --hero-header-gap: 0px;
        min-height: 560px;
        height: 78vh;
        padding-top: 0;
    }

    .hero-media {
        padding: 78px 18px 88px;
    }

    .hero-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }

    .hero-tile--singer {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .hero-tile--wide {
        grid-column: 2;
        grid-row: 1;
    }

    .hero-tile--drums {
        grid-column: 2;
        grid-row: 2;
    }

    .hero-tile--keys {
        grid-column: 1;
        grid-row: 3;
    }

    .hero-tile--bass {
        grid-column: 2;
        grid-row: 3;
    }

    .hero-content {
        align-items: center;
        padding-top: 92px;
        padding-bottom: 104px;
    }

    .hero-content::before,
    .hero-content::after {
        width: min(56vw, 520px);
        bottom: -18%;
        opacity: 0.72;
    }

    .container {
        margin-top: 0;
        padding-top: 24px;
    }

    .video-showcase__top,
    .song-showcase__top,
    .gallery-showcase__top {
        grid-template-columns: 1fr;
        padding: 20px 20px 18px;
    }

    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .song-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .song-grid-shell,
    .video-track-frame,
    .ensaios-track-frame {
        padding: 16px;
    }

    .ensaios-track {
        --ensaios-card-width: min(320px, 52vw);
    }

    .experience-grid,
    .legacy-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .show-card,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-cta {
        gap: 12px;
    }

    .section-cta span {
        max-width: 34rem;
        text-align: center;
    }

    .show-date {
        justify-self: start;
    }

    .show-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer__brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer__social {
        justify-content: center;
    }

    .site-footer__connect {
        order: 2;
    }
}

@media (max-width: 640px) {
    html,
    body {
        overflow-x: hidden;
    }

    body,
    .top-header,
    .hero,
    .container,
    .section,
    .site-footer {
        max-width: 100%;
    }

    .section {
        margin-bottom: 28px;
        padding: 20px 16px 22px;
        border-radius: 26px;
    }

    .section h2 {
        margin-bottom: 14px;
        font-size: clamp(1.95rem, 9.2vw, 2.7rem);
        line-height: 1.01;
    }

    .section--showcase h2 {
        font-size: clamp(1.85rem, 8.8vw, 2.4rem);
        line-height: 0.98;
        max-width: 11ch;
        margin-left: auto;
        margin-right: auto;
    }

    .section p {
        max-width: 100%;
        font-size: 0.93rem;
        line-height: 1.52;
        overflow-wrap: anywhere;
    }

    .section-kicker {
        margin-bottom: 10px;
        padding: 7px 11px;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .site-brand strong {
        font-size: 0.86rem;
        letter-spacing: 0.12em;
    }

    .site-brand__copy span {
        font-size: 0.62rem;
    }

    .site-brand {
        gap: 10px;
        min-width: 0;
        max-width: calc(100% - 64px);
    }

    .site-brand__copy {
        min-width: 0;
    }

    .site-brand strong,
    .site-brand__copy span {
        overflow-wrap: anywhere;
    }

    .header-nav-shell {
        top: var(--mobile-menu-top, 80px);
        right: 10px;
        left: auto;
        width: min(100%, calc(100vw - 20px));
        padding: 12px;
        gap: 10px;
        border-radius: 22px;
        max-height: calc(100vh - var(--mobile-menu-top, 80px) - 10px);
        max-height: calc(100dvh - var(--mobile-menu-top, 80px) - 10px);
    }

    .site-menu {
        gap: 9px;
    }

    .site-menu a {
        min-height: 50px;
        padding: 12px 14px;
        font-size: 0.72rem;
        line-height: 1.1;
    }

    .site-social,
    .site-footer__social {
        gap: 8px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 20px;
    }

    .gallery img {
        height: auto;
        aspect-ratio: 4 / 5;
        border-radius: 20px;
    }

    #ensaios h2 {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    #ensaios > p {
        margin-bottom: 22px;
    }

    .song-grid {
        --song-card-width: min(74vw, 240px);
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-auto-columns: var(--song-card-width);
        gap: 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: max(2px, calc((100% - var(--song-card-width)) / 2));
        padding: 0 max(2px, calc((100% - var(--song-card-width)) / 2)) 4px;
        scrollbar-width: none;
    }

    .video-showcase__intro strong,
    .song-showcase__intro strong,
    .gallery-showcase__intro strong {
        font-size: 0.9rem;
        max-width: 15ch;
        margin-left: auto;
        margin-right: auto;
    }

    .video-showcase__intro span,
    .song-showcase__intro span,
    .gallery-showcase__intro span {
        max-width: 24ch;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.82rem;
        line-height: 1.38;
    }

    .section-lead {
        max-width: 28ch;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
    }

    .section-lead--light {
        max-width: 24ch;
    }

    .video-showcase,
    .song-showcase,
    .gallery-showcase {
        gap: 12px;
    }

    .video-showcase__top,
    .song-showcase__top,
    .gallery-showcase__top {
        gap: 8px;
        padding: 12px 12px 10px;
        border-radius: 18px;
        box-shadow: 0 16px 30px rgba(0, 15, 34, 0.14);
    }

    .video-showcase__intro,
    .song-showcase__intro,
    .gallery-showcase__intro {
        text-align: center;
        gap: 4px;
    }

    #videos .video-showcase__top {
        display: none;
    }

    #jukebox .song-showcase__top,
    #ensaios .gallery-showcase__top {
        display: none;
    }

    #ensaios .gallery-showcase__stickers {
        inset: 8px;
        opacity: 0.82;
    }

    #videos .video-showcase,
    #jukebox .song-showcase,
    #ensaios .gallery-showcase {
        margin-top: 10px;
    }

    .video-badges,
    .song-badges,
    .gallery-badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .video-badges span,
    .song-badges span,
    .gallery-badges span {
        width: 100%;
        min-height: 38px;
        padding: 8px 9px;
        font-size: 0.56rem;
        letter-spacing: 0.08em;
    }

    .song-grid-shell,
    .video-track-frame,
    .ensaios-track-frame {
        padding: 8px 6px 10px;
        border-radius: 18px;
    }

    .song-grid-shell::before,
    .song-grid-shell::after {
        display: none;
    }

    .video-controls,
    .song-controls,
    .gallery-controls {
        display: none;
    }

    .swipe-hint {
        display: block;
        margin-top: 10px;
        font-size: 0.64rem;
        letter-spacing: 0.14em;
    }

    .video-track {
        --video-card-width: min(84vw, 318px);
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-auto-columns: var(--video-card-width);
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: max(2px, calc((100% - var(--video-card-width)) / 2));
        padding: 0 max(2px, calc((100% - var(--video-card-width)) / 2)) 4px;
        scrollbar-width: none;
    }

    .video-track::-webkit-scrollbar {
        display: none;
    }

    .video-controls .video-nav,
    .song-controls .video-nav,
    .gallery-controls .video-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .ensaios-track-frame::before,
    .ensaios-track-frame::after {
        top: 10px;
        bottom: 10px;
        width: 18px;
    }

    .ensaios-track-frame::before {
        left: 8px;
    }

    .ensaios-track-frame::after {
        right: 8px;
    }

    .ensaios-track {
        --ensaios-card-width: min(92vw, 352px);
        gap: 12px;
        scroll-padding-inline: max(2px, calc((100% - var(--ensaios-card-width)) / 2));
        padding: 0 max(2px, calc((100% - var(--ensaios-card-width)) / 2)) 2px;
    }

    .ensaios-card {
        --ensaios-scale: 1;
        --ensaios-offset: 0px;
        --ensaios-opacity: 1;
        border-radius: 24px;
        transform: none;
    }

    .ensaios-card__caption {
        padding: 16px 14px 13px;
    }

    .ensaios-card__tag {
        min-height: 24px;
        padding: 5px 9px;
        font-size: 0.56rem;
        letter-spacing: 0.1em;
    }

    .ensaios-card__caption strong {
        font-size: 0.95rem;
    }

    .ensaios-card__text {
        font-size: 0.8rem;
        line-height: 1.38;
    }

    .video-card {
        border-radius: 20px;
    }

    .video-thumb {
        border-radius: 18px 18px 0 0;
    }

    .video-play {
        right: 12px;
        bottom: 12px;
        width: 44px;
        height: 44px;
    }

    .video-meta {
        padding: 12px 12px 14px;
    }

    .video-meta strong {
        font-size: 1rem;
    }

    .video-meta span {
        font-size: 0.83rem;
        line-height: 1.4;
    }

    .song-card {
        border-radius: 18px;
    }

    .song-card__media {
        border-radius: 16px 16px 0 0;
    }

    .song-card__play {
        right: 10px;
        bottom: 10px;
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }

    .song-card__body {
        padding: 10px 10px 12px;
    }

    .song-card__title {
        font-size: 0.88rem;
        line-height: 1.25;
    }

    .song-card__meta {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .experience-grid,
    .legacy-track,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-auto-columns: calc(100% - 2px);
        gap: 12px;
        margin-top: 0;
        scroll-padding-inline: 0;
        padding: 2px 1px 8px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        touch-action: pan-x;
        contain: none;
    }

    .experience-grid::-webkit-scrollbar {
        display: none;
    }

    .experience-showcase {
        margin-top: 18px;
        padding: 14px 12px 10px;
        border-radius: 24px;
    }

    .experience-swipe-hint {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: auto;
        margin-top: 8px;
        padding: 0;
        border: 0;
        background: none;
        box-shadow: none;
        color: rgba(220, 236, 255, 0.68);
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.16em;
    }

    .experience-swipe-hint::before {
        content: '';
        width: 22px;
        height: 1px;
        background: linear-gradient(90deg, rgba(210, 232, 255, 0), rgba(210, 232, 255, 0.46));
    }

    .contact-grid {
        contain: none;
    }

    .experience-card {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        grid-template-areas:
            "index title"
            ". text";
        align-items: start;
        gap: 8px 14px;
        min-height: 0;
        padding: 18px 18px 18px;
        border-radius: 20px;
        box-shadow: 0 14px 24px rgba(0, 17, 34, 0.14);
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .experience-card__index {
        grid-area: index;
        width: 42px;
        height: 42px;
        margin: 0;
        border-radius: 13px;
        font-size: 0.76rem;
    }

    .experience-card strong {
        grid-area: title;
        align-self: center;
        font-size: 0.98rem;
        line-height: 1.22;
    }

    .experience-card p {
        grid-area: text;
        margin-top: 0;
        font-size: 0.84rem;
        line-height: 1.44;
    }

    .section-cta {
        margin-top: 18px;
        align-items: stretch;
    }

    .section-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section-cta span {
        width: 100%;
        font-size: 0.84rem;
        line-height: 1.5;
        text-align: center;
    }

    .legacy-shell {
        gap: 16px;
        margin-top: 22px;
    }

    #legado .legacy-shell {
        grid-template-columns: 1fr;
    }

    #legado .legacy-shell--player-only {
        margin-top: 0;
        max-width: 540px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #legado .legacy-intro {
        justify-items: center;
        text-align: center;
        gap: 12px;
    }

    #legado .legacy-intro .section-lead {
        max-width: 36ch;
        text-align: center;
    }

    .legacy-panel {
        padding: 22px 18px;
        border-radius: 24px;
        gap: 12px;
    }

    .legacy-panel strong {
        max-width: none;
        font-size: 1.08rem;
        line-height: 1.24;
    }

    #legado .legacy-panel strong {
        max-width: none;
    }

    .hero {
        --hero-header-offset: 0px;
        --hero-header-gap: 0px;
        min-height: 0;
        height: auto;
        padding: 10px 10px 0;
    }

    .hero::after {
        height: 10vh;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14) 58%, rgba(255, 255, 255, 0.52) 100%);
    }

    .hero-media {
        position: relative;
        inset: auto;
        min-height: 400px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        transform: none !important;
        opacity: 1 !important;
    }

    .hero-media::after {
        background: linear-gradient(180deg, rgba(0, 20, 44, 0.12), rgba(0, 20, 44, 0.05) 42%, rgba(255, 255, 255, 0.06) 82%, rgba(255, 255, 255, 0.14) 100%);
    }

    .hero-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        max-width: 100%;
        height: 400px;
    }

    .hero-tile {
        border-radius: 18px;
    }

    .bio-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        position: absolute;
        top: 18px;
        left: 16px;
        width: min(54vw, 204px);
        max-width: none;
        height: auto;
        margin: 0;
        padding: 0;
        display: block;
    }

    .hero h1 {
        font-size: clamp(2.16rem, 12.2vw, 2.92rem);
        max-width: 160px;
    }

    .hero-copy {
        width: 100%;
        max-width: none;
        min-width: 0;
        padding: 12px 10px 12px;
    }

    .hero-copy::before {
        inset: 0;
        border-radius: 20px;
        background: linear-gradient(100deg, rgba(0, 24, 48, 0.82) 0%, rgba(0, 24, 48, 0.62) 58%, rgba(0, 24, 48, 0.2) 100%);
        box-shadow: 0 12px 24px rgba(0, 22, 43, 0.12);
    }

    .hero-content::before,
    .hero-content::after {
        display: none;
    }

    .eyebrow {
        margin-bottom: 8px;
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .hero-copy > p:not(.eyebrow):not(.hero-slogan) {
        max-width: none;
        margin-top: 8px;
        font-size: 0.84rem;
        line-height: 1.32;
    }

    .hero-slogan {
        display: none;
    }

    .hero-actions {
        margin-top: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-top: 0;
        padding: 10px 10px;
        font-size: 0.64rem;
    }

    .scroll-cue {
        display: none;
    }

    .hero-signature {
        display: block;
        width: min(100%, calc(100% - 24px));
        max-width: 420px;
        margin: 10px auto 18px;
        padding: 10px 12px 8px;
        text-align: center;
    }

    .hero-signature__content {
        display: grid;
        justify-items: center;
        gap: 4px;
        margin-top: 0;
        padding: 0;
        text-align: center;
    }

    .hero-signature__label {
        margin-bottom: 4px;
        font-size: 0.54rem;
        letter-spacing: 0.16em;
    }

    .hero-signature__mark {
        width: 88px;
        margin: 0 auto 8px;
    }

    .hero-signature strong {
        font-size: clamp(1.08rem, 6vw, 1.42rem);
        line-height: 1.05;
    }

    .repertoire-shell {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 22px;
    }

    .repertoire-doodle {
        padding: 7px 10px;
    }

    .repertoire-doodle svg {
        width: 16px;
        height: 16px;
    }

    .repertoire-doodle em {
        font-size: 0.56rem;
        letter-spacing: 0.12em;
    }

    .repertoire-doodle--rei {
        top: 16px;
        left: 14px;
    }

    .repertoire-doodle--calhambeque {
        top: 18px;
        left: 50%;
        transform: translateX(-50%) rotate(-2deg);
    }

    .repertoire-doodle--spotify {
        top: 70px;
        right: 14px;
    }

    .repertoire-doodle--daniel {
        left: 16px;
        bottom: 18px;
    }

    .repertoire-card {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .repertoire-card strong {
        font-size: 0.98rem;
    }

    .repertoire-card p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .tickets-shell {
        margin-top: 20px;
        padding: 24px 18px 20px;
        border-radius: 24px;
    }

    .ticket-doodle {
        width: 62px;
        height: 62px;
    }

    .ticket-doodle--three {
        right: 24px;
        bottom: 8px;
    }

    .bio-doodle,
    .contact-doodle {
        padding: 7px 10px;
    }

    .bio-doodle svg,
    .contact-doodle svg {
        width: 16px;
        height: 16px;
    }

    .bio-doodle em,
    .contact-doodle em {
        font-size: 0.56rem;
        letter-spacing: 0.12em;
    }

    .bio-doodle--daniel {
        top: 16px;
        left: 14px;
    }

    .bio-doodle--mic {
        top: 64px;
        right: 14px;
    }

    .bio-doodle--calhambeque {
        right: 18px;
        bottom: 16px;
    }

    .contact-doodle--daniel {
        top: 16px;
        left: 14px;
    }

    .contact-doodle--phone {
        top: 66px;
        right: 14px;
    }

    .contact-doodle--calhambeque {
        left: auto;
        right: 18px;
        bottom: 16px;
        transform: rotate(-4deg);
    }

    .tickets-copy strong {
        font-size: 1.02rem;
    }

    .tickets-copy p {
        font-size: 0.92rem;
        line-height: 1.54;
    }

    .tickets-actions {
        gap: 10px;
    }

    .modal-content--jukebox {
        width: min(100%, 372px);
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);
        padding: 10px;
        border-radius: 20px;
    }

    .jukebox-modal-shell {
        display: block;
        padding: 14px 12px 12px;
        border-radius: 18px;
    }

    .jukebox-modal-head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
        text-align: center;
    }

    .jukebox-modal-cover {
        width: min(122px, 38vw);
        max-width: none;
        margin: 0 auto;
        border-radius: 16px;
    }

    .jukebox-modal-meta {
        text-align: center;
        justify-items: center;
        gap: 8px;
    }

    .jukebox-modal-meta strong {
        font-size: clamp(1.45rem, 7vw, 1.9rem);
    }

    .jukebox-modal-meta p {
        max-width: 24ch;
        font-size: 0.88rem;
        line-height: 1.42;
    }

    .jukebox-modal-player {
        padding: 6px;
        border-radius: 16px;
    }

    .jukebox-modal-player iframe {
        height: 152px;
        border-radius: 12px;
    }

    .jukebox-modal-link {
        width: 100%;
        justify-content: center;
        margin-top: 2px;
    }

    .jukebox-sticker {
        padding: 6px 8px;
    }

    .jukebox-sticker svg {
        width: 15px;
        height: 15px;
    }

    .jukebox-sticker em {
        font-size: 0.52rem;
        letter-spacing: 0.1em;
    }

    .jukebox-sticker--rei {
        top: 10px;
        left: 10px;
        bottom: auto;
    }

    .jukebox-sticker--daniel {
        left: 10px;
        bottom: 10px;
    }

    .jukebox-sticker--spotify {
        top: 10px;
        right: 10px;
        bottom: auto;
    }

    .modal-content--video {
        width: min(100%, 428px);
        max-height: calc(100vh - 16px);
        max-height: calc(100dvh - 16px);
        padding: 12px;
        border-radius: 22px;
    }

    .video-modal-shell {
        padding: 18px 16px 16px;
        border-radius: 22px;
    }

    .video-frame-wrap {
        border-radius: 20px;
    }

    .video-modal-bar {
        margin-top: 14px;
        gap: 8px;
        text-align: center;
        justify-items: center;
    }

    .video-modal-title {
        font-size: clamp(1.5rem, 7.2vw, 1.98rem);
    }

    .video-modal-subtitle {
        max-width: 28ch;
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .video-modal-note {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
        text-align: center;
    }

    .video-modal-preview {
        max-width: min(278px, 80vw);
        margin: 0 auto;
        border-radius: 16px;
    }

    .video-modal-meta {
        justify-items: center;
    }

    .video-modal-link {
        width: 100%;
    }

    .bio-intro {
        margin-bottom: 20px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .bio-card {
        padding: 18px 18px;
    }

    .bio-card p {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .bio-quote {
        padding: 16px 18px;
        font-size: 0.98rem;
    }

    .legacy-card {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .legacy-card strong {
        font-size: 1rem;
        margin-top: 16px;
    }

    .legacy-card p {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .legacy-note {
        padding: 18px 18px;
        border-radius: 22px;
    }

    .legacy-panel p,
    .legacy-note p {
        font-size: 0.92rem;
        line-height: 1.58;
    }

    .legacy-stats {
        gap: 10px;
        margin-top: 18px;
    }

    .legacy-stats span {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.7rem;
        line-height: 1.35;
        justify-content: center;
        text-align: center;
    }

    .legacy-video-trigger {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }

    .legacy-video-trigger__media {
        max-width: none;
    }

    .legacy-video-trigger__body strong {
        font-size: 1.06rem;
    }

    .legacy-video-trigger__text {
        font-size: 0.84rem;
    }

    .legacy-video-trigger__trail {
        gap: 8px;
    }

    .legacy-video-trigger__trail span {
        width: 100%;
        justify-content: center;
        font-size: 0.62rem;
    }

    #legado .legacy-video-trigger--feature {
        width: 100%;
        max-width: min(100%, 360px);
        aspect-ratio: 1 / 1;
        border-radius: 0;
        justify-self: center;
    }

    #legado .legacy-timeline {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0;
    }

    .legacy-feature-card {
        aspect-ratio: auto;
        min-height: 0;
        padding: 18px 16px;
        border-radius: 24px;
    }

    #legado .legacy-panel {
        aspect-ratio: 1 / 1;
        min-height: 0;
        padding: 20px 18px;
        border: 1px solid rgba(223, 239, 255, 0.76);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
        box-shadow: 0 20px 34px rgba(0, 17, 34, 0.16);
        gap: 10px;
    }

    .legacy-feature-card strong {
        max-width: none;
        font-size: 1.18rem;
    }

    .legacy-feature-card p {
        font-size: 0.88rem;
        line-height: 1.48;
    }

    #legado .legacy-panel__kicker {
        color: rgba(0, 77, 154, 0.72);
    }

    #legado .legacy-panel strong {
        color: #0d3d77;
        font-size: 1.1rem;
        line-height: 1.18;
    }

    #legado .legacy-panel p,
    #legado .legacy-panel .legacy-statements li,
    #legado .legacy-panel .legacy-closing {
        color: rgba(27, 67, 110, 0.88);
    }

    #legado .legacy-panel p {
        font-size: 0.84rem;
        line-height: 1.46;
    }

    #legado .legacy-panel .legacy-statements {
        gap: 8px;
    }

    #legado .legacy-panel .legacy-statements li {
        font-size: 0.68rem;
        line-height: 1.34;
        letter-spacing: 0.05em;
    }

    #legado .legacy-panel .legacy-closing {
        font-size: 0.82rem;
        line-height: 1.44;
    }

    #legado .legacy-panel .legacy-statements li::before {
        background: linear-gradient(180deg, rgba(12, 107, 212, 0.96), rgba(8, 69, 138, 0.96));
        box-shadow: 0 0 0 5px rgba(12, 107, 212, 0.12);
    }

    #legado .legacy-video-trigger--feature .legacy-video-trigger__media {
        padding: 0;
        aspect-ratio: 1 / 1;
        border-radius: 20px;
    }

    #legado .legacy-video-trigger--feature .legacy-video-trigger__media img {
        min-height: 0;
        border-radius: 20px;
    }

    #legado .legacy-video-trigger--feature .legacy-video-trigger__play {
        width: 64px;
        height: 64px;
        inset: 50% auto auto 50%;
        transform: translate(-50%, -50%);
        font-size: 1.18rem;
    }

    .modal-content {
        padding: 18px 12px 12px;
        border-radius: 20px;
    }

    .video-modal-note {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 8px 0 0;
        text-align: center;
    }

    .video-modal-title {
        font-size: 1.22rem;
    }

    .video-modal-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .video-modal-note p {
        font-size: 0.92rem;
    }

    .video-modal-link {
        width: 100%;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }

    .lightbox {
        padding: 14px;
    }

    .lightbox__dialog {
        width: min(100%, 360px);
        padding: 12px;
        border-radius: 20px;
    }

    .lightbox__chrome {
        margin: 0 42px 10px 0;
        gap: 10px;
    }

    .lightbox__counter {
        min-height: 32px;
        padding: 7px 12px;
        font-size: 0.64rem;
    }

    .lightbox__nav {
        width: 36px;
        height: 36px;
        font-size: 0.92rem;
    }

    .lightbox__figure {
        gap: 10px;
    }

    .lightbox__image {
        max-height: 68vh;
        border-radius: 16px;
    }

    .lightbox__caption {
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .lightbox__close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 1.55rem;
    }

    .show-card {
        padding: 18px;
    }

    .show-doodle {
        width: 72px;
        height: 72px;
    }

    .show-doodle--calhambeque {
        right: 24px;
        bottom: 8px;
    }

    .show-date {
        width: 100%;
        min-width: 0;
        padding: 18px 14px;
    }

    .show-date__day {
        font-size: 3.4rem;
    }

    .show-content {
        gap: 10px;
    }

    .show-content strong {
        font-size: 1.04rem;
        line-height: 1.18;
    }

    .show-content p {
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .show-tags {
        gap: 8px;
    }

    .show-tags span {
        padding: 8px 10px;
        font-size: 0.68rem;
    }

    .show-actions {
        gap: 10px;
    }

    .show-actions .btn,
    .contact-card {
        width: 100%;
    }

    .show-actions .btn {
        min-width: 0;
    }

    .contact-card {
        padding: 18px 16px 20px;
        gap: 12px;
    }

    .contact-card strong {
        font-size: 1rem;
    }

    .contact-card span:last-child {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .contact-card__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .contact-card__action {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.66rem;
    }

    .reveal-card {
        transform: translate3d(0, 16px, 0);
        transition-duration: 0.3s, 0.4s;
    }
}

@media (max-width: 420px) {
    .site-brand__copy span {
        display: none;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        max-width: 154px;
        font-size: clamp(2.04rem, 13.6vw, 2.82rem);
    }

    .hero-copy {
        padding: 11px 10px 12px;
    }

    .hero-content {
        top: 16px;
        left: 14px;
        width: min(55vw, 192px);
    }

    .legacy-stats span {
        font-size: 0.66rem;
    }

    .contact-card__actions {
        grid-template-columns: 1fr;
    }

    .modal-back-link {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 360px) {
    .song-grid {
        --song-card-width: min(78vw, 224px);
        grid-auto-columns: var(--song-card-width);
    }

    .ensaios-track {
        --ensaios-card-width: min(91vw, 320px);
    }

    .video-track {
        --video-card-width: min(88vw, 304px);
        grid-auto-columns: var(--video-card-width);
    }
}

@media (hover: none), (pointer: coarse) {
    .gallery img:hover,
    .ensaios-card:hover img,
    .ensaios-card.is-active img,
    .video-card:hover,
    .video-card:hover .video-thumb img,
    .video-card:hover .video-play,
    .song-card:hover,
    .song-card:hover .song-card__media img,
    .song-card:hover .song-card__play {
        transform: none !important;
    }

    .video-card:hover,
    .song-card:hover,
    .ensaios-card:hover {
        box-shadow: inherit;
    }

    .section.reveal-hidden {
        transform: translate3d(0, 14px, 0);
    }

    .reveal-card.reveal-hidden {
        transform: translate3d(0, 14px, 0);
    }

    .reveal-card--turn.reveal-hidden {
        transform: rotateZ(var(--reveal-roll, 0.8deg)) translate3d(0, 14px, 0);
    }

    .reveal-card--turn.reveal-hidden.visible {
        transform: rotateZ(0deg) translate3d(0, 0, 0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-copy,
    body::before,
    .scroll-cue::after,
    .page-aura::before,
    .page-aura::after,
    .section,
    .reveal-card,
    .hero-media,
    .hero-content::before,
    .hero-content::after,
    .site-menu a::before,
    .social-link::before,
    .footer-action::before,
    .hero-copy::before,
    .hero-copy::after,
    .section::before,
    .gallery::before,
    .bio-card::before,
    .btn::before,
    .btn::after,
    .bio-toggle::before,
    .bio-toggle::after,
    .video-modal-link::before,
    .video-modal-link::after,
    .video-nav::before,
    .video-nav::after,
    .video-card::before,
    .video-card::after,
    .video-thumb img,
    .song-card::before,
    .song-card::after,
    .song-card__media img,
    .song-card__play,
    .video-play {
        animation: none !important;
        transition: none !important;
    }

    .hero-copy,
    .section,
    .reveal-card {
        opacity: 1;
        transform: none;
    }

    .reveal-card--turn,
    .reveal-card--turn.visible {
        transform: none;
    }
}

.section--news-home {
    background:
        radial-gradient(circle at 14% 18%, rgba(96, 182, 255, 0.14), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(96, 182, 255, 0.08), transparent 22%),
        linear-gradient(160deg, rgba(5, 24, 48, 0.99) 0%, rgba(3, 15, 31, 0.995) 48%, rgba(1, 9, 20, 1) 100%);
    border-color: rgba(125, 192, 246, 0.16);
    box-shadow: 0 30px 82px rgba(0, 15, 30, 0.32);
}

.section--news-home::before {
    background: linear-gradient(114deg, transparent 0%, rgba(128, 191, 245, 0.14) 18%, rgba(255, 255, 255, 0.18) 34%, rgba(106, 170, 230, 0.08) 46%, transparent 60%);
    opacity: 0.42;
}

.section--news-home h2,
.section--news-home p {
    color: #ffffff;
}

.section--news-home p {
    color: rgba(225, 240, 255, 0.88);
}

.news-home-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
    gap: 22px;
    margin-top: 28px;
    align-items: start;
}

.news-home-intro {
    display: grid;
    gap: 14px;
    align-content: start;
    text-align: left;
    padding: 26px 24px;
    border-radius: 28px;
    border: 1px solid rgba(173, 221, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    box-shadow: 0 20px 44px rgba(0, 17, 34, 0.18);
}

.news-home-intro strong {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.2;
}

.news-home-intro p {
    max-width: none;
    margin: 0;
    text-align: left;
    color: rgba(226, 241, 255, 0.84);
}

.news-home-intro span {
    color: #ffffff;
    font-weight: 800;
}

.news-home-intro .btn {
    justify-self: start;
}

.news-home-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-grid {
    margin-top: 26px;
}

.news-grid--featured {
    align-items: stretch;
}

.news-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 244, 255, 0.96));
    box-shadow: 0 20px 42px rgba(0, 51, 102, 0.1);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 81, 162, 0.22);
    box-shadow: 0 28px 48px rgba(0, 51, 102, 0.14);
}

.news-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dbe7f2;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.news-card:hover .news-card__media img {
    transform: scale(1.03);
}

.news-card__body {
    display: grid;
    gap: 12px;
    padding: 18px 18px 20px;
    text-align: left;
}

.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: rgba(33, 74, 118, 0.72);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-card__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    background: rgba(232, 241, 252, 0.9);
    color: var(--accent);
    text-decoration: none;
}

.news-card__title {
    margin: 0;
    color: var(--ink-strong);
    font-size: 1.18rem;
    line-height: 1.22;
    font-weight: 800;
}

.news-card__title a {
    color: inherit;
    text-decoration: none;
}

.news-card__excerpt {
    margin: 0;
    max-width: none;
    text-align: left;
    color: var(--ink);
    font-size: 0.96rem;
    line-height: 1.62;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
}

.news-card__link::after {
    content: '\2192';
    font-size: 1rem;
    line-height: 1;
}

.news-card--featured {
    grid-column: span 2;
}

.news-card--featured .news-card__body {
    padding: 22px 22px 24px;
}

.news-card--featured .news-card__title {
    font-size: 1.44rem;
}

.section--news-home .news-card {
    border-color: rgba(173, 221, 255, 0.18);
    background: linear-gradient(180deg, rgba(7, 43, 82, 0.98), rgba(4, 28, 56, 0.98));
    box-shadow: 0 20px 44px rgba(0, 17, 34, 0.18);
}

.section--news-home .news-card__meta {
    color: rgba(201, 230, 255, 0.82);
}

.section--news-home .news-card__category {
    border-color: rgba(173, 221, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.section--news-home .news-card__title,
.section--news-home .news-card__excerpt,
.section--news-home .news-card__link {
    color: #ffffff;
}

.container--news {
    padding-top: 34px;
}

.section--news-landing,
.section--news-featured,
.section--news-group,
.section--news-related,
.section--news-article {
    overflow: visible;
}

.section--news-landing h1,
.section--news-article h1 {
    margin: 0 0 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--accent);
    text-align: center;
}

.news-filter,
.news-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.news-filter__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    background: rgba(236, 244, 255, 0.94);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.news-filter__chip:hover,
.news-filter__chip:focus-visible,
.news-filter__chip.is-active {
    transform: translateY(-2px);
    border-color: rgba(0, 81, 162, 0.22);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 51, 102, 0.1);
    outline: none;
}

.news-featured__intro {
    display: grid;
    gap: 10px;
    justify-items: center;
}

.news-group__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
    gap: 22px;
    align-items: end;
    text-align: left;
}

.news-group__header h2 {
    margin: 0;
    text-align: left;
}

.news-group__header p {
    max-width: none;
    margin: 0;
    text-align: left;
}

.news-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    color: rgba(33, 74, 118, 0.72);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.news-article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    color: rgba(33, 74, 118, 0.74);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-article-meta span,
.news-breadcrumbs span {
    display: inline-flex;
    align-items: center;
}

.news-article-lead {
    max-width: 52rem;
}

.news-article-cover {
    margin-top: 26px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    box-shadow: 0 24px 54px rgba(0, 51, 102, 0.1);
    background: #dbe7f2;
}

.news-article-cover img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 24px;
    margin-top: 28px;
    align-items: start;
}

.news-article-body,
.news-aside-card {
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 244, 255, 0.96));
    box-shadow: 0 20px 42px rgba(0, 51, 102, 0.1);
}

.news-article-body {
    padding: 30px 28px;
    text-align: left;
}

.news-article-block + .news-article-block {
    margin-top: 26px;
}

.news-article-body h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    text-align: left;
}

.news-article-body p {
    max-width: none;
    margin: 0;
    text-align: left;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.72;
}

.news-article-body p + p {
    margin-top: 14px;
}

.news-article-list {
    display: grid;
    gap: 12px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.news-article-list li {
    position: relative;
    padding-left: 18px;
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.66;
}

.news-article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(12, 107, 212, 0.96), rgba(8, 69, 138, 0.96));
}

.news-article-aside {
    display: grid;
    gap: 16px;
}

.news-aside-card {
    display: grid;
    gap: 10px;
    padding: 22px 20px;
    text-align: left;
}

.news-aside-card__label {
    color: rgba(33, 74, 118, 0.72);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.news-aside-card strong {
    color: var(--ink-strong);
    font-size: 1.08rem;
    line-height: 1.25;
}

.news-aside-card p {
    max-width: none;
    margin: 0;
    text-align: left;
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.6;
}

.news-aside-card .btn,
.news-actions .btn {
    justify-self: start;
}

.site-footer--news .site-footer__inner {
    align-items: start;
}

@media (max-width: 1200px) {
    .news-home-grid,
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card--featured {
        grid-column: span 2;
    }

    .news-group__header,
    .news-article-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .news-home-shell {
        grid-template-columns: 1fr;
    }

    .news-home-intro .btn,
    .news-aside-card .btn {
        justify-self: stretch;
    }
}

@media (max-width: 640px) {
    .container--news {
        padding-top: 18px;
    }

    .section--news-home,
    .section--news-landing,
    .section--news-featured,
    .section--news-group,
    .section--news-related,
    .section--news-article {
        padding: 20px 16px 22px;
    }

    .section--news-landing h1,
    .section--news-article h1 {
        font-size: clamp(2.05rem, 10vw, 2.9rem);
        line-height: 0.98;
    }

    .news-home-intro,
    .news-article-body,
    .news-aside-card {
        padding: 20px 18px;
        border-radius: 24px;
    }

    .news-home-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card--featured {
        grid-column: auto;
    }

    .news-group__header {
        gap: 12px;
    }

    .news-group__header h2,
    .news-group__header p {
        text-align: center;
    }

    .news-filter,
    .news-actions {
        align-items: stretch;
    }

    .news-filter__chip,
    .news-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .news-article-cover {
        border-radius: 22px;
    }

    .news-article-layout {
        gap: 16px;
    }

    .news-card__body {
        padding: 16px 16px 18px;
    }

    .news-card__title {
        font-size: 1.04rem;
    }

    .news-card__excerpt,
    .news-article-body p,
    .news-article-list li {
        font-size: 0.92rem;
        line-height: 1.58;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-card,
    .news-card__media img,
    .news-filter__chip {
        transition: none !important;
    }

    .news-card:hover {
        transform: none;
    }
}

/* Home editorial redesign */
.section--news-home {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 252, 0.98));
    border-color: rgba(12, 49, 86, 0.08);
    box-shadow: 0 28px 70px rgba(11, 36, 66, 0.08);
}

.section--news-home::before {
    background:
        radial-gradient(circle at 12% 14%, rgba(69, 143, 226, 0.08), transparent 24%),
        radial-gradient(circle at 88% 20%, rgba(69, 143, 226, 0.05), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
    opacity: 1;
}

.section--news-home .section-kicker {
    border-color: rgba(0, 51, 102, 0.1);
    background: rgba(242, 247, 252, 0.98);
    color: var(--accent);
}

.section--news-home .section-lead,
.section--news-home p,
.section--news-home h2 {
    color: inherit;
}

.news-home-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(12, 49, 86, 0.08);
}

.news-home-heading {
    display: grid;
    gap: 10px;
    text-align: left;
}

.section--news-home h2 {
    margin: 0;
    color: var(--accent);
    text-align: left;
}

.section--news-home .section-lead {
    max-width: 760px;
    margin: 0;
    color: rgba(45, 65, 88, 0.82);
    text-align: left;
}

.news-home-head__link,
.news-home-note__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
}

.news-home-head__link::after,
.news-home-note__link::after {
    content: '\2192';
    font-size: 1rem;
    line-height: 1;
}

.news-home-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
    gap: 24px;
    margin-top: 24px;
    align-items: stretch;
}

.news-home-rail {
    display: grid;
    gap: 16px;
    align-content: start;
}

.news-home-note {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(12, 49, 86, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(239, 245, 251, 0.96), rgba(255, 255, 255, 0.99));
    box-shadow: 0 18px 36px rgba(11, 36, 66, 0.06);
    text-align: left;
}

.news-home-note__eyebrow {
    color: rgba(36, 66, 102, 0.7);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.news-home-note strong {
    color: var(--ink-strong);
    font-size: 1.18rem;
    line-height: 1.24;
}

.news-home-note p {
    max-width: none;
    margin: 0;
    color: rgba(53, 72, 94, 0.84);
    text-align: left;
}

.news-home-note__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-home-note__topics span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(12, 49, 86, 0.08);
    border-radius: 999px;
    background: #ffffff;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section--news-home .news-card {
    border-radius: 24px;
    border: 1px solid rgba(12, 49, 86, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(11, 36, 66, 0.07);
}

.section--news-home .news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(12, 79, 153, 0.16);
    box-shadow: 0 24px 46px rgba(11, 36, 66, 0.1);
}

.section--news-home .news-card__media {
    background: #dfe8f0;
}

.section--news-home .news-card__meta {
    gap: 10px;
    color: rgba(65, 82, 102, 0.72);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
}

.section--news-home .news-card__category {
    border-color: rgba(12, 49, 86, 0.08);
    background: rgba(236, 243, 250, 0.92);
    color: var(--accent);
}

.section--news-home .news-card__title {
    color: var(--ink-strong);
    font-size: 1.12rem;
    line-height: 1.16;
}

.section--news-home .news-card__excerpt {
    color: rgba(63, 80, 101, 0.86);
    font-size: 0.97rem;
    line-height: 1.68;
}

.section--news-home .news-card__link {
    color: var(--accent);
}

.section--news-home .news-card--lead {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(310px, 0.94fr);
    min-height: 100%;
}

.section--news-home .news-card--lead .news-card__media {
    aspect-ratio: auto;
    min-height: 100%;
}

.section--news-home .news-card--lead .news-card__media img {
    height: 100%;
}

.section--news-home .news-card--lead .news-card__body {
    align-content: start;
    gap: 14px;
    padding: 28px 28px 30px;
}

.section--news-home .news-card--lead .news-card__title {
    font-size: clamp(1.72rem, 2.3vw, 2.35rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.section--news-home .news-card--lead .news-card__excerpt {
    font-size: 1rem;
}

.section--news-home .news-card--compact {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    min-height: 0;
}

.section--news-home .news-card--compact .news-card__media {
    aspect-ratio: auto;
    min-height: 100%;
}

.section--news-home .news-card--compact .news-card__media img {
    height: 100%;
}

.section--news-home .news-card--compact .news-card__body {
    align-content: start;
    gap: 10px;
    padding: 16px 18px 18px;
}

.section--news-home .news-card--compact .news-card__title {
    font-size: 1.02rem;
}

.section--news-home .news-card--compact .news-card__excerpt {
    display: none;
}

@media (max-width: 1200px) {
    .news-home-head {
        align-items: start;
        flex-direction: column;
    }

    .news-home-shell {
        grid-template-columns: 1fr;
    }

    .news-home-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-home-note {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .news-home-rail,
    .section--news-home .news-card--lead,
    .section--news-home .news-card--compact {
        grid-template-columns: 1fr;
    }

    .section--news-home .news-card--lead .news-card__media {
        min-height: 280px;
    }

    .section--news-home .news-card--compact .news-card__media {
        aspect-ratio: 16 / 10;
    }

    .news-home-head__link,
    .news-home-note__link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .section--news-home {
        padding: 18px 16px 20px;
    }

    .news-home-head {
        gap: 14px;
        padding-bottom: 16px;
    }

    .section--news-home h2 {
        font-size: clamp(2.2rem, 11vw, 3rem);
        line-height: 0.96;
    }

    .news-home-note,
    .section--news-home .news-card__body,
    .section--news-home .news-card--lead .news-card__body {
        padding: 18px 16px 20px;
    }

    .news-home-note strong {
        font-size: 1.02rem;
    }

    .section--news-home .news-card--lead .news-card__media {
        min-height: 220px;
    }

    .section--news-home .news-card--lead .news-card__title {
        font-size: 1.52rem;
    }

    .section--news-home .news-card--compact .news-card__title {
        font-size: 1rem;
    }

    .news-home-note__topics {
        gap: 7px;
    }

    .news-home-note__topics span {
        min-height: 32px;
        padding-inline: 10px;
        font-size: 0.64rem;
    }
}

/* News home strip */
.section--news-home {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-color: rgba(12, 49, 86, 0.1);
    box-shadow:
        0 34px 74px rgba(2, 17, 35, 0.18),
        0 16px 34px rgba(7, 48, 90, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.section--news-home::before {
    display: none;
}

.section--news-home .section-kicker {
    color: rgba(10, 56, 100, 0.76);
    text-shadow: none;
    letter-spacing: 0.18em;
}

.news-home-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(12, 49, 86, 0.1);
}

.news-home-heading {
    display: grid;
    gap: 10px;
    text-align: left;
}

.section--news-home h2 {
    margin: 0;
    text-align: left;
    color: #0a2f52;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.86),
        0 14px 28px rgba(11, 46, 84, 0.08);
}

.section--news-home .section-lead {
    max-width: 760px;
    margin: 0;
    text-align: left;
    color: rgba(21, 49, 79, 0.76);
    text-wrap: pretty;
}

.news-home-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.section--news-home .news-card--home {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(12, 49, 86, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 253, 0.98));
    box-shadow: 0 18px 40px rgba(11, 36, 66, 0.08);
}

.section--news-home .news-card--home:hover {
    transform: translateY(-4px);
    border-color: rgba(12, 79, 153, 0.16);
    box-shadow: 0 24px 46px rgba(11, 36, 66, 0.1);
}

.section--news-home .news-card--home .news-card__media {
    aspect-ratio: 16 / 10;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(233, 241, 248, 0.95), rgba(248, 251, 254, 0.98));
}

.section--news-home .news-card--home .news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section--news-home .news-card--home .news-card__body {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px 20px 22px;
    text-align: left;
}

.section--news-home .news-card--home .news-card__meta {
    gap: 10px;
    color: rgba(65, 82, 102, 0.72);
    font-size: 0.67rem;
    letter-spacing: 0.14em;
}

.section--news-home .news-card--home .news-card__category {
    border-color: rgba(12, 49, 86, 0.08);
    background: rgba(236, 243, 250, 0.92);
    color: var(--accent);
}

.section--news-home .news-card--home .news-card__title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.18;
    color: var(--ink-strong);
}

.section--news-home .news-card--home .news-card__excerpt {
    max-width: none;
    margin: 0;
    color: rgba(63, 80, 101, 0.84);
    font-size: 0.95rem;
    line-height: 1.58;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section--news-home .news-card--home .news-card__link {
    color: var(--accent);
}

/* News article editorial page */
.section--news-article {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 252, 0.98));
    border-color: rgba(12, 49, 86, 0.08);
    box-shadow: 0 28px 70px rgba(11, 36, 66, 0.08);
}

.news-breadcrumbs {
    justify-content: flex-start;
    margin-bottom: 18px;
}

.news-article-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 24px;
    align-items: stretch;
}

.news-article-intro {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 28px 30px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 244, 255, 0.96));
    box-shadow: 0 20px 42px rgba(0, 51, 102, 0.1);
    text-align: left;
}

.section--news-article h1 {
    margin: 0;
    text-align: left;
    color: var(--accent);
}

.news-article-meta {
    justify-content: flex-start;
    margin: 0;
}

.news-article-lead {
    max-width: none;
    margin: 0;
    text-align: left;
    color: rgba(49, 68, 89, 0.86);
    font-size: 1.05rem;
    line-height: 1.72;
}

.news-article-cover {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    box-shadow: 0 24px 54px rgba(0, 51, 102, 0.1);
    background:
        linear-gradient(180deg, rgba(232, 240, 248, 0.96), rgba(248, 251, 254, 0.98));
}

.news-article-cover img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
}

.news-article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.news-article-body {
    padding: 34px 32px;
}

.news-article-block + .news-article-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 51, 102, 0.08);
}

.news-article-body h2 {
    margin-bottom: 16px;
    font-size: clamp(1.5rem, 2vw, 1.95rem);
}

.news-article-body p {
    font-size: 1rem;
    line-height: 1.78;
}

.news-article-list {
    gap: 14px;
    margin-top: 18px;
}

.news-article-aside {
    position: sticky;
    top: calc(var(--site-header-height, 84px) + 20px);
}

@media (max-width: 1180px) {
    .news-home-head {
        align-items: start;
        flex-direction: column;
    }

    .news-home-track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(280px, 1fr);
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
    }

    .section--news-home .news-card--home {
        scroll-snap-align: start;
    }

    .news-article-hero,
    .news-article-layout {
        grid-template-columns: 1fr;
    }

    .news-article-aside {
        position: static;
    }
}

@media (max-width: 920px) {
    .section--news-home {
        padding: 22px 18px 24px;
    }

    .news-home-head {
        gap: 12px;
        padding-bottom: 14px;
    }

    .news-home-track {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
        overflow: visible;
        padding-bottom: 0;
        gap: 14px;
    }

    .section--news-home .news-card--home {
        grid-template-columns: 118px minmax(0, 1fr);
        grid-template-rows: 1fr;
        min-height: 0;
        align-items: stretch;
    }

    .section--news-home .news-card--home .news-card__media {
        aspect-ratio: auto;
        min-height: 100%;
        padding: 0;
    }

    .section--news-home .news-card--home .news-card__media img {
        height: 100%;
        max-height: none;
    }

    .section--news-home .news-card--home .news-card__body {
        min-width: 0;
        gap: 10px;
        padding: 16px 16px 18px 0;
    }

    .section--news-home .news-card--home .news-card__meta {
        gap: 8px;
        font-size: 0.63rem;
        letter-spacing: 0.12em;
    }

    .section--news-home .news-card--home .news-card__title {
        font-size: clamp(1rem, 3.8vw, 1.16rem);
        overflow-wrap: anywhere;
    }

    .section--news-home .news-card--home .news-card__excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 720px) {
    .section--news-home {
        padding: 18px 16px 20px;
    }

    .news-home-head {
        gap: 14px;
        padding-bottom: 16px;
    }

    .section--news-home h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .news-home-track {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .section--news-home .news-card--home {
        grid-template-columns: 1fr;
    }

    .section--news-home .news-card--home .news-card__media {
        aspect-ratio: 16 / 9;
        min-height: 0;
        padding: 0;
    }

    .section--news-home .news-card--home .news-card__media img {
        height: 100%;
        max-height: none;
    }

    .section--news-home .news-card--home .news-card__body,
    .news-article-intro,
    .news-article-body,
    .news-aside-card,
    .news-article-cover {
        padding: 18px 16px 20px;
    }

    .section--news-home .news-card--home .news-card__body {
        gap: 9px;
    }

    .section--news-home .news-card--home .news-card__meta {
        font-size: 0.62rem;
        letter-spacing: 0.11em;
    }

    .section--news-home .news-card--home .news-card__title {
        font-size: 1.08rem;
        line-height: 1.16;
    }

    .section--news-home .news-card--home .news-card__excerpt {
        -webkit-line-clamp: 3;
    }

    .news-home-head__link {
        align-self: flex-start;
        font-size: 0.85rem;
    }

    .news-article-hero {
        gap: 16px;
    }

    .news-article-cover img {
        min-height: 240px;
    }
}

/* Editorial typography refresh */
h2,
.news-card__title,
.section--news-landing h1,
.section--news-article h1,
.news-article-body h2,
.news-aside-card strong {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.78),
        0 12px 24px rgba(11, 36, 66, 0.07);
}

.section-kicker,
.section-kicker--light,
.news-home-note__eyebrow,
.news-aside-card__label,
.gallery-showcase__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-kicker {
    color: rgba(8, 50, 94, 0.8);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.88),
        0 10px 18px rgba(12, 49, 86, 0.08);
}

.section-kicker::after,
.section-kicker--light::after,
.news-home-note__eyebrow::after,
.news-aside-card__label::after,
.gallery-showcase__eyebrow::after {
    content: '';
    display: block;
    width: 82px;
    max-width: 100%;
    height: 1px;
    margin-top: 11px;
    background: linear-gradient(90deg, currentColor, rgba(0, 51, 102, 0));
    opacity: 0.42;
}

.section-kicker--light,
.gallery-showcase__eyebrow {
    color: rgba(228, 241, 255, 0.88);
    text-shadow:
        0 1px 0 rgba(4, 22, 44, 0.42),
        0 10px 22px rgba(0, 15, 32, 0.2);
}

.news-home-note__eyebrow,
.news-aside-card__label {
    color: rgba(33, 74, 118, 0.66);
}

.news-filter {
    gap: 14px 22px;
}

.news-filter__chip,
.news-card__category,
.video-badges span,
.song-badges span,
.gallery-badges span,
.show-tags span,
.ensaios-card__tag,
.news-home-note__topics span {
    position: relative;
    min-height: 0;
    padding: 0 0 6px;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    text-shadow: inherit;
}

.news-filter__chip::after,
.news-card__category::after,
.video-badges span::after,
.song-badges span::after,
.gallery-badges span::after,
.show-tags span::after,
.ensaios-card__tag::after,
.news-home-note__topics span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.24;
    transform-origin: left center;
}

.news-filter__chip {
    color: rgba(33, 74, 118, 0.76);
    transition: color 0.22s ease, transform 0.22s ease;
}

.news-filter__chip:hover,
.news-filter__chip:focus-visible,
.news-filter__chip.is-active {
    transform: translateY(-1px);
    background: none;
    box-shadow: none;
    border: 0;
    color: var(--accent);
}

.news-filter__chip:hover::after,
.news-filter__chip:focus-visible::after,
.news-filter__chip.is-active::after {
    opacity: 0.72;
}

.news-card__category {
    color: rgba(16, 68, 120, 0.88);
}

.section--news-home .news-card--home .news-card__category,
.section--news-home .news-card__category {
    color: rgba(16, 68, 120, 0.82);
}

.section--news-home .section-kicker {
    border: 0;
    background: none;
    box-shadow: none;
}

.section--news-home .section-kicker::after {
    width: 56px;
    height: 2px;
    margin-top: 8px;
    background: linear-gradient(90deg, rgba(10, 56, 100, 0.58), rgba(10, 56, 100, 0));
    opacity: 0.24;
}

.news-article-intro .section-kicker {
    border: 0;
    background: none;
    box-shadow: none;
}

.section--news-home .news-card--home {
    border-radius: 24px;
    border: 1px solid rgba(12, 49, 86, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.98));
    box-shadow:
        0 16px 32px rgba(11, 36, 66, 0.065),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section--news-home .news-card--home:hover {
    transform: translateY(-4px);
    border-color: rgba(12, 79, 153, 0.16);
    box-shadow:
        0 24px 46px rgba(11, 36, 66, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.section--news-home .news-card--home .news-card__body {
    gap: 10px;
    background: linear-gradient(180deg, #0b3156 0%, #071d34 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section--news-home .news-card--home .news-card__meta {
    color: rgba(214, 232, 248, 0.78);
    letter-spacing: 0.08em;
}

.section--news-home .news-card--home .news-card__title {
    font-size: 1.16rem;
    line-height: 1.14;
    letter-spacing: -0.024em;
    text-wrap: balance;
    color: #ffffff;
    text-shadow: none;
}

.section--news-home .news-card--home .news-card__title a {
    color: #ffffff;
}

.section--news-home .news-card--home .news-card__excerpt {
    color: rgba(231, 241, 251, 0.86);
    text-wrap: pretty;
}

.section--news-home .news-card--home .news-card__category {
    border-color: rgba(173, 221, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #d7ebff;
}

.section--news-home .news-card--home .news-card__link {
    color: #ffffff;
    border-bottom-color: rgba(173, 221, 255, 0.24);
    text-shadow: none;
}

.news-home-head__link,
.news-home-note__link,
.news-card__link {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0, 51, 102, 0.16);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.section--news-home .news-home-head__link,
.section--news-home .news-home-note__link {
    color: #0a3d69;
    border-bottom-color: rgba(10, 61, 105, 0.14);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 18px rgba(10, 54, 97, 0.04);
}

/* Article page: less cards, more editorial page */
.section--news-article {
    padding: 18px 0 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.section--news-article::before {
    display: none;
}

.news-breadcrumbs {
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(33, 74, 118, 0.62);
    font-size: 0.72rem;
}

.news-article-hero {
    gap: 34px;
    align-items: end;
}

.news-article-intro {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    gap: 18px;
}

.section--news-article h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 6.1vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
    text-wrap: balance;
    color: #0c3156;
}

.news-article-meta {
    gap: 12px;
    color: rgba(33, 74, 118, 0.62);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
}

.news-article-meta span + span::before {
    content: '/';
    margin-right: 12px;
    color: rgba(33, 74, 118, 0.34);
}

.news-article-lead {
    max-width: 42rem;
    font-size: 1.12rem;
    line-height: 1.82;
    color: rgba(47, 66, 88, 0.9);
    text-wrap: pretty;
}

.news-article-cover {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 28px 58px rgba(8, 31, 58, 0.16);
    background: #dbe7f2;
}

.news-article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 48px;
    margin-top: 44px;
}

.news-article-body {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    max-width: 760px;
}

.news-article-body::before {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 6px;
    left: -30px;
    width: 1px;
    background: linear-gradient(180deg, rgba(12, 49, 86, 0.26), rgba(12, 49, 86, 0.04));
}

.news-article-block + .news-article-block {
    margin-top: 40px;
    padding-top: 34px;
    border-top: 1px solid rgba(12, 49, 86, 0.1);
}

.news-article-body h2 {
    margin-bottom: 18px;
    font-size: clamp(1.68rem, 2.2vw, 2.2rem);
    line-height: 1.04;
    letter-spacing: -0.028em;
    text-align: left;
    text-wrap: balance;
}

.news-article-body p {
    max-width: 39em;
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(23, 42, 63, 0.9);
}

.news-article-block:first-of-type p:first-of-type::first-letter {
    float: left;
    margin: 7px 12px 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.9rem;
    line-height: 0.82;
    color: var(--accent);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.84),
        0 12px 22px rgba(11, 36, 66, 0.12);
}

.news-article-list {
    margin-top: 22px;
    gap: 16px;
}

.news-article-list li {
    padding-left: 24px;
    font-size: 1.02rem;
    line-height: 1.78;
    color: rgba(23, 42, 63, 0.9);
}

.news-article-list li::before {
    top: 0.9em;
    width: 10px;
    height: 1px;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(8, 70, 138, 0.96), rgba(8, 70, 138, 0.08));
}

.news-article-aside {
    gap: 26px;
    padding-top: 6px;
}

.news-aside-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    gap: 12px;
    border-top: 1px solid rgba(12, 49, 86, 0.1);
    padding-top: 18px;
}

.news-aside-card:first-child {
    border-top: 0;
    padding-top: 0;
}

.news-aside-card strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.52rem;
    font-weight: 600;
    line-height: 1.08;
    color: #10385f;
}

.news-aside-card p {
    font-size: 0.96rem;
    line-height: 1.72;
    color: rgba(43, 62, 83, 0.84);
}

.news-aside-card .btn,
.news-aside-card .btn--ghost {
    min-height: 0;
    padding: 0 0 4px;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.news-aside-card .btn::before,
.news-aside-card .btn::after,
.news-aside-card .btn--ghost::before,
.news-aside-card .btn--ghost::after {
    display: none;
}

.news-aside-card .btn {
    border-bottom: 1px solid rgba(0, 51, 102, 0.16);
}

.section--news-related {
    margin-top: 14px;
    padding: 34px 0 0;
    border: 0;
    border-top: 1px solid rgba(12, 49, 86, 0.1);
    background: transparent;
    box-shadow: none;
}

.section--news-related::before {
    display: none;
}

.section--news-related h2,
.section--news-related .section-lead {
    text-align: left;
}

.section--news-related .section-lead {
    margin-left: 0;
    margin-right: 0;
    max-width: 48rem;
}

.section--news-related .news-grid--related {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 26px;
}

.section--news-related .news-card {
    display: grid;
    grid-template-columns: 186px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    padding: 22px 0;
    border: 0;
    border-top: 1px solid rgba(12, 49, 86, 0.1);
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.section--news-related .news-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(12, 49, 86, 0.1);
}

.section--news-related .news-card__media {
    border-radius: 14px;
    box-shadow: 0 16px 28px rgba(11, 36, 66, 0.08);
}

.section--news-related .news-card__body {
    padding: 0;
    gap: 9px;
}

.section--news-related .news-card__title {
    font-size: clamp(1.28rem, 2vw, 1.48rem);
    line-height: 1.1;
}

.section--news-related .news-card__excerpt {
    max-width: 56ch;
    color: rgba(43, 62, 83, 0.84);
}

@media (max-width: 1180px) {
    .news-article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-article-body::before {
        display: none;
    }

    .news-article-aside {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        position: static;
    }
}

@media (max-width: 920px) {
    .section-kicker,
    .section-kicker--light,
    .news-home-note__eyebrow,
    .news-aside-card__label,
    .gallery-showcase__eyebrow {
        letter-spacing: 0.18em;
    }

    .section--news-article {
        padding-top: 10px;
    }

    .section--news-article h1 {
        max-width: none;
        font-size: clamp(2.4rem, 9vw, 3.7rem);
    }

    .news-article-hero {
        gap: 18px;
    }

    .news-article-lead {
        font-size: 1rem;
        line-height: 1.72;
    }

    .news-article-body p,
    .news-article-list li {
        font-size: 0.98rem;
        line-height: 1.74;
    }

    .news-article-aside {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section--news-related .news-card {
        grid-template-columns: 132px minmax(0, 1fr);
        gap: 16px;
    }
}

@media (max-width: 720px) {
    .section-kicker::after,
    .section-kicker--light::after,
    .news-home-note__eyebrow::after,
    .news-aside-card__label::after,
    .gallery-showcase__eyebrow::after {
        width: 60px;
        margin-top: 9px;
    }

    .news-filter {
        gap: 10px 16px;
        justify-content: flex-start;
    }

    .news-filter__chip {
        width: auto;
        justify-content: flex-start;
    }

    .section--news-home .news-card--home .news-card__body {
        padding: 18px 16px 20px;
    }

    .news-article-body p {
        font-size: 0.97rem;
        line-height: 1.72;
    }

    .news-article-block:first-of-type p:first-of-type::first-letter {
        margin-right: 9px;
        font-size: 3.9rem;
    }

    .section--news-related .news-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .section--news-related .news-card__body {
        padding: 0;
    }
}

/* News polish: remove prompt-like underlines, fix overflow, support local video */
.section-kicker::after,
.section-kicker--light::after,
.news-home-note__eyebrow::after,
.news-aside-card__label::after,
.gallery-showcase__eyebrow::after,
.news-filter__chip::after,
.news-card__category::after,
.video-badges span::after,
.song-badges span::after,
.gallery-badges span::after,
.show-tags span::after,
.ensaios-card__tag::after,
.news-home-note__topics span::after {
    content: none !important;
    display: none;
}

.news-home-head__link,
.news-home-note__link,
.news-card__link,
.news-aside-card .btn {
    border-bottom: 0;
    padding-bottom: 0;
}

.news-page,
.news-page .container--news,
.news-page .section--news-home,
.news-page .section--news-article,
.news-page .section--news-related,
.news-page .section--news-landing,
.news-page .section--news-featured,
.news-page .section--news-group,
.news-page .news-article-hero,
.news-page .news-article-layout,
.news-page .news-article-intro,
.news-page .news-article-cover,
.news-page .news-article-body,
.news-page .news-article-aside,
.news-page .news-breadcrumbs,
.news-page .news-card,
.news-page .news-card__body {
    min-width: 0;
}

.news-page .container--news {
    overflow-x: clip;
}

.news-page .section--news-home,
.news-page .section--news-article,
.news-page .section--news-related,
.news-page .section--news-landing,
.news-page .section--news-featured,
.news-page .section--news-group {
    contain: none;
    isolation: auto;
}

.news-page .section--news-home:hover,
.news-page .section--news-article:hover,
.news-page .section--news-related:hover,
.news-page .section--news-landing:hover,
.news-page .section--news-featured:hover,
.news-page .section--news-group:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.news-article-layout,
.news-grid--related,
.section--news-related .news-card,
.section--news-related .news-card__body {
    overflow: visible;
}

.news-breadcrumbs a,
.section--news-article h1,
.news-article-lead,
.news-article-body h2,
.news-article-body p,
.news-article-list li,
.news-card__title,
.news-card__title a,
.news-card__excerpt {
    overflow-wrap: anywhere;
    word-break: normal;
}

.news-card__media,
.news-article-cover {
    position: relative;
}

.news-card__media img,
.news-card__media video,
.news-article-cover img,
.news-article-cover video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.news-card__media--video video,
.news-article-cover--video video {
    pointer-events: none;
    background: #dbe7f2;
}

.news-card__media--video::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 28%, rgba(88, 172, 238, 0.18) 64%, rgba(255, 255, 255, 0.08) 100%),
        repeating-linear-gradient(170deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 18px);
    mix-blend-mode: screen;
    opacity: 0.46;
    pointer-events: none;
}

.news-card__media--video::after {
    content: '\25B6';
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(19, 96, 192, 0.95), rgba(8, 56, 118, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #ffffff;
    font-size: 1.18rem;
    line-height: 1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 16px 26px rgba(0, 18, 40, 0.22);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.news-card__media--banner,
.news-article-cover--banner {
    position: relative;
    isolation: isolate;
}

.news-article-cover--banner {
    display: block;
}

.news-card__banner-track,
.news-card__banner-shade,
.news-card__banner-dots {
    position: absolute;
    inset: 0;
}

.news-card__banner-slide:nth-child(1),
.news-card__banner-dots span:nth-child(1) {
    --news-banner-delay: 0s;
}

.news-card__banner-slide:nth-child(2),
.news-card__banner-dots span:nth-child(2) {
    --news-banner-delay: 6s;
}

.news-card__banner-slide:nth-child(3),
.news-card__banner-dots span:nth-child(3) {
    --news-banner-delay: 12s;
}

.news-card__banner-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0f3559;
    opacity: 0;
    animation: newsCardBannerCycle 18s infinite ease-in-out;
    animation-delay: var(--news-banner-delay, 0s);
}

.news-card__banner-backdrop {
    position: absolute;
    inset: -8%;
    z-index: 0;
    overflow: hidden;
}

.news-card__banner-backdrop img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: blur(22px) saturate(0.96);
    transform: scale(1.14);
    opacity: 0.86;
}

.news-card__banner-slide:first-child {
    opacity: 1;
}

.news-card__banner-image {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
    transform: scale(1);
    animation: newsCardBannerZoom 18s infinite ease-in-out;
    animation-delay: var(--news-banner-delay, 0s);
}

.news-card__banner-shade {
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(7, 28, 47, 0.02), rgba(7, 28, 47, 0.12) 44%, rgba(7, 28, 47, 0.52)),
        linear-gradient(135deg, rgba(115, 184, 246, 0.24), transparent 56%);
    pointer-events: none;
}

.news-card__banner-dots {
    inset: auto auto 16px 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 7px;
    pointer-events: none;
}

.news-card__banner-dots span {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: rgba(226, 240, 255, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: newsCardBannerDot 18s infinite ease-in-out;
    animation-delay: var(--news-banner-delay, 0s);
}

@keyframes newsCardBannerCycle {
    0%,
    28% {
        opacity: 1;
    }

    33%,
    100% {
        opacity: 0;
    }
}

@keyframes newsCardBannerZoom {
    0% {
        transform: scale(1);
    }

    28% {
        transform: scale(1.025);
    }

    33%,
    100% {
        transform: scale(1);
    }
}

@keyframes newsCardBannerZoomLite {
    0% {
        transform: scale(1);
    }

    28% {
        transform: scale(1.018);
    }

    33%,
    100% {
        transform: scale(1);
    }
}

@keyframes newsCardBannerDot {
    0%,
    28% {
        background: rgba(255, 255, 255, 0.92);
        transform: scaleX(1.05);
    }

    33%,
    100% {
        background: rgba(226, 240, 255, 0.3);
        transform: scaleX(1);
    }
}

@keyframes newsArticleBannerZoom {
    0% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    28% {
        transform: scale(1.055) translate3d(0, -1.4%, 0);
    }

    33%,
    100% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }
}

@keyframes newsArticleBannerSheen {
    0%,
    100% {
        opacity: 0.18;
        transform: translate3d(-6%, 0, 0) scale(1);
    }

    50% {
        opacity: 0.34;
        transform: translate3d(4%, -1%, 0) scale(1.035);
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-card__banner-slide,
    .news-card__banner-image,
    .news-card__banner-dots span {
        animation: none;
    }

    .news-card__banner-slide {
        opacity: 0;
    }

    .news-card__banner-slide:first-child {
        opacity: 1;
    }
}

@media (min-width: 981px) {
    .news-card__media--banner .news-card__banner-image,
    .news-article-cover--banner .news-card__banner-image {
        object-fit: contain !important;
        object-position: center !important;
        padding: clamp(10px, 1.2vw, 18px);
    }

    .news-page--article .section--news-related .news-card__media--banner .news-card__banner-image {
        padding: clamp(12px, 1vw, 16px);
    }

    .news-article-cover--banner .news-card__banner-image {
        padding: clamp(14px, 1.4vw, 22px);
    }
}

.news-article-cover {
    padding: 0;
    max-width: 100%;
    width: min(100%, 520px);
    aspect-ratio: 16 / 10;
    justify-self: end;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(0, 51, 102, 0.08);
    box-shadow: 0 18px 32px rgba(0, 17, 34, 0.14);
}

.news-article-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03) 28%, rgba(88, 172, 238, 0.12) 64%, rgba(255, 255, 255, 0.07) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.news-article-cover img,
.news-article-cover video {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 28px;
}

.news-article-cover--banner .news-card__banner-dots {
    inset: auto auto 18px 22px;
}

.news-article-cover--banner .news-card__banner-dots span {
    width: 34px;
    height: 4px;
}

.news-article-cover--video::before {
    display: none;
}

.news-article-cover--video video {
    pointer-events: auto;
}

.news-article-player {
    accent-color: #1b6fd0;
    background: #dbe7f2;
}

@media (max-width: 1320px) {
    .news-article-hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .news-article-cover {
        width: 100%;
        max-width: 520px;
        justify-self: start;
    }
}

.section--news-related .news-card {
    grid-template-columns: minmax(264px, 292px) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

.section--news-related .news-card__media {
    width: 100%;
    max-width: 292px;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(0, 51, 102, 0.08);
    box-shadow: 0 18px 32px rgba(0, 17, 34, 0.14);
}

@media (max-width: 920px) {
    .section--news-related .news-card {
        grid-template-columns: minmax(208px, 236px) minmax(0, 1fr);
    }

    .section--news-related .news-card__media {
        max-width: 236px;
    }

    .news-article-cover {
        max-width: 420px;
    }
}

@media (max-width: 720px) {
    .news-article-cover,
    .news-article-cover--video,
    .news-article-cover--banner {
        padding: 0;
        width: 100%;
        max-width: none;
    }

    .news-article-cover img,
    .news-article-cover video {
        aspect-ratio: 16 / 10;
    }

    .news-card__media--video::after,
    .news-article-cover--video::after {
        width: 66px;
        height: 66px;
        font-size: 1rem;
    }

    .section--news-related .news-card__media {
        max-width: none;
        aspect-ratio: 1 / 1;
    }
}

.section--news-home,
.section--news-landing,
.section--news-featured,
.section--news-group,
.section--news-related {
    border-color: rgba(92, 162, 232, 0.16);
    background:
        radial-gradient(circle at 12% 10%, rgba(102, 176, 245, 0.12), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(75, 152, 228, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(241, 247, 255, 0.98), rgba(251, 253, 255, 0.98));
    box-shadow: 0 24px 58px rgba(12, 49, 86, 0.08);
}

.news-page--article .container--news {
    background:
        radial-gradient(circle at 18% 6%, rgba(96, 173, 243, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(232, 242, 253, 0.62), rgba(255, 255, 255, 0) 24%);
    border-radius: 40px;
}

.news-page--article .section--news-article h1,
.news-page--article .news-article-body h2,
.news-page--article .news-card__title {
    color: #0b3c6f;
}

@media (max-width: 720px) {
    .news-page--article .container--news {
        border-radius: 28px;
    }
}

/* Mobile article redesign */
@media (max-width: 980px) {
    body.news-page--article {
        background: #f3f6fa;
    }

    .news-page--article .page-aura {
        opacity: 0.18;
    }

    .news-page--article .container--news {
        padding: 12px 12px 42px;
        background: none;
        border-radius: 0;
    }

    .news-page--article .section--news-article {
        margin-bottom: 18px;
        padding: 0;
        background: none;
        border: 0;
        box-shadow: none;
    }

    .news-page--article .news-breadcrumbs {
        display: none;
    }

    .news-page--article .news-article-hero {
        grid-template-columns: 1fr !important;
        gap: 0;
        overflow: hidden;
        border-radius: 30px;
        background: linear-gradient(180deg, #051a30 0%, #082744 58%, #0c3c67 100%);
        box-shadow: 0 22px 44px rgba(0, 18, 36, 0.24);
    }

    .news-page--article .news-article-cover {
        order: -1;
        width: 100%;
        max-width: none;
        justify-self: stretch;
        border-radius: 0;
        aspect-ratio: 16 / 10;
        background: transparent;
        box-shadow: none;
    }

    .news-page--article .news-article-cover::before {
        display: none;
    }

    .news-page--article .news-article-cover img,
    .news-page--article .news-article-cover video {
        aspect-ratio: 16 / 10;
        border-radius: 0;
    }

    .news-page--article .news-article-intro {
        gap: 12px;
        padding: 18px 18px 22px;
        background: none;
        border: 0;
        box-shadow: none;
        text-align: left;
    }

    .news-page--article .section-kicker {
        margin-bottom: 0;
        color: rgba(222, 237, 255, 0.82);
        text-shadow: none;
        letter-spacing: 0.14em;
        font-size: 0.68rem;
    }

    .news-page--article .section--news-article h1 {
        max-width: none;
        color: #ffffff;
        font-size: clamp(2.25rem, 8.5vw, 3.25rem);
        line-height: 0.94;
        letter-spacing: -0.045em;
        text-shadow: none;
        text-wrap: balance;
    }

    .news-page--article .news-article-meta {
        gap: 10px;
        color: rgba(204, 226, 247, 0.78);
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .news-page--article .news-article-meta span + span::before {
        color: rgba(204, 226, 247, 0.38);
    }

    .news-page--article .news-article-lead {
        max-width: none;
        color: rgba(239, 246, 255, 0.92);
        font-size: 1.04rem;
        line-height: 1.74;
        text-shadow: none;
        text-wrap: pretty;
    }

    .news-page--article .news-article-layout {
        gap: 16px;
        margin-top: 18px;
    }

    .news-page--article .news-article-body {
        padding: 22px 18px 24px;
        background: #ffffff;
        border-radius: 28px;
        box-shadow: 0 18px 38px rgba(10, 38, 67, 0.08);
    }

    .news-page--article .news-article-body::before {
        display: none;
    }

    .news-page--article .news-article-block + .news-article-block {
        margin-top: 28px;
        padding-top: 22px;
    }

    .news-page--article .news-article-body h2 {
        margin-bottom: 14px;
        color: #0c3156;
        font-size: clamp(1.62rem, 6vw, 2rem);
        line-height: 1.04;
        text-shadow: none;
        text-wrap: balance;
    }

    .news-page--article .news-article-body p {
        max-width: none;
        font-size: 1.03rem;
        line-height: 1.86;
        color: #233a53;
    }

    .news-page--article .news-article-body p + p {
        margin-top: 16px;
    }

    .news-page--article .news-article-block:first-of-type p:first-of-type::first-letter {
        font-size: 4.2rem;
        margin: 6px 10px 0 0;
    }

    .news-page--article .news-article-list li {
        font-size: 1rem;
        line-height: 1.76;
        color: #233a53;
    }

    .news-page--article .news-article-aside {
        gap: 12px;
    }

    .news-page--article .news-aside-card {
        gap: 10px;
        padding: 16px 16px 18px;
        background: #ffffff;
        border: 0;
        border-radius: 20px;
        box-shadow: 0 14px 28px rgba(10, 38, 67, 0.08);
    }

    .news-page--article .news-aside-card strong {
        font-size: 1.2rem;
        line-height: 1.08;
        text-shadow: none;
    }

    .news-page--article .news-aside-card p {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .news-page--article .section--news-related {
        margin-top: 18px;
        padding: 22px 18px 24px;
        background: linear-gradient(180deg, #051a30 0%, #082744 52%, #0b3660 100%);
        border: 0;
        border-radius: 30px;
        box-shadow: 0 24px 40px rgba(0, 18, 36, 0.22);
    }

    .news-page--article .section--news-related .section-kicker,
    .news-page--article .section--news-related h2,
    .news-page--article .section--news-related .section-lead {
        text-align: left;
        text-shadow: none;
    }

    .news-page--article .section--news-related .section-kicker {
        color: rgba(218, 236, 255, 0.78);
        letter-spacing: 0.14em;
        margin-bottom: 8px;
    }

    .news-page--article .section--news-related h2 {
        color: #ffffff;
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 0.98;
        letter-spacing: -0.03em;
        text-wrap: balance;
    }

    .news-page--article .section--news-related .section-lead {
        max-width: none;
        color: rgba(224, 237, 252, 0.82);
        font-size: 1rem;
        line-height: 1.66;
        text-wrap: pretty;
    }

    .news-page--article .section--news-related .news-grid--related {
        gap: 16px;
        margin-top: 20px;
    }

    .news-page--article .section--news-related .news-card {
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(173, 221, 255, 0.14);
        border-radius: 24px;
        box-shadow: 0 16px 30px rgba(0, 17, 34, 0.18);
    }

    .news-page--article .section--news-related .news-card__media {
        max-width: none;
        aspect-ratio: 1 / 1;
        border-radius: 0;
        background: #0f3559;
        box-shadow: none;
        justify-self: stretch !important;
    }

    .news-page--article .section--news-related .news-card__body {
        gap: 10px;
        padding: 16px 16px 18px;
        text-align: left !important;
        justify-items: start !important;
        align-items: start !important;
    }

    .news-page--article .section--news-related .news-card__meta {
        gap: 8px;
        color: rgba(205, 226, 246, 0.76);
        font-size: 0.7rem;
        letter-spacing: 0.11em;
        justify-content: flex-start !important;
    }

    .news-page--article .section--news-related .news-card__category {
        color: #9fccff;
    }

    .news-page--article .section--news-related .news-card__title,
    .news-page--article .section--news-related .news-card__title a {
        color: #ffffff;
        font-size: clamp(1.44rem, 6vw, 1.86rem);
        line-height: 1.06;
        letter-spacing: -0.024em;
        text-shadow: none;
        text-wrap: balance;
    }

    .news-page--article .section--news-related .news-card__excerpt {
        max-width: none;
        color: rgba(231, 241, 251, 0.86);
        font-size: 1rem;
        line-height: 1.68;
        margin-inline: 0 !important;
        text-align: left !important;
        text-wrap: pretty;
    }

    .news-page--article .section--news-related .news-card__link {
        color: #ffffff;
        font-size: 0.78rem;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 420px) {
    .news-page--article .container--news {
        padding-left: 10px;
        padding-right: 10px;
    }

    .news-page--article .news-article-intro,
    .news-page--article .news-article-body,
    .news-page--article .news-aside-card,
    .news-page--article .section--news-related {
        padding-left: 16px;
        padding-right: 16px;
    }

    .news-page--article .section--news-article h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .news-page--article .news-article-body p,
    .news-page--article .section--news-related .news-card__excerpt {
        font-size: 0.98rem;
        line-height: 1.78;
    }
}

/* Mobile/category listing redesign */
@media (max-width: 980px) {
    body.news-page--listing,
    body.news-page--category {
        background: #eff4f8;
    }

    .news-page--listing .page-aura,
    .news-page--category .page-aura {
        opacity: 0.14;
    }

    .news-page--listing .container--news,
    .news-page--category .container--news {
        padding: 12px 12px 42px;
        background: none;
        border-radius: 0;
    }

    .news-page--listing .section--news-landing,
    .news-page--category .section--news-landing {
        padding: 22px 18px 24px;
        background: linear-gradient(180deg, #082b4b 0%, #0d4578 62%, #1662a3 100%);
        border: 0;
        border-radius: 30px;
        box-shadow: 0 22px 44px rgba(0, 24, 48, 0.2);
        text-align: left;
    }

    .news-page--listing .section--news-landing .section-kicker,
    .news-page--category .section--news-landing .section-kicker {
        color: rgba(222, 237, 255, 0.82);
        letter-spacing: 0.14em;
        text-shadow: none;
    }

    .news-page--listing .section--news-landing h1,
    .news-page--category .section--news-landing h1 {
        margin-bottom: 12px;
        color: #ffffff;
        text-align: left;
        font-size: clamp(2.4rem, 9vw, 3.35rem);
        line-height: 0.94;
        text-shadow: none;
        text-wrap: balance;
    }

    .news-page--listing .section--news-landing .section-lead,
    .news-page--category .section--news-landing .section-lead {
        max-width: none;
        color: rgba(236, 244, 255, 0.88);
        text-align: left;
        font-size: 1rem;
        line-height: 1.7;
    }

    .news-page--listing .news-filter,
    .news-page--category .news-filter {
        justify-content: flex-start;
        gap: 10px;
    }

    .news-page--listing .news-filter__chip,
    .news-page--category .news-filter__chip {
        width: auto;
        min-height: 40px;
        padding: 9px 12px;
        border: 1px solid rgba(188, 223, 255, 0.18);
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        box-shadow: none;
    }

    .news-page--listing .news-filter__chip:hover,
    .news-page--listing .news-filter__chip:focus-visible,
    .news-page--listing .news-filter__chip.is-active,
    .news-page--category .news-filter__chip:hover,
    .news-page--category .news-filter__chip:focus-visible,
    .news-page--category .news-filter__chip.is-active {
        transform: none;
        border-color: rgba(255, 255, 255, 0.24);
        background: rgba(255, 255, 255, 0.16);
        color: #ffffff;
        box-shadow: none;
    }

    .news-page--listing .section--news-featured,
    .news-page--listing .section--news-group,
    .news-page--category .section--news-group {
        margin-top: 18px;
        padding: 22px 18px 24px;
        background: linear-gradient(180deg, #082845 0%, #0d3d69 100%);
        border: 0;
        border-radius: 30px;
        box-shadow: 0 24px 40px rgba(0, 23, 46, 0.18);
    }

    .news-page--listing .news-featured__intro,
    .news-page--listing .news-group__header,
    .news-page--category .news-group__header {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: start;
        text-align: left;
    }

    .news-page--listing .section--news-featured .section-kicker,
    .news-page--listing .section--news-group .section-kicker,
    .news-page--category .section--news-group .section-kicker {
        color: rgba(218, 236, 255, 0.78);
        margin-bottom: 8px;
    }

    .news-page--listing .section--news-featured h2,
    .news-page--listing .section--news-group h2,
    .news-page--category .section--news-group h2 {
        color: #ffffff;
        text-align: left;
        font-size: clamp(2rem, 8vw, 2.7rem);
        line-height: 0.98;
        text-shadow: none;
    }

    .news-page--listing .section--news-featured p,
    .news-page--listing .section--news-group p,
    .news-page--category .section--news-group p {
        max-width: none;
        margin: 0;
        color: rgba(224, 237, 252, 0.82);
        text-align: left;
        font-size: 1rem;
        line-height: 1.66;
    }

    .news-page--listing .news-grid,
    .news-page--category .news-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
        margin-top: 20px;
    }

    .news-page--listing .news-card,
    .news-page--category .news-card,
    .news-page--listing .news-card--featured,
    .news-page--category .news-card--featured {
        display: grid;
        grid-column: auto;
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
        gap: 0 !important;
        min-height: 0;
        padding: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(173, 221, 255, 0.14);
        border-radius: 24px;
        box-shadow: 0 16px 30px rgba(0, 17, 34, 0.18);
    }

    .news-page--listing .news-card:hover,
    .news-page--category .news-card:hover {
        transform: none;
        border-color: rgba(173, 221, 255, 0.14);
        box-shadow: 0 16px 30px rgba(0, 17, 34, 0.18);
    }

    .news-page--listing .news-card__media,
    .news-page--category .news-card__media {
        width: 100%;
        max-width: none;
        aspect-ratio: 16 / 10;
        max-height: min(58vw, 260px);
        border-radius: 0;
        background: #0f3559;
        box-shadow: none;
    }

    .news-page--listing .news-card__media img,
    .news-page--listing .news-card__media video,
    .news-page--category .news-card__media img,
    .news-page--category .news-card__media video {
        object-fit: cover;
    }

    .news-page--listing .news-card__media--banner .news-card__banner-image,
    .news-page--category .news-card__media--banner .news-card__banner-image,
    .section--news-home .news-card--home .news-card__media--banner .news-card__banner-image,
    .news-article-cover--banner .news-card__banner-image,
    .news-page--article .section--news-related .news-card__media--banner .news-card__banner-image {
        object-fit: cover !important;
        padding: 0;
    }

    .news-page--listing .news-card__body,
    .news-page--category .news-card__body,
    .news-page--listing .news-card--featured .news-card__body,
    .news-page--category .news-card--featured .news-card__body {
        grid-template-rows: auto auto 1fr auto;
        gap: 9px;
        padding: 15px 15px 17px;
        text-align: left;
        justify-items: start;
        align-items: start;
    }

    .news-page--listing .news-card__meta,
    .news-page--category .news-card__meta {
        justify-content: flex-start;
        gap: 8px;
        row-gap: 6px;
        color: rgba(205, 226, 246, 0.76);
        font-size: 0.7rem;
        letter-spacing: 0.11em;
    }

    .news-page--listing .news-card__category,
    .news-page--category .news-card__category {
        padding: 0;
        border: 0;
        background: none;
        color: #9fccff;
    }

    .news-page--listing .news-card__title,
    .news-page--listing .news-card__title a,
    .news-page--category .news-card__title,
    .news-page--category .news-card__title a {
        color: #ffffff;
        font-size: clamp(1.2rem, 5vw, 1.56rem);
        line-height: 1.12;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: none;
    }

    .news-page--listing .news-card__excerpt,
    .news-page--category .news-card__excerpt {
        color: rgba(231, 241, 251, 0.86);
        font-size: 0.94rem;
        line-height: 1.56;
        text-align: left;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-page--listing .news-card__link,
    .news-page--category .news-card__link {
        color: #ffffff;
        margin-top: 4px;
        font-size: 0.74rem;
        letter-spacing: 0.14em;
    }
}

/* Final article related-section override */
.news-page--article .section--news-related {
    margin-top: clamp(28px, 3.4vw, 40px);
    padding: clamp(22px, 3vw, 36px);
    background: linear-gradient(180deg, #051a30 0%, #082744 52%, #0b3660 100%);
    border: 0;
    border-radius: 34px;
    box-shadow: 0 24px 40px rgba(0, 18, 36, 0.22);
}

.news-page--article .section--news-related .section-kicker,
.news-page--article .section--news-related h2,
.news-page--article .section--news-related .section-lead {
    text-align: left;
    text-shadow: none;
    margin-inline: 0;
}

.news-page--article .section--news-related .section-kicker {
    color: rgba(218, 236, 255, 0.78);
}

.news-page--article .section--news-related h2 {
    color: #ffffff;
    margin-bottom: 12px;
    max-width: 14ch;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.news-page--article .section--news-related .section-lead {
    max-width: 60ch;
    color: rgba(224, 237, 252, 0.82);
    text-wrap: pretty;
}

.news-page--article .section--news-related .news-grid--related {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 2vw, 24px);
    margin-top: clamp(18px, 2.4vw, 24px);
}

.news-page--article .section--news-related .news-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(157, 212, 255, 0.12) !important;
    border-radius: 26px !important;
    box-shadow: 0 18px 34px rgba(0, 14, 28, 0.22) !important;
}

.news-page--article .section--news-related .news-card:hover {
    transform: none;
    border-color: rgba(157, 212, 255, 0.12);
    box-shadow: 0 18px 34px rgba(0, 14, 28, 0.22);
}

.news-page--article .section--news-related .news-card__media {
    width: 100%;
    max-width: none !important;
    min-width: 0;
    aspect-ratio: 21 / 8;
    min-height: clamp(190px, 21vw, 270px);
    border-radius: 0 !important;
    background: #081f37;
    box-shadow: none !important;
}

.news-page--article .section--news-related .news-card__body {
    gap: 14px;
    min-width: 0;
    padding: clamp(18px, 2.3vw, 30px) !important;
    text-align: left !important;
    justify-items: start !important;
    align-items: start !important;
}

.news-page--article .section--news-related .news-card__meta {
    justify-content: flex-start !important;
    gap: 10px;
    row-gap: 6px;
    color: rgba(205, 226, 246, 0.76);
}

.news-page--article .section--news-related .news-card__category {
    padding: 0;
    border: 0;
    background: none;
    color: #9fccff;
}

.news-page--article .section--news-related .news-card__title,
.news-page--article .section--news-related .news-card__title a {
    color: #ffffff;
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
    line-height: 1.08;
    letter-spacing: -0.024em;
    text-shadow: none;
    max-width: 24ch;
    text-wrap: balance;
}

.news-page--article .section--news-related .news-card__excerpt {
    max-width: 62ch;
    margin: 0;
    color: rgba(231, 241, 251, 0.86);
    font-size: 1.02rem;
    line-height: 1.72;
    text-align: left;
    text-wrap: pretty;
}

.news-page--article .section--news-related .news-card__link {
    color: #ffffff;
}

@media (max-width: 980px) {
    .news-page--article .container--news {
        padding: 16px 16px 42px;
    }

    .news-page--article .section--news-related {
        border-radius: 30px !important;
    }

    .news-page--article .section--news-related .section-lead {
        max-width: none;
    }

    .news-page--article .section--news-related .news-card__media {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .news-page--article .section--news-related .news-card__body {
        padding: 18px 18px 20px !important;
    }

    .news-page--article .section--news-related .news-card__excerpt {
        max-width: none;
    }
}

@media (max-width: 420px) {
    .news-page--article .container--news {
        padding: 12px 12px 38px;
    }

    .news-page--article .section--news-related {
        border-radius: 26px !important;
    }

    .news-page--article .section--news-related .news-card__body {
        padding: 16px 16px 18px !important;
    }

    .news-page--article .section--news-related .news-card__title,
    .news-page--article .section--news-related .news-card__title a {
        max-width: none;
    }
}

/* Final desktop article banner override */
@media (min-width: 981px) {
    .news-page--article .news-article-cover,
    .news-page--article .news-article-cover--video,
    .news-page--article .news-article-cover--banner {
        width: 100% !important;
        max-width: none !important;
        min-height: clamp(280px, 34vw, 440px);
        justify-self: stretch !important;
        aspect-ratio: 21 / 8 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .news-page--article .news-article-cover::before,
    .news-page--article .news-article-cover--video::before,
    .news-page--article .news-article-cover--banner::before {
        display: none !important;
    }

    .news-page--article .news-article-cover img,
    .news-page--article .news-article-cover video,
    .news-page--article .news-article-cover--banner .news-card__banner-image {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 21 / 8 !important;
        border-radius: 0 !important;
        object-fit: cover !important;
        object-position: center !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

.news-page--article .news-article-cover--banner .news-card__banner-dots {
        inset: auto auto 20px 24px;
    }
}

/* Final article background cleanup */
body.news-page--article {
    background: #f7f8fb;
}

.news-page--article .page-aura {
    opacity: 0.05;
}

@media (min-width: 981px) {
    .news-page--article .container--news {
        background: none !important;
        border-radius: 0 !important;
    }

    .news-page--article .section--news-article {
        padding: clamp(28px, 3vw, 40px);
        background: #ffffff !important;
        border: 1px solid rgba(12, 49, 86, 0.08) !important;
        border-radius: 34px !important;
        box-shadow: 0 18px 42px rgba(10, 38, 67, 0.06) !important;
    }

    .news-page--article .news-article-body,
    .news-page--article .news-aside-card {
        background: #ffffff !important;
        box-shadow: 0 14px 30px rgba(10, 38, 67, 0.05) !important;
    }

    .news-page--article .news-article-body p,
    .news-page--article .news-article-list li,
    .news-page--article .news-aside-card p {
        color: rgba(29, 47, 68, 0.88);
    }
}

/* Performance hardening for mobile/coarse pointers and static deploys */
html.ua-lite,
html.ua-embedded {
    scroll-behavior: auto;
}

html.ua-lite body,
html.ua-embedded body,
html.ua-lite main,
html.ua-embedded main,
html.ua-lite .container,
html.ua-embedded .container,
html.ua-lite .hero,
html.ua-embedded .hero,
html.ua-lite .section,
html.ua-embedded .section,
html.ua-lite .site-footer,
html.ua-embedded .site-footer,
html.ua-lite .hero-signature,
html.ua-embedded .hero-signature {
    overflow-x: hidden !important;
}

html.ua-lite .section,
html.ua-embedded .section,
html.ua-lite .site-footer,
html.ua-embedded .site-footer,
html.ua-lite .section--news-featured,
html.ua-embedded .section--news-featured,
html.ua-lite .section--news-group,
html.ua-embedded .section--news-group {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
}

html.ua-lite .gallery,
html.ua-embedded .gallery,
html.ua-lite .song-grid,
html.ua-embedded .song-grid,
html.ua-lite .experience-grid,
html.ua-embedded .experience-grid,
html.ua-lite .legacy-track,
html.ua-embedded .legacy-track,
html.ua-lite .contact-grid,
html.ua-embedded .contact-grid,
html.ua-lite .song-grid-shell,
html.ua-embedded .song-grid-shell,
html.ua-lite .video-track-frame,
html.ua-embedded .video-track-frame,
html.ua-lite .ensaios-track-frame,
html.ua-embedded .ensaios-track-frame {
    contain: none !important;
}

html.ua-lite .video-track,
html.ua-embedded .video-track,
html.ua-lite .ensaios-track,
html.ua-embedded .ensaios-track,
html.ua-lite .song-grid,
html.ua-embedded .song-grid,
html.ua-lite .experience-grid,
html.ua-embedded .experience-grid {
    scroll-snap-type: x proximity !important;
    overscroll-behavior-x: auto !important;
    touch-action: auto !important;
}

html.ua-lite .video-card,
html.ua-embedded .video-card,
html.ua-lite .song-card,
html.ua-embedded .song-card,
html.ua-lite .ensaios-card,
html.ua-embedded .ensaios-card,
html.ua-lite .experience-card,
html.ua-embedded .experience-card {
    scroll-snap-stop: normal !important;
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
}

html.ua-lite .video-play,
html.ua-embedded .video-play,
html.ua-lite .song-card__play,
html.ua-embedded .song-card__play,
html.ua-lite .modal,
html.ua-embedded .modal,
html.ua-lite .lightbox,
html.ua-embedded .lightbox,
html.ua-lite .video-modal-shell,
html.ua-embedded .video-modal-shell,
html.ua-lite .jukebox-modal-shell,
html.ua-embedded .jukebox-modal-shell {
    backdrop-filter: none !important;
}

html.ua-lite .btn::before,
html.ua-embedded .btn::before,
html.ua-lite .btn::after,
html.ua-embedded .btn::after,
html.ua-lite .video-nav::before,
html.ua-embedded .video-nav::before,
html.ua-lite .video-nav::after,
html.ua-embedded .video-nav::after,
html.ua-lite .footer-action::before,
html.ua-embedded .footer-action::before,
html.ua-lite .social-link::before,
html.ua-embedded .social-link::before,
html.ua-lite .song-card::before,
html.ua-embedded .song-card::before,
html.ua-lite .song-card::after,
html.ua-embedded .song-card::after,
html.ua-lite .video-card::before,
html.ua-embedded .video-card::before,
html.ua-lite .video-card::after,
html.ua-embedded .video-card::after,
html.ua-lite .ensaios-card::before,
html.ua-embedded .ensaios-card::before,
html.ua-lite .ensaios-card::after,
html.ua-embedded .ensaios-card::after,
html.ua-lite .gallery-sticker,
html.ua-embedded .gallery-sticker {
    animation: none !important;
}

@supports (content-visibility: auto) {
    .section,
    .site-footer {
        content-visibility: auto;
        contain-intrinsic-size: 1px 860px;
    }

    .hero,
    .top-header,
    .header-nav-shell,
    .section--news-article,
    .section--news-landing,
    .section--news-featured,
    .section--news-home,
    .lightbox,
    .modal {
        content-visibility: visible;
        contain-intrinsic-size: auto;
    }
}

@media (hover: none), (pointer: coarse) {
    .video-track,
    .ensaios-track,
    .song-grid,
    .experience-grid {
        scroll-snap-type: x proximity;
        overscroll-behavior-x: auto;
        touch-action: auto;
    }

    .video-card,
    .song-card,
    .ensaios-card,
    .experience-card {
        scroll-snap-stop: normal;
    }
}

@media (max-width: 1200px), (hover: none), (pointer: coarse) {
    .section,
    .site-footer,
    .section--news-featured,
    .section--news-group,
    .section--news-home {
        content-visibility: visible !important;
        contain-intrinsic-size: auto !important;
    }

    .gallery,
    .song-grid,
    .experience-grid,
    .legacy-track,
    .contact-grid,
    .song-grid-shell,
    .video-track-frame,
    .ensaios-track-frame {
        contain: none !important;
    }

    body::before,
    .page-aura::before,
    .page-aura::after,
    .hero-copy::before,
    .hero-copy::after,
    .hero-content::before,
    .hero-content::after,
    .gallery::before,
    .news-card__banner-backdrop {
        animation: none !important;
        display: none !important;
    }

    .page-aura {
        background: linear-gradient(180deg, rgba(6, 36, 74, 0.018), transparent 18%, transparent 82%, rgba(6, 36, 74, 0.018));
    }

    .section,
    .news-card,
    .video-card,
    .song-card,
    .contact-card,
    .bio-card,
    .repertoire-card,
    .legacy-card,
    .show-card,
    .ensaios-card,
    .experience-showcase,
    .song-grid-shell,
    .ensaios-track-frame,
    .video-track-frame,
    .show-date,
    .bio-preview {
        box-shadow:
            0 16px 32px rgba(0, 20, 40, 0.13),
            0 0 0 1px rgba(158, 212, 255, 0.06),
            0 0 34px rgba(92, 170, 245, 0.11) !important;
    }

    .news-card__banner-slide,
    .news-card__banner-dots span {
        animation: none !important;
    }

    .show-date {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            0 18px 36px rgba(0, 33, 66, 0.24),
            0 0 0 1px rgba(169, 220, 255, 0.08),
            0 0 34px rgba(102, 183, 255, 0.22) !important;
    }

    .btn,
    .header-cta,
    .footer-action,
    .social-link {
        box-shadow:
            0 14px 28px rgba(0, 24, 54, 0.16),
            0 0 0 1px rgba(183, 227, 255, 0.08),
            0 0 28px rgba(111, 191, 255, 0.18) !important;
    }

    .btn::before,
    .header-cta::before,
    .footer-action::before,
    .social-link::before {
        inset: -48% auto -48% -34% !important;
        width: 44% !important;
        background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.14) 58%, transparent 76%) !important;
        opacity: 0.92;
        animation-duration: 3.4s !important;
    }

    .header-cta::after,
    .footer-action::after,
    .social-link::after {
        content: '' !important;
        position: absolute !important;
        inset: auto 12% -28% !important;
        height: 46% !important;
        border-radius: 999px !important;
        background: radial-gradient(circle, rgba(169, 220, 255, 0.42), transparent 72%) !important;
        opacity: 0.72 !important;
        filter: blur(12px) !important;
        animation: ambientButtonAura 4s ease-in-out infinite !important;
        mix-blend-mode: screen !important;
        pointer-events: none !important;
        z-index: -1 !important;
    }

    .btn::after {
        background: radial-gradient(circle, rgba(169, 220, 255, 0.46), transparent 72%) !important;
        opacity: 0.72;
        filter: blur(12px) !important;
        animation-duration: 4s !important;
    }

    .show-date::before {
        opacity: 1 !important;
        inset: -46% auto -46% -34% !important;
        width: 48% !important;
        background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 16%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.22) 58%, transparent 78%) !important;
        animation-duration: 3s !important;
    }

    .show-date::after {
        opacity: 0.88 !important;
        animation-duration: 3.8s !important;
    }

    .song-grid-shell,
    .ensaios-track-frame,
    .video-track-frame,
    .experience-showcase,
    .show-date,
    .bio-preview {
        position: relative !important;
        overflow: hidden !important;
        isolation: isolate !important;
    }

    .show-date,
    .experience-showcase,
    .song-grid-shell,
    .ensaios-track-frame,
    .video-track-frame {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 18px 34px rgba(0, 20, 40, 0.14),
            0 0 0 1px rgba(158, 212, 255, 0.06),
            0 0 36px rgba(92, 170, 245, 0.14) !important;
    }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 1200px),
       (prefers-reduced-motion: no-preference) and (hover: none),
       (prefers-reduced-motion: no-preference) and (pointer: coarse) {
    .section--news-home .news-card--home .news-card__banner-slide,
    .news-page--article .news-article-cover--banner .news-card__banner-slide,
    .news-page--article .section--news-related .news-card__banner-slide {
        animation: newsCardBannerCycle 18s infinite ease-in-out !important;
        animation-delay: var(--news-banner-delay, 0s) !important;
    }

    .news-page--article .news-article-cover--banner .news-card__banner-backdrop,
    .news-page--article .section--news-related .news-card__banner-backdrop {
        display: block !important;
    }

    .section--news-home .news-card--home .news-card__banner-image,
    .news-page--article .news-article-cover--banner .news-card__banner-image,
    .news-page--article .section--news-related .news-card__banner-image {
        animation: newsCardBannerZoom 18s infinite ease-in-out !important;
        animation-delay: var(--news-banner-delay, 0s) !important;
    }

    .section--news-home .news-card--home .news-card__banner-dots span,
    .news-page--article .news-article-cover--banner .news-card__banner-dots span,
    .news-page--article .section--news-related .news-card__banner-dots span {
        animation: newsCardBannerDot 18s infinite ease-in-out !important;
        animation-delay: var(--news-banner-delay, 0s) !important;
    }
}

/* Final clean-white override for the home news container */
.section--news-home {
    background: #ffffff !important;
    background-image: none !important;
    border-color: rgba(12, 49, 86, 0.1) !important;
    box-shadow:
        0 34px 74px rgba(2, 17, 35, 0.16),
        0 14px 28px rgba(7, 48, 90, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}

.section--news-home::before {
    content: none !important;
    display: none !important;
    background: none !important;
}

@media (max-width: 1200px), (hover: none), (pointer: coarse) {
    .section--news-home {
        box-shadow:
            0 26px 54px rgba(2, 17, 35, 0.16),
            0 10px 20px rgba(7, 48, 90, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
    }
}

/* Archive/category pages: keep cards white over blue sections */
.news-page--listing .news-card,
.news-page--category .news-card,
.news-page--listing .news-card--featured,
.news-page--category .news-card--featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(246, 250, 254, 0.985)) !important;
    border: 1px solid rgba(11, 54, 98, 0.1) !important;
    box-shadow:
        0 18px 34px rgba(1, 16, 32, 0.16),
        0 8px 20px rgba(8, 47, 88, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.news-page--listing .news-card:hover,
.news-page--category .news-card:hover {
    border-color: rgba(11, 54, 98, 0.14) !important;
    box-shadow:
        0 22px 40px rgba(1, 16, 32, 0.18),
        0 10px 22px rgba(8, 47, 88, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
}

.news-page--listing .news-card__body,
.news-page--category .news-card__body,
.news-page--listing .news-card--featured .news-card__body,
.news-page--category .news-card--featured .news-card__body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(247, 251, 255, 0.985)) !important;
}

.news-page--listing .news-card__meta,
.news-page--category .news-card__meta {
    color: rgba(27, 58, 92, 0.62) !important;
}

.news-page--listing .news-card__category,
.news-page--category .news-card__category {
    color: #0f477a !important;
    background: rgba(224, 236, 248, 0.82) !important;
    border: 1px solid rgba(12, 49, 86, 0.08) !important;
    padding: 7px 10px !important;
    border-radius: 999px !important;
}

.news-page--listing .news-card__title,
.news-page--listing .news-card__title a,
.news-page--category .news-card__title,
.news-page--category .news-card__title a {
    color: #0a2f52 !important;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.84),
        0 10px 18px rgba(8, 39, 74, 0.06) !important;
}

.news-page--listing .news-card__excerpt,
.news-page--category .news-card__excerpt {
    color: rgba(33, 61, 92, 0.8) !important;
}

.news-page--listing .news-card__link,
.news-page--category .news-card__link {
    color: #0d4679 !important;
}

@media (min-width: 981px) {
    body.news-page--listing,
    body.news-page--category {
        background: #eff4f8;
    }

    .news-page--listing .page-aura,
    .news-page--category .page-aura {
        opacity: 0.08;
    }

    .news-page--listing .container--news,
    .news-page--category .container--news {
        padding-bottom: 54px;
    }

    .news-page--listing .section--news-landing,
    .news-page--category .section--news-landing {
        padding: clamp(30px, 3vw, 40px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(247, 251, 255, 0.985));
        border: 1px solid rgba(12, 49, 86, 0.09);
        border-radius: 34px;
        box-shadow:
            0 26px 54px rgba(7, 36, 66, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.94);
    }

    .news-page--listing .section--news-featured,
    .news-page--listing .section--news-group,
    .news-page--category .section--news-group {
        margin-top: 24px;
        padding: clamp(26px, 2.7vw, 34px);
        background: linear-gradient(180deg, #082845 0%, #0d3d69 100%);
        border: 0;
        border-radius: 34px;
        box-shadow: 0 26px 48px rgba(0, 23, 46, 0.18);
        content-visibility: auto;
        contain-intrinsic-size: 1px 900px;
    }

    .news-page--listing .news-featured__intro,
    .news-page--listing .news-group__header,
    .news-page--category .news-group__header {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
        gap: 24px;
        align-items: end;
        justify-items: start;
        text-align: left;
    }

    .news-page--listing .section--news-featured .section-kicker,
    .news-page--listing .section--news-group .section-kicker,
    .news-page--category .section--news-group .section-kicker,
    .news-page--listing .section--news-featured h2,
    .news-page--listing .section--news-featured p,
    .news-page--listing .section--news-group h2,
    .news-page--listing .section--news-group p,
    .news-page--category .section--news-group h2,
    .news-page--category .section--news-group p {
        text-align: left;
        margin-inline: 0;
        text-shadow: none;
    }

    .news-page--listing .section--news-featured .section-kicker,
    .news-page--listing .section--news-group .section-kicker,
    .news-page--category .section--news-group .section-kicker {
        color: rgba(218, 236, 255, 0.76);
    }

    .news-page--listing .section--news-featured h2,
    .news-page--listing .section--news-group h2,
    .news-page--category .section--news-group h2 {
        color: #ffffff;
        font-size: clamp(2rem, 3.2vw, 2.7rem);
        line-height: 1.02;
        max-width: 14ch;
    }

    .news-page--listing .section--news-featured p,
    .news-page--listing .section--news-group p,
    .news-page--category .section--news-group p {
        color: rgba(226, 239, 252, 0.82);
        max-width: 42ch;
    }

    .news-page--listing .news-grid,
    .news-page--category .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 22px !important;
        align-items: start;
    }

    .news-page--listing .news-grid--featured {
        grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr) !important;
        grid-auto-rows: minmax(0, 1fr);
        gap: 22px !important;
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .news-page--listing .news-card,
    .news-page--category .news-card,
    .news-page--listing .news-card--featured,
    .news-page--category .news-card--featured {
        grid-template-rows: auto 1fr;
        min-height: 0;
    }

    .news-page--listing .news-card__media,
    .news-page--category .news-card__media {
        aspect-ratio: 16 / 9;
        max-width: none;
        min-height: clamp(198px, 18vw, 238px);
        background: #0f3559;
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(1) .news-card__media {
        min-height: clamp(288px, 27vw, 390px);
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(n + 2) .news-card__media {
        min-height: clamp(168px, 12vw, 196px);
    }

    .news-page--listing .news-card__media--banner .news-card__banner-backdrop,
    .news-page--category .news-card__media--banner .news-card__banner-backdrop {
        display: none;
    }

    .news-page--listing .news-card__media--banner .news-card__banner-image,
    .news-page--category .news-card__media--banner .news-card__banner-image {
        object-fit: cover !important;
        object-position: center !important;
        padding: 0 !important;
        animation: newsCardBannerZoomLite 18s infinite ease-in-out !important;
        animation-delay: var(--news-banner-delay, 0s) !important;
    }

    .news-page--listing .news-card__banner-dots span,
    .news-page--category .news-card__banner-dots span {
        animation: newsCardBannerDot 18s infinite ease-in-out !important;
        animation-delay: var(--news-banner-delay, 0s) !important;
    }

    .news-page--listing .news-card__body,
    .news-page--category .news-card__body {
        grid-template-rows: auto auto 1fr auto;
        gap: 12px;
        padding: 20px 20px 22px !important;
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(1) .news-card__body {
        padding: 22px 22px 24px !important;
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(n + 2) .news-card__body {
        gap: 9px;
        padding: 16px 16px 18px !important;
    }

    .news-page--listing .news-card__title,
    .news-page--listing .news-card__title a,
    .news-page--category .news-card__title,
    .news-page--category .news-card__title a {
        font-size: clamp(1.34rem, 1.6vw, 1.62rem) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.024em;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-wrap: balance;
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(1) .news-card__title,
    .news-page--listing .news-grid--featured > .news-card:nth-child(1) .news-card__title a {
        font-size: clamp(1.8rem, 2.1vw, 2.16rem) !important;
        max-width: 18ch;
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(n + 2) .news-card__title,
    .news-page--listing .news-grid--featured > .news-card:nth-child(n + 2) .news-card__title a {
        font-size: clamp(1.16rem, 1.5vw, 1.32rem) !important;
        line-height: 1.12;
    }

    .news-page--listing .news-card__excerpt,
    .news-page--category .news-card__excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 58ch;
        line-height: 1.62;
    }

    .news-page--listing .news-grid--featured > .news-card:nth-child(n + 2) .news-card__excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.94rem;
        line-height: 1.56;
    }

    .news-page--listing .news-card__link,
    .news-page--category .news-card__link {
        margin-top: 2px;
    }
}

@media (max-width: 920px) {
    .section--news-home .news-card--home {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(246, 250, 254, 0.988)) !important;
        border: 1px solid rgba(12, 49, 86, 0.08) !important;
        box-shadow:
            0 16px 32px rgba(11, 36, 66, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
    }

    .section--news-home .news-card--home .news-card__body {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(247, 251, 255, 0.986)) !important;
        box-shadow: none !important;
    }

    .section--news-home .news-card--home .news-card__meta {
        color: rgba(27, 58, 92, 0.62) !important;
    }

    .section--news-home .news-card--home .news-card__category {
        color: #0f477a !important;
        background: rgba(224, 236, 248, 0.82) !important;
        border: 1px solid rgba(12, 49, 86, 0.08) !important;
    }

    .section--news-home .news-card--home .news-card__title,
    .section--news-home .news-card--home .news-card__title a {
        color: #0a2f52 !important;
        text-shadow:
            0 1px 0 rgba(255, 255, 255, 0.84),
            0 10px 18px rgba(8, 39, 74, 0.06) !important;
    }

    .section--news-home .news-card--home .news-card__excerpt {
        color: rgba(33, 61, 92, 0.8) !important;
    }

    .section--news-home .news-card--home .news-card__link {
        color: #0d4679 !important;
        border-bottom-color: rgba(13, 70, 121, 0.18) !important;
    }
}

@media (hover: none), (pointer: coarse) {
    .section--news-home .news-card__banner-backdrop,
    .news-page--listing .news-card__banner-backdrop,
    .news-page--category .news-card__banner-backdrop {
        display: none !important;
    }

    .section--news-home .news-card__banner-image,
    .news-page--listing .news-card__banner-image,
    .news-page--category .news-card__banner-image {
        animation: none !important;
        transform: none !important;
    }

    .section--news-home .news-card__banner-dots span,
    .news-page--listing .news-card__banner-dots span,
    .news-page--category .news-card__banner-dots span {
        animation: none !important;
        transform: none !important;
    }
}

.news-page--article .news-article-cover--banner {
    position: relative;
}

.news-page--article .news-article-cover--banner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 18% 24%, rgba(173, 221, 255, 0.2), transparent 34%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 34%, rgba(255, 255, 255, 0.16) 48%, transparent 70%);
    mix-blend-mode: screen;
    opacity: 0.24;
    pointer-events: none;
    animation: newsArticleBannerSheen 18s infinite ease-in-out;
}

.news-page--article .news-article-cover--banner .news-card__banner-shade {
    z-index: 3;
}

.news-page--article .news-article-cover--banner .news-card__banner-dots {
    z-index: 4;
}

.news-page--article .news-article-cover--banner .news-card__banner-image {
    animation: newsArticleBannerZoom 18s infinite ease-in-out !important;
    animation-delay: var(--news-banner-delay, 0s) !important;
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) and (max-width: 980px) {
    .news-page--listing .news-card__banner-slide,
    .news-page--category .news-card__banner-slide {
        animation: newsCardBannerCycle 18s infinite ease-in-out !important;
        animation-delay: var(--news-banner-delay, 0s) !important;
    }

    .news-page--listing .news-card__banner-image,
    .news-page--category .news-card__banner-image {
        animation: newsCardBannerZoomLite 18s infinite ease-in-out !important;
        animation-delay: var(--news-banner-delay, 0s) !important;
    }

    .news-page--listing .news-card__banner-dots span,
    .news-page--category .news-card__banner-dots span {
        animation: newsCardBannerDot 18s infinite ease-in-out !important;
        animation-delay: var(--news-banner-delay, 0s) !important;
    }
}

@media (hover: none), (pointer: coarse) {
    .news-page--article .news-article-cover--banner::after {
        opacity: 0.18;
        animation-duration: 22s;
    }
}

.seo-page .news-breadcrumbs {
    margin-bottom: 20px;
}

.seo-page .news-article-intro {
    align-self: center;
}

.seo-page .news-article-cover img {
    min-height: clamp(320px, 38vw, 520px);
}

.seo-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.seo-faq__item {
    border: 1px solid rgba(12, 49, 86, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 30px rgba(7, 36, 66, 0.06);
    overflow: hidden;
}

.seo-faq__item + .seo-faq__item {
    margin-top: 12px;
}

.seo-faq__item summary {
    cursor: pointer;
    padding: 16px 18px;
    color: var(--accent);
    font-weight: 800;
}

.seo-faq__item p {
    margin: 0;
    padding: 0 18px 18px;
}
