:root {
            --deep-green: #0077b6;
            --forest: #023e8a;
            --warm-yellow: #48cae4;
            --rich-red: #00b4d8;
            --soft-cream: #eef9ff;
            --charcoal: #052c4f;
            --mist: rgba(224, 245, 255, 0.75);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
            background: var(--soft-cream);
            color: var(--charcoal);
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: -30%;
            background: radial-gradient(circle at 20% 20%, rgba(0, 119, 182, 0.2), transparent 55%),
                        radial-gradient(circle at 80% 10%, rgba(0, 180, 216, 0.15), transparent 55%),
                        radial-gradient(circle at 50% 80%, rgba(72, 202, 228, 0.18), transparent 65%);
            filter: blur(40px);
            opacity: 0.9;
            animation: aurora 22s ease-in-out infinite alternate;
            z-index: -3;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 119, 182, 0.08), rgba(0, 180, 216, 0.05));
            z-index: -2;
        }
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(5, 44, 79, 0.08);
            z-index: 60;
            pointer-events: none;
        }

        .scroll-progress span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg, var(--rich-red), var(--warm-yellow), var(--deep-green));
            transform-origin: left;
            transform: scaleX(0);
            transition: transform 0.2s ease-out;
        }


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

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

        .container {
            width: min(1120px, 92%);
            margin: 0 auto;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 40;
            background: rgba(238, 249, 255, 0.95);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(0, 119, 182, 0.14);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
        }

        header::after {
            content: "";
            position: absolute;
            inset: auto 0 -12px;
            height: 12px;
            background: linear-gradient(90deg, rgba(0, 119, 182, 0.18), rgba(72, 202, 228, 0.16), rgba(0, 180, 216, 0.18));
            opacity: 0.65;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.6rem;
            padding: 1rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--forest);
        }

        .brand-mark {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 14px 30px rgba(0, 119, 182, 0.18);
            flex-shrink: 0;
            display: inline-block;
        }

        nav ul {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        nav a {
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding-bottom: 0.2rem;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.25rem;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--warm-yellow), var(--rich-red));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        nav a:hover {
            color: var(--deep-green);
        }

        nav a:hover::after {
            transform: scaleX(1);
        }

        .cta-link {
            padding: 0.6rem 1.55rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--rich-red), var(--warm-yellow));
            color: #fff;
            font-weight: 600;
            box-shadow: 0 14px 28px rgba(0, 180, 216, 0.28);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
        }

        .cta-link:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 20px 34px rgba(0, 180, 216, 0.35);
        }

        .hero {
            position: relative;
            padding: 6rem 0 4.5rem;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 12% 18% auto;
            height: 320px;
            background: radial-gradient(circle at top, rgba(0, 119, 182, 0.18), transparent 70%);
            filter: blur(40px);
            opacity: 0.9;
            z-index: -1;
        }

        .hero-orb {
            position: absolute;
            border-radius: 999px;
            pointer-events: none;
            opacity: 0.4;
            mix-blend-mode: screen;
        }

        .hero-shape {
            position: absolute;
            width: clamp(160px, 18vw, 240px);
            height: clamp(160px, 18vw, 240px);
            border-radius: 36px;
            background: linear-gradient(135deg, rgba(72, 202, 228, 0.55), rgba(0, 119, 182, 0.4));
            opacity: 0.35;
            filter: blur(0.2px);
            --tiltX: 0px;
            --tiltY: 0px;
            transform: translate3d(var(--tiltX), var(--tiltY), 0);
            transition: opacity 0.6s ease, transform 0.45s ease;
            mix-blend-mode: screen;
            animation: slowPulse 16s ease-in-out infinite;
        }

        .hero-shape::after {
            content: "";
            position: absolute;
            inset: 18%;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            filter: blur(0.5px);
        }

        .shape-one {
            top: -60px;
            left: -80px;
            background: linear-gradient(135deg, rgba(0, 180, 216, 0.42), rgba(72, 202, 228, 0.35));
        }

        .shape-two {
            bottom: -70px;
            right: -40px;
            background: linear-gradient(135deg, rgba(0, 119, 182, 0.45), rgba(238, 249, 255, 0.25));
            animation-duration: 18s;
            animation-direction: reverse;
        }

        .hero-orb,
        .hero-shape {
            will-change: transform;
        }

        .orb-one {
            width: 340px;
            height: 340px;
            top: 12%;
            right: 6%;
            background: radial-gradient(circle, rgba(72, 202, 228, 0.45), rgba(0, 180, 216, 0));
            animation: drift 14s ease-in-out infinite;
        }

        .orb-two {
            width: 280px;
            height: 280px;
            bottom: 4%;
            left: -6%;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.45), rgba(72, 202, 228, 0));
            animation: drift 16s ease-in-out infinite reverse;
        }

        .hero-grid {
            display: grid;
            gap: 3.2rem;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            align-items: center;
        }

        .hero-content {
            position: relative;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(72, 202, 228, 0.28);
            color: var(--forest);
            font-weight: 600;
            border-radius: 999px;
            font-size: 0.85rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(2.9rem, 5vw, 4.2rem);
            margin: 1.1rem 0 1.1rem;
            color: var(--forest);
            line-height: 1.08;
        }

        .hero-title span {
            background: linear-gradient(120deg, var(--rich-red), var(--warm-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            max-width: 580px;
            margin-bottom: 2.2rem;
            font-size: 1.08rem;
            line-height: 1.75;
            color: rgba(5, 44, 79, 0.78);
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .primary-btn,
        .ghost-btn {
            padding: 0.85rem 1.9rem;
            border-radius: 999px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
        }

        .primary-btn {
            border: none;
            color: #fff;
            background: linear-gradient(120deg, var(--deep-green), var(--forest));
            box-shadow: 0 20px 36px rgba(0, 119, 182, 0.25);
        }

        .primary-btn::after,
        .ghost-btn::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 65%);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .primary-btn:hover::after,
        .ghost-btn:hover::after {
            opacity: 1;
        }

        .primary-btn:hover,
        .ghost-btn:hover {
            transform: translateY(-3px);
        }

        .ghost-btn {
            border: 1px solid rgba(0, 119, 182, 0.35);
            color: var(--forest);
            background: rgba(255, 255, 255, 0.82);
        }

        .hero-visual {
            position: relative;
            padding: 3rem;
            perspective: 1600px;
        }

        .visual-card {
            background: linear-gradient(160deg, rgba(0, 119, 182, 0.94), rgba(0, 180, 216, 0.88));
            border-radius: 28px;
            padding: 3rem 2.6rem;
            color: #fff;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            box-shadow: 0 32px 60px rgba(0, 119, 182, 0.32);
            animation: floatCard 12s ease-in-out infinite;
        }

        .visual-card::before,
        .visual-card::after {
            content: "";
            position: absolute;
            border-radius: 999px;
            mix-blend-mode: screen;
        }

        .visual-card::before {
            width: 260px;
            height: 260px;
            background: rgba(72, 202, 228, 0.36);
            top: -110px;
            right: -80px;
        }

        .visual-card::after {
            width: 210px;
            height: 210px;
            background: rgba(238, 249, 255, 0.22);
            bottom: -60px;
            left: -40px;
        }

        .visual-card h3 {
            margin: 0 0 1rem;
            font-size: 1.7rem;
            font-weight: 600;
        }

        .visual-card p {
            margin: 0 0 1.55rem;
            font-size: 1rem;
            line-height: 1.65;
        }

        .visual-badges {
            display: grid;
            gap: 0.75rem;
        }

        .visual-badges span {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.55rem 1.15rem;
            border-radius: 999px;
            border: 1px solid rgba(238, 249, 255, 0.4);
            background: rgba(255, 255, 255, 0.12);
            font-weight: 500;
        }

        section {
            padding: 4.8rem 0;
            position: relative;
            scroll-margin-top: 110px;
        }

        .content-section {
            position: relative;
            padding: clamp(3.8rem, 6vw, 5rem) 0;
        }

        .content-section::before {
            content: "";
            position: absolute;
            inset: 12% auto auto 50%;
            width: 60%;
            height: 120px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, rgba(0, 119, 182, 0.1), rgba(72, 202, 228, 0.1), rgba(0, 180, 216, 0.1));
            filter: blur(60px);
            opacity: 0.6;
            z-index: -1;
        }

        .section-heading {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            color: var(--deep-green);
            text-transform: uppercase;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.18em;
            padding: 0.55rem 1.1rem;
            border-radius: 999px;
            background: rgba(0, 119, 182, 0.08);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(0, 119, 182, 0.12);
            box-shadow: 0 14px 28px rgba(0, 119, 182, 0.08);
        }

        .section-title {
            margin: 0.6rem 0 1.4rem;
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--forest);
        }

        .profile-grid {
            display: grid;
            gap: 1.8rem;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            align-items: stretch;
        }

        .identity-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.85rem;
        }

        .identity-list li {
            display: grid;
            grid-template-columns: minmax(140px, max-content) 1fr;
            gap: 0.6rem;
            font-size: 0.95rem;
            align-items: start;
        }

        .identity-list strong {
            color: var(--forest);
            font-weight: 600;
            line-height: 1.4;
        }

        .emphasis-section {
            position: relative;
            background: radial-gradient(circle at 20% 20%, rgba(238, 249, 255, 0.85), transparent 70%),
                        linear-gradient(135deg, rgba(0, 119, 182, 0.08), rgba(72, 202, 228, 0.08));
        }

        .emphasis-section::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 0%, rgba(0, 180, 216, 0.08), transparent 55%);
            opacity: 0.85;
            pointer-events: none;
            z-index: -1;
        }

        .emphasis-section > .container {
            position: relative;
            z-index: 1;
        }

        .impact-grid {
            display: grid;
            gap: 1.8rem;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }

        .impact-card {
            position: relative;
            padding: 2.1rem;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(0, 119, 182, 0.16);
            box-shadow: 0 18px 34px rgba(0, 119, 182, 0.12);
            overflow: hidden;
            isolation: isolate;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .impact-card::before {
            content: "";
            position: absolute;
            inset: -30% -15% 45% -15%;
            background: linear-gradient(120deg, rgba(0, 180, 216, 0.18), rgba(72, 202, 228, 0.12));
            opacity: 0.85;
            z-index: -1;
            transform-origin: left;
            animation: glowSweep 8s ease-in-out infinite;
        }

        .impact-card:hover {
            transform: translateY(-10px) scale(1.01);
            box-shadow: 0 26px 48px rgba(0, 119, 182, 0.2);
        }

        .impact-card:hover::before {
            animation-play-state: paused;
        }

        .impact-number {
            display: flex;
            align-items: baseline;
            gap: 0.3rem;
            margin: 0 0 0.35rem;
        }

        .impact-number strong {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 600;
            font-size: 2.55rem;
            color: var(--forest);
            line-height: 1;
        }

        .impact-number span {
            font-size: 1.05rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--rich-red);
            letter-spacing: 0.05em;
        }

        .impact-card p {
            margin: 0;
            color: rgba(5, 44, 79, 0.75);
            line-height: 1.6;
        }

        .impact-card footer {
            margin-top: 1.1rem;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: rgba(5, 44, 79, 0.55);
        }

        @keyframes slowPulse {
            0%, 100% {
                opacity: 0.32;
            }
            50% {
                opacity: 0.5;
            }
        }

        @keyframes glowSweep {
            0%, 100% {
                transform: translateX(-40%) rotate(2deg);
            }
            50% {
                transform: translateX(60%) rotate(-3deg);
            }
        }

        .detail-block {
            padding: 1.8rem 2.1rem;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(0, 119, 182, 0.1);
            box-shadow: 0 18px 36px rgba(0, 119, 182, 0.12);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            height: 100%;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .detail-block:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(0, 119, 182, 0.16);
        }

        .detail-block h3 {
            margin: 0 0 0.8rem;
            font-size: 1.25rem;
            color: var(--forest);
        }
        .detail-block p,
        .detail-block ul {
            margin: 0;
            color: rgba(5, 44, 79, 0.78);
            line-height: 1.7;
        }

        .detail-block ul {
            padding-left: 1.2rem;
            display: grid;
            gap: 0.5rem;
        }

        .badge-strip {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .badge-strip span {
            padding: 0.4rem 0.9rem;
            background: rgba(72, 202, 228, 0.24);
            border-radius: 999px;
            color: var(--forest);
            font-weight: 500;
            font-size: 0.85rem;
        }

        .card-grid {
            display: grid;
            gap: 1.9rem;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }

        #program .card-grid {
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
        }

        #program .card {
            padding: 1.6rem;
            min-height: 100%;
        }

        @media (min-width: 1024px) {
            #program .card-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }

        .card {
            padding: 2.1rem;
            border-radius: 24px;
            background: #fff;
            border: 1px solid rgba(0, 119, 182, 0.12);
            box-shadow: 0 16px 32px rgba(0, 119, 182, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 119, 182, 0.12), rgba(72, 202, 228, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 22px 40px rgba(0, 119, 182, 0.15);
        }

        .card:hover::after {
            opacity: 1;
        }

        .card > * {
            position: relative;
            z-index: 1;
        }

        .card h3 {
            margin-top: 1.2rem;
            margin-bottom: 0.8rem;
            font-size: 1.22rem;
            color: var(--forest);
        }

        .card p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(5, 44, 79, 0.76);
        }

        .card-list {
            margin: 1rem 0 0;
            padding-left: 1.1rem;
            display: grid;
            gap: 0.5rem;
        }

        .mini-title {
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-weight: 600;
            color: rgba(5, 44, 79, 0.65);
            margin-bottom: 0.4rem;
        }

        .structure-grid {
            display: grid;
            gap: 1.6rem;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }

        .structure-card {
            padding: 2rem;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(0, 119, 182, 0.12);
            box-shadow: 0 18px 34px rgba(0, 119, 182, 0.1);
            position: relative;
        }

        .structure-card h3 {
            margin: 0 0 1rem;
            font-size: 1.15rem;
            color: var(--forest);
        }

        .structure-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.5rem;
            color: rgba(5, 44, 79, 0.78);
        }

        .structure-card strong {
            color: var(--rich-red);
        }

        .motto-banner {
            margin-top: 4rem;
            padding: 3rem;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(0, 119, 182, 0.95), rgba(0, 180, 216, 0.88));
            color: #fff;
            text-align: center;
            box-shadow: 0 34px 60px rgba(0, 119, 182, 0.32);
        }

        .motto-banner h3 {
            margin: 0;
            font-size: 1.95rem;
            letter-spacing: 0.02em;
        }

        .contact-section {
            background: #fff;
            border-top: 1px solid rgba(0, 119, 182, 0.08);
            border-bottom: 1px solid rgba(0, 119, 182, 0.08);
        }

        .contact-wrapper {
            display: grid;
            gap: 2.6rem;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }

        .contact-card {
            padding: 2.35rem;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(72, 202, 228, 0.2), rgba(0, 119, 182, 0.16));
            border: 1px solid rgba(0, 119, 182, 0.12);
            box-shadow: 0 18px 34px rgba(0, 119, 182, 0.12);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 42px rgba(0, 119, 182, 0.18);
        }

        .contact-card h4 {
            margin: 0 0 0.95rem;
            font-size: 1.18rem;
            color: var(--forest);
        }

        .contact-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.65rem;
            color: rgba(5, 44, 79, 0.78);
        }

        .news-section {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 255, 0.72));
        }

        .slider-shell {
            position: relative;
        }

        .slider-track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(var(--slide-width, 280px), 1fr);
            gap: 1.6rem;
            overflow: hidden;
            scroll-behavior: smooth;
        }

        .slider-track[data-slides="1"] {
            grid-auto-flow: row;
        }

        .slider-track::-webkit-scrollbar {
            display: none;
        }

        .slider-controls {
            display: flex;
            justify-content: flex-end;
            gap: 0.65rem;
            margin-bottom: 1rem;
        }

        .slider-controls.is-hidden {
            display: none;
        }

        .slider-btn {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            border: 1px solid rgba(0, 119, 182, 0.16);
            background: rgba(238, 249, 255, 0.9);
            color: var(--forest);
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .slider-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 28px rgba(0, 119, 182, 0.18);
        }

        .slider-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .news-card {
            padding: 2rem;
            border-radius: 26px;
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(0, 119, 182, 0.12);
            box-shadow: 0 20px 36px rgba(0, 119, 182, 0.12);
            display: flex;
            flex-direction: column;
            gap: 0.95rem;
            position: relative;
            overflow: hidden;
        }

        .news-media {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            padding-top: 60%;
            background: rgba(0, 119, 182, 0.08);
        }

        .news-media img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-card::after {
            content: "";
            position: absolute;
            inset: auto -30% -30% -30%;
            height: 60%;
            background: linear-gradient(135deg, rgba(0, 119, 182, 0.08), rgba(72, 202, 228, 0.08));
            z-index: -1;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            gap: 0.8rem;
            align-items: center;
            font-size: 0.82rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(5, 44, 79, 0.58);
        }

        .news-meta span {
            font-weight: 600;
            color: var(--rich-red);
        }

        .news-meta time {
            font-size: 0.82rem;
            letter-spacing: 0.05em;
        }

        .news-card h3 {
            margin: 0;
            font-size: 1.3rem;
            color: var(--forest);
        }

        .news-card p {
            margin: 0;
            color: rgba(5, 44, 79, 0.78);
            line-height: 1.65;
        }

        .news-actions {
            margin-top: auto;
        }

        .link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-weight: 600;
            color: var(--rich-red);
            letter-spacing: 0.04em;
        }

        .link-arrow:hover {
            color: var(--forest);
        }

        .documentation-section {
            background: rgba(255, 255, 255, 0.94);
        }

        .doc-card {
            padding: 2rem;
            border-radius: 26px;
            background: rgba(238, 249, 255, 0.96);
            border: 1px solid rgba(0, 119, 182, 0.08);
            box-shadow: 0 18px 32px rgba(0, 119, 182, 0.12);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .doc-head {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .doc-thumb {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(0, 119, 182, 0.12);
            flex-shrink: 0;
        }

        .doc-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .doc-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: rgba(0, 119, 182, 0.12);
            display: grid;
            place-items: center;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--forest);
        }

        .doc-card h3 {
            margin: 0;
            font-size: 1.2rem;
            color: var(--forest);
        }

        .doc-card p {
            margin: 0;
            color: rgba(5, 44, 79, 0.75);
            line-height: 1.6;
        }

        .doc-meta {
            display: flex;
            justify-content: space-between;
            gap: 0.7rem;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: rgba(5, 44, 79, 0.62);
        }

        .doc-meta span {
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--rich-red);
        }

        .doc-actions {
            margin-top: auto;
        }

        .ghost-btn.small {
            padding: 0.55rem 1.2rem;
            font-size: 0.85rem;
            border-width: 1.5px;
        }

        .empty-state {
            margin-top: 2rem;
            padding: 1.2rem 1.6rem;
            border-radius: 20px;
            background: rgba(0, 119, 182, 0.08);
            color: rgba(5, 44, 79, 0.72);
            text-align: center;
        }

        .footer {
            padding: 2.8rem 0 2.3rem;
            background: linear-gradient(180deg, rgba(0, 119, 182, 0.22), rgba(238, 249, 255, 0.94));
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: "";
            position: absolute;
            inset: -40% -20% auto;
            height: 280px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.2), transparent 70%);
            opacity: 0.6;
        }

        .footer-top {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .footer p {
            margin: 0;
            color: rgba(5, 44, 79, 0.72);
            line-height: 1.65;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.75rem;
        }

        .footer-nav a {
            color: rgba(5, 44, 79, 0.76);
            font-weight: 500;
            transition: color 0.35s ease;
        }

        .footer-nav a:hover {
            color: var(--forest);
        }

        .footer-bottom {
            margin-top: 2.2rem;
            padding-top: 1.6rem;
            border-top: 1px solid rgba(0, 119, 182, 0.12);
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: space-between;
            font-size: 0.9rem;
            color: rgba(5, 44, 79, 0.62);
        }

        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.65s ease, transform 0.65s ease;
            transition-delay: var(--reveal-delay, 0s);
        }

        .reveal-delay-05 { --reveal-delay: 0.05s; }
        .reveal-delay-10 { --reveal-delay: 0.1s; }
        .reveal-delay-12 { --reveal-delay: 0.12s; }
        .reveal-delay-16 { --reveal-delay: 0.16s; }
        .reveal-delay-18 { --reveal-delay: 0.18s; }
        .reveal-delay-20 { --reveal-delay: 0.2s; }
        .reveal-delay-22 { --reveal-delay: 0.22s; }
        .reveal-delay-24 { --reveal-delay: 0.24s; }
        .reveal-delay-26 { --reveal-delay: 0.26s; }
        .reveal-delay-28 { --reveal-delay: 0.28s; }
        .reveal-delay-32 { --reveal-delay: 0.32s; }
        .reveal-delay-33 { --reveal-delay: 0.33s; }
        .reveal-delay-34 { --reveal-delay: 0.34s; }
        .reveal-delay-35 { --reveal-delay: 0.35s; }
        .reveal-delay-36 { --reveal-delay: 0.36s; }
        .reveal-delay-38 { --reveal-delay: 0.38s; }
        .reveal-delay-40 { --reveal-delay: 0.4s; }
        .reveal-delay-43 { --reveal-delay: 0.43s; }
        .reveal-delay-44 { --reveal-delay: 0.44s; }
        .reveal-delay-48 { --reveal-delay: 0.48s; }

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

        @keyframes floatCard {
            0%, 100% {
                transform: rotateX(0deg) rotateY(0deg) translateY(0);
            }
            50% {
                transform: rotateX(6deg) rotateY(-6deg) translateY(-10px);
            }
        }

        @keyframes drift {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(30px, -20px) scale(1.05);
            }
        }

        @keyframes gradientWave {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes aurora {
            0% {
                transform: translate(-4%, -3%) scale(1);
            }
            50% {
                transform: translate(4%, 3%) scale(1.05);
            }
            100% {
                transform: translate(-2%, 1%) scale(1.02);
            }
        }
        @media (max-width: 940px) {
            nav ul {
                display: none;
            }

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

            .hero {
                padding-top: 4.8rem;
            }

            .hero-actions,
            .primary-btn,
            .ghost-btn,
            .cta-link {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .identity-list li {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .hero-visual {
                padding: 1.8rem;
            }

            .card-grid,
            .structure-grid,
            .profile-grid {
                grid-template-columns: 1fr;
            }

            .motto-banner {
                padding: 2.4rem;
            }
        }

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

            .reveal {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }
