    :root {
      --navy: #0f2d4a;
      --navy-2: #163d63;
      --blue: #2d6ea3;
      --sky: #eaf3fa;
      --text: #1f2d3d;
      --muted: #6c7a89;
      --accent: #b13d6d;
      --white: #ffffff;
      --border: #dbe4ec;
      --shadow: 0 12px 30px rgba(7, 28, 53, 0.12);
      --radius: 18px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--text);
      background: #f4f7fb;
      line-height: 1.5;
    }

    body.splash-active {
      overflow: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

    .splash {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: grid;
      place-items: center;
      padding: 24px;
      background:
        radial-gradient(circle at top, rgba(45,110,163,0.22), transparent 38%),
        linear-gradient(135deg, #07111c, #0e2237 58%, #132f4e);
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .splash.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .splash-panel {
      width: min(760px, 100%);
      border: 1px solid rgba(129, 179, 224, 0.2);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
      background: rgba(5, 11, 19, 0.88);
      backdrop-filter: blur(14px);
    }

    .splash-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 18px;
      border-bottom: 1px solid rgba(129, 179, 224, 0.12);
      background: rgba(255,255,255,0.03);
    }

    .splash-dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
    }

    .splash-dot:nth-child(1) { background: #ff6b6b; }
    .splash-dot:nth-child(2) { background: #ffd166; }
    .splash-dot:nth-child(3) { background: #06d6a0; }

    .splash-label {
      margin-left: 8px;
      color: rgba(212, 231, 248, 0.72);
      font: 600 13px/1.2 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .splash-screen {
      min-height: 280px;
      padding: 30px 24px;
      color: #d8f3ff;
      font: 500 clamp(17px, 2.4vw, 26px)/1.5 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    }

    .splash-prefix {
      color: #7dd3fc;
      margin-right: 12px;
    }

    .splash-text::after {
      content: "";
      display: inline-block;
      width: 0.6em;
      height: 1.1em;
      margin-left: 4px;
      vertical-align: -0.15em;
      background: #8be9fd;
      animation: blink 0.9s steps(1) infinite;
    }

    .page-shell {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

    .topbar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .topbar-inner {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      color: var(--navy);
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--blue), var(--navy));
      position: relative;
      box-shadow: var(--shadow);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      background: rgba(255,255,255,0.85);
      border-radius: 8px;
    }

    .brand-mark::before {
      width: 18px;
      height: 18px;
      left: 7px;
      top: 7px;
    }

    .brand-mark::after {
      width: 14px;
      height: 14px;
      right: 7px;
      bottom: 7px;
    }

    .brand-text small {
      display: block;
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .brand-text span {
      display: block;
      font-size: 18px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #314659;
      font-size: 15px;
      font-weight: 600;
    }

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

    .hero {
      background:
        linear-gradient(110deg, rgba(15,45,74,0.88), rgba(22,61,99,0.66)),
        url('https://placehold.co/1600x900?text=Placeholder+Image') center/cover no-repeat;
      color: var(--white);
      padding: 88px 0 110px;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -100px -80px auto;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 68%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 32px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.2);
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .hero h1 {
      font-size: clamp(38px, 6vw, 62px);
      line-height: 1.06;
      margin: 0 0 18px;
      max-width: 720px;
    }

    .hero p {
      margin: 0 0 28px;
      max-width: 620px;
      font-size: 18px;
      color: rgba(255,255,255,0.9);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }
    .team {
  background: #f8fbfe;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.team-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}

.team-body {
  padding: 20px;
}

.team-body h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}

.team-role {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}

.team-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1060px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.2s ease;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover { transform: translateY(-1px); }

    .btn-secondary {
      background: rgba(255,255,255,0.08);
      color: var(--white);
      border-color: rgba(255,255,255,0.24);
    }

    .hero-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 24px;
      padding: 26px;
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow);
    }

    .hero-card img {
      border-radius: 18px;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      margin-bottom: 18px;
    }

    .hero-card h3 {
      margin: 0 0 8px;
      font-size: 24px;
    }

    .hero-card p {
      margin: 0;
      font-size: 15px;
      color: rgba(255,255,255,0.86);
    }

    .quick-links {
      margin-top: -42px;
      position: relative;
      z-index: 5;
    }

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

    .quick-link {
      background: var(--white);
      padding: 22px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      min-height: 132px;
      transition: 0.2s ease;
    }

    .quick-link:hover { transform: translateY(-4px); }

    .quick-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--sky);
      display: grid;
      place-items: center;
      color: var(--blue);
      font-size: 22px;
      margin-bottom: 16px;
    }

    .quick-link h4 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 18px;
    }

    .quick-link p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    section { padding: 78px 0; }

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

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

    .lead {
      margin: 0 0 18px;
      color: #506071;
      font-size: 17px;
    }

    .image-card,
    .video-card {
      background: var(--white);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }

    .image-card img,
    .video-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 320px;
    }

    .video-card {
      position: relative;
    }

    .play {
      position: absolute;
      inset: 50% auto auto 50%;
      transform: translate(-50%, -50%);
      width: 78px;
      height: 78px;
      border-radius: 999px;
      background: rgba(177,61,109,0.95);
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 28px;
      box-shadow: var(--shadow);
    }

    .stats {
      background: var(--navy);
      color: var(--white);
    }

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

    .stat {
      padding: 26px 18px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 18px;
      text-align: center;
      background: rgba(255,255,255,0.03);
    }

    .stat-number {
      font-size: 40px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 10px;
    }

    .stat-label {
      color: rgba(255,255,255,0.8);
      font-size: 14px;
    }

    .programs {
      background: linear-gradient(180deg, #f8fbfe 0%, #eef4fa 100%);
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 28px;
    }

    .program-card {
      background: var(--white);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }

    .program-card img {
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .program-body {
      padding: 22px;
    }

    .program-body h3 {
      margin: 0 0 10px;
      color: var(--navy);
      font-size: 22px;
    }

    .program-body p {
      margin: 0 0 18px;
      color: var(--muted);
    }

    .cta {
      padding: 84px 0;
      background:
        linear-gradient(100deg, rgba(15,45,74,0.92), rgba(45,110,163,0.74)),
        url('https://placehold.co/1600x600?text=Placeholder+Banner') center/cover no-repeat;
      color: var(--white);
      text-align: center;
    }

    .cta h2 {
      font-size: clamp(30px, 4vw, 46px);
      margin: 0 0 14px;
    }

    .cta p {
      margin: 0 auto 26px;
      max-width: 760px;
      color: rgba(255,255,255,0.88);
      font-size: 18px;
    }

    footer {
      background: #0a2238;
      color: rgba(255,255,255,0.84);
      padding: 28px 0 42px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 28px;
    }

    .footer-title {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 14px;
      color: rgba(255,255,255,0.64);
    }

    .footer-links a {
      display: block;
      padding: 6px 0;
      color: rgba(255,255,255,0.86);
    }

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

    .socials a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
    }

    @media (max-width: 1060px) {
      .hero-grid,
      .split,
      .footer-grid { grid-template-columns: 1fr; }
      .quick-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .program-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 720px) {
      .nav { display: none; }
      .hero { padding-top: 64px; }
      .quick-grid,
      .stats-grid { grid-template-columns: 1fr; }
      section { padding: 60px 0; }
      .topbar-inner { min-height: 66px; }
      .hero-card { padding: 18px; }
      .hero p, .cta p { font-size: 16px; }
      .splash-screen {
        min-height: 220px;
        padding: 24px 18px;
      }
    }

    @keyframes blink {
      50% { opacity: 0; }
    }