/* SD INPRES LELINGLUAN — Modern Responsive Landing Page System */
:root {
  --navy: #060919;
  --navy-card: #0d1330;
  --navy-light: #151d45;
  --yellow: #f5c84b;
  --yellow-glow: rgba(245, 200, 75, 0.4);
  --indigo: #6366f1;
  --purple: #8b5cf6;
  --ink: #0f172a;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --paper: #ffffff;
  --lav: #f1f4fc;
  --line: #e2e8f0;
  --line-dark: rgba(255, 255, 255, 0.1);
  --max: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(8, 15, 45, 0.08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.35);
  --glow-indigo: 0 0 50px rgba(99, 102, 241, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0;
  height: 78px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(180deg, rgba(6, 9, 25, 0.9) 0%, rgba(6, 9, 25, 0) 100%);
}

.site-header.scrolled {
  background: rgba(6, 9, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.08) rotate(-2deg);
}

.brand span { display: grid; gap: 1px; }
.brand b { font: 800 13px/1.2 "Manrope", sans-serif; letter-spacing: -0.01em; }
.brand small { font-size: 8px; letter-spacing: 0.22em; color: #aeb5d3; font-weight: 700; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav > a:not(.nav-cta) {
  opacity: 0.8;
  transition: all 0.25s ease;
  position: relative;
}

.desktop-nav > a:not(.nav-cta):hover {
  opacity: 1;
  color: var(--yellow);
}

.desktop-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.desktop-nav > a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #f5c84b 0%, #e5b634 100%);
  color: var(--navy);
  padding: 11px 20px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 4px 20px var(--yellow-glow);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 200, 75, 0.5);
  background: linear-gradient(135deg, #ffdf7a 0%, #f5c84b 100%);
}

.menu-btn {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 12px;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}
.menu-btn:hover { background: rgba(255, 255, 255, 0.16); }

.menu-btn span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s ease;
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 85px; right: 20px; left: 20px;
  background: rgba(13, 19, 48, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.25s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

/* =========================================================
   PAGE LOADER
   ========================================================= */
.page-loader {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: var(--navy);
  color: #fff;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.loaded {
  opacity: 0; visibility: hidden; pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-logo {
  width: 56px; height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: pulseLogo 1.6s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); box-shadow: 0 15px 40px var(--yellow-glow); }
}

.loader-mark {
  font: 800 16px/1 "Manrope", sans-serif;
  letter-spacing: 0.15em;
  color: var(--yellow);
}

.loader-line {
  width: 140px; height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-line span {
  display: block; width: 45%; height: 100%;
  background: linear-gradient(90deg, var(--yellow), #fff);
  border-radius: 2px;
  animation: loaderLine 1.2s ease-in-out infinite;
}

@keyframes loaderLine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(330%); }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.section-dark { background: var(--navy); color: #fff; }
.section-light { background: #ffffff; color: var(--ink); }
.section-lavender { background: var(--lav); color: var(--ink); }

.hero {
  min-height: 880px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 50px;
}

.hero-bg-glow {
  position: absolute;
  top: -15%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(139, 92, 246, 0.12) 40%, rgba(6, 9, 25, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.2) translate(-30px, 30px); opacity: 0.9; }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--yellow);
  margin: 0 0 18px;
  background: rgba(245, 200, 75, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(245, 200, 75, 0.2);
}

.pulse-dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
  animation: dotPulse 1.8s infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.eyebrow-dark {
  color: #64748b;
  background: rgba(100, 116, 139, 0.08);
  border-color: rgba(100, 116, 139, 0.15);
}

.dot-gold {
  width: 7px; height: 7px;
  background: #7c3aed;
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font: 900 clamp(48px, 6.2vw, 84px)/0.95 "Manrope", sans-serif;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 680px;
}

.hero h1 em, h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #f5c84b 0%, #ffd978 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 540px;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 16px;
  margin: 26px 0 34px;
  font-weight: 400;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 100px;
  padding: 16px 26px;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f5c84b 0%, #e5b634 100%);
  color: var(--navy);
  box-shadow: 0 6px 24px var(--yellow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245, 200, 75, 0.5);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.hero-metrics {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
}

.hero-metrics div { display: flex; gap: 12px; align-items: center; }
.hero-metrics strong { font: 800 20px "Manrope", sans-serif; color: var(--yellow); }
.hero-metrics span { font-size: 11px; color: #94a3b8; line-height: 1.45; font-weight: 500; }

/* HERO VISUAL BANNER */
.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-photo-wrapper {
  position: relative;
  border-radius: 32px 32px 100px 32px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), var(--glow-indigo);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--navy-card);
  transition: transform 0.5s ease;
}

.hero-photo-wrapper:hover {
  transform: scale(1.015);
}

.hero-banner-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.hero-photo-wrapper:hover .hero-banner-img {
  transform: scale(1.05);
}

.hero-glass-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 9, 25, 0.7) 100%);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  left: -20px; bottom: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: floatBadge 5s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.badge-icon {
  width: 36px; height: 36px;
  background: var(--lav);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
}

.hero-badge strong { display: block; font: 800 12px "Manrope", sans-serif; color: var(--navy); }
.hero-badge span { font-size: 10px; color: var(--muted); font-weight: 600; }

.hero-orbit {
  position: absolute;
  width: 140px; height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  right: -40px; top: -20px;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.hero-glow-sphere {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245, 200, 75, 0.3) 0%, transparent 70%);
  left: -50px; top: -50px;
  pointer-events: none;
  filter: blur(30px);
}

.scroll-note {
  position: absolute;
  right: 40px; bottom: 35px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #64748b;
  font-weight: 700;
}
.scroll-note span { font-size: 18px; color: var(--yellow); margin-top: 8px; }

/* =========================================================
   PORTAL & LAYANAN DIGITAL BUTTONS
   ========================================================= */
.portal-quickaccess {
  padding: 90px 0;
  position: relative;
}

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

.portal-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.portal-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portal-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(8, 15, 45, 0.12);
  border-color: #cbd5e1;
}

.portal-btn:hover::before {
  opacity: 1;
}

.portal-btn-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  color: var(--indigo);
  display: grid; place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.portal-btn-icon svg {
  width: 22px; height: 22px;
}

.portal-btn:hover .portal-btn-icon {
  background: var(--navy);
  color: var(--yellow);
  transform: scale(1.08) rotate(-4deg);
}

.portal-btn-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.portal-btn-info strong {
  font: 800 13px/1.2 "Manrope", sans-serif;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.portal-btn-info span {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.portal-btn-arrow {
  font-size: 16px;
  font-weight: 800;
  color: var(--muted-light);
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}

.portal-btn:hover .portal-btn-arrow {
  transform: translate(3px, -3px);
  color: var(--navy);
}

/* =========================================================
   INTRO & ABOUT SECTION
   ========================================================= */
.intro { padding: 110px 0; }
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-stack { position: relative; height: 480px; }

.feature-card-visual {
  position: absolute; inset: 0 40px 30px 0;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy) 0%, #151d45 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-accent-badge {
  display: inline-block;
  font: 800 12px/1 "Manrope", sans-serif;
  letter-spacing: 0.2em;
  color: var(--yellow);
}

.visual-decor-orb {
  position: absolute; right: -40px; bottom: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.image-note {
  position: absolute; right: 0; bottom: 0;
  background: var(--yellow);
  color: var(--navy);
  padding: 16px 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 16px;
  transform: rotate(-3deg);
  box-shadow: 0 10px 25px rgba(245, 200, 75, 0.3);
}

h2 {
  font: 800 clamp(36px, 4.5vw, 58px)/1 "Manrope", sans-serif;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
}

h2 em { color: #6366f1; }

.copy-block > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  transition: gap 0.25s ease;
}

.text-link:hover { gap: 18px; color: var(--indigo); }
.text-link.light { color: #fff; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.section-heading .text-link { margin: 0; }

/* =========================================================
   NEWS & STORY EDITORIAL CARDS
   ========================================================= */
.news { padding: 110px 0; }

.featured-news {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-card-editorial {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  position: relative;
}

.news-card-editorial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.news-card-badge {
  align-self: flex-start;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--indigo);
  background: #eef2ff;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

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

.news-card-title {
  font: 800 18px/1.3 "Manrope", sans-serif;
  color: var(--navy);
  margin: 8px 0 12px;
  display: block;
}

.news-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px;
}

.news-card-link {
  font-size: 12px;
  font-weight: 800;
  color: var(--indigo);
  transition: gap 0.25s ease;
}

.activities { padding: 110px 0; }

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

.activity-card-modern {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  transition: all 0.35s ease;
}

.activity-card-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 200, 75, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.activity-tag {
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--yellow);
  background: rgba(245, 200, 75, 0.12);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
}

.activity-date { display: block; font-size: 11px; color: #94a3b8; }
.activity-title { display: block; font: 800 18px/1.3 "Manrope", sans-serif; margin: 8px 0 10px; color: #fff; }
.activity-desc { font-size: 13px; line-height: 1.6; color: #cbd5e1; margin: 0 0 18px; }
.activity-read-more { font-size: 12px; font-weight: 800; color: var(--yellow); }

/* =========================================================
   EXPLORE & STATS
   ========================================================= */
.explore { padding: 110px 0; }

.center-heading {
  text-align: center;
  margin-bottom: 50px;
}
.center-heading .eyebrow { justify-content: center; }

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

.category-grid a {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-grid a:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-6px);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.category-grid span { font-size: 11px; font-weight: 800; color: var(--indigo); }
.category-grid a:hover span { color: var(--yellow); }
.category-grid b { display: block; font: 800 20px/1.2 "Manrope", sans-serif; margin-top: 40px; }
.category-grid small { display: block; color: var(--muted); font-size: 12px; margin-top: 8px; line-height: 1.5; }
.category-grid a:hover small { color: #94a3b8; }
.category-grid i { font-style: normal; font-size: 18px; font-weight: 800; }

.stats { padding: 110px 0; }
.stats-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.stats-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.stat-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.stat-card:hover { transform: translateY(-4px); }
.stat-card strong { display: block; color: var(--indigo); font: 800 12px "Manrope", sans-serif; }
.stat-card b { display: block; font: 800 22px "Manrope", sans-serif; margin-top: 24px; color: var(--navy); }
.stat-card span { display: block; color: var(--muted); font-size: 12px; line-height: 1.5; margin-top: 6px; }

/* =========================================================
   PROGRAM & VALUES
   ========================================================= */
.program { padding: 110px 0; }

.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 60px;
}

.program-row.reverse .program-visual { order: 2; }
.program-row.reverse .program-copy { order: 1; }

.program-visual {
  height: 380px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.program-card-1 {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
}

.program-card-2 {
  background: linear-gradient(135deg, #060919 0%, #1e293b 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-index {
  position: absolute; left: 24px; top: 22px;
  font: 800 14px "Manrope", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

.program-decor-icon {
  font-size: 80px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.mini-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--indigo);
}

.program-copy h3 {
  font: 800 36px/1.1 "Manrope", sans-serif;
  letter-spacing: -0.03em;
  margin: 10px 0 18px;
}

.program-copy > p:last-child {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
  max-width: 480px;
}

/* =========================================================
   CTA & FOOTER
   ========================================================= */
.cta { padding: 130px 0; text-align: center; }
.cta-inner { max-width: 720px; margin: auto; }
.cta-inner .eyebrow { justify-content: center; }
.cta h2 { font-size: clamp(40px, 6vw, 72px); }
.cta p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px auto 36px;
  color: #94a3b8;
  line-height: 1.8;
  font-size: 15px;
}

.footer {
  background: #040612;
  color: #94a3b8;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-brand { color: #fff; }
.footer-grid p { font-size: 13px; line-height: 1.8; max-width: 360px; }
.footer h4 { color: #fff; font: 800 13px "Manrope", sans-serif; margin: 0 0 18px; letter-spacing: 0.05em; }

.footer-grid > div:not(:first-child) a {
  display: block;
  font-size: 12px;
  margin: 10px 0;
  color: #94a3b8;
  transition: color 0.25s ease;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.15s; }

/* =========================================================
   RESPONSIVE DESIGN & ULTRA COMPACT MOBILE PORTAL BUTTONS
   ========================================================= */
@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .menu-btn { display: grid; }
  .hero-layout, .split-layout, .stats-layout, .program-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual { min-height: 440px; }
  .hero-banner-img { height: 380px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .featured-news, .activity-grid { grid-template-columns: 1fr; }
  .program-row.reverse .program-visual, .program-row.reverse .program-copy { order: initial; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .portal-buttons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container { width: min(100% - 32px, var(--max)); }
  .site-header { padding: 0 16px; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero h1 { font-size: 44px; }
  .hero-metrics { gap: 20px; }
  .hero-banner-img { height: 320px; }
  .floating-badge { left: 0; bottom: 10px; padding: 10px 14px; }
  .category-grid, .stat-numbers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* ULTRA COMPACT MOBILE PORTAL BUTTONS */
  .portal-quickaccess { padding: 50px 0; }
  .portal-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .portal-btn {
    padding: 12px 14px;
    gap: 10px;
    border-radius: 14px;
  }
  .portal-btn-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 10px;
  }
  .portal-btn-icon svg {
    width: 18px; height: 18px;
  }
  .portal-btn-info strong {
    font-size: 11px;
  }
  .portal-btn-info span {
    font-size: 9px;
  }
  .portal-btn-arrow {
    font-size: 14px;
  }
}
