/* ==========================================================================
   HMTI SCU 2026/2027 — Haute Horlogerie & Vanguard UI Design System
   Architecture: Double-Bezel (Doppelrand), Floating Island Nav, Kinetic Motion
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  /* Chromatic Foundation */
  --bg-deep: #040914;
  --bg-canvas: #070F1E;
  --bg-surface: #0C1A30;
  --bg-surface-raised: #122440;
  --bg-surface-overlay: rgba(12, 26, 48, 0.75);

  /* Primary Electric / Sky Tones */
  --sky-400: #38B6FF;
  --sky-300: #70CEFF;
  --sky-500: #0099FF;
  --sky-glow: rgba(56, 182, 255, 0.35);
  --sky-subtle: rgba(56, 182, 255, 0.08);

  /* Deep Oceanic Blue */
  --ocean-600: #183B68;
  --ocean-700: #10294A;
  --ocean-900: #081527;

  /* Off-White & Titanium Tones */
  --off-white: #F8FAFC;
  --text-pure: #FFFFFF;
  --text-high: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  /* Gold / Amber Royal Accent (HMTI Heritage) */
  --gold-400: #F3C973;
  --gold-500: #D4AF37;
  --gold-glow: rgba(243, 201, 115, 0.3);
  --gold-subtle: rgba(243, 201, 115, 0.1);

  /* Functional Status */
  --success: #10B981;
  --success-glow: rgba(16, 185, 129, 0.3);
  --danger: #F43F5E;
  --warning: #F59E0B;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Micro-Geometry / Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-pill: 9999px;

  /* Precision Shadows & Atmospheric Depth */
  --shadow-bezel: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 36px -8px rgba(0, 0, 0, 0.5);
  --shadow-bezel-hover: 0 0 0 1px rgba(56, 182, 255, 0.3), 0 20px 48px -12px rgba(4, 9, 20, 0.75), 0 0 30px rgba(56, 182, 255, 0.15);
  --shadow-inner-rim: inset 0 1px 1px 0 rgba(255, 255, 255, 0.15);
  --shadow-inner-gold: inset 0 1px 1px 0 rgba(243, 201, 115, 0.25);

  /* Fluid Physics */
  --spring-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms var(--spring-smooth);
  --transition-base: 400ms var(--spring-smooth);
  --transition-slow: 700ms var(--spring-smooth);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-high);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-high);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Atmospheric Ambient Canvas Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(56, 182, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(243, 201, 115, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(24, 59, 104, 0.2) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}

/* Subtle Micro-Grid Texture */
.ambient-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--sky-400);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

ul, ol { list-style: none; }

/* --- Containers & Hierarchy --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-spacing {
  padding: 7rem 0;
  position: relative;
}

@media (min-width: 1024px) {
  .section-spacing {
    padding: 9rem 0;
  }
}

/* --- Section Headers --- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(56, 182, 255, 0.08);
  border: 1px solid rgba(56, 182, 255, 0.2);
  color: var(--sky-400);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(56, 182, 255, 0.1);
}

.eyebrow-badge.gold {
  background: rgba(243, 201, 115, 0.08);
  border-color: rgba(243, 201, 115, 0.25);
  color: var(--gold-400);
  box-shadow: 0 0 20px rgba(243, 201, 115, 0.1);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-400);
  box-shadow: 0 0 8px var(--sky-400);
  animation: pulseGlow 2s infinite;
}

.eyebrow-badge.gold .pulse-dot {
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
}

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

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-pure);
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   THE "DOUBLE-BEZEL" ARCHITECTURE (DOPPELRAND)
   ========================================================================== */
.bezel-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: var(--shadow-bezel);
  transition: all var(--transition-base);
}

.bezel-card:hover {
  border-color: rgba(56, 182, 255, 0.25);
  box-shadow: var(--shadow-bezel-hover);
  transform: translateY(-4px);
}

.bezel-card.gold-accent:hover {
  border-color: rgba(243, 201, 115, 0.3);
  box-shadow: 0 0 0 1px rgba(243, 201, 115, 0.2), 0 20px 48px -12px rgba(4, 9, 20, 0.75), 0 0 30px rgba(243, 201, 115, 0.12);
}

.bezel-inner {
  position: relative;
  background: linear-gradient(175deg, rgba(16, 34, 61, 0.7) 0%, rgba(8, 19, 36, 0.85) 100%);
  border-radius: calc(var(--radius-xl) - 7px);
  padding: 2rem;
  height: 100%;
  box-sizing: border-box;
  box-shadow: var(--shadow-inner-rim);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

/* Glass highlight line on top edge */
.bezel-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
}

/* ==========================================================================
   BUTTON-IN-BUTTON (NESTED CTA ARCHITECTURE)
   ========================================================================== */
.btn-nested {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.4rem 0.5rem 0.4rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-nested.primary {
  background: linear-gradient(135deg, var(--sky-400), var(--sky-500));
  color: #031124;
  box-shadow: 0 4px 20px rgba(56, 182, 255, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-nested.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 182, 255, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  color: #031124;
}

.btn-nested.gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #120E02;
  box-shadow: 0 4px 20px rgba(243, 201, 115, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.btn-nested.gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(243, 201, 115, 0.55);
  color: #120E02;
}

.btn-nested.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-pure);
  padding: 0.4rem 0.5rem 0.4rem 1.4rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-nested.secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(56, 182, 255, 0.4);
  transform: translateY(-2px);
  color: var(--text-pure);
}

.btn-icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.btn-nested.primary .btn-icon-bubble {
  background: rgba(3, 17, 36, 0.18);
  color: #031124;
}

.btn-nested.gold .btn-icon-bubble {
  background: rgba(18, 14, 2, 0.18);
  color: #120E02;
}

.btn-nested.secondary .btn-icon-bubble {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sky-400);
}

.btn-nested:hover .btn-icon-bubble {
  transform: translate(3px, -2px) scale(1.08);
}

.btn-nested:active {
  transform: scale(0.98);
}

/* ==========================================================================
   FLOATING ISLAND NAVIGATION
   ========================================================================== */
.nav-island-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-island {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: 1080px;
  background: rgba(7, 15, 30, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.75rem 0.55rem 1.4rem;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all var(--transition-base);
}

.nav-island-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-monogram {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sky-400), var(--ocean-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-pure);
  box-shadow: 0 0 16px rgba(56, 182, 255, 0.4);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text-pure);
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--sky-400);
  margin-left: 0.35rem;
  font-weight: 500;
}

.nav-island-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link-pill {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.nav-link-pill:hover {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link-pill.active {
  color: var(--text-pure);
  background: rgba(56, 182, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(56, 182, 255, 0.3);
}

.nav-mobile-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-pure);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION (ASYMMETRICAL CINEMATIC SPLIT)
   ========================================================================== */
.hero-epic {
  min-height: 100dvh;
  padding-top: calc(5.5rem + 3rem);
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.2vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
}

.hero-h1 .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--sky-300) 70%, var(--sky-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline-quote {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--gold-400);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding: 0.25rem 0.75rem;
  border-left: 2px solid var(--gold-400);
  background: rgba(243, 201, 115, 0.04);
}

.hero-desc {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-cta-cluster {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Showcase Card (Double-Bezel Poster Frame) */
.hero-showcase {
  position: relative;
}

.hero-poster-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(56, 182, 255, 0.15);
}

.hero-poster-inner {
  position: relative;
  border-radius: calc(var(--radius-2xl) - 8px);
  overflow: hidden;
  aspect-ratio: 9 / 14;
  background: #020710;
}

.hero-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-poster-frame:hover .hero-poster-img {
  transform: scale(1.03);
}

.hero-live-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(7, 15, 30, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 182, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-pure);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-floating-stat {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(12, 26, 48, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-glow-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 182, 255, 0.12);
  border: 1px solid rgba(56, 182, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--sky-400);
}

.floating-stat-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.1;
}

.floating-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT & PILLARS SECTION
   ========================================================================== */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-narrative h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-narrative p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.pillar-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(56, 182, 255, 0.2);
  transform: translateX(4px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(56, 182, 255, 0.15), rgba(24, 59, 104, 0.3));
  border: 1px solid rgba(56, 182, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pillar-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
}

.pillar-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   VISI & MISI (MONUMENTAL CARD ARCHITECTURE)
   ========================================================================== */
.vision-hero-card {
  max-width: 900px;
  margin: 0 auto 3.5rem;
}

.vision-hero-card .bezel-inner {
  padding: 3rem 2.5rem;
  text-align: center;
}

.vision-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold-400);
  background: rgba(243, 201, 115, 0.1);
  border: 1px solid rgba(243, 201, 115, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--text-pure);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.misi-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.misi-bento-card:nth-child(4) {
  grid-column: span 1.5;
}
.misi-bento-card:nth-child(5) {
  grid-column: span 1.5;
}

.misi-num-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(56, 182, 255, 0.12);
  border: 1px solid rgba(56, 182, 255, 0.3);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--sky-400);
  margin-bottom: 1.25rem;
}

.misi-bento-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   DIVISI ASYMMETRICAL BENTO GRID
   ========================================================================== */
.divisi-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.divisi-cell {
  grid-column: span 4;
}

.divisi-cell.wide {
  grid-column: span 6;
}

.divisi-cell.full {
  grid-column: span 12;
}

.divisi-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.divisi-icon-large {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(56, 182, 255, 0.12), rgba(24, 59, 104, 0.25));
  border: 1px solid rgba(56, 182, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.divisi-pill-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--sky-400);
  background: rgba(56, 182, 255, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.divisi-cell h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.75rem;
}

.divisi-cell .divisi-summary {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.divisi-duties-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.divisi-duties-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-high);
  line-height: 1.5;
}

.divisi-duties-list li svg,
.duty-bullet {
  color: var(--sky-400);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ==========================================================================
   TIMELINE & PERSYARATAN (PRECISION MILESTONES)
   ========================================================================== */
.recruitment-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.req-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text-high);
}

.req-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.milestone-card {
  position: relative;
}

.milestone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.milestone-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.milestone-badge.active {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--success);
}

.milestone-badge.upcoming {
  background: rgba(243, 201, 115, 0.15);
  border: 1px solid rgba(243, 201, 115, 0.35);
  color: var(--gold-400);
}

.milestone-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-pure);
  margin-bottom: 0.4rem;
}

.milestone-date-str {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--sky-400);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card .bezel-inner {
  padding: 2.25rem 2rem;
  text-align: center;
}

.contact-avatar-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-400), var(--ocean-700));
  padding: 3px;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 25px rgba(56, 182, 255, 0.3);
}

.contact-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.contact-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.25rem;
}

.contact-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: var(--text-high);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.contact-link-pill:hover {
  background: rgba(56, 182, 255, 0.12);
  border-color: rgba(56, 182, 255, 0.3);
  color: var(--text-pure);
  transform: translateY(-2px);
}

/* ==========================================================================
   PRECISION TABLE & DATA GRIDS (Jadwal & Admin)
   ========================================================================== */
.table-island-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: var(--shadow-bezel);
}

.table-island-inner {
  background: linear-gradient(180deg, rgba(12, 26, 48, 0.9) 0%, rgba(6, 14, 28, 0.95) 100%);
  border-radius: calc(var(--radius-xl) - 7px);
  overflow: hidden;
  box-shadow: var(--shadow-inner-rim);
}

.precision-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.precision-table th {
  padding: 1.1rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.precision-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-high);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--transition-fast);
}

.precision-table tbody tr:hover td {
  background: rgba(56, 182, 255, 0.04);
}

.precision-table tbody tr:last-child td {
  border-bottom: none;
}

.nim-code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--sky-300);
  background: rgba(56, 182, 255, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(56, 182, 255, 0.15);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-tag.blue {
  background: rgba(56, 182, 255, 0.1);
  border: 1px solid rgba(56, 182, 255, 0.25);
  color: var(--sky-400);
}

.badge-tag.gold {
  background: rgba(243, 201, 115, 0.1);
  border: 1px solid rgba(243, 201, 115, 0.25);
  color: var(--gold-400);
}

.badge-tag.green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--success);
}

/* ==========================================================================
   SEARCH & FILTER PORTALS
   ========================================================================== */
.search-control-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.5rem 0.4rem 1.4rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), var(--shadow-inner-rim);
  transition: all var(--transition-base);
}

.search-control-bar:focus-within {
  border-color: var(--sky-400);
  box-shadow: 0 12px 36px rgba(56, 182, 255, 0.2), 0 0 0 1px var(--sky-400);
}

.search-control-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-pure);
}

.search-control-bar input::placeholder {
  color: var(--text-dim);
}

/* Filter Chips */
.filter-chips-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-chip {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-chip:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-pure);
}

.filter-chip.active {
  background: rgba(56, 182, 255, 0.15);
  border-color: rgba(56, 182, 255, 0.4);
  color: var(--sky-300);
}

/* ==========================================================================
   RESULT & CELEBRATION PORTAL (Pengumuman)
   ========================================================================== */
.search-portal-wrapper {
  max-width: 580px;
  margin: 0 auto;
}

.portal-form-group {
  margin-bottom: 1.5rem;
}

.portal-form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.portal-input {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: rgba(4, 9, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-pure);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.portal-input:focus {
  border-color: var(--sky-400);
  box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Result Card */
.acceptance-card {
  margin-top: 2.5rem;
  text-align: center;
  display: none;
  animation: modalEnter 0.6s var(--spring-smooth) forwards;
}

.acceptance-card.active {
  display: block;
}

.acceptance-crown {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 35px var(--gold-glow);
}

.acceptance-card.not-found .acceptance-crown {
  background: linear-gradient(135deg, var(--ocean-600), var(--ocean-900));
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}

.acceptance-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.75rem;
}

.acceptance-details {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.divisi-badge-congrats {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  background: rgba(243, 201, 115, 0.12);
  border: 1px solid rgba(243, 201, 115, 0.35);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(243, 201, 115, 0.2);
}

/* ==========================================================================
   FOOTER (ARCHITECTURAL MONOLITH)
   ========================================================================== */
.footer-monolith {
  background: #02060D;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 3rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-block h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.75rem;
}

.footer-brand-block p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 400px;
}

.footer-nav-col h5 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-400);
  margin-bottom: 1.25rem;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-nav-col a:hover {
  color: var(--text-pure);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ==========================================================================
   ANIMATIONS & PARTICLES
   ========================================================================== */
@keyframes modalEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--spring-smooth), transform 0.8s var(--spring-smooth);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Confetti Canvas */
#confettiCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* ==========================================================================
   RESPONSIVENESS & ADAPTIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-split-grid {
    grid-template-columns: 1fr;
  }
  .recruitment-layout {
    grid-template-columns: 1fr;
  }
  .misi-bento-grid {
    grid-template-columns: 1fr;
  }
  .misi-bento-card:nth-child(4),
  .misi-bento-card:nth-child(5) {
    grid-column: span 1;
  }
  .divisi-bento {
    grid-template-columns: 1fr;
  }
  .divisi-cell,
  .divisi-cell.wide {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-island-menu {
    position: fixed;
    top: 5.5rem;
    left: 1rem;
    right: 1rem;
    background: rgba(7, 15, 30, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: all var(--transition-base);
  }

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

  .nav-link-pill {
    padding: 0.85rem 1.25rem;
    text-align: center;
    font-size: 1rem;
  }

  .nav-mobile-btn {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-floating-stat {
    position: static;
    margin-top: 1.5rem;
  }
}
