:root {
            --primary: #1a5a9e;
            --primary-2: #2370c0;
            --accent: #1a5a9e;
            --accent-2: #a8cef0;
            --text: #1f2937;
            --muted: #667085;
            --bg: #f0f6fc;
            --card: #ffffff;
            --line: #d0e4f5;
            --shadow: 0 12px 40px rgba(26, 90, 158, .12);
            --radius: 20px;
            --max: 1240px;
        }

        * {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text)
        }

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

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

        .site-logo {
            width: auto;
            height: 56px;
            object-fit: contain
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #091828;
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, .10);
        }

        .nav {
            max-width: var(--max);
            margin: 0 auto;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0
        }

        .brand-mark {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: linear-gradient(135deg, #2370c0, #1a5a9e);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            box-shadow: var(--shadow)
        }

        .brand-text {
            min-width: 0
        }

        .brand-text strong {
            display: block;
            color: #fff;
            font-size: 15px;
            letter-spacing: .3px
        }

        .brand-text span {
            display: block;
            color: rgba(255, 255, 255, .62);
            font-size: 12px;
            margin-top: 2px
        }

        .menu {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: flex-end
        }

        .menu-item {
            position: relative
        }

        .menu a {
            color: rgba(255, 255, 255, .80);
            padding: 10px 14px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            transition: .2s ease
        }

        .media-trigger {
            color: rgba(255, 255, 255, .80);
            background: transparent;
            border: 0;
            padding: 10px 14px;
            border-radius: 999px;
            font: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: .2s ease
        }

        .menu-arrow {
            font-size: 16px;
            line-height: 1;
            transition: transform .2s ease
        }

        .menu a:hover,
        .menu a.active,
        .media-trigger:hover,
        .has-submenu:hover .media-trigger,
        .has-submenu:focus-within .media-trigger,
        .has-submenu.open .media-trigger {
            background: rgba(255, 255, 255, .12);
            color: #fff
        }

        .menu .cta {
            background: #2370c0;
            color: #fff
        }

        .menu .cta:hover {
            background: #1a5a9e
        }

        .mobile-menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 12px;
            background: rgba(255, 255, 255, .08);
            color: #fff;
            padding: 10px;
            cursor: pointer
        }

        .mobile-menu-toggle span {
            display: block;
            height: 2px;
            width: 100%;
            background: currentColor;
            border-radius: 999px;
            transition: transform .2s ease, opacity .2s ease
        }

        .mobile-menu-toggle span + span {
            margin-top: 6px
        }

        .mobile-menu-toggle.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg)
        }

        .mobile-menu-toggle.open span:nth-child(2) {
            opacity: 0
        }

        .mobile-menu-toggle.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg)
        }

        .submenu {
            position: absolute;
            top: calc(100% + 12px);
            left: 0;
            min-width: 240px;
            background: #ffffff;
            border-radius: 18px;
            padding: 10px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all .22s ease;
            z-index: 200
        }

        .has-submenu:hover .submenu,
        .has-submenu:focus-within .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0)
        }

        .submenu a {
            display: block;
            color: #1f2937;
            border-radius: 12px;
            padding: 12px 14px;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 600;
            background: transparent
        }

        .submenu a:hover,
        .submenu a.active {
            background: #f3f6fa;
            color: #1a5a9e
        }

        .has-submenu:hover .menu-arrow,
        .has-submenu.open .menu-arrow {
            transform: rotate(180deg)
        }

        .page {
            display: none;
            min-height: calc(100vh - 76px)
        }

        .page.active {
            display: block
        }

        .site-alert {
            max-width: var(--max);
            margin: 18px auto 0;
            padding: 14px 18px;
            border-radius: 16px;
            font-weight: 700
        }

        .site-alert-ok {
            background: #e7f7ef;
            border: 1px solid #b7e6cb;
            color: #17633b
        }

        .site-alert-error {
            background: #fff1f1;
            border: 1px solid #facaca;
            color: #9f1d1d
        }

        .hero {
            position: relative;
            min-height: clamp(560px, 64vh, 680px);
            background: #0d3666;
            overflow: hidden;
        }

        .hero-slider {
            position: relative;
            min-height: clamp(560px, 64vh, 680px)
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            pointer-events: none;
            transition: opacity .7s ease;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
            pointer-events: auto
        }

        .hero-slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(8, 20, 34, .72), rgba(8, 20, 34, .18));
            z-index: 1;
        }

        .hero-slide::after {
            content: none;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: var(--max);
            margin: 0 auto;
            min-height: clamp(560px, 64vh, 680px);
            padding: 64px 20px 72px;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) 360px;
            align-items: end;
            gap: 34px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(163, 210, 255, .18);
            border: 1px solid rgba(163, 210, 255, .35);
            color: #a8d4f5;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px
        }

        .hero h1 {
            margin: 0;
            color: #fff;
            font-size: clamp(34px, 6vw, 68px);
            line-height: 1.04;
            max-width: 760px
        }

        .hero p {
            margin: 18px 0 0;
            color: rgba(255, 255, 255, .84);
            font-size: 17px;
            line-height: 1.8;
            max-width: 680px
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 28px
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 20px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 15px;
            transition: .2s ease;
        }

        .btn-primary {
            background: #1a5a9e;
            color: #fff;
            box-shadow: var(--shadow)
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            background: #2370c0
        }

        .btn-secondary {
            background: rgba(255, 255, 255, .12);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .16)
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, .18)
        }

        .hero-side {
            display: grid;
            gap: 14px
        }

        .float-card {
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .16);
            backdrop-filter: blur(10px);
            border-radius: 22px;
            padding: 20px;
            color: #fff
        }

        .float-card .label {
            font-size: 12px;
            color: rgba(255, 255, 255, .62);
            margin-bottom: 8px
        }

        .float-card .value {
            font-size: 30px;
            font-weight: 800;
            color: #fff
        }

        .float-card small {
            display: block;
            margin-top: 6px;
            color: rgba(255, 255, 255, .72);
            line-height: 1.6
        }

        .hero-controls {
            position: absolute;
            left: 50%;
            bottom: 24px;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 14px
        }

        .hero-dots {
            display: flex;
            gap: 10px
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .34);
            cursor: pointer;
            transition: .2s
        }

        .hero-dot.active {
            width: 34px;
            background: #5aaae8
        }

        .hero-arrow {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            cursor: pointer;
            background: rgba(255, 255, 255, .12);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .14);
            font-size: 18px
        }

        .section {
            padding: 76px 20px
        }

        .container {
            max-width: var(--max);
            margin: 0 auto
        }

        .section-head {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 20px;
            margin-bottom: 26px;
            flex-wrap: wrap
        }

        .section-tag {
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 10px
        }

        .section-title {
            font-size: clamp(28px, 4vw, 42px);
            line-height: 1.1;
            margin: 0;
            color: var(--primary)
        }

        .section-sub {
            margin: 10px 0 0;
            color: var(--muted);
            max-width: 720px;
            line-height: 1.8;
            font-size: 15px
        }

        .stats {
            margin-top: 0;
            padding: 34px 0 0;
            position: relative;
            z-index: 10
        }

        .quick-access {
            padding: 28px 20px 0
        }

        .quick-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px
        }

        .quick-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 20px;
            padding: 22px;
            box-shadow: 0 8px 26px rgba(15, 47, 79, .06);
            transition: .22s ease
        }

        .quick-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow)
        }

        .quick-card span {
            color: var(--accent);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .12em
        }

        .quick-card strong {
            display: block;
            margin-top: 10px;
            color: var(--primary);
            font-size: 20px
        }

        .quick-card small {
            display: block;
            margin-top: 8px;
            color: var(--muted);
            line-height: 1.7;
            font-size: 13px
        }

        .stats-grid {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px
        }

        .stat {
            background: #fff;
            border: 1px solid rgba(229, 231, 235, .9);
            border-radius: 22px;
            min-height: 156px;
            padding: 24px 26px;
            box-shadow: var(--shadow)
        }

        .stat .n {
            font-size: clamp(30px, 2.8vw, 42px);
            line-height: 1;
            font-weight: 800;
            color: var(--primary);
            overflow-wrap: anywhere
        }

        .stat .t {
            margin-top: 6px;
            font-size: 14px;
            font-weight: 700;
            color: #344054
        }

        .stat .d {
            margin-top: 10px;
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: center
        }

        .about-media {
            position: relative
        }

        .about-media img {
            border-radius: 28px;
            box-shadow: var(--shadow);
            height: 100%;
            object-fit: cover;
            min-height: 470px
        }

        .about-badge {
            position: absolute;
            right: 24px;
            bottom: 24px;
            background: #fff;
            border-radius: 20px;
            padding: 18px 20px;
            box-shadow: var(--shadow);
            max-width: 260px
        }

        .about-badge strong {
            display: block;
            color: var(--primary);
            font-size: 18px
        }

        .about-badge span {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6
        }

        .feature-list {
            display: grid;
            gap: 14px;
            margin-top: 26px
        }

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

        .feature-icon {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: rgba(26, 90, 158, .12);
            color: #1a5a9e;
            display: grid;
            place-items: center;
            font-weight: 800;
            flex-shrink: 0
        }

        .feature h4 {
            margin: 0 0 6px;
            color: var(--primary);
            font-size: 17px
        }

        .feature p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.75
        }

        .soft-section {
            background: #eaf4fd
        }

        .info-grid,
        .team-grid,
        .story-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px
        }

        .team-grid,
        .story-grid {
            grid-template-columns: repeat(3, 1fr)
        }

        .info-panel,
        .team-card,
        .identity-box,
        .doc-list div,
        .faq-list details,
        .story-grid blockquote {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 22px;
            padding: 24px;
            box-shadow: 0 8px 26px rgba(15, 47, 79, .06)
        }

        .info-panel h3,
        .team-card h3 {
            margin: 0 0 10px;
            color: var(--primary);
            font-size: 24px;
            line-height: 1.25
        }

        .info-panel p,
        .team-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.8
        }

        .team-card span {
            display: inline-block;
            margin-bottom: 12px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase
        }

        .team-card.featured {
            background: linear-gradient(135deg, #0d3666, #1a5a9e);
            color: #fff
        }

        .team-card.featured h3,
        .team-card.featured p,
        .team-card.featured span {
            color: #fff
        }

        .identity-box {
            display: grid;
            grid-template-columns: 150px 1fr 1fr;
            align-items: center;
            gap: 16px
        }

        .identity-box img {
            max-height: 96px;
            object-fit: contain
        }

        .identity-box strong,
        .doc-list strong {
            display: block;
            color: var(--primary)
        }

        .identity-box span,
        .doc-list span {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            line-height: 1.6
        }

        .spaced {
            margin-top: 54px
        }

        .project-card .card-body p {
            margin-bottom: 10px
        }

        .doc-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px
        }

        .story-grid blockquote {
            margin: 0
        }

        .story-grid p {
            margin: 0;
            color: var(--text);
            line-height: 1.8;
            font-size: 16px
        }

        .story-grid cite {
            display: block;
            margin-top: 14px;
            color: var(--accent);
            font-style: normal;
            font-weight: 800;
            font-size: 13px
        }

        .mentor-hero {
            background: linear-gradient(135deg, #0d3666 0%, var(--primary) 100%);
            color: #fff;
            text-align: center;
            padding: 84px 20px 34px
        }

        .mentor-hero h1 {
            margin: 0;
            font-size: clamp(36px, 5vw, 62px);
            line-height: 1.05;
            font-weight: 800;
            color: #fff
        }

        .mentor-hero span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 34px;
            padding: 11px 22px;
            border-radius: 999px;
            background: var(--accent-2);
            color: var(--primary);
            font-weight: 800;
            font-size: 22px
        }

        .mentor-section {
            background: #fff;
            padding: 34px 20px 76px
        }

        .mentor-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px 34px
        }

        .mentor-card {
            min-height: 340px;
            background: #fff;
            border-radius: 18px;
            padding: 36px 26px 28px;
            text-align: center;
            box-shadow: 0 14px 36px rgba(20, 48, 70, .08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start
        }

        .mentor-photo {
            width: min(210px, 100%);
            aspect-ratio: 1;
            border-radius: 50%;
            border: 7px solid var(--primary-2);
            overflow: hidden;
            background: #eef5fb;
            box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .8)
        }

        .mentor-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .mentor-placeholder {
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;
            color: var(--primary);
            font-weight: 800;
            font-size: 68px
        }

        .mentor-card p {
            margin: 24px 0 0;
            color: var(--primary-2);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.35
        }

        .mentor-card h3 {
            margin: 20px 0 0;
            color: #202735;
            font-size: 21px;
            line-height: 1.25;
            font-weight: 800
        }

        .empty-state {
            background: #f4fbfa;
            border: 1px solid #ccebe7;
            border-radius: 18px;
            color: var(--primary);
            padding: 34px;
            text-align: center;
            font-weight: 700
        }

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

        .card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 26px rgba(15, 47, 79, .06);
            transition: .22s ease
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 36px rgba(15, 47, 79, .12)
        }

        .card img {
            height: 220px;
            width: 100%;
            object-fit: cover
        }

        .card-body {
            padding: 22px
        }

        .meta {
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase
        }

        .card h3 {
            margin: 12px 0 10px;
            color: var(--primary);
            font-size: 21px;
            line-height: 1.35
        }

        .card p {
            margin: 0 0 18px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8
        }

        .card a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 700
        }

        .video-card {
            cursor: pointer;
            position: relative
        }

        .video-card::after {
            content: "";
            position: absolute;
            top: 18px;
            right: 18px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(20, 184, 166, .92);
            color: #fff;
            display: grid;
            place-items: center;
            box-shadow: var(--shadow)
        }

        .video-card::before {
            content: "";
            position: absolute;
            top: 32px;
            right: 31px;
            z-index: 2;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 12px solid #fff
        }

        .video-card iframe {
            width: 100%;
            aspect-ratio: 16 / 9;
            border: 0;
            display: block
        }

        .video-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 28px;
            background: rgba(8, 22, 36, .82)
        }

        .video-modal.open {
            display: flex
        }

        .video-modal-box {
            width: min(1120px, 96vw);
            background: #06111f;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
            position: relative
        }

        .video-modal iframe {
            width: 100%;
            aspect-ratio: 16 / 9;
            border: 0;
            display: block
        }

        .video-modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 0;
            background: rgba(255, 255, 255, .92);
            color: #0c1b2c;
            font-size: 24px;
            line-height: 1;
            cursor: pointer
        }

        .highlight {
            background: linear-gradient(135deg, #0d3666 0%, #1a5a9e 100%);
            color: #fff;
            border-radius: 32px;
            padding: 36px;
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 24px;
            align-items: center;
            overflow: hidden
        }

        .highlight h3 {
            margin: 0;
            font-size: 34px;
            line-height: 1.15
        }

        .highlight p {
            margin: 14px 0 0;
            color: rgba(255, 255, 255, .80);
            line-height: 1.8
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px
        }

        .mini-box {
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 20px;
            padding: 20px
        }

        .mini-box strong {
            display: block;
            font-size: 26px
        }

        .mini-box span {
            display: block;
            margin-top: 6px;
            color: rgba(255, 255, 255, .72);
            font-size: 13px
        }

        .timeline {
            display: grid;
            gap: 16px
        }

        .timeline-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 22px;
            padding: 20px 20px 20px 18px;
            display: grid;
            grid-template-columns: 110px 1fr auto;
            gap: 18px;
            align-items: center
        }

        .datebox {
            background: var(--primary);
            color: #fff;
            border-radius: 18px;
            padding: 16px;
            text-align: center
        }

        .datebox strong {
            display: block;
            font-size: 30px;
            color: var(--accent-2);
            line-height: 1
        }

        .datebox span {
            display: block;
            margin-top: 6px;
            font-size: 12px;
            color: rgba(255, 255, 255, .72);
            letter-spacing: .08em;
            text-transform: uppercase
        }

        .timeline-item h4 {
            margin: 0;
            color: var(--primary);
            font-size: 20px
        }

        .timeline-item p {
            margin: 8px 0 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.75
        }

        .timeline-item.event-card {
            grid-template-columns: 150px 86px minmax(0, 1fr) auto;
            padding: 14px;
            gap: 18px;
            border-radius: 26px;
            box-shadow: 0 10px 30px rgba(15, 47, 79, .06)
        }

        .event-media {
            width: 150px;
            height: 104px;
            border-radius: 18px;
            overflow: hidden;
            background: #eef6ff;
            flex-shrink: 0
        }

        .event-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block
        }

        .event-media-empty {
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;
            color: var(--primary);
            font-size: 13px;
            font-weight: 800
        }

        .event-card .datebox {
            border-radius: 18px;
            min-height: 104px;
            display: grid;
            place-items: center;
            align-content: center;
            padding: 14px 10px
        }

        .event-card .datebox strong {
            font-size: 34px
        }

        .event-main {
            min-width: 0
        }

        .chip {
            padding: 10px 14px;
            border-radius: 999px;
            background: #daeaf8;
            color: #1a5a9e;
            font-weight: 700;
            font-size: 12px
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px
        }

        .gallery a {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            min-height: 240px;
            box-shadow: var(--shadow)
        }

        .gallery a:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
            min-height: 496px
        }

        .gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .35s ease
        }

        .gallery a:hover img {
            transform: scale(1.05)
        }

        .gallery span {
            position: absolute;
            left: 16px;
            bottom: 16px;
            background: rgba(12, 27, 44, .70);
            color: #fff;
            padding: 10px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600
        }

        .partners {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px
        }

        .partner {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 22px;
            padding: 22px 18px;
            display: grid;
            place-items: center;
            align-content: center;
            gap: 10px;
            min-height: 120px;
            color: var(--primary);
            font-weight: 800;
            font-size: 18px;
            text-align: center;
            box-shadow: 0 6px 24px rgba(15, 47, 79, .05)
        }

        .partner img {
            max-width: 150px;
            max-height: 68px;
            object-fit: contain
        }

        .partner span {
            display: block;
            color: var(--muted);
            font-size: 13px;
            font-weight: 500;
            line-height: 1.5
        }

        .faq-list {
            display: grid;
            gap: 14px
        }

        .faq-list summary {
            cursor: pointer;
            color: var(--primary);
            font-weight: 800;
            font-size: 18px
        }

        .faq-list p {
            margin: 12px 0 0;
            color: var(--muted);
            line-height: 1.8
        }

        .map-frame {
            width: 100%;
            height: 280px;
            border: 0;
            border-radius: 22px;
            margin-top: 18px;
            box-shadow: 0 8px 26px rgba(15, 47, 79, .06)
        }

        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 26px
        }

        .contact-card,
        .form-card,
        .admin-preview {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 28px;
            padding: 28px;
            box-shadow: var(--shadow)
        }

        .contact-row {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 16px 0;
            border-bottom: 1px solid #eef2f6
        }

        .contact-row:last-child {
            border-bottom: none;
            padding-bottom: 0
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: #eef5fb;
            color: var(--primary);
            display: grid;
            place-items: center;
            font-weight: 800;
            flex-shrink: 0
        }

        .contact-row strong {
            display: block;
            color: var(--primary);
            font-size: 16px
        }

        .contact-row span {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px
        }

        .input,
        .textarea {
            width: 100%;
            border: 1px solid var(--line);
            background: #f9fafb;
            border-radius: 16px;
            padding: 14px 16px;
            font: inherit;
            color: var(--text)
        }

        .textarea {
            min-height: 150px;
            resize: vertical
        }

        .submit {
            border: none;
            cursor: pointer;
            margin-top: 14px
        }

        .footer {
            background: #091828;
            color: #fff;
            margin-top: 30px
        }

        .footer-top {
            max-width: var(--max);
            margin: 0 auto;
            padding: 56px 20px 28px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 28px
        }

        .footer p,
        .footer a {
            color: rgba(255, 255, 255, .68);
            font-size: 14px;
            line-height: 1.8
        }

        .footer h4 {
            margin: 0 0 14px;
            font-size: 16px;
            color: #fff
        }

        .footer-brand strong {
            display: block;
            font-size: 22px;
            margin-bottom: 12px
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 18px 20px
        }

        .footer-bottom .container {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, .56);
            font-size: 13px
        }

        .developer-credit {
            border-top: 1px solid rgba(255, 255, 255, .08);
            background: #091828;
            min-height: 46px;
            padding: 10px 20px 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: rgba(255, 255, 255, .55);
            font-size: 13px;
            text-align: center
        }

        .developer-credit strong {
            color: #534dff;
            font-weight: 700
        }

        .developer-logo {
            width: 16px;
            height: 16px;
            object-fit: contain;
            flex: 0 0 16px;
            filter: drop-shadow(0 0 10px rgba(83, 77, 255, .32))
        }

        .subhero {
            position: relative;
            padding: 90px 20px 70px;
            background-size: cover;
            background-position: center;
            color: #fff;
            overflow: hidden
        }

        .subhero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(8, 20, 34, .86), rgba(8, 20, 34, .56))
        }

        .subhero .container {
            position: relative;
            z-index: 2
        }

        .subhero .eyebrow {
            margin-bottom: 14px
        }

        .subhero h1 {
            margin: 0;
            font-size: clamp(30px, 4.6vw, 56px)
        }

        .subhero p {
            margin: 14px 0 0;
            max-width: 800px;
            color: rgba(255, 255, 255, .82);
            line-height: 1.9
        }

        .admin-shell {
            background: linear-gradient(135deg, #0d3666 0%, #1a5a9e 100%);
            border-radius: 32px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 260px 1fr;
            min-height: 620px;
            box-shadow: var(--shadow)
        }

        .admin-side {
            padding: 28px 20px;
            border-right: 1px solid rgba(255, 255, 255, .08)
        }

        .admin-main {
            padding: 28px
        }

        .admin-side .brand-text strong,
        .admin-side .brand-text span {
            color: #fff
        }

        .admin-nav {
            margin-top: 28px;
            display: grid;
            gap: 8px
        }

        .admin-nav a {
            padding: 14px 16px;
            border-radius: 16px;
            color: rgba(255, 255, 255, .74);
            font-weight: 600;
            background: transparent
        }

        .admin-nav a.active,
        .admin-nav a:hover {
            background: rgba(255, 255, 255, .10);
            color: #fff
        }

        .admin-top {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 24px
        }

        .admin-top h2 {
            margin: 0;
            color: #fff;
            font-size: 30px
        }

        .admin-kpis {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 22px
        }

        .admin-kpi {
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 22px;
            padding: 22px;
            color: #fff
        }

        .admin-kpi strong {
            display: block;
            font-size: 32px;
            color: #fff
        }

        .admin-kpi span {
            display: block;
            margin-top: 8px;
            color: rgba(255, 255, 255, .65);
            font-size: 13px
        }

        .admin-table {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 24px;
            padding: 14px;
            overflow: auto
        }

        table {
            width: 100%;
            border-collapse: collapse
        }

        th,
        td {
            text-align: left;
            padding: 16px 14px
        }

        th {
            color: rgba(255, 255, 255, .58);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .08em;
            border-bottom: 1px solid rgba(255, 255, 255, .10)
        }

        td {
            color: #fff;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            font-size: 14px
        }

        .status {
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            display: inline-block
        }

        .ok {
            background: rgba(108, 219, 166, .16);
            color: #84f0c3
        }

        .warn {
            background: rgba(244, 188, 89, .16);
            color: #ffd67c
        }

        .off {
            background: rgba(255, 124, 124, .16);
            color: #ff9b9b
        }

        @media (max-width: 1100px) {

            .hero-inner,
            .grid-2,
            .highlight,
            .contact-wrap,
            .footer-top,
            .admin-shell {
                grid-template-columns: 1fr
            }

            .hero-side {
                grid-template-columns: repeat(3, 1fr)
            }

            .stats-grid,
            .cards,
            .quick-grid,
            .team-grid,
            .story-grid,
            .doc-list,
            .mentor-grid,
            .partners,
            .admin-kpis {
                grid-template-columns: repeat(2, 1fr)
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr)
            }

            .gallery a:nth-child(1) {
                min-height: 360px
            }
        }

        @media (max-width: 760px) {
            .nav {
                flex-direction: column;
                align-items: flex-start
            }

            .menu {
                width: 100%;
                justify-content: flex-start;
                overflow: auto;
                flex-wrap: nowrap
            }

            .hero-inner {
                padding-top: 54px
            }

            .hero-side {
                grid-template-columns: 1fr
            }

            .stats-grid,
            .cards,
            .quick-grid,
            .info-grid,
            .team-grid,
            .story-grid,
            .doc-list,
            .mentor-grid,
            .partners,
            .gallery,
            .form-grid,
            .admin-kpis {
                grid-template-columns: 1fr
            }

            .mentor-card {
                min-height: 300px
            }

            .identity-box {
                grid-template-columns: 1fr
            }

            .timeline-item {
                grid-template-columns: 1fr;
                align-items: flex-start
            }

            .timeline-item.event-card {
                grid-template-columns: 120px minmax(76px, 92px) minmax(0, 1fr);
                align-items: center
            }

            .event-card .chip {
                grid-column: 3;
                justify-self: flex-start
            }

            .event-media {
                width: 120px;
                height: 92px
            }

            .gallery a:nth-child(1) {
                grid-column: span 1;
                grid-row: span 1;
                min-height: 260px
            }

            .about-media img {
                min-height: 300px
            }

            .section {
                padding: 58px 18px
            }

            .footer-bottom .container {
                flex-direction: column
            }

            .topbar {
                background: #f4f4f4;
                border-bottom: 1px solid #e5e7eb;
            }

            .nav {
                max-width: 1240px;
                margin: auto;
                padding: 14px 20px;

                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            /* LOGO */
            .site-logo {
                height: 50px;
                width: auto;
            }

            /* MENU */
            .menu {
                display: flex;
                gap: 26px;
                align-items: center;
            }

            .menu a {
                font-size: 16px;
                font-weight: 600;
                color: #374151;
                padding: 10px 16px;
                border-radius: 10px;
                transition: 0.2s;
            }

            .menu a.active {
                background: #0f766e;
                color: #fff;
            }

            .menu a:hover {
                background: #e5e7eb;
            }

            /* SOCIAL */
            .social {
                display: flex;
                gap: 10px;
            }

            .social a {
                width: 36px;
                height: 36px;
                background: #e5e7eb;
                border-radius: 50%;
                display: grid;
                place-items: center;
                font-weight: bold;
                color: #0f766e;
                transition: 0.2s;
            }

            .social a:hover {
                background: #0f766e;
                color: #fff;
            }
        }

        @media (max-width: 768px) {
            .topbar {
                background: #091828;
                border-bottom: 1px solid rgba(255, 255, 255, .10);
            }

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

            .menu {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                overflow: visible;
                flex-wrap: nowrap;
            }

            .menu a,
            .media-trigger {
                width: 100%;
                justify-content: space-between;
                border-radius: 14px;
                padding: 12px 14px;
                color: rgba(255, 255, 255, .82);
            }

            .menu a.active,
            .menu a:hover,
            .media-trigger:hover,
            .has-submenu.open .media-trigger {
                background: rgba(255, 255, 255, .12);
                color: #fff;
            }

            .submenu {
                position: static;
                min-width: 100%;
                margin-top: 8px;
                border-radius: 14px;
                box-shadow: none;
                padding: 8px;
                background: rgba(255, 255, 255, .06);
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
            }

            .has-submenu:hover .submenu {
                display: none;
            }

            .has-submenu.open .submenu {
                display: block;
            }

            .submenu a {
                color: #fff;
                background: rgba(255, 255, 255, .06);
                margin-bottom: 6px;
                border-radius: 12px;
            }

            .submenu a:last-child {
                margin-bottom: 0;
            }

            .submenu a:hover,
            .submenu a.active {
                background: rgba(255, 255, 255, .14);
                color: #fff;
            }
        }

        @media (max-width: 900px) {
            body {
                overflow-x: hidden
            }

            .topbar {
                background: #091828;
                border-bottom: 1px solid rgba(255, 255, 255, .10)
            }

            .nav {
                width: 100%;
                max-width: none;
                padding: 10px 14px;
                display: grid;
                grid-template-columns: 1fr auto;
                align-items: center;
                gap: 10px
            }

            .brand {
                min-width: 0
            }

            .site-logo {
                height: 46px;
                max-width: 180px
            }

            .mobile-menu-toggle {
                display: block;
                justify-self: end
            }

            .menu {
                grid-column: 1 / -1;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                padding: 0;
                transition: max-height .25s ease, padding .25s ease
            }

            .menu.open {
                max-height: calc(100vh - 76px);
                overflow-y: auto;
                padding: 10px 0 8px
            }

            .menu a,
            .media-trigger {
                width: 100%;
                min-height: 44px;
                justify-content: space-between;
                border-radius: 12px;
                padding: 12px 14px;
                color: rgba(255, 255, 255, .86);
                font-size: 15px;
                background: rgba(255, 255, 255, .04)
            }

            .menu a.active,
            .menu a:hover,
            .media-trigger:hover,
            .has-submenu.open .media-trigger {
                background: rgba(255, 255, 255, .13);
                color: #fff
            }

            .has-submenu:hover .submenu {
                opacity: 1;
                visibility: visible;
                transform: none
            }

            .submenu {
                position: static;
                min-width: 100%;
                margin-top: 6px;
                border-radius: 12px;
                box-shadow: none;
                padding: 8px;
                background: rgba(255, 255, 255, .06);
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none
            }

            .has-submenu:hover .submenu {
                display: none
            }

            .has-submenu.open .submenu {
                display: block
            }

            .submenu a {
                color: #fff;
                background: rgba(255, 255, 255, .06);
                margin-bottom: 6px;
                border-radius: 10px;
                white-space: normal
            }

            .hero,
            .hero-slider,
            .hero-inner {
                min-height: 68vh
            }

            .hero-inner {
                display: flex;
                align-items: flex-end;
                padding: 52px 18px 92px
            }

            .hero h1 {
                font-size: clamp(30px, 10vw, 44px);
                line-height: 1.08
            }

            .hero p,
            .subhero p {
                font-size: 15px;
                line-height: 1.7
            }

            .hero-controls {
                bottom: 18px
            }

            .hero-arrow {
                width: 40px;
                height: 40px
            }

            .stats {
                margin-top: 0
            }

            .stats-grid,
            .quick-grid,
            .cards,
            .info-grid,
            .team-grid,
            .story-grid,
            .doc-list,
            .mentor-grid,
            .partners,
            .contact-wrap,
            .form-grid,
            .grid-2,
            .highlight,
            .highlight-grid,
            .footer-top {
                grid-template-columns: 1fr
            }

            .stats-grid,
            .quick-grid {
                padding-left: 0;
                padding-right: 0
            }

            .section,
            .mentor-section {
                padding: 48px 16px
            }

            .subhero {
                padding: 64px 16px 52px
            }

            .subhero h1,
            .section-title {
                font-size: clamp(26px, 8vw, 34px)
            }

            .section-head {
                align-items: flex-start
            }

            .card img {
                height: 190px
            }

            .timeline-item {
                grid-template-columns: 1fr;
                align-items: flex-start
            }

            .datebox {
                width: 100%
            }

            .timeline-item.event-card {
                grid-template-columns: 1fr;
                padding: 14px
            }

            .event-media {
                width: 100%;
                height: 190px
            }

            .event-card .datebox {
                width: 100%;
                min-height: auto
            }

            .event-card .chip {
                grid-column: auto
            }

            .gallery {
                grid-template-columns: 1fr
            }

            .gallery a,
            .gallery a:nth-child(1) {
                grid-column: auto;
                grid-row: auto;
                min-height: 260px
            }

            .gallery span {
                left: 12px;
                right: 12px;
                bottom: 12px;
                border-radius: 12px;
                white-space: normal
            }

            .about-media img {
                min-height: 280px;
                width: 100%
            }

            .about-badge {
                position: static;
                max-width: none;
                margin-top: 12px
            }

            .identity-box {
                grid-template-columns: 1fr
            }

            .contact-card,
            .form-card,
            .info-panel,
            .team-card,
            .doc-list div,
            .faq-list details,
            .story-grid blockquote {
                border-radius: 18px;
                padding: 20px
            }

            .contact-row {
                gap: 12px
            }

            .input,
            .textarea {
                font-size: 16px
            }

            .mentor-hero {
                padding: 64px 16px 26px
            }

            .mentor-hero h1 {
                font-size: clamp(34px, 10vw, 46px)
            }

            .mentor-hero span {
                margin-top: 22px;
                font-size: 17px
            }

            .mentor-card {
                min-height: auto;
                padding: 28px 20px
            }

            .mentor-photo {
                width: min(210px, 72vw)
            }

            .partner {
                min-height: 96px;
                font-size: 16px;
                text-align: center
            }

            .map-frame {
                height: 230px
            }

            .footer-top {
                padding: 42px 18px 24px
            }

            .footer-bottom .container {
                flex-direction: column
            }
        }

        @media (max-width: 420px) {
            .site-logo {
                height: 40px;
                max-width: 150px
            }

            .hero,
            .hero-slider,
            .hero-inner {
                min-height: 62vh
            }

            .hero-inner {
                padding: 42px 16px 86px
            }

            .btn {
                width: 100%;
                padding: 13px 16px
            }

            .stat,
            .quick-card,
            .card-body,
            .mini-box {
                padding: 18px
            }

            .mentor-card h3 {
                font-size: 19px
            }
        }
