
        :root {
            --accent: #22a567;
            --accent-rgb: 34, 165, 103;
            --secondary: #0869df;
            --ink: #15161a;
            --muted: #73757d;
            --muted-light: #9b9ca2;
            --line: rgba(21, 22, 26, 0.10);
            --white: #ffffff;
            --surface: #f7f9fc;
            --page-gutter: clamp(14px, 3vw, 34px);
            --content-max: 1480px;
            --radius-xl: 34px;
            --radius-lg: 26px;
            --ease: cubic-bezier(.2,.8,.2,1);
            --shadow: 0 28px 82px rgba(16, 19, 28, 0.12);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            overflow-x: hidden;
            background: #ffffff;
            color: var(--ink);
            font-family:
                Inter,
                ui-sans-serif,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        body.menu-open {
            overflow: hidden;
        }

        img,
        video {
            display: block;
            max-width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font: inherit;
        }

        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        h1,
        h2,
        h3,
        p {
            overflow-wrap: anywhere;
        }

        .skip-link {
            position: fixed;
            top: 12px;
            left: 12px;
            z-index: 1000;
            padding: 10px 14px;
            border-radius: 999px;
            background: var(--ink);
            color: #ffffff;
            transform: translateY(-180%);
            transition: transform .2s ease;
        }

        .skip-link:focus {
            transform: translateY(0);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px var(--page-gutter);
            background: rgba(255, 255, 255, 0.84);
            border-bottom: 1px solid rgba(21, 22, 26, 0.06);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
        }

        .nav-shell {
            display: flex;
            width: min(100%, var(--content-max));
            min-height: 58px;
            margin: 0 auto;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            min-width: 0;
            font-size: 15px;
            font-weight: 780;
            letter-spacing: -0.025em;
        }

        .brand img {
            width: 40px;
            height: 40px;
            border-radius: 13px;
            object-fit: contain;
            box-shadow: 0 9px 22px rgba(21, 22, 26, 0.08);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links > li > a,
        .nav-dropdown > summary {
            display: inline-flex;
            min-height: 40px;
            padding: 0 13px;
            align-items: center;
            border-radius: 999px;
            color: #55575e;
            font-size: 12px;
            font-weight: 670;
            cursor: pointer;
            list-style: none;
            transition:
                color .22s ease,
                background .22s ease;
        }

        .nav-dropdown > summary::-webkit-details-marker {
            display: none;
        }

        .nav-links > li > a:hover,
        .nav-dropdown > summary:hover,
        .nav-links [aria-current="page"] {
            background: rgba(var(--accent-rgb), 0.09);
            color: var(--accent);
        }

        .nav-links .nav-cta {
            margin-left: 6px;
            padding-inline: 18px;
            background: var(--accent);
            color: #ffffff;
            box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.24);
        }

        .nav-links .nav-cta:hover {
            background: var(--accent);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .nav-dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            display: grid;
            width: 228px;
            gap: 5px;
            padding: 10px;
            border: 1px solid rgba(21, 22, 26, 0.09);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 24px 60px rgba(14, 17, 26, 0.16);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .dropdown-menu a {
            display: flex;
            min-height: 39px;
            padding: 0 11px;
            align-items: center;
            border-radius: 12px;
            color: #5d5f65;
            font-size: 12px;
            font-weight: 620;
        }

        .dropdown-menu a:hover,
        .dropdown-menu a[aria-current="page"] {
            background: rgba(var(--accent-rgb), 0.09);
            color: var(--accent);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            padding: 0;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #ffffff;
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 18px;
            height: 1.5px;
            margin: 3px auto;
            border-radius: 99px;
            background: var(--ink);
            transition: transform .24s ease;
        }

        .page-frame {
            width: min(
                calc(100% - (var(--page-gutter) * 2)),
                var(--content-max)
            );
            margin: 0 auto;
        }

        .video-hero {
            position: relative;
            min-height: clamp(600px, 77vh, 820px);
            margin-top: 22px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--radius-xl);
            background: #070b12;
            box-shadow: var(--shadow);
            isolation: isolate;
        }

        .video-hero video,
        .video-hero-poster,
        .video-hero-overlay,
        .video-hero-glow {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .video-hero video,
        .video-hero-poster {
            object-fit: cover;
            object-position: center;
        }

        .video-hero-poster {
            z-index: -2;
        }

        .video-hero video {
            z-index: -1;
            transform: scale(1.02);
        }

        .video-hero-overlay {
            z-index: 1;
            background:
                linear-gradient(
                    90deg,
                    rgba(3, 7, 14, 0.95) 0%,
                    rgba(3, 7, 14, 0.80) 42%,
                    rgba(3, 7, 14, 0.28) 76%,
                    rgba(3, 7, 14, 0.14) 100%
                ),
                linear-gradient(
                    to top,
                    rgba(3, 7, 14, 0.75),
                    transparent 58%
                );
        }

        .video-hero-glow {
            z-index: 2;
            background:
                radial-gradient(
                    620px circle at 24% 52%,
                    rgba(var(--accent-rgb), 0.26),
                    transparent 66%
                );
            pointer-events: none;
        }

        .video-hero-content {
            position: relative;
            z-index: 4;
            display: flex;
            min-height: clamp(600px, 77vh, 820px);
            max-width: 940px;
            padding: clamp(48px, 8vw, 96px);
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            color: #ffffff;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 22px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 11px;
            font-weight: 780;
            letter-spacing: 0.09em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow:
                0 0 0 7px rgba(var(--accent-rgb), 0.18),
                0 0 28px rgba(var(--accent-rgb), 0.62);
        }

        .video-hero h1 {
            max-width: 900px;
            margin: 0;
            color: #ffffff;
            font-size: clamp(54px, 8.4vw, 106px);
            line-height: 0.91;
            letter-spacing: -0.067em;
            text-wrap: balance;
        }

        .video-hero h1 span {
            display: block;
            color: #ffffff;
        }

        .video-hero h1 strong {
            display: block;
            color: var(--accent);
            font-weight: inherit;
        }

        .video-hero-lead {
            max-width: 690px;
            margin: 30px 0 34px;
            color: rgba(255, 255, 255, 0.73);
            font-size: clamp(17px, 2vw, 21px);
            line-height: 1.66;
            text-wrap: pretty;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .button {
            position: relative;
            display: inline-flex;
            min-height: 50px;
            padding: 0 22px;
            align-items: center;
            justify-content: center;
            gap: 9px;
            overflow: hidden;
            border: 1px solid transparent;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 720;
            transition:
                transform .32s var(--ease),
                box-shadow .32s var(--ease),
                background .25s ease,
                border-color .25s ease;
        }

        .button-primary {
            background: var(--accent);
            color: #ffffff;
            box-shadow: 0 16px 38px rgba(var(--accent-rgb), 0.32);
        }

        .button-primary:hover {
            box-shadow: 0 22px 48px rgba(var(--accent-rgb), 0.39);
            transform: translateY(-4px);
        }

        .button-ghost {
            border-color: rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }

        .button-ghost:hover {
            border-color: rgba(255, 255, 255, 0.42);
            background: rgba(255, 255, 255, 0.14);
            transform: translateY(-4px);
        }

        .hero-facts {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
            margin-top: 34px;
        }

        .hero-facts span {
            padding: 9px 12px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.07);
            color: rgba(255, 255, 255, 0.70);
            font-size: 10px;
            font-weight: 680;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .video-controls {
            position: absolute;
            right: 24px;
            bottom: 24px;
            z-index: 6;
            display: flex;
            gap: 8px;
        }

        .video-control {
            display: inline-flex;
            min-height: 41px;
            padding: 0 14px;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.20);
            border-radius: 999px;
            background: rgba(6, 9, 15, 0.54);
            color: rgba(255, 255, 255, 0.82);
            font-size: 10px;
            font-weight: 690;
            cursor: pointer;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .video-control:hover {
            border-color: rgba(255, 255, 255, 0.38);
            color: #ffffff;
        }

        .section-block {
            padding-top: clamp(100px, 12vw, 160px);
        }

        .section-kicker {
            color: var(--accent);
            font-size: 11px;
            font-weight: 790;
            letter-spacing: 0.09em;
            text-transform: uppercase;
        }

        .profile-section {
            display: grid;
            grid-template-columns: minmax(390px, 0.94fr) minmax(0, 1.06fr);
            gap: clamp(44px, 8vw, 106px);
            align-items: center;
        }

        .profile-visual {
            position: relative;
            min-height: 610px;
            margin: 0;
        }

        .profile-visual::before {
            content: "";
            position: absolute;
            inset: 12% -7% -7% 9%;
            z-index: -1;
            border-radius: 42% 58% 56% 44%;
            background: linear-gradient(
                135deg,
                rgba(var(--accent-rgb), 0.25),
                rgba(111, 84, 232, 0.13)
            );
            filter: blur(38px);
        }

        .profile-visual img {
            width: 100%;
            height: 610px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.60);
            border-radius: 30px;
            box-shadow: var(--shadow);
        }

        .profile-badge {
            position: absolute;
            right: 24px;
            bottom: 24px;
            left: 24px;
            padding: 16px 18px;
            border: 1px solid rgba(255, 255, 255, 0.42);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.88);
            color: var(--ink);
            box-shadow: 0 18px 44px rgba(10, 13, 20, 0.16);
            font-size: 12px;
            font-weight: 720;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .profile-copy h2 {
            max-width: 720px;
            margin: 15px 0 24px;
            font-size: clamp(42px, 6vw, 70px);
            line-height: 0.97;
            letter-spacing: -0.058em;
            text-wrap: balance;
        }

        .profile-copy > p {
            max-width: 670px;
            margin: 0;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.78;
            text-wrap: pretty;
        }

        .journey {
            display: grid;
            gap: 11px;
            margin-top: 34px;
        }

        .journey-step {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 17px;
            padding: 19px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background:
                radial-gradient(
                    circle at 100% 0%,
                    rgba(var(--accent-rgb), 0.07),
                    transparent 34%
                ),
                #ffffff;
            box-shadow: 0 13px 34px rgba(21, 22, 26, 0.05);
            transition:
                transform .36s var(--ease),
                border-color .25s ease,
                box-shadow .36s var(--ease);
        }

        .journey-step:hover {
            border-color: rgba(var(--accent-rgb), 0.28);
            box-shadow: 0 20px 48px rgba(21, 22, 26, 0.10);
            transform: translateX(7px);
        }

        .journey-step-number {
            display: grid;
            width: 39px;
            height: 39px;
            place-items: center;
            border-radius: 13px;
            background: rgba(var(--accent-rgb), 0.10);
            color: var(--accent);
            font-size: 9px;
            font-weight: 800;
        }

        .journey-step h3 {
            margin: 0 0 6px;
            font-size: 20px;
            line-height: 1.05;
            letter-spacing: -0.035em;
        }

        .journey-step p {
            margin: 0;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.62;
        }

        .participate-section {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: clamp(34px, 7vw, 88px);
            align-items: center;
            padding: clamp(42px, 7vw, 76px);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-xl);
            background:
                radial-gradient(
                    circle at 6% 8%,
                    rgba(var(--accent-rgb), 0.44),
                    transparent 32%
                ),
                radial-gradient(
                    circle at 94% 100%,
                    rgba(111, 84, 232, 0.34),
                    transparent 34%
                ),
                linear-gradient(135deg, #09101f 0%, #111827 58%, #080b12 100%);
            box-shadow: var(--shadow);
            color: #ffffff;
            isolation: isolate;
        }

        .participate-section::before {
            content: "";
            position: absolute;
            top: -230px;
            right: 22%;
            width: 490px;
            height: 490px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            box-shadow:
                0 0 0 72px rgba(255, 255, 255, 0.015),
                0 0 0 144px rgba(255, 255, 255, 0.009);
        }

        .participate-copy {
            position: relative;
            z-index: 2;
            max-width: 780px;
        }

        .participate-copy h2 {
            max-width: 780px;
            margin: 14px 0 20px;
            color: #ffffff;
            font-size: clamp(40px, 5.8vw, 68px);
            line-height: 0.97;
            letter-spacing: -0.056em;
            text-wrap: balance;
        }

        .participate-copy p {
            max-width: 670px;
            margin: 0;
            color: rgba(255, 255, 255, 0.66);
            font-size: 15px;
            line-height: 1.72;
        }

        .participate-actions {
            position: relative;
            z-index: 2;
            display: grid;
            min-width: 244px;
            gap: 11px;
        }

        .participate-actions .button {
            width: 100%;
        }

        .events-feature {
            position: relative;
            min-height: 650px;
            margin-bottom: 78px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--radius-xl);
            background: #080b12;
            box-shadow: var(--shadow);
            isolation: isolate;
        }

        .events-feature img,
        .events-overlay,
        .events-glow {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .events-feature img {
            object-fit: cover;
            transition: transform 1.25s var(--ease);
        }

        .events-feature:hover img {
            transform: scale(1.055);
        }

        .events-overlay {
            z-index: 1;
            background:
                linear-gradient(
                    90deg,
                    rgba(3, 7, 14, 0.96) 0%,
                    rgba(3, 7, 14, 0.79) 45%,
                    rgba(3, 7, 14, 0.23) 78%
                ),
                linear-gradient(
                    to top,
                    rgba(3, 7, 14, 0.76),
                    transparent 58%
                );
        }

        .events-glow {
            z-index: 2;
            background: radial-gradient(
                560px circle at 24% 54%,
                rgba(var(--accent-rgb), 0.24),
                transparent 64%
            );
        }

        .events-content {
            position: relative;
            z-index: 4;
            display: flex;
            min-height: 650px;
            max-width: 780px;
            padding: clamp(48px, 8vw, 92px);
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }

        .events-content h2 {
            max-width: 740px;
            margin: 17px 0 27px;
            color: #ffffff;
            font-size: clamp(48px, 7vw, 82px);
            line-height: 0.96;
            letter-spacing: -0.060em;
            text-wrap: balance;
        }

        .events-content p {
            max-width: 650px;
            margin: 0 0 32px;
            color: rgba(255, 255, 255, 0.70);
            font-size: 18px;
            line-height: 1.68;
        }

        .events-badge {
            position: absolute;
            top: 25px;
            right: 25px;
            z-index: 5;
            display: inline-flex;
            min-height: 39px;
            padding: 0 14px;
            align-items: center;
            gap: 9px;
            border: 1px solid rgba(255, 255, 255, 0.20);
            border-radius: 999px;
            background: rgba(6, 9, 15, 0.54);
            color: rgba(255, 255, 255, 0.80);
            font-size: 10px;
            font-weight: 690;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .events-badge::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #3bd37f;
            box-shadow: 0 0 0 6px rgba(59, 211, 127, 0.13);
        }

        .related-groups {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: clamp(90px, 10vw, 130px);
        }

        .related-link {
            display: flex;
            min-height: 66px;
            padding: 0 18px;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: #ffffff;
            box-shadow: 0 12px 32px rgba(21, 22, 26, 0.05);
            color: #55575e;
            font-size: 12px;
            font-weight: 690;
            transition:
                color .24s ease,
                border-color .24s ease,
                transform .32s var(--ease),
                box-shadow .32s var(--ease);
        }

        .related-link:hover {
            border-color: rgba(var(--accent-rgb), 0.27);
            box-shadow: 0 20px 48px rgba(21, 22, 26, 0.10);
            color: var(--accent);
            transform: translateY(-5px);
        }

        .site-footer {
            padding: 0 var(--page-gutter) 26px;
        }

        .footer-shell {
            width: min(100%, var(--content-max));
            margin: 0 auto;
            padding: clamp(34px, 5vw, 56px);
            border: 1px solid rgba(var(--accent-rgb), 0.14);
            border-radius: var(--radius-xl);
            background:
                radial-gradient(
                    circle at 8% 12%,
                    rgba(var(--accent-rgb), 0.10),
                    transparent 28%
                ),
                linear-gradient(135deg, #f8fbff 0%, #ffffff 60%, #faf9ff 100%);
            box-shadow: 0 24px 70px rgba(21, 22, 26, 0.085);
        }

        .footer-top {
            display: grid;
            grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
            gap: clamp(42px, 8vw, 100px);
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
            font-weight: 780;
        }

        .footer-brand img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(21, 22, 26, 0.07);
        }

        .footer-intro p {
            max-width: 420px;
            margin: 22px 0 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.7;
        }

        .footer-nav {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 34px;
        }

        .footer-column h2 {
            margin: 0 0 16px;
            color: var(--accent);
            font-size: 10px;
            font-weight: 790;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .footer-column ul {
            display: grid;
            gap: 10px;
        }

        .footer-column a {
            color: #65676e;
            font-size: 12px;
            font-weight: 590;
        }

        .footer-column a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            margin-top: 40px;
            padding-top: 22px;
            border-top: 1px solid var(--line);
        }

        .footer-bottom p,
        .video-credit summary {
            margin: 0;
            color: var(--muted-light);
            font-size: 9px;
        }

        .video-credit {
            position: relative;
        }

        .video-credit summary {
            cursor: pointer;
            list-style: none;
        }

        .video-credit summary::-webkit-details-marker {
            display: none;
        }

        .credit-panel {
            position: absolute;
            right: 0;
            bottom: calc(100% + 12px);
            width: min(320px, 82vw);
            padding: 14px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 18px 46px rgba(21, 22, 26, 0.14);
        }

        .credit-panel p {
            margin: 0;
            color: var(--muted);
            font-size: 10px;
            line-height: 1.55;
        }

        .credit-panel a {
            color: var(--accent);
            font-weight: 700;
        }

        [data-reveal] {
            opacity: 0;
            transform: translateY(24px);
            transition:
                opacity .7s var(--ease),
                transform .7s var(--ease);
        }

        [data-reveal].is-visible {
            opacity: 1;
            transform: none;
        }

        @media (hover: hover) and (pointer: fine) and (min-width: 821px) {
            .nav-dropdown {
                padding-bottom: 12px;
                margin-bottom: -12px;
            }
        }

        @media (max-width: 980px) {
            .profile-section {
                grid-template-columns: 1fr;
            }

            .profile-visual,
            .profile-visual img {
                min-height: 500px;
                height: 500px;
            }

            .participate-section {
                grid-template-columns: 1fr;
            }

            .participate-actions {
                min-width: 0;
                max-width: 330px;
            }
        }

        @media (max-width: 820px) {
            .menu-toggle {
                display: grid;
            }

            .nav-links {
                position: fixed;
                top: 83px;
                right: 14px;
                left: 14px;
                display: none;
                max-height: calc(100vh - 100px);
                padding: 14px;
                overflow-y: auto;
                align-items: stretch;
                flex-direction: column;
                border: 1px solid var(--line);
                border-radius: 22px;
                background: rgba(255, 255, 255, 0.98);
                box-shadow: 0 26px 70px rgba(21, 22, 26, 0.18);
            }

            .nav-links.is-open {
                display: flex;
            }

            .nav-links > li > a,
            .nav-dropdown > summary {
                width: 100%;
                min-height: 46px;
                justify-content: flex-start;
            }

            .nav-links .nav-cta {
                margin-left: 0;
                justify-content: center;
            }

            .nav-dropdown {
                width: 100%;
            }

            .dropdown-menu {
                position: static;
                width: 100%;
                margin-top: 5px;
                border: 0;
                background: #f7f9fc;
                box-shadow: none;
            }

            .video-hero {
                min-height: 700px;
            }

            .video-hero-content {
                min-height: 700px;
                padding: 48px 34px 96px;
                justify-content: flex-end;
            }

            .video-hero-overlay {
                background:
                    linear-gradient(
                        to top,
                        rgba(3, 7, 14, 0.98) 4%,
                        rgba(3, 7, 14, 0.76) 52%,
                        rgba(3, 7, 14, 0.20) 100%
                    );
            }

            .related-groups {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 620px) {
            .video-hero {
                min-height: 650px;
                margin-top: 14px;
                border-radius: 26px;
            }

            .video-hero-content {
                min-height: 650px;
                padding: 38px 22px 92px;
            }

            .video-hero h1 {
                font-size: clamp(50px, 15vw, 72px);
            }

            .hero-actions {
                width: 100%;
            }

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

            .video-controls {
                right: 16px;
                bottom: 16px;
            }

            .video-control {
                min-width: 42px;
                padding: 0 12px;
            }

            .video-control-text {
                display: none;
            }

            .profile-visual,
            .profile-visual img {
                min-height: 400px;
                height: 400px;
            }

            .profile-visual img {
                border-radius: 24px;
            }

            .profile-badge {
                right: 14px;
                bottom: 14px;
                left: 14px;
            }

            .profile-copy h2 {
                font-size: 42px;
            }

            .participate-section {
                padding: 34px 22px;
                border-radius: 26px;
            }

            .participate-copy h2 {
                font-size: 42px;
            }

            .participate-actions {
                max-width: none;
            }

            .events-feature {
                min-height: 620px;
                border-radius: 26px;
            }

            .events-content {
                min-height: 620px;
                padding: 42px 23px;
                justify-content: flex-end;
            }

            .events-content h2 {
                font-size: 48px;
            }

            .events-content .button {
                width: 100%;
            }

            .footer-nav {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }

            .credit-panel {
                right: auto;
                left: 0;
            }
        }

        @media (hover: none) {
            .button:hover,
            .journey-step:hover,
            .related-link:hover {
                transform: none;
            }

            .events-feature:hover img {
                transform: none;
            }
        }

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

            [data-reveal] {
                opacity: 1;
                transform: none;
            }
        }
    



/* =========================================================
   ESCUELA DE LAS ARTES — SISTEMA VISUAL PREMIUM
   HTML5 + CSS3 · Sin frameworks
   ========================================================= */

:root {
    --white: #ffffff;
    --ink: #171719;
    --muted: #73747a;
    --muted-light: #98999e;
    --line: rgba(23, 23, 25, 0.11);
    --line-strong: rgba(23, 23, 25, 0.18);
    --blue: #0869df;
    --blue-hover: #005ccb;
    --orange: #f25f27;
    --violet: #6f54e8;
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --content-max: 1180px;
    --page-gutter: clamp(18px, 4vw, 46px);
    --shadow-soft: 0 24px 70px rgba(23, 23, 25, 0.08);
    --shadow-card: 0 18px 50px rgba(23, 23, 25, 0.07);
    --shadow-hover: 0 30px 80px rgba(23, 23, 25, 0.14);
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    overflow-x: clip;
}

::selection {
    background: rgba(8, 105, 223, 0.16);
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
summary {
    font: inherit;
}

ul,
dl,
dd {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(8, 105, 223, 0.34);
    outline-offset: 4px;
    border-radius: 10px;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 18px;
    z-index: 10000;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: top 0.25s ease;
}

.skip-link:focus {
    top: 16px;
}

/* -------------------------
   Navegación
   ------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px var(--page-gutter) 0;
    pointer-events: none;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, var(--content-max));
    min-height: 58px;
    margin: 0 auto;
    padding: 8px 10px 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 38px rgba(24, 28, 36, 0.08);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    pointer-events: auto;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 760;
    letter-spacing: -0.02em;
}

.brand {
    font-size: 17px;
}

.brand img,
.footer-brand img {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links > li > a,
.nav-dropdown > summary {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 11px;
    color: #55565b;
    font-size: 13px;
    font-weight: 560;
    cursor: pointer;
    list-style: none;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-links > li > a:hover,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
    color: var(--ink);
    background: rgba(23, 23, 25, 0.055);
}

.nav-links a[aria-current="page"] {
    color: var(--blue);
    background: rgba(8, 105, 223, 0.08);
}

.nav-links .nav-cta {
    margin-left: 3px;
    background: var(--ink);
    color: var(--white);
}

.nav-links .nav-cta:hover {
    color: var(--white);
    background: #303034;
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown > summary::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.22s ease;
}

.nav-dropdown[open] > summary::after {
    transform: translateY(2px) rotate(225deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 230px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 60px rgba(23, 23, 25, 0.14);
    transform: translateX(-50%);
    animation: menuIn 0.28s var(--ease-premium) both;
}

.dropdown-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: #4e4f54;
    font-size: 13px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dropdown-menu a:hover {
    color: var(--ink);
    background: rgba(8, 105, 223, 0.07);
    transform: translateX(3px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 1.5px;
    margin: 5px auto;
    border-radius: 99px;
    background: var(--ink);
    transition: transform 0.3s var(--ease-premium);
}

.menu-toggle.is-open span:first-child {
    transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

/* -------------------------
   Estructura y utilidades
   ------------------------- */

.site-frame {
    width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2)));
    margin: 0 auto;
    padding: 28px var(--page-gutter) 0;
}

.interactive-surface {
    --spot-x: 50%;
    --spot-y: 50%;
    isolation: isolate;
}

.interactive-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    background: radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.18), transparent 50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.interactive-surface:hover::after {
    opacity: 1;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(242, 95, 39, 0.12);
}

.section-kicker-light {
    color: rgba(255, 255, 255, 0.7);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 680;
    letter-spacing: -0.01em;
    transition: transform 0.32s var(--ease-premium), box-shadow 0.32s var(--ease-premium), background 0.25s ease, color 0.25s ease;
}

.button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -45%;
    width: 28%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(20deg);
    transition: left 0.7s var(--ease-premium);
}

.button:hover::before {
    left: 125%;
}

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

.button-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(8, 105, 223, 0.24);
}

.button-primary:hover {
    background: var(--blue-hover);
    box-shadow: 0 18px 36px rgba(8, 105, 223, 0.32);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    box-shadow: 0 8px 22px rgba(23, 23, 25, 0.04);
}

.button-secondary:hover {
    border-color: rgba(8, 105, 223, 0.3);
    color: var(--blue);
    box-shadow: 0 16px 34px rgba(23, 23, 25, 0.09);
}

.button-light {
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 720;
}

.text-link span {
    transition: transform 0.22s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

/* -------------------------
   Hero premium
   ------------------------- */

.premium-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
    gap: clamp(34px, 5vw, 74px);
    align-items: center;
    min-height: 690px;
    padding: clamp(48px, 7vw, 88px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 15% 20%, rgba(8, 105, 223, 0.08), transparent 28%),
        radial-gradient(circle at 52% 86%, rgba(111, 84, 232, 0.08), transparent 30%),
        var(--white);
    box-shadow: var(--shadow-soft);
}

.premium-hero::before {
    content: "";
    position: absolute;
    top: -140px;
    left: 44%;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(8, 105, 223, 0.11);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(8, 105, 223, 0.025),
        0 0 0 110px rgba(8, 105, 223, 0.018);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.premium-hero h1 {
    max-width: 650px;
    margin: 21px 0 22px;
    font-size: clamp(46px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.premium-hero h1 span {
    display: block;
    background: linear-gradient(100deg, var(--blue), #7555e8 62%, var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.55;
    letter-spacing: -0.015em;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-metrics {
    display: flex;
    gap: clamp(20px, 4vw, 44px);
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.hero-metrics div {
    display: grid;
    gap: 1px;
}

.hero-metrics dt {
    font-size: 25px;
    font-weight: 780;
    letter-spacing: -0.04em;
}

.hero-metrics dd {
    color: var(--muted);
    font-size: 12px;
    font-weight: 630;
    letter-spacing: 0.02em;
}

.hero-visual {
    position: relative;
    min-height: 515px;
    margin: 0;
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 8% -5% -4% 12%;
    z-index: -1;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8, 105, 223, 0.22), rgba(111, 84, 232, 0.18), rgba(242, 95, 39, 0.16));
    filter: blur(35px);
}

.hero-visual > img {
    width: 100%;
    height: 515px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    box-shadow: 0 32px 80px rgba(13, 18, 29, 0.22);
    transform: rotate(1.35deg);
    transition: transform 0.8s var(--ease-premium), filter 0.8s ease;
}

.premium-hero:hover .hero-visual > img {
    transform: rotate(0deg) scale(1.012);
    filter: saturate(1.05) contrast(1.02);
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 240px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 45px rgba(11, 17, 28, 0.18);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    color: #5d5e63;
    font-size: 11px;
    line-height: 1.35;
    animation: floatNote 5.8s ease-in-out infinite;
}

.floating-note strong {
    display: block;
    color: var(--ink);
    font-size: 12px;
}

.floating-note-top {
    top: 30px;
    left: -34px;
}

.floating-note-bottom {
    right: -24px;
    bottom: 36px;
    animation-delay: -2.4s;
}

.note-icon {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(8, 105, 223, 0.1);
    color: var(--blue);
    font-size: 19px;
    font-weight: 800;
}

.live-dot {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #35b873;
    box-shadow: 0 0 0 7px rgba(53, 184, 115, 0.13);
}

/* -------------------------
   Aviso
   ------------------------- */

.vacation-alert {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin: 22px 0 0;
    padding: 15px 18px;
    border: 1px solid rgba(242, 95, 39, 0.24);
    border-radius: 17px;
    background: linear-gradient(90deg, rgba(242, 95, 39, 0.045), rgba(255, 255, 255, 0.9));
}

.vacation-alert[hidden] {
    display: none;
}

.vacation-alert p {
    margin: 0;
    color: #65666b;
    font-size: 13px;
}

.vacation-alert strong {
    color: var(--orange);
}

.vacation-alert a {
    color: var(--blue);
    font-size: 13px;
    font-weight: 690;
}

.alert-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(242, 95, 39, 0.1);
    color: var(--orange);
    font-size: 18px;
}

/* -------------------------
   Secciones
   ------------------------- */

.section-block {
    padding: clamp(92px, 11vw, 148px) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 46px;
}

.section-heading h2,
.about-copy h2,
.community-content h2,
.closing-content h2 {
    margin: 13px 0 0;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.047em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

/* -------------------------
   Tarjetas de disciplinas
   ------------------------- */

.discipline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.experience-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.55s var(--ease-premium), box-shadow 0.55s var(--ease-premium), border-color 0.3s ease;
}

.experience-card:hover {
    border-color: rgba(8, 105, 223, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-9px);
}

.experience-card > summary {
    cursor: pointer;
    list-style: none;
}

.experience-card > summary::-webkit-details-marker {
    display: none;
}

.card-media {
    position: relative;
    display: block;
    height: 350px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease-premium), filter 0.6s ease;
}

.card-music .card-media img {
    object-position: 47% center;
}

.card-dance .card-media img {
    object-position: center;
}

.card-theatre .card-media img {
    object-position: 48% 42%;
}

.experience-card:hover .card-media img,
.experience-card[open] .card-media img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.03);
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 10, 16, 0.48), transparent 48%);
}

.card-number {
    position: absolute;
    top: 17px;
    right: 17px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(12, 14, 20, 0.22);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    color: var(--white);
    font-size: 12px;
    font-weight: 760;
}

.card-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 23px 24px 24px;
}

.card-summary > span:first-child {
    display: grid;
    gap: 5px;
}

.card-summary strong {
    font-size: 29px;
    line-height: 1;
    letter-spacing: -0.035em;
}

.card-summary small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.card-toggle {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue);
    font-size: 25px;
    font-weight: 300;
    transition: transform 0.42s var(--ease-premium), background 0.25s ease, color 0.25s ease;
}

.experience-card[open] .card-toggle {
    background: var(--blue);
    color: var(--white);
    transform: rotate(45deg);
}

.card-panel {
    padding: 0 24px 26px;
    animation: panelIn 0.45s var(--ease-premium) both;
}

.card-panel p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* -------------------------
   Quiénes somos
   ------------------------- */

.about-section {
    display: grid;
    grid-template-columns: minmax(430px, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(54px, 8vw, 98px);
    align-items: center;
}

.about-gallery {
    position: relative;
    min-height: 610px;
}

.about-image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border-radius: 28px;
    background: #f3f3f4;
    box-shadow: var(--shadow-card);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-premium);
}

.about-gallery:hover img {
    transform: scale(1.035);
}

.about-image-large {
    inset: 0 24% 10% 0;
}

.about-image-small {
    right: 0;
    bottom: 0;
    width: 43%;
    height: 48%;
    border: 8px solid var(--white);
}

.gallery-label {
    position: absolute;
    top: 34px;
    right: 0;
    display: grid;
    width: 120px;
    height: 120px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 48px rgba(23, 23, 25, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: floatNote 6.4s ease-in-out infinite reverse;
}

.gallery-label span {
    position: absolute;
    color: var(--blue);
    font-size: 10px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-label svg {
    width: 74px;
    height: 74px;
    fill: none;
    stroke: rgba(8, 105, 223, 0.2);
    stroke-width: 1;
    animation: slowRotate 18s linear infinite;
}

.about-copy p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.about-copy .about-lead {
    margin-top: 25px;
    color: #525359;
    font-size: 19px;
    line-height: 1.62;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 28px 0 34px;
}

.about-values span {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: #5e5f64;
    font-size: 12px;
    font-weight: 650;
}

/* -------------------------
   Banner comunidad
   ------------------------- */

.community-banner {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #0d1017;
    box-shadow: var(--shadow-soft);
}

.community-image,
.community-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.community-image {
    object-fit: cover;
    object-position: center;
    transition: transform 1.3s var(--ease-premium), filter 1s ease;
}

.community-banner:hover .community-image {
    transform: scale(1.045);
    filter: saturate(1.1);
}

.community-overlay {
    background:
        linear-gradient(90deg, rgba(5, 8, 14, 0.92) 0%, rgba(5, 8, 14, 0.7) 45%, rgba(5, 8, 14, 0.18) 100%),
        linear-gradient(to top, rgba(5, 8, 14, 0.54), transparent 55%);
}

.community-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 560px;
    max-width: 670px;
    padding: clamp(48px, 8vw, 88px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--white);
}

.community-content h2 {
    color: var(--white);
}

.community-content p {
    max-width: 590px;
    margin: 25px 0 31px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.65;
}

/* -------------------------
   CTA final
   ------------------------- */

.closing-cta {
    position: relative;
    margin: clamp(92px, 11vw, 148px) 0 74px;
    padding: clamp(58px, 8vw, 94px) var(--page-gutter);
    overflow: hidden;
    border: 1px solid rgba(8, 105, 223, 0.17);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(125deg, rgba(8, 105, 223, 0.065), rgba(111, 84, 232, 0.045) 55%, rgba(242, 95, 39, 0.055)),
        var(--white);
    box-shadow: var(--shadow-card);
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
    margin: 0 auto;
    text-align: center;
}

.closing-content p {
    max-width: 630px;
    margin: 24px auto 30px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.cta-orb-one {
    top: -120px;
    left: -80px;
    width: 310px;
    height: 310px;
    background: radial-gradient(circle, rgba(8, 105, 223, 0.2), transparent 68%);
    animation: orbMove 10s ease-in-out infinite;
}

.cta-orb-two {
    right: -110px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(242, 95, 39, 0.16), transparent 68%);
    animation: orbMove 12s ease-in-out infinite reverse;
}

/* -------------------------
   Footer
   ------------------------- */

.site-footer {
    padding: 0 var(--page-gutter) 34px;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px 50px;
    width: min(100%, var(--content-max));
    margin: 0 auto;
    padding: 34px 0 0;
    border-top: 1px solid var(--line);
}

.footer-brand {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-shell p {
    margin: 0;
    color: var(--muted-light);
    font-size: 11px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-links a,
.photo-credits summary {
    color: #66676c;
    font-size: 12px;
    cursor: pointer;
}

.footer-links a:hover,
.photo-credits summary:hover {
    color: var(--blue);
}

.photo-credits {
    grid-column: 1 / -1;
}

.photo-credits summary {
    display: inline-flex;
    list-style: none;
}

.photo-credits summary::-webkit-details-marker {
    display: none;
}

.photo-credits p {
    max-width: 700px;
    margin-top: 9px;
    line-height: 1.6;
}

/* -------------------------
   Animaciones
   ------------------------- */

@keyframes menuIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(0.97); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes panelIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatNote {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@keyframes slowRotate {
    to { transform: rotate(360deg); }
}

@keyframes orbMove {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(26px, -18px, 0) scale(1.08); }
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.discipline-grid [data-reveal]:nth-child(2) {
    transition-delay: 0.09s;
}

.discipline-grid [data-reveal]:nth-child(3) {
    transition-delay: 0.18s;
}

/* -------------------------
   Responsive
   ------------------------- */

@media (max-width: 1050px) {
    .premium-hero {
        grid-template-columns: 1fr 0.92fr;
        padding: 58px 44px;
    }

    .hero-visual,
    .hero-visual > img {
        min-height: 470px;
        height: 470px;
    }

    .floating-note-top {
        left: -22px;
    }

    .floating-note-bottom {
        right: -12px;
    }

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

    .experience-card:last-child {
        grid-column: 1 / -1;
    }

    .experience-card:last-child .card-media {
        height: 410px;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-gallery {
        max-width: 770px;
        width: 100%;
    }

    .about-copy {
        max-width: 760px;
    }
}

@media (max-width: 820px) {
    .site-header {
        padding-top: 8px;
    }

    .nav-shell {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex: 0 0 100%;
        width: 100%;
        padding: 9px 0 6px;
        align-items: stretch;
        flex-direction: column;
        gap: 2px;
    }

    .nav-links.is-open {
        display: flex;
        animation: mobileMenuIn 0.34s var(--ease-premium) both;
    }

    .nav-links > li > a,
    .nav-dropdown > summary {
        justify-content: space-between;
        width: 100%;
        min-height: 44px;
        padding: 0 11px;
        font-size: 14px;
    }

    .nav-links .nav-cta {
        margin: 4px 0 0;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        margin: 2px 0 7px 11px;
        padding: 4px 0 4px 9px;
        border: 0;
        border-left: 2px solid rgba(8, 105, 223, 0.15);
        border-radius: 0;
        box-shadow: none;
        transform: none;
        animation: panelIn 0.25s ease both;
    }

    .premium-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 56px 38px 38px;
    }

    .hero-copy {
        max-width: 680px;
    }

    .hero-visual,
    .hero-visual > img {
        min-height: 470px;
        height: 470px;
    }

    .hero-visual {
        margin-top: 12px;
    }

    .floating-note-top {
        left: 18px;
    }

    .floating-note-bottom {
        right: 14px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading p {
        max-width: 650px;
    }
}

@keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 650px) {
    :root {
        --radius-xl: 26px;
        --radius-lg: 22px;
    }

    .site-frame {
        padding-top: 18px;
    }

    .brand span {
        font-size: 15px;
    }

    .premium-hero {
        padding: 44px 24px 24px;
        border-radius: 27px;
    }

    .premium-hero h1 {
        margin-top: 17px;
        font-size: clamp(43px, 13vw, 60px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-metrics {
        justify-content: space-between;
        gap: 12px;
        margin-top: 38px;
    }

    .hero-visual,
    .hero-visual > img {
        min-height: 380px;
        height: 380px;
    }

    .floating-note {
        max-width: 198px;
        padding: 10px 12px;
    }

    .floating-note-bottom {
        display: none;
    }

    .vacation-alert {
        grid-template-columns: auto 1fr;
        align-items: start;
    }

    .vacation-alert a {
        grid-column: 2;
    }

    .section-block {
        padding: 88px 0;
    }

    .section-heading h2,
    .about-copy h2,
    .community-content h2,
    .closing-content h2 {
        font-size: 42px;
    }

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

    .experience-card:last-child {
        grid-column: auto;
    }

    .card-media,
    .experience-card:last-child .card-media {
        height: 330px;
    }

    .about-gallery {
        min-height: 485px;
    }

    .about-image-large {
        inset: 0 15% 12% 0;
    }

    .about-image-small {
        width: 48%;
        height: 43%;
    }

    .gallery-label {
        top: 22px;
        width: 94px;
        height: 94px;
    }

    .gallery-label svg {
        width: 59px;
        height: 59px;
    }

    .community-banner,
    .community-content {
        min-height: 560px;
    }

    .community-content {
        justify-content: flex-end;
        padding: 38px 26px;
    }

    .community-overlay {
        background: linear-gradient(to top, rgba(5, 8, 14, 0.94) 3%, rgba(5, 8, 14, 0.45) 65%, rgba(5, 8, 14, 0.2));
    }

    .closing-cta {
        margin-bottom: 56px;
        padding: 56px 23px;
    }

    .footer-shell {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .site-header,
    .site-frame,
    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nav-shell {
        padding-left: 12px;
    }

    .premium-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-visual,
    .hero-visual > img {
        min-height: 330px;
        height: 330px;
    }

    .floating-note-top {
        top: 18px;
        left: 10px;
    }

    .hero-metrics dd {
        font-size: 10px;
    }

    .card-summary {
        padding-left: 19px;
        padding-right: 19px;
    }

    .card-panel {
        padding-left: 19px;
        padding-right: 19px;
    }
}

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

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

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
/* =========================================================
   OPTIMIZACIÓN UX/UI — CAPA DE MEJORA
   Rendimiento, accesibilidad y microinteracciones
   ========================================================= */

:root {
    --reading-max: 720px;
    --header-height: 78px;
}

/* Progreso de lectura */
.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1100;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--violet), var(--orange));
    box-shadow: 0 2px 10px rgba(8, 105, 223, 0.24);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

/* Mejor legibilidad y anclajes */
#escuela,
#quienes-somos {
    scroll-margin-top: calc(var(--header-height) + 30px);
}

.hero-lead,
.section-heading p,
.about-copy p,
.community-content p,
.closing-content p {
    text-wrap: pretty;
}

.premium-hero h1,
.section-heading h2,
.about-copy h2,
.community-content h2,
.closing-content h2 {
    text-wrap: balance;
}

/* Header reactivo al scroll */
.site-header {
    transition: padding 0.32s var(--ease-premium);
}

.site-header.is-scrolled {
    padding-top: 6px;
}

.site-header.is-scrolled .nav-shell {
    min-height: 52px;
    border-color: rgba(23, 23, 25, 0.1);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 42px rgba(24, 28, 36, 0.11);
}

.nav-shell {
    transition:
        min-height 0.32s var(--ease-premium),
        background 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}

/* Fallback cuando backdrop-filter no está disponible */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
    .nav-shell,
    .floating-note,
    .gallery-label {
        background: rgba(255, 255, 255, 0.97);
    }
}

/* Spotlight visible sin interferir con el contenido */
.premium-hero > .hero-copy,
.premium-hero > .hero-visual,
.experience-card > summary,
.experience-card > .card-panel,
.community-banner > .community-content,
.closing-cta > .closing-content {
    position: relative;
    z-index: 3;
}

.interactive-surface::after {
    mix-blend-mode: soft-light;
}

/* Carga progresiva de imágenes */
.js img[data-fade] {
    opacity: 0;
    filter: saturate(0.92);
    transition:
        opacity 0.55s ease,
        filter 0.75s ease,
        transform 0.9s var(--ease-premium);
}

.js img[data-fade].is-loaded {
    opacity: 1;
    filter: none;
}

.no-js img[data-fade] {
    opacity: 1;
}

/* Hero: tilt muy sutil solo con ratón */
.hero-visual {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    perspective: 1200px;
}

.hero-visual > img {
    transform:
        perspective(1200px)
        rotateX(var(--tilt-x))
        rotateY(var(--tilt-y))
        rotateZ(1.35deg);
    transform-style: preserve-3d;
    will-change: transform;
}

.premium-hero:hover .hero-visual > img {
    transform:
        perspective(1200px)
        rotateX(var(--tilt-x))
        rotateY(var(--tilt-y))
        rotateZ(0deg)
        scale(1.012);
}

/* Refinamiento de jerarquía y márgenes */
.section-heading > div {
    max-width: 760px;
}

.section-heading > p {
    max-width: 520px;
    justify-self: end;
}

.about-copy {
    max-width: 570px;
}

.experience-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.experience-card > summary {
    position: relative;
}

.experience-card > summary::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(145deg, rgba(8, 105, 223, 0.025), transparent 45%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.experience-card:hover > summary::after,
.experience-card[open] > summary::after {
    opacity: 1;
}

.experience-card[open] {
    border-color: rgba(8, 105, 223, 0.26);
}

/* Mejora de interacción táctil */
@media (pointer: coarse) {
    .button,
    .nav-links > li > a,
    .nav-dropdown > summary {
        min-height: 46px;
    }

    .interactive-surface::after {
        display: none;
    }
}

/* Mejora de rendimiento de renderizado bajo el primer scroll */
.disciplines-section,
.about-section,
.community-banner,
.closing-cta {
    content-visibility: auto;
}

.disciplines-section {
    contain-intrinsic-size: 1000px;
}

.about-section {
    contain-intrinsic-size: 900px;
}

.community-banner,
.closing-cta {
    contain-intrinsic-size: 600px;
}

/* Evita desplazamientos y bloquea el fondo con menú móvil */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 1050px) {
    .section-heading > p {
        justify-self: start;
    }

    .about-copy {
        max-width: 760px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 72px;
    }

    .nav-shell {
        max-height: calc(100svh - 18px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .site-header.is-scrolled {
        padding-top: 5px;
    }

    .premium-hero {
        gap: 42px;
    }

    .section-heading > p {
        max-width: var(--reading-max);
    }
}

@media (max-width: 650px) {
    .scroll-progress {
        height: 2px;
    }

    .premium-hero::before {
        opacity: 0.7;
    }

    .floating-note-top {
        animation-duration: 7s;
    }

    .section-heading h2,
    .about-copy h2,
    .community-content h2,
    .closing-content h2 {
        line-height: 1.04;
    }

    .card-summary small {
        max-width: 28ch;
        line-height: 1.45;
    }
}

/* Solo activar elevaciones cuando existe hover real */
@media (hover: none) {
    .button:hover,
    .experience-card:hover {
        transform: none;
    }

    .experience-card:hover .card-media img,
    .community-banner:hover .community-image,
    .about-gallery:hover img {
        transform: none;
    }

    .button::before {
        display: none;
    }
}

/* Mayor contraste solicitado por el sistema */
@media (prefers-contrast: more) {
    :root {
        --muted: #55565b;
        --line: rgba(23, 23, 25, 0.22);
        --line-strong: rgba(23, 23, 25, 0.34);
    }

    .button-secondary,
    .experience-card,
    .premium-hero,
    .closing-cta {
        border-width: 2px;
    }
}

/* Impresión limpia */
@media print {
    .site-header,
    .scroll-progress,
    .vacation-alert,
    .cta-group,
    .closing-cta,
    .site-footer {
        display: none !important;
    }

    .site-frame {
        width: 100%;
        padding: 0;
    }

    .premium-hero,
    .experience-card,
    .community-banner {
        box-shadow: none;
        break-inside: avoid;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Reforzar la reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    .hero-visual > img,
    .premium-hero:hover .hero-visual > img {
        transform: none !important;
    }

    .scroll-progress span {
        transition: none;
    }

    .js img[data-fade] {
        opacity: 1;
        filter: none;
    }
}

    


        /* =====================================================
           MENÚ PRINCIPAL · APERTURA PREMIUM POR HOVER
           ===================================================== */

        @media (hover: hover) and (pointer: fine) and (min-width: 821px) {
            .nav-dropdown {
                padding-bottom: 13px;
                margin-bottom: -13px;
            }

            .nav-dropdown > summary {
                position: relative;
            }

            .nav-dropdown > summary::before {
                content: "";
                position: absolute;
                right: 13px;
                bottom: 5px;
                left: 13px;
                height: 1.5px;
                border-radius: 99px;
                background: var(--blue);
                transform: scaleX(0);
                transform-origin: center;
                transition: transform 0.28s var(--ease-premium);
            }

            .nav-dropdown:hover > summary::before,
            .nav-dropdown[open] > summary::before {
                transform: scaleX(1);
            }

            .dropdown-menu {
                top: calc(100% + 1px);
                transform-origin: top center;
            }
        }

        /* =====================================================
           FOOTER PREMIUM
           ===================================================== */

        .premium-footer {
            padding: 0 var(--page-gutter) 26px;
            background: var(--white);
        }

        .premium-footer-shell {
            position: relative;
            width: min(100%, var(--content-max));
            margin: 0 auto;
            padding: clamp(38px, 5vw, 64px);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            background:
                radial-gradient(
                    circle at var(--spot-x, 16%) var(--spot-y, 20%),
                    rgba(8, 105, 223, 0.18),
                    transparent 30%
                ),
                linear-gradient(135deg, #11141b 0%, #080a0f 58%, #10131a 100%);
            box-shadow:
                0 32px 90px rgba(9, 12, 20, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
            color: var(--white);
            isolation: isolate;
        }

        .premium-footer-shell::before {
            content: "";
            position: absolute;
            inset: 1px;
            z-index: -1;
            border-radius: calc(var(--radius-xl) - 1px);
            background:
                linear-gradient(
                    115deg,
                    rgba(255, 255, 255, 0.035),
                    transparent 28%,
                    transparent 72%,
                    rgba(255, 255, 255, 0.025)
                );
            pointer-events: none;
        }

        .footer-orb {
            position: absolute;
            z-index: -1;
            border-radius: 50%;
            filter: blur(7px);
            pointer-events: none;
        }

        .footer-orb-one {
            top: -170px;
            left: -120px;
            width: 390px;
            height: 390px;
            background: radial-gradient(
                circle,
                rgba(8, 105, 223, 0.25),
                transparent 68%
            );
            animation: footerOrbMove 13s ease-in-out infinite;
        }

        .footer-orb-two {
            right: -180px;
            bottom: -220px;
            width: 480px;
            height: 480px;
            background: radial-gradient(
                circle,
                rgba(111, 84, 232, 0.18),
                transparent 68%
            );
            animation: footerOrbMove 15s ease-in-out infinite reverse;
        }

        .footer-top {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
            gap: clamp(52px, 8vw, 112px);
            align-items: start;
        }

        .footer-intro {
            max-width: 440px;
        }

        .footer-brand-premium {
            display: inline-flex;
            align-items: center;
            gap: 13px;
        }

        .footer-logo-wrap {
            display: grid;
            flex: 0 0 auto;
            width: 52px;
            height: 52px;
            place-items: center;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
            transition:
                transform 0.4s var(--ease-premium),
                background 0.3s ease;
        }

        .footer-logo-wrap img {
            width: 42px;
            height: 42px;
            object-fit: contain;
        }

        .footer-brand-premium:hover .footer-logo-wrap {
            background: rgba(8, 105, 223, 0.19);
            transform: rotate(-4deg) scale(1.05);
        }

        .footer-brand-premium > span:last-child {
            display: grid;
            gap: 2px;
        }

        .footer-brand-premium strong {
            color: var(--white);
            font-size: 18px;
            letter-spacing: -0.025em;
        }

        .footer-brand-premium small {
            color: rgba(255, 255, 255, 0.48);
            font-size: 11px;
            font-weight: 580;
        }

        .footer-intro > p {
            max-width: 390px;
            margin: 26px 0 30px;
            color: rgba(255, 255, 255, 0.58);
            font-size: 14px;
            line-height: 1.72;
        }

        .footer-agenda-link {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            max-width: 400px;
            padding: 17px 18px;
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.34);
            border-radius: 18px;
            background:
                linear-gradient(
                    135deg,
                    rgba(8, 105, 223, 0.18),
                    rgba(8, 105, 223, 0.07)
                );
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
            color: var(--white);
            font-size: 14px;
            font-weight: 690;
            transition:
                transform 0.36s var(--ease-premium),
                border-color 0.3s ease,
                background 0.3s ease,
                box-shadow 0.36s ease;
        }

        .footer-agenda-link::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -42%;
            width: 25%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.24),
                transparent
            );
            transform: rotate(20deg);
            transition: left 0.75s var(--ease-premium);
        }

        .footer-agenda-link:hover {
            border-color: rgba(8, 105, 223, 0.65);
            background:
                linear-gradient(
                    135deg,
                    rgba(8, 105, 223, 0.3),
                    rgba(8, 105, 223, 0.12)
                );
            box-shadow: 0 20px 44px rgba(8, 105, 223, 0.13);
            transform: translateY(-4px);
        }

        .footer-agenda-link:hover::before {
            left: 125%;
        }

        .footer-agenda-link small {
            display: block;
            margin-bottom: 3px;
            color: rgba(255, 255, 255, 0.46);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .footer-link-arrow {
            display: grid;
            flex: 0 0 auto;
            width: 37px;
            height: 37px;
            place-items: center;
            border-radius: 50%;
            background: var(--blue);
            box-shadow: 0 10px 24px rgba(8, 105, 223, 0.28);
            transition: transform 0.34s var(--ease-premium);
        }

        .footer-agenda-link:hover .footer-link-arrow {
            transform: rotate(8deg) scale(1.08);
        }

        .footer-navigation {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(30px, 5vw, 66px);
        }

        .footer-column h2 {
            margin: 0 0 22px;
            color: rgba(255, 255, 255, 0.42);
            font-size: 11px;
            font-weight: 760;
            letter-spacing: 0.085em;
            text-transform: uppercase;
        }

        .footer-column ul {
            display: grid;
            gap: 13px;
        }

        .footer-column li {
            min-width: 0;
        }

        .footer-column li a {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: rgba(255, 255, 255, 0.73);
            font-size: 13px;
            font-weight: 570;
            line-height: 1.4;
            transition:
                color 0.24s ease,
                transform 0.28s var(--ease-premium);
        }

        .footer-column li a::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -4px;
            left: 0;
            height: 1px;
            border-radius: 99px;
            background: var(--blue);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s var(--ease-premium);
        }

        .footer-column li a:hover {
            color: var(--white);
            transform: translateX(4px);
        }

        .footer-column li a:hover::after {
            transform: scaleX(1);
        }

        .footer-column li a span {
            color: rgba(8, 105, 223, 0.78);
            font-size: 9px;
            font-weight: 780;
        }

        .footer-contact-button {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            min-width: 136px;
            margin-top: 26px;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--white);
            font-size: 12px;
            font-weight: 680;
            transition:
                transform 0.3s var(--ease-premium),
                background 0.25s ease,
                border-color 0.25s ease;
        }

        .footer-contact-button:hover {
            border-color: rgba(8, 105, 223, 0.46);
            background: var(--blue);
            transform: translateY(-3px);
        }

        .footer-contact-button span {
            transition: transform 0.25s ease;
        }

        .footer-contact-button:hover span {
            transform: translateX(3px);
        }

        .footer-divider {
            position: relative;
            z-index: 2;
            height: 1px;
            margin: clamp(42px, 6vw, 66px) 0 25px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
        }

        .footer-divider span {
            display: block;
            width: 32%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                var(--blue),
                transparent
            );
            animation: footerLine 6s ease-in-out infinite;
        }

        .footer-bottom {
            position: relative;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .footer-bottom > p {
            margin: 0;
            color: rgba(255, 255, 255, 0.38);
            font-size: 10px;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
        }

        .footer-bottom-links > a,
        .photo-credits-premium > summary {
            color: rgba(255, 255, 255, 0.52);
            font-size: 10px;
            font-weight: 610;
            cursor: pointer;
            transition: color 0.22s ease;
        }

        .footer-bottom-links > a:hover,
        .photo-credits-premium > summary:hover {
            color: var(--white);
        }

        .back-to-top {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .back-to-top span {
            display: grid;
            width: 25px;
            height: 25px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            transition:
                transform 0.3s var(--ease-premium),
                background 0.25s ease;
        }

        .back-to-top:hover span {
            background: var(--blue);
            transform: translateY(-3px);
        }

        .photo-credits-premium {
            position: relative;
        }

        .photo-credits-premium > summary {
            list-style: none;
        }

        .photo-credits-premium > summary::-webkit-details-marker {
            display: none;
        }

        .credits-panel {
            position: absolute;
            right: 0;
            bottom: calc(100% + 14px);
            width: min(300px, 82vw);
            padding: 14px 16px;
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 14px;
            background: rgba(14, 17, 24, 0.96);
            box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            animation: footerPanelIn 0.28s var(--ease-premium) both;
        }

        .credits-panel p {
            margin: 0;
            color: rgba(255, 255, 255, 0.55);
            font-size: 10px;
            line-height: 1.6;
        }

        @keyframes footerOrbMove {
            0%, 100% {
                transform: translate3d(0, 0, 0) scale(1);
            }

            50% {
                transform: translate3d(30px, -22px, 0) scale(1.07);
            }
        }

        @keyframes footerLine {
            0%, 100% {
                transform: translateX(-110%);
                opacity: 0;
            }

            20%, 80% {
                opacity: 1;
            }

            50% {
                transform: translateX(310%);
            }
        }

        @keyframes footerPanelIn {
            from {
                opacity: 0;
                transform: translateY(8px) scale(0.97);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @media (max-width: 940px) {
            .footer-top {
                grid-template-columns: 1fr;
            }

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

            .footer-agenda-link {
                max-width: 520px;
            }
        }

        @media (max-width: 700px) {
            .premium-footer {
                padding-right: 14px;
                padding-left: 14px;
            }

            .premium-footer-shell {
                padding: 32px 23px 24px;
                border-radius: 26px;
            }

            .footer-navigation {
                grid-template-columns: 1fr 1fr;
                gap: 38px 24px;
            }

            .footer-column:last-child {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }

            .footer-bottom-links {
                width: 100%;
                justify-content: space-between;
                gap: 12px;
            }
        }

        @media (max-width: 440px) {
            .footer-navigation {
                grid-template-columns: 1fr;
            }

            .footer-column:last-child {
                grid-column: auto;
            }

            .footer-agenda-link {
                align-items: flex-start;
            }

            .footer-bottom-links {
                align-items: flex-start;
                flex-wrap: wrap;
                justify-content: flex-start;
            }

            .credits-panel {
                right: auto;
                left: 0;
            }
        }

        @media (hover: none) {
            .footer-agenda-link:hover,
            .footer-column li a:hover,
            .footer-contact-button:hover {
                transform: none;
            }

            .footer-agenda-link::before {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .footer-orb,
            .footer-divider span {
                animation: none;
            }

            .footer-agenda-link::before {
                display: none;
            }
        }
    


        .nav-links .nav-cta {
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 12px 26px rgba(8, 105, 223, 0.24);
            transition:
                transform 0.32s var(--ease-premium),
                box-shadow 0.32s var(--ease-premium),
                background 0.25s ease,
                color 0.25s ease;
        }

        .nav-links .nav-cta::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -45%;
            width: 28%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.45),
                transparent
            );
            transform: rotate(20deg);
            transition: left 0.7s var(--ease-premium);
        }

        .nav-links .nav-cta:hover {
            background: var(--blue-hover);
            color: var(--white);
            box-shadow: 0 18px 36px rgba(8, 105, 223, 0.32);
            transform: translateY(-3px);
        }

        .nav-links .nav-cta:hover::before {
            left: 125%;
        }

        @media (prefers-reduced-motion: reduce) {
            .nav-links .nav-cta::before {
                display: none;
            }

            .nav-links .nav-cta:hover {
                transform: none;
            }
        }
    


        /* =====================================================
           FOOTER PREMIUM CLARO · SIN EFECTO DE SEGUIMIENTO
           ===================================================== */

        .premium-footer {
            padding: 0 var(--page-gutter) 26px;
            background: var(--white);
        }

        .premium-footer-shell {
            position: relative;
            width: min(100%, var(--content-max));
            margin: 0 auto;
            padding: clamp(38px, 5vw, 64px);
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.14);
            border-radius: var(--radius-xl);
            background:
                radial-gradient(
                    circle at 8% 12%,
                    rgba(8, 105, 223, 0.10),
                    transparent 28%
                ),
                radial-gradient(
                    circle at 94% 90%,
                    rgba(111, 84, 232, 0.07),
                    transparent 30%
                ),
                linear-gradient(135deg, #f8fbff 0%, #ffffff 54%, #faf9ff 100%);
            box-shadow:
                0 26px 74px rgba(23, 23, 25, 0.09),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            color: var(--ink);
            isolation: isolate;
        }

        .premium-footer-shell::before {
            content: "";
            position: absolute;
            inset: 1px;
            z-index: -1;
            border-radius: calc(var(--radius-xl) - 1px);
            background:
                linear-gradient(
                    115deg,
                    rgba(255, 255, 255, 0.88),
                    transparent 30%,
                    transparent 72%,
                    rgba(8, 105, 223, 0.025)
                );
            pointer-events: none;
        }

        .footer-orb {
            position: absolute;
            z-index: -1;
            border-radius: 50%;
            filter: blur(10px);
            pointer-events: none;
            animation: none;
        }

        .footer-orb-one {
            top: -170px;
            left: -120px;
            width: 390px;
            height: 390px;
            background: radial-gradient(
                circle,
                rgba(8, 105, 223, 0.11),
                transparent 68%
            );
        }

        .footer-orb-two {
            right: -180px;
            bottom: -220px;
            width: 480px;
            height: 480px;
            background: radial-gradient(
                circle,
                rgba(111, 84, 232, 0.08),
                transparent 68%
            );
        }

        .footer-top {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
            gap: clamp(52px, 8vw, 112px);
            align-items: start;
        }

        .footer-intro {
            max-width: 440px;
        }

        .footer-brand-premium {
            display: inline-flex;
            align-items: center;
            gap: 13px;
        }

        .footer-logo-wrap {
            display: grid;
            flex: 0 0 auto;
            width: 52px;
            height: 52px;
            place-items: center;
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.15);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.88);
            box-shadow:
                0 12px 28px rgba(23, 23, 25, 0.07),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            transition:
                transform 0.4s var(--ease-premium),
                border-color 0.3s ease,
                background 0.3s ease;
        }

        .footer-logo-wrap img {
            width: 42px;
            height: 42px;
            object-fit: contain;
        }

        .footer-brand-premium:hover .footer-logo-wrap {
            border-color: rgba(8, 105, 223, 0.35);
            background: #ffffff;
            transform: rotate(-3deg) scale(1.04);
        }

        .footer-brand-premium > span:last-child {
            display: grid;
            gap: 2px;
        }

        .footer-brand-premium strong {
            color: var(--ink);
            font-size: 18px;
            letter-spacing: -0.025em;
        }

        .footer-brand-premium small {
            color: var(--muted);
            font-size: 11px;
            font-weight: 580;
        }

        .footer-intro > p {
            max-width: 390px;
            margin: 26px 0 30px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.72;
        }

        .footer-agenda-link {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            max-width: 400px;
            padding: 17px 18px;
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.20);
            border-radius: 18px;
            background:
                linear-gradient(
                    135deg,
                    rgba(8, 105, 223, 0.09),
                    rgba(255, 255, 255, 0.92)
                );
            box-shadow:
                0 14px 34px rgba(23, 23, 25, 0.055),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            color: var(--ink);
            font-size: 14px;
            font-weight: 690;
            transition:
                transform 0.36s var(--ease-premium),
                border-color 0.3s ease,
                background 0.3s ease,
                box-shadow 0.36s ease;
        }

        .footer-agenda-link::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -42%;
            width: 25%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.72),
                transparent
            );
            transform: rotate(20deg);
            transition: left 0.75s var(--ease-premium);
        }

        .footer-agenda-link:hover {
            border-color: rgba(8, 105, 223, 0.42);
            background:
                linear-gradient(
                    135deg,
                    rgba(8, 105, 223, 0.14),
                    rgba(255, 255, 255, 0.98)
                );
            box-shadow: 0 20px 44px rgba(8, 105, 223, 0.11);
            transform: translateY(-4px);
        }

        .footer-agenda-link:hover::before {
            left: 125%;
        }

        .footer-agenda-link small {
            display: block;
            margin-bottom: 3px;
            color: var(--blue);
            font-size: 10px;
            font-weight: 750;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .footer-link-arrow {
            display: grid;
            flex: 0 0 auto;
            width: 37px;
            height: 37px;
            place-items: center;
            border-radius: 50%;
            background: var(--blue);
            box-shadow: 0 10px 24px rgba(8, 105, 223, 0.22);
            color: #ffffff;
            transition: transform 0.34s var(--ease-premium);
        }

        .footer-agenda-link:hover .footer-link-arrow {
            transform: rotate(8deg) scale(1.08);
        }

        .footer-navigation {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(30px, 5vw, 66px);
        }

        .footer-column h2 {
            margin: 0 0 22px;
            color: var(--blue);
            font-size: 11px;
            font-weight: 760;
            letter-spacing: 0.085em;
            text-transform: uppercase;
        }

        .footer-column ul {
            display: grid;
            gap: 13px;
        }

        .footer-column li {
            min-width: 0;
        }

        .footer-column li a {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: #575960;
            font-size: 13px;
            font-weight: 570;
            line-height: 1.4;
            transition:
                color 0.24s ease,
                transform 0.28s var(--ease-premium);
        }

        .footer-column li a::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -4px;
            left: 0;
            height: 1px;
            border-radius: 99px;
            background: var(--blue);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s var(--ease-premium);
        }

        .footer-column li a:hover {
            color: var(--blue);
            transform: translateX(4px);
        }

        .footer-column li a:hover::after {
            transform: scaleX(1);
        }

        .footer-column li a span {
            color: rgba(8, 105, 223, 0.70);
            font-size: 9px;
            font-weight: 780;
        }

        .footer-contact-button {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            min-width: 136px;
            margin-top: 26px;
            padding: 12px 15px;
            border: 1px solid rgba(8, 105, 223, 0.18);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            box-shadow: 0 10px 26px rgba(23, 23, 25, 0.05);
            color: var(--blue);
            font-size: 12px;
            font-weight: 680;
            transition:
                transform 0.3s var(--ease-premium),
                background 0.25s ease,
                border-color 0.25s ease,
                color 0.25s ease;
        }

        .footer-contact-button:hover {
            border-color: var(--blue);
            background: var(--blue);
            color: #ffffff;
            transform: translateY(-3px);
        }

        .footer-contact-button span {
            transition: transform 0.25s ease;
        }

        .footer-contact-button:hover span {
            transform: translateX(3px);
        }

        .footer-divider {
            position: relative;
            z-index: 2;
            height: 1px;
            margin: clamp(42px, 6vw, 66px) 0 25px;
            overflow: hidden;
            background: rgba(23, 23, 25, 0.09);
        }

        .footer-divider span {
            display: block;
            width: 32%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(8, 105, 223, 0.70),
                transparent
            );
            animation: footerLine 7s ease-in-out infinite;
        }

        .footer-bottom {
            position: relative;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .footer-bottom > p {
            margin: 0;
            color: var(--muted-light);
            font-size: 10px;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
        }

        .footer-bottom-links > a,
        .photo-credits-premium > summary {
            color: #6d6e73;
            font-size: 10px;
            font-weight: 610;
            cursor: pointer;
            transition: color 0.22s ease;
        }

        .footer-bottom-links > a:hover,
        .photo-credits-premium > summary:hover {
            color: var(--blue);
        }

        .back-to-top {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .back-to-top span {
            display: grid;
            width: 25px;
            height: 25px;
            place-items: center;
            border: 1px solid rgba(8, 105, 223, 0.16);
            border-radius: 50%;
            background: #ffffff;
            color: var(--blue);
            box-shadow: 0 7px 18px rgba(23, 23, 25, 0.045);
            transition:
                transform 0.3s var(--ease-premium),
                background 0.25s ease,
                color 0.25s ease;
        }

        .back-to-top:hover span {
            background: var(--blue);
            color: #ffffff;
            transform: translateY(-3px);
        }

        .photo-credits-premium {
            position: relative;
        }

        .photo-credits-premium > summary {
            list-style: none;
        }

        .photo-credits-premium > summary::-webkit-details-marker {
            display: none;
        }

        .credits-panel {
            position: absolute;
            right: 0;
            bottom: calc(100% + 14px);
            width: min(300px, 82vw);
            padding: 14px 16px;
            border: 1px solid rgba(8, 105, 223, 0.14);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 18px 46px rgba(23, 23, 25, 0.13);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            animation: footerPanelIn 0.28s var(--ease-premium) both;
        }

        .credits-panel p {
            margin: 0;
            color: var(--muted);
            font-size: 10px;
            line-height: 1.6;
        }

        @media (hover: none) {
            .footer-agenda-link:hover,
            .footer-column li a:hover,
            .footer-contact-button:hover {
                transform: none;
            }

            .footer-agenda-link::before {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .footer-divider span {
                animation: none;
            }

            .footer-agenda-link::before {
                display: none;
            }
        }
    

/* =========================================================
   INTEGRACIÓN CON LA HOME DE AGRUPACIONES
   Menú, sistema visual y footer compartidos
   ========================================================= */

.page-frame {
    width: min(
        100%,
        calc(var(--content-max) + (var(--page-gutter) * 2))
    );
    margin: 0 auto;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
}

.site-header + main .page-frame {
    padding-top: 18px;
}

.premium-footer {
    margin-top: 0;
}

.nav-links a[aria-current="page"],
.dropdown-menu a[aria-current="page"] {
    color: var(--blue);
    background: rgba(8, 105, 223, 0.08);
}

.dropdown-menu a[aria-current="page"] {
    font-weight: 700;
}

.video-hero {
    margin-top: 10px;
}

@media (max-width: 820px) {
    .page-frame {
        padding-right: var(--page-gutter);
        padding-left: var(--page-gutter);
    }

    .site-header + main .page-frame {
        padding-top: 10px;
    }
}

@media (max-width: 420px) {
    .page-frame {
        padding-right: 14px;
        padding-left: 14px;
    }
}

    


/* =========================================================
   CURRÍCULUM DE LA AGRUPACIÓN
   ========================================================= */

.curriculum-section-wrap {
    padding-top: 0 !important;
    padding-bottom: clamp(48px, 5.5vw, 76px) !important;
}

.curriculum-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: stretch;
    padding: clamp(22px, 3vw, 30px);
    overflow: hidden;
    border: 1px solid rgba(21, 22, 26, 0.10);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(var(--accent-rgb), 0.09),
            transparent 34%
        ),
        linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
    box-shadow:
        0 26px 74px rgba(21, 22, 26, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    isolation: isolate;
}

.curriculum-section::before {
    content: "";
    position: absolute;
    top: -230px;
    right: 12%;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(var(--accent-rgb), 0.07);
    border-radius: 50%;
    box-shadow:
        0 0 0 68px rgba(var(--accent-rgb), 0.018),
        0 0 0 136px rgba(var(--accent-rgb), 0.011);
    pointer-events: none;
}

.curriculum-visual {
    position: relative;
    min-width: 0;
    min-height: 540px;
    margin: 0;
    overflow: hidden;
    border-radius: 25px;
    background: #e9eef5;
    box-shadow:
        0 22px 58px rgba(16, 19, 28, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.curriculum-visual img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    transition:
        transform 0.95s var(--ease),
        filter 0.7s ease;
}

.curriculum-section:hover .curriculum-visual img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.035);
}

.curriculum-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(5, 8, 14, 0.58),
            transparent 54%
        ),
        linear-gradient(
            135deg,
            rgba(var(--accent-rgb), 0.14),
            transparent 45%
        );
    pointer-events: none;
}

.curriculum-photo-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 38px rgba(8, 11, 19, 0.17);
    color: var(--ink);
    font-size: 11px;
    font-weight: 730;
    backdrop-filter: blur(17px) saturate(150%);
    -webkit-backdrop-filter: blur(17px) saturate(150%);
}

.curriculum-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    padding: clamp(16px, 3vw, 30px) clamp(8px, 2vw, 22px);
    flex-direction: column;
    justify-content: center;
}

.curriculum-copy h2 {
    max-width: 720px;
    margin: 14px 0 18px;
    color: var(--ink);
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.curriculum-intro {
    max-width: 670px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
    text-wrap: pretty;
}

.curriculum-details {
    margin-top: 30px;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow:
        0 16px 40px rgba(21, 22, 26, 0.065),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.curriculum-details summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 74px;
    padding: 16px 18px 16px 20px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 760;
    cursor: pointer;
    list-style: none;
}

.curriculum-details summary::-webkit-details-marker {
    display: none;
}

.curriculum-details summary::after {
    content: "+";
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(var(--accent-rgb), 0.16);
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--accent);
    font-size: 20px;
    font-weight: 520;
    transition:
        transform 0.32s var(--ease),
        background 0.25s ease,
        color 0.25s ease;
}

.curriculum-details[open] summary::after {
    background: var(--accent);
    color: #ffffff;
    transform: rotate(45deg);
}

.curriculum-long-text {
    padding: 2px 24px 28px;
    border-top: 1px solid rgba(21, 22, 26, 0.075);
}

.curriculum-long-text p {
    max-width: 74ch;
    margin: 20px 0 0;
    color: #62646b;
    font-size: 13px;
    line-height: 1.82;
    text-wrap: pretty;
}

.curriculum-long-text p:first-child {
    margin-top: 23px;
}

@media (max-width: 980px) {
    .curriculum-section {
        grid-template-columns: 1fr;
    }

    .curriculum-visual,
    .curriculum-visual img {
        min-height: 470px;
        height: 470px;
    }

    .curriculum-copy {
        padding: 24px 18px 16px;
    }
}

@media (max-width: 620px) {
    .curriculum-section-wrap {
        padding-bottom: 34px !important;
    }

    .curriculum-section {
        gap: 18px;
        padding: 14px;
        border-radius: 26px;
    }

    .curriculum-visual,
    .curriculum-visual img {
        min-height: 340px;
        height: 340px;
    }

    .curriculum-visual {
        border-radius: 20px;
    }

    .curriculum-copy {
        padding: 22px 8px 14px;
    }

    .curriculum-copy h2 {
        font-size: 40px;
    }

    .curriculum-details summary {
        min-height: 68px;
        padding: 14px 14px 14px 16px;
    }

    .curriculum-long-text {
        padding: 2px 17px 23px;
    }
}

@media (hover: none) {
    .curriculum-section:hover .curriculum-visual img {
        filter: none;
        transform: none;
    }
}



/* =========================================================
   HERO CON IMAGEN FIJA
   ========================================================= */

.video-hero .video-hero-poster {
    z-index: 0;
    object-fit: cover;
    object-position: center;
    transform: none;
    filter: saturate(1.03) contrast(1.02);
}

.video-hero-overlay {
    z-index: 1;
}

.video-hero-glow {
    z-index: 2;
}

.video-hero-content {
    z-index: 4;
}



/* =========================================================
   HERO MÁS LUMINOSO
   ========================================================= */

.video-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 7, 14, 0.34) 0%,
            rgba(3, 7, 14, 0.16) 42%,
            rgba(3, 7, 14, 0.03) 76%,
            transparent 100%
        ),
        linear-gradient(
            to top,
            rgba(3, 7, 14, 0.18),
            transparent 48%
        ) !important;
}

.video-hero-glow {
    opacity: 0.22;
}

.video-hero-content {
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
}

.video-hero .video-hero-poster {
    filter: saturate(1.08) contrast(1.02) brightness(1.04);
}

@media (max-width: 820px) {
    .video-hero-overlay {
        background:
            linear-gradient(
                to top,
                rgba(3, 7, 14, 0.42) 0%,
                rgba(3, 7, 14, 0.18) 47%,
                rgba(3, 7, 14, 0.02) 100%
            ) !important;
    }
}

/* =========================================================
   DIRECTOR MUSICAL · BLOQUE DESTACADO
   ========================================================= */

.director-section-wrap {
    padding-top: 0 !important;
    padding-bottom: clamp(58px, 7vw, 92px) !important;
}

.director-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: stretch;
    padding: clamp(34px, 5vw, 58px);
    overflow: hidden;
    border: 1px solid rgba(var(--accent-rgb), 0.23);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 5% 8%,
            rgba(var(--accent-rgb), 0.18),
            transparent 31%
        ),
        radial-gradient(
            circle at 94% 94%,
            rgba(111, 84, 232, 0.13),
            transparent 32%
        ),
        linear-gradient(135deg, #edf5ff 0%, #f7f4ff 52%, #ffffff 100%);
    box-shadow:
        0 34px 92px rgba(18, 27, 45, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.78),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    isolation: isolate;
}

.director-section::before {
    content: "DIRECCIÓN";
    position: absolute;
    top: 38px;
    right: -28px;
    z-index: -1;
    color: rgba(var(--accent-rgb), 0.055);
    font-size: clamp(78px, 12vw, 168px);
    font-weight: 850;
    line-height: 0.8;
    letter-spacing: -0.075em;
    pointer-events: none;
}

.director-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    padding: clamp(8px, 2vw, 22px) 0;
    flex-direction: column;
    justify-content: center;
}

.director-role {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 17px;
    padding: 8px 12px;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--accent);
    font-size: 10px;
    font-weight: 810;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    box-shadow: 0 9px 24px rgba(var(--accent-rgb), 0.07);
}

.director-copy h2 {
    max-width: 760px;
    margin: 0 0 21px;
    color: var(--ink);
    font-size: clamp(42px, 6vw, 70px);
    line-height: 0.96;
    letter-spacing: -0.060em;
    text-wrap: balance;
}

.director-intro {
    max-width: 690px;
    margin: 0;
    color: #5f626b;
    font-size: 16px;
    line-height: 1.76;
    text-wrap: pretty;
}

.director-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.director-tags span {
    padding: 9px 12px;
    border: 1px solid rgba(var(--accent-rgb), 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #555963;
    font-size: 10px;
    font-weight: 680;
}

.director-details {
    margin-top: 29px;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.83);
    box-shadow:
        0 17px 42px rgba(21, 22, 26, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.director-details summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 72px;
    padding: 16px 17px 16px 20px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 770;
    cursor: pointer;
    list-style: none;
}

.director-details summary::-webkit-details-marker {
    display: none;
}

.director-details summary::after {
    content: "+";
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.22);
    transition: transform 0.32s var(--ease);
}

.director-details[open] summary::after {
    transform: rotate(45deg);
}

.director-cv {
    padding: 3px 24px 28px;
    border-top: 1px solid rgba(21, 22, 26, 0.075);
}

.director-cv p {
    max-width: 75ch;
    margin: 20px 0 0;
    color: #62656d;
    font-size: 13px;
    line-height: 1.82;
    text-wrap: pretty;
}

.director-visual {
    position: relative;
    min-width: 0;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border: 9px solid rgba(255, 255, 255, 0.82);
    border-radius: 29px;
    background: #e8eef7;
    box-shadow:
        0 28px 68px rgba(15, 22, 37, 0.22),
        0 0 0 1px rgba(var(--accent-rgb), 0.12);
    transform: rotate(1.2deg);
    transition: transform 0.7s var(--ease);
}

.director-section:hover .director-visual {
    transform: rotate(0deg) translateY(-4px);
}

.director-visual img {
    width: 100%;
    height: 100%;
    min-height: 502px;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
    transition: transform 0.95s var(--ease);
}

.director-section:hover .director-visual img {
    transform: scale(1.04);
}

.director-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(6, 10, 18, 0.50),
            transparent 53%
        ),
        linear-gradient(
            135deg,
            rgba(var(--accent-rgb), 0.12),
            transparent 45%
        );
    pointer-events: none;
}

.director-caption {
    position: absolute;
    right: 17px;
    bottom: 17px;
    left: 17px;
    z-index: 2;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.89);
    color: var(--ink);
    box-shadow: 0 16px 38px rgba(8, 11, 19, 0.17);
    font-size: 10px;
    font-weight: 730;
    backdrop-filter: blur(17px) saturate(150%);
    -webkit-backdrop-filter: blur(17px) saturate(150%);
}

@media (max-width: 980px) {
    .director-section {
        grid-template-columns: 1fr;
    }

    .director-visual {
        order: -1;
        min-height: 470px;
        transform: none;
    }

    .director-visual img {
        min-height: 452px;
        height: 452px;
    }
}

@media (max-width: 620px) {
    .director-section-wrap {
        padding-bottom: 42px !important;
    }

    .director-section {
        gap: 25px;
        padding: 20px 15px 27px;
        border-radius: 27px;
    }

    .director-section::before {
        top: 25px;
        font-size: 74px;
    }

    .director-visual {
        min-height: 350px;
        border-width: 6px;
        border-radius: 22px;
    }

    .director-visual img {
        min-height: 338px;
        height: 338px;
    }

    .director-copy {
        padding: 7px 8px 0;
    }

    .director-copy h2 {
        font-size: 41px;
    }

    .director-details summary {
        min-height: 67px;
        padding: 14px 14px 14px 16px;
    }

    .director-cv {
        padding: 3px 17px 23px;
    }
}

@media (hover: none) {
    .director-section:hover .director-visual,
    .director-section:hover .director-visual img {
        transform: none;
    }
}


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

.ynf-page{
	--blue:#0869df;
	--blue2:#005bbb;
	--ink:#151517;
	--muted:#6f7279;
	--soft:#f6f8fc;
	--line:rgba(23,23,25,.09);

	width:100%;
	margin:0;
	overflow:hidden;

	background:#fff;
	color:var(--ink);

	font-family:
		"Helvetica Neue",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Arial,
		sans-serif;
}

.ynf-shell{
	width:min(1180px,calc(100% - 40px));
	margin:0 auto;
}

.ynf-hero{
	padding:clamp(70px,8vw,112px) 0 clamp(65px,8vw,100px);

	background:
		radial-gradient(circle at 8% 5%,rgba(8,105,223,.12),transparent 30%),
		radial-gradient(circle at 95% 6%,rgba(98,72,255,.07),transparent 27%),
		linear-gradient(180deg,#fbfcff,#fff);
}

.ynf-hero-grid{
	display:grid;
	grid-template-columns:minmax(0,1fr) minmax(340px,.92fr);
	gap:clamp(44px,7vw,88px);
	align-items:center;
}

.ynf-kicker,
.ynf-eyebrow{
	display:inline-flex;
	align-items:center;
	color:var(--blue);
	font-size:10.5px;
	font-weight:800;
	letter-spacing:.105em;
	text-transform:uppercase;
}

.ynf-kicker{
	margin-bottom:18px;
	padding:8px 12px;
	border:1px solid rgba(8,105,223,.15);
	border-radius:999px;
	background:rgba(8,105,223,.055);
}

.ynf-page h1,
.ynf-page h2,
.ynf-page h3{
	margin:0!important;
	padding:0!important;
	color:var(--ink)!important;
}

.ynf-page h1{
	margin-bottom:22px!important;

	font-size:clamp(55px,6.6vw,84px)!important;
	font-weight:820!important;
	line-height:.91!important;
	letter-spacing:-.07em!important;
}

.ynf-lead{
	max-width:690px;
	margin:0 0 28px;
	color:var(--muted);
	font-size:clamp(15px,1.5vw,17px);
	line-height:1.72;
}

.ynf-actions{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}

.ynf-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;

	min-height:49px;
	padding:0 21px;

	border-radius:999px;

	font-size:12.5px;
	font-weight:760;
	text-decoration:none!important;

	transition:.24s ease;
}

.ynf-btn-primary{
	background:var(--blue);
	color:#fff!important;
	box-shadow:0 14px 30px rgba(8,105,223,.25);
}

.ynf-btn-primary:hover{
	background:var(--blue2);
	transform:translateY(-2px);
}

.ynf-btn-secondary{
	border:1px solid var(--line);
	background:#fff;
	color:#44464c!important;
}

.ynf-hero-img{
	position:relative;
	min-height:460px;
	overflow:hidden;

	border-radius:30px;

	background:#eef2f8;

	box-shadow:0 30px 80px rgba(23,23,25,.12);
}

.ynf-hero-img img{
	position:absolute;
	inset:0;

	width:100%;
	height:100%;

	object-fit:cover;
}

.ynf-section{
	padding:clamp(78px,9vw,116px) 0;
}

.ynf-section-soft{
	background:var(--soft);
}

.ynf-heading{
	display:grid;
	grid-template-columns:minmax(0,.75fr) minmax(300px,1.25fr);
	gap:30px 60px;
	align-items:end;

	margin-bottom:42px;
}

.ynf-heading h2{
	margin-top:10px!important;

	font-size:clamp(42px,5vw,62px)!important;
	font-weight:810!important;
	line-height:.95!important;
	letter-spacing:-.062em!important;
}

.ynf-heading p{
	max-width:610px;
	margin:0;
	color:var(--muted);
	font-size:14px;
	line-height:1.72;
}

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

.ynf-card{
	padding:25px;

	border:1px solid var(--line);
	border-radius:20px;

	background:#fff;

	box-shadow:0 12px 35px rgba(23,23,25,.045);
}

.ynf-card-num{
	display:grid;
	width:32px;
	height:32px;
	place-items:center;

	margin-bottom:22px;

	border-radius:50%;
	background:#171719;
	color:#fff;

	font-size:10px;
	font-weight:800;
}

.ynf-card small{
	display:block;

	margin-bottom:8px;

	color:var(--blue);

	font-size:9.5px;
	font-weight:800;
	letter-spacing:.085em;
	text-transform:uppercase;
}

.ynf-card h3{
	margin-bottom:12px!important;

	font-size:21px!important;
	font-weight:770!important;
	line-height:1.03!important;
	letter-spacing:-.035em!important;
}

.ynf-card p{
	margin:0;
	color:var(--muted);
	font-size:12.5px;
	line-height:1.65;
}

.ynf-split{
	display:grid;
	grid-template-columns:minmax(0,.9fr) minmax(320px,1.1fr);
	gap:clamp(36px,7vw,80px);
	align-items:center;
}

.ynf-split-img{
	min-height:430px;
	overflow:hidden;
	border-radius:28px;
	background:#edf1f7;
	box-shadow:0 22px 60px rgba(23,23,25,.09);
}

.ynf-split-img img{
	display:block;
	width:100%;
	height:100%;
	min-height:430px;
	object-fit:cover;
}

.ynf-split h2{
	margin:11px 0 20px!important;

	font-size:clamp(42px,5vw,61px)!important;
	font-weight:810!important;
	line-height:.95!important;
	letter-spacing:-.06em!important;
}

.ynf-split p{
	color:var(--muted);
	font-size:14px;
	line-height:1.75;
}

.ynf-feature-list{
	display:grid;
	gap:10px;
	margin:24px 0 28px;
}

.ynf-feature{
	display:flex;
	gap:12px;
	align-items:flex-start;
	padding:13px 15px;
	border:1px solid var(--line);
	border-radius:14px;
	background:#fff;
}

.ynf-dot{
	flex:0 0 auto;
	width:9px;
	height:9px;
	margin-top:5px;
	border-radius:50%;
	background:var(--blue);
}

.ynf-feature strong{
	display:block;
	margin-bottom:3px;
	font-size:12.5px;
}

.ynf-feature span{
	display:block;
	color:var(--muted);
	font-size:11.5px;
	line-height:1.5;
}

.ynf-price{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:14px;
	margin-top:32px;
}

.ynf-price-card{
	padding:24px;
	border:1px solid var(--line);
	border-radius:20px;
	background:#fff;
	text-align:center;
}

.ynf-price-card strong{
	display:block;
	margin-bottom:5px;
	font-size:31px;
	letter-spacing:-.045em;
}

.ynf-price-card span{
	display:block;
	color:var(--muted);
	font-size:11px;
}

.ynf-final{
	padding:0 0 clamp(80px,9vw,120px);
}

.ynf-final-card{
	display:grid;
	grid-template-columns:minmax(0,1fr) auto;
	gap:24px;
	align-items:center;

	padding:clamp(30px,5vw,48px);
	border-radius:28px;

	background:linear-gradient(135deg,#171719,#282b32);

	box-shadow:0 25px 70px rgba(23,23,25,.16);
}

.ynf-final-card h2{
	margin-bottom:9px!important;
	color:#fff!important;
	font-size:clamp(30px,4vw,45px)!important;
	font-weight:800!important;
	line-height:.98!important;
	letter-spacing:-.055em!important;
}

.ynf-final-card p{
	margin:0;
	color:rgba(255,255,255,.66);
	font-size:12.5px;
	line-height:1.65;
}

.ynf-agenda-grid{
	display:grid;
	grid-template-columns:1.05fr .95fr;
	gap:18px;
}

.ynf-agenda-main,
.ynf-agenda-side{
	border:1px solid var(--line);
	border-radius:24px;
	background:#fff;
	overflow:hidden;
}

.ynf-agenda-main img{
	width:100%;
	height:360px;
	object-fit:cover;
	display:block;
}

.ynf-agenda-copy{
	padding:28px;
}

.ynf-agenda-copy h3{
	margin:10px 0 12px!important;
	font-size:31px!important;
	font-weight:790!important;
	letter-spacing:-.045em!important;
}

.ynf-agenda-copy p{
	color:var(--muted);
	font-size:13px;
	line-height:1.7;
}

.ynf-agenda-side{
	padding:28px;
}

.ynf-agenda-side h3{
	margin-bottom:18px!important;
	font-size:23px!important;
	font-weight:780!important;
}

.ynf-agenda-side .ynf-feature{
	margin-bottom:10px;
}

@media(max-width:900px){

	.ynf-hero-grid,
	.ynf-heading,
	.ynf-split,
	.ynf-agenda-grid{
		grid-template-columns:1fr;
	}

	.ynf-cards,
	.ynf-price{
		grid-template-columns:1fr;
	}

	.ynf-final-card{
		grid-template-columns:1fr;
	}

	.ynf-hero-img{
		min-height:390px;
	}

}

@media(max-width:650px){

	.ynf-shell{
		width:min(100% - 28px,1180px);
	}

	.ynf-page h1{
		font-size:52px!important;
	}

	.ynf-actions{
		flex-direction:column;
	}

	.ynf-btn{
		width:100%;
	}
}


:root{--accent:#0869df;--accent-rgb:8,105,223;--secondary:#6f54e8;--blue:#0869df;--blue-hover:#005ccb;--ink:#15161a;--muted:#73757d;--surface:#f7f9fc;--page-gutter:clamp(18px,4vw,46px);--content-max:1180px;--radius-xl:34px;--radius-lg:26px}
.page-frame,.site-frame{max-width:none!important;margin-left:auto!important;margin-right:auto!important}
.page-frame{padding-left:clamp(18px,4vw,46px)!important;padding-right:clamp(18px,4vw,46px)!important}
.video-hero,.hero{border-radius:34px!important}
.profile-section,.curriculum-section,.director-section,.participate-section,.section-block{font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Helvetica Neue","Segoe UI",Arial,sans-serif!important}
.button-primary{background:#0869df!important;border-color:#0869df!important}
