/* ==========================================================================
   PORTAL RESMI TRPL 25A1 - HIGH-END CYBER DARK DESIGN SYSTEM
   Dominan: Deep Obsidian Dark, Neon Cyber Blue & Crimson Cyber Red
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Skema Warna Utama */
  --bg-dark-base: #06080e;
  --bg-dark-surface: #0a0e18;
  --bg-dark-card: rgba(13, 19, 33, 0.72);
  --bg-dark-card-hover: rgba(18, 26, 46, 0.85);
  
  /* Cyber Blue (Logika & Teknologi) */
  --blue-glow: #00d2ff;
  --blue-primary: #2563eb;
  --blue-bright: #38bdf8;
  --blue-soft: rgba(56, 189, 248, 0.15);
  --blue-shadow: rgba(37, 99, 235, 0.35);

  /* Cyber Red (Energi & Semangat) */
  --red-glow: #ff2a5f;
  --red-primary: #ef4444;
  --red-bright: #f43f5e;
  --red-soft: rgba(239, 68, 68, 0.15);
  --red-shadow: rgba(239, 68, 68, 0.35);

  /* Teks & Netral */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-blue: rgba(56, 189, 248, 0.3);
  --border-red: rgba(244, 63, 94, 0.3);

  /* Font Families */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transisi & Efek */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Basis */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-family: var(--font-sans);
  background-color: var(--bg-dark-base);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  background-color: var(--bg-dark-base);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(239, 68, 68, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 75%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Custom Selection */
::selection {
  background: var(--red-primary);
  color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-base);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue-primary), var(--red-primary));
  border-radius: 10px;
  border: 2px solid var(--bg-dark-base);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--blue-bright), var(--red-bright));
}

/* Canvas Partikel Interaktif */
#particlesCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Cyber Ambient Grids & Lights */
.cyber-ambient-light {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  animation: floatAmbient 18s ease-in-out infinite alternate;
}
.cyber-light-blue {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.25) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}
.cyber-light-red {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 42, 95, 0.25) 0%, transparent 70%);
  bottom: 10%;
  right: -120px;
  animation-duration: 22s;
  animation-delay: -5s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 80px) scale(1.15); }
  100% { transform: translate(-40px, 40px) scale(0.9); }
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Glassmorphism Styles */
.glass-panel {
  background: var(--bg-dark-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

.glass-nav {
  background: rgba(6, 8, 14, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gradien Teks & Glow */
.gradient-text-blue-red {
  background: linear-gradient(135deg, #38bdf8 0%, #a855f7 45%, #ff2a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shineGradient 6s linear infinite;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #60a5fa, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-red {
  background: linear-gradient(135deg, #f43f5e, #ff2a5f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes shineGradient {
  to { background-position: 200% center; }
}

/* Glowing Border Elements */
.glow-box-blue {
  box-shadow: 0 0 25px -5px rgba(56, 189, 248, 0.3);
}
.glow-box-red {
  box-shadow: 0 0 25px -5px rgba(244, 63, 94, 0.3);
}
.glow-box-dual {
  box-shadow: -10px 10px 30px -10px rgba(56, 189, 248, 0.25),
              10px -10px 30px -10px rgba(244, 63, 94, 0.25);
}

/* Navigasi */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-normal);
}
header.site-header.scrolled {
  background: rgba(6, 8, 14, 0.92);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8), 0 1px 0 0 rgba(56, 189, 248, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.45));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(5deg);
  filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.8));
}

.brand-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(239, 68, 68, 0.2));
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}
.brand-icon-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(56, 189, 248, 0.6), transparent 30%);
  animation: rotateGlow 4s linear infinite;
}
.brand-icon-inner {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  color: #fff;
}

@keyframes rotateGlow {
  100% { transform: rotate(360deg); }
}

.brand-status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--red-bright));
  transition: width var(--transition-normal);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-icon:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--blue-bright);
  color: #fff;
  transform: translateY(-2px);
}
.btn-icon.active {
  background: rgba(239, 68, 68, 0.2);
  border-color: var(--red-bright);
  color: var(--red-bright);
}

.btn-primary-glow {
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--blue-primary), var(--red-primary));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.btn-primary-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: 0.6s ease;
}
.btn-primary-glow:hover {
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
  transform: translateY(-2px);
}
.btn-primary-glow:hover::after {
  left: 150%;
}

.btn-secondary-glass {
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}
.btn-secondary-glass:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--blue-bright);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
}
@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Sidebar Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.mobile-drawer.active {
  display: block;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 14, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-drawer.active .drawer-backdrop {
  opacity: 1;
}
.drawer-panel {
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: calc(100% - 2rem);
  max-width: 340px;
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}
.mobile-drawer.active .drawer-panel {
  transform: translateX(0);
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.drawer-nav-item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.03);
}
.drawer-nav-item a:hover {
  background: rgba(56, 189, 248, 0.15);
  color: #fff;
  border-left: 3px solid var(--blue-bright);
}
.drawer-nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
  margin-bottom: 1.5rem;
  animation: badgeGlow 4s infinite alternate;
}
@keyframes badgeGlow {
  0% { box-shadow: 0 0 10px rgba(56, 189, 248, 0.2); }
  100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.3); border-color: rgba(239, 68, 68, 0.4); color: var(--red-bright); }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.6rem;
  }
}
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4.2rem;
  }
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Quick Stats Bar */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
@media (min-width: 576px) {
  .hero-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: linear-gradient(135deg, #fff, var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Hero Cockpit / Terminal Card */
.hero-cockpit-card {
  background: rgba(10, 14, 24, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: 
    0 25px 60px -15px rgba(0, 0, 0, 0.9),
    0 0 35px -10px rgba(56, 189, 248, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-bounce), border-color var(--transition-normal);
}
.hero-cockpit-card:hover {
  border-color: var(--red-bright);
  box-shadow: 
    0 30px 70px -15px rgba(0, 0, 0, 0.95),
    0 0 45px -10px rgba(239, 68, 68, 0.3);
}

.cockpit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}
.cockpit-dots {
  display: flex;
  gap: 6px;
}
.cockpit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cockpit-dot.red { background: #ef4444; }
.cockpit-dot.yellow { background: #f59e0b; }
.cockpit-dot.green { background: #10b981; }

.cockpit-time {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cockpit-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 1.25rem;
}

.cockpit-console {
  background: rgba(6, 8, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.console-line {
  display: flex;
  gap: 0.5rem;
}
.console-prompt { color: var(--blue-bright); }
.console-cmd { color: #fff; }
.console-val { color: var(--red-bright); }

.cockpit-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.cockpit-quick-btn {
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.cockpit-quick-btn:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--blue-bright);
  color: var(--blue-bright);
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  border: 1px solid transparent;
}
.section-tag.blue {
  color: var(--blue-bright);
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.25);
}
.section-tag.red {
  color: var(--red-bright);
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
}
.section-tag.dual {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.1), rgba(239, 68, 68, 0.1));
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ==========================================================================
   BERITA & EKOSISTEM DIGITAL (3 PRODUK UTAMA)
   ========================================================================== */
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-bright);
  box-shadow: 0 20px 40px -10px rgba(0, 210, 255, 0.2);
}
.product-card.card-red:hover {
  border-color: var(--red-bright);
  box-shadow: 0 20px 40px -10px rgba(255, 42, 95, 0.25);
}

.product-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
  background: #0f172a;
}
.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 8, 14, 0.8) 100%);
}

.product-badge-float {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge-fintech {
  background: rgba(37, 99, 235, 0.8);
  color: #fff;
  border: 1px solid rgba(56, 189, 248, 0.5);
}
.badge-vote {
  background: rgba(239, 68, 68, 0.8);
  color: #fff;
  border: 1px solid rgba(244, 63, 94, 0.5);
}
.badge-ai {
  background: rgba(16, 185, 129, 0.8);
  color: #fff;
  border: 1px solid rgba(52, 211, 153, 0.5);
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.product-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Interactive Card Widgets (Simulasi Nyata) */
.product-interactive-box {
  background: rgba(6, 8, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

/* Kas Progress Bar */
.kas-progress-title {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.kas-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}
.kas-progress-fill {
  height: 100%;
  width: 88%;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-bright));
  border-radius: 9999px;
  animation: fillProgress 2s ease-out;
}
@keyframes fillProgress {
  from { width: 0; }
  to { width: 88%; }
}

/* Voting Interactive Teaser */
.vote-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vote-option-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.vote-option-btn:hover, .vote-option-btn.voted {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--red-bright);
  color: #fff;
}

/* WhatsApp Interactive Simulator Button */
.wa-sim-btn {
  width: 100%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px dashed rgba(16, 185, 129, 0.35);
  border-radius: 8px;
  padding: 0.55rem;
  font-size: 0.8rem;
  color: #34d399;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}
.wa-sim-btn:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: #34d399;
  color: #fff;
}

.product-btn-action {
  width: 100%;
  padding: 0.85rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
}
.btn-kas {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--blue-bright);
}
.btn-kas:hover {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}
.btn-vote {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: var(--red-bright);
}
.btn-vote:hover {
  background: var(--red-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}
.btn-wa {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
}
.btn-wa:hover {
  background: #10b981;
  color: #fff;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   STRUKTUR ORGANISASI (3D TILT CARDS & TREE)
   ========================================================================== */
.org-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}
.org-filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.org-filter-btn:hover, .org-filter-btn.active {
  background: linear-gradient(135deg, var(--blue-primary), var(--red-primary));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

/* Tree Structure Container */
.org-tree-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.org-card-3d {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2rem;
  padding: 1.75rem;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-bounce), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
}
.org-card-3d:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--blue-bright);
  box-shadow: 0 20px 40px -10px rgba(56, 189, 248, 0.3);
}
.org-card-3d.leader-card {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 15px 35px -10px rgba(56, 189, 248, 0.25);
  max-width: 320px;
  width: 100%;
}
.org-card-3d.vice-card {
  border-color: rgba(244, 63, 94, 0.4);
  box-shadow: 0 15px 35px -10px rgba(244, 63, 94, 0.25);
  max-width: 320px;
  width: 100%;
}
.org-card-3d.vice-card:hover {
  border-color: var(--red-bright);
  box-shadow: 0 20px 40px -10px rgba(244, 63, 94, 0.35);
}

/* Tree Connectors */
.tree-stem-vertical {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--blue-bright), var(--red-bright));
  margin: 0 auto;
  opacity: 0.6;
}

.org-divisions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .org-divisions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.division-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.division-title-pill {
  align-self: center;
  padding: 0.35rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
.division-title-pill.blue {
  color: var(--blue-bright);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.06);
}
.division-title-pill.red {
  color: var(--red-bright);
  border-color: rgba(244, 63, 94, 0.3);
  background: rgba(244, 63, 94, 0.06);
}
.division-title-pill.purple {
  color: #c084fc;
  border-color: rgba(192, 132, 252, 0.3);
  background: rgba(192, 132, 252, 0.06);
}

.org-member-horizontal {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
}
.org-member-horizontal:hover {
  transform: translateX(6px);
  border-color: var(--blue-bright);
  background: var(--bg-dark-card-hover);
  box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.2);
}

.avatar-ring {
  position: relative;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--blue-primary), var(--red-primary));
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}
.avatar-ring.small {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}
.avatar-ring.large {
  width: 104px;
  height: 104px;
  margin: 0 auto 1.25rem auto;
}
.avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0f172a;
}

.member-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.member-info p.role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}
.member-info p.fullname {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   JADWAL & AGENDA AKADEMIK
   ========================================================================== */
.schedule-tabs-container {
  max-width: 900px;
  margin: 0 auto;
}
.schedule-days-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.schedule-day-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}
.schedule-day-btn:hover, .schedule-day-btn.active {
  background: linear-gradient(135deg, var(--blue-primary), var(--red-primary));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.schedule-card-item {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}
@media (min-width: 768px) {
  .schedule-card-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.schedule-card-item:hover {
  border-color: var(--blue-bright);
  background: var(--bg-dark-card-hover);
  transform: translateX(6px);
}
.schedule-time-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 140px;
}
.schedule-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.schedule-details p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.schedule-room-tag {
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--red-bright);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

/* ==========================================================================
   GALERI FOTO INTERAKTIF (BENTO GRID & LIGHTBOX)
   ========================================================================== */
.gallery-bento-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .gallery-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .gallery-bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }
}

.gallery-bento-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #0f172a;
  cursor: pointer;
}
.gallery-bento-item.featured {
  grid-column: span 1;
  grid-row: span 1;
}
@media (min-width: 992px) {
  .gallery-bento-item.featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.gallery-bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-bento-item:hover img {
  transform: scale(1.1);
}
.gallery-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 8, 14, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0.85;
  transition: opacity var(--transition-normal);
}
.gallery-bento-item:hover .gallery-bento-overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 8, 14, 0.95) 100%);
}
.gallery-caption-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.gallery-caption-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   KOTAK ASPIRASI / SUARA KELAS (INTERACTIVE GUESTBOOK)
   ========================================================================== */
.aspirasi-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .aspirasi-container {
    grid-template-columns: 1fr 1.2fr;
  }
}

.aspirasi-form-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.75rem;
  padding: 2rem;
  backdrop-filter: blur(14px);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: rgba(6, 8, 14, 0.8);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.aspirasi-feed-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.feed-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.25rem;
  transition: all var(--transition-fast);
}
.feed-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
}
.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.feed-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-bright);
}
.feed-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.feed-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.feed-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-like {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--transition-fast);
}
.btn-like:hover, .btn-like.liked {
  color: var(--red-bright);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer {
  background: #040508;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

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

.footer-brand {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.footer-quote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.social-card-btn {
  width: 58px;
  height: 58px;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.4rem;
  transition: all var(--transition-bounce);
}
.social-card-btn.ig:hover {
  background: #e1306c;
  color: #fff;
  border-color: #e1306c;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}
.social-card-btn.tiktok:hover {
  background: #000;
  color: #00f2fe;
  border-color: #fe2c55;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(254, 44, 85, 0.4);
}
.social-card-btn.github:hover {
  background: #24292e;
  color: #fff;
  border-color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ==========================================================================
   MODALS (PROFILE MODAL, LIGHTBOX, WA BOT SIMULATOR)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active .modal-backdrop {
  opacity: 1;
}

.modal-card {
  position: relative;
  z-index: 2;
  background: var(--bg-dark-surface);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 2.25rem;
  width: 100%;
  max-width: 480px;
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.95), 0 0 35px rgba(56, 189, 248, 0.2);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: var(--red-bright);
  color: #fff;
}

/* Lightbox Modal */
.lightbox-card {
  max-width: 900px;
  padding: 1rem;
  background: transparent;
  border: none;
  box-shadow: none;
}
.lightbox-img-box {
  max-height: 75vh;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}
.lightbox-img-box img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6, 8, 14, 0.8);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lightbox-nav-btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-bright);
}
.lightbox-nav-btn.prev { left: -1.5rem; }
.lightbox-nav-btn.next { right: -1.5rem; }

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast-item {
  background: rgba(10, 14, 24, 0.95);
  border: 1px solid var(--blue-bright);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}
.toast-item.active {
  transform: translateX(0);
}

/* Floating Back To Top */
.btn-floating-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 14, 24, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}
.btn-floating-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btn-floating-top:hover {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

/* Scroll Animations */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MOBILE PERFORMANCE ENGINE (ULTRA-LIGHTWEIGHT CYBER BLUEPRINT)
   Downgrade performa maksimal: 0% CPU, 0 MB VRAM canvas, 120Hz native scrolling
   Visual tetap 100% cyberpunk tajam: Blueprint Dot Grid + Neon Outlines
   ========================================================================== */
@media (max-width: 768px) {
  /* 1. Sembunyikan elemen canvas & ambient divs terpisah untuk menghemat 100% VRAM GPU */
  #particlesCanvas,
  .cyber-ambient-light {
    display: none !important;
  }

  /* 2. Cyber Matrix Blueprint: Background grid titik-titik neon super ringan & keren */
  body {
    background-color: #06080e !important;
    background-image: 
      radial-gradient(circle at 15% 15%, rgba(0, 210, 255, 0.16) 0%, transparent 45%),
      radial-gradient(circle at 85% 25%, rgba(255, 42, 95, 0.16) 0%, transparent 45%),
      radial-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 24px 24px !important;
    background-attachment: scroll !important;
  }

  /* 3. Kartu Solid Obsidian Dark dengan Neon Cyber Border 1px (0ms blur computation) */
  .glass-panel,
  .hero-cockpit-card,
  .modal-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #0a0e18 !important;
    border: 1px solid rgba(56, 189, 248, 0.22) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
  }

  /* Header solid bebas compositing overhead */
  header.site-header {
    background: #06080e !important;
    border-bottom: 1px solid rgba(56, 189, 248, 0.18) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  header.site-header.scrolled {
    background: #06080e !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7) !important;
  }

  /* 4. Nonaktifkan animasi berulang (background-position text & rotating conic) */
  .gradient-text-blue-red {
    animation: none !important;
    background-position: 0% center !important;
  }
  .brand-icon-box::before {
    animation: none !important;
    display: none !important;
  }
  .hero-badge {
    animation: none !important;
  }

  /* 5. Instant Scroll Reveal: Konten langsung tampil tanpa delay/stutter */
  .reveal-fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* 6. Virtualized DOM Rendering (Holy Grail of Mobile Performance):
        Lewati render kalkulasi untuk section yang belum dijangkau layar */
  #news, #organization, #schedule, #gallery, #aspirasi, footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 650px;
  }
}

