/* ==========================================================================
   LUI VISUAL — OFFICIAL PROFILE & SERVICES DESIGN SYSTEM
   Dark Theme (#08080c) with Electric Blue, Fire Orange, Neon Green, & Cyan
   100% Fully Responsive (Mobile, Tablet, Desktop)
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --bg-primary: #08080c;
  --bg-secondary: #0e0f18;
  --bg-card: rgba(14, 16, 26, 0.78);
  --bg-card-hover: rgba(22, 26, 42, 0.92);

  /* Brand Accents */
  --neon-blue: #0033ff;
  --neon-blue-glow: rgba(0, 51, 255, 0.6);
  --neon-orange: #ff3300;
  --neon-orange-glow: rgba(255, 51, 0, 0.6);
  --neon-green: #66ff00;
  --neon-green-glow: rgba(102, 255, 0, 0.55);
  --neon-cyan: #66ffcc;
  --neon-cyan-glow: rgba(102, 255, 204, 0.55);

  /* Typography Colors */
  --text-main: #f2f4f8;
  --text-muted: #9aa2b8;
  --text-dim: #5c647c;
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-hud: 'Orbitron', monospace;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --glass-blur: blur(16px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar (Desktop only) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: #1c2138;
  border-radius: 4px;
  border: 1px solid rgba(0, 51, 255, 0.4);
}
::-webkit-scrollbar-thumb:hover { background: var(--neon-blue); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Neon Text Helpers */
.neon-blue { color: var(--neon-blue) !important; text-shadow: 0 0 16px var(--neon-blue-glow); }
.neon-orange { color: var(--neon-orange) !important; text-shadow: 0 0 16px var(--neon-orange-glow); }
.neon-green { color: var(--neon-green) !important; text-shadow: 0 0 16px var(--neon-green-glow); }
.neon-cyan { color: var(--neon-cyan) !important; text-shadow: 0 0 16px var(--neon-cyan-glow); }

.neon-blue-border { border: 1px solid var(--neon-blue) !important; box-shadow: 0 0 14px var(--neon-blue-glow); }
.neon-orange-border { border: 1px solid var(--neon-orange) !important; box-shadow: 0 0 14px var(--neon-orange-glow); }
.neon-green-border { border: 1px solid var(--neon-green) !important; box-shadow: 0 0 14px var(--neon-green-glow); }
.neon-cyan-border { border: 1px solid var(--neon-cyan) !important; box-shadow: 0 0 14px var(--neon-cyan-glow); }

/* Glassmorphism */
.glassmorphism {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}
.glass-card {
  background: rgba(14, 16, 28, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.25s var(--ease-smooth);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(102, 255, 204, 0.35);
  box-shadow: 0 12px 35px -10px rgba(0, 51, 255, 0.25);
  transform: translateY(-2px);
}

/* Ambient Glow Lights */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
}
.glow-blue { width: 450px; height: 450px; background: var(--neon-blue); top: 10%; left: -150px; }
.glow-orange { width: 400px; height: 400px; background: var(--neon-orange); bottom: 10%; right: -150px; }
.glow-green { width: 350px; height: 350px; background: var(--neon-green); top: 50%; left: 40%; opacity: 0.1; }

/* Custom Cursor (DESKTOP ONLY - COMPLETELY HIDDEN ON MOBILE / TOUCH) */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-cyan);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px dashed var(--neon-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

/* Hide custom cursor on all touch / coarse pointer screens */
@media (hover: none), (pointer: coarse), (max-width: 1024px) {
  .custom-cursor,
  .cursor-trail {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.hud-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid var(--neon-blue);
  background: rgba(8, 8, 12, 0.92);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.logo-wrapper {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0, 51, 255, 0.25) 0%, rgba(8, 8, 12, 0.9) 100%);
  border: 1px solid rgba(0, 51, 255, 0.5);
}
.brand-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(102, 255, 204, 0.8));
}
.brand-title {
  font-family: var(--font-hud);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  display: block;
  white-space: nowrap;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-item .nav-index {
  color: var(--neon-cyan);
  font-weight: 700;
}
.nav-item:hover, .nav-item.active {
  color: var(--text-main);
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  transition: width 0.25s var(--ease-smooth);
}
.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle-btn {
  display: none;
  background: rgba(20, 24, 38, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  touch-action: manipulation;
}
.mobile-toggle-btn:hover {
  border-color: var(--neon-cyan);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 12, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transform: translateY(-115%);
  transition: transform 0.3s var(--ease-smooth);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateY(0); }
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.drawer-title {
  font-family: var(--font-hud);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.close-drawer-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer-link {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  letter-spacing: 1px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--neon-green);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  font-family: var(--font-hud);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s var(--ease-smooth);
  border: none;
  touch-action: manipulation;
}
.btn-primary-neon {
  background: linear-gradient(135deg, var(--neon-green) 0%, #00cc66 100%);
  color: #060806;
  box-shadow: 0 0 20px var(--neon-green-glow);
}
.btn-primary-neon:hover {
  box-shadow: 0 0 30px var(--neon-green-glow);
  color: #000;
}
.btn-outline-cyan {
  background: transparent;
  border: 1.5px solid var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(102, 255, 204, 0.2);
}
.btn-outline-cyan:hover {
  background: rgba(102, 255, 204, 0.12);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
}
.btn-outline-orange {
  background: transparent;
  border: 1.5px solid var(--neon-orange);
  color: var(--neon-orange);
  box-shadow: 0 0 12px rgba(255, 51, 0, 0.2);
}
.btn-outline-orange:hover {
  background: rgba(255, 51, 0, 0.12);
  box-shadow: 0 0 20px var(--neon-orange-glow);
}
.w-100 { width: 100%; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.cyber-grid-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35vh;
  background: linear-gradient(transparent, var(--bg-primary)), repeating-linear-gradient(90deg, rgba(0, 51, 255, 0.06) 0 1px, transparent 1px 40px), repeating-linear-gradient(0deg, rgba(0, 51, 255, 0.06) 0 1px, transparent 1px 40px);
  transform: perspective(600px) rotateX(65deg);
  transform-origin: bottom center;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Big Logo Halo */
.hero-center-logo-wrap {
  margin-bottom: 18px;
}
.hero-logo-halo {
  width: 110px;
  height: 110px;
  border-radius: 26px;
  background: radial-gradient(circle, rgba(0, 51, 255, 0.3) 0%, rgba(8, 8, 12, 0.95) 100%);
  border: 2px solid rgba(102, 255, 204, 0.6);
  box-shadow: 0 0 35px rgba(0, 51, 255, 0.4), 0 0 50px rgba(255, 51, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.hero-logo-big {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(102, 255, 204, 0.9));
}

.telemetry-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(102, 255, 204, 0.4);
  margin-bottom: 20px;
  max-width: 100%;
}
.live-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulseBeacon 1.4s infinite;
  flex-shrink: 0;
}
@keyframes pulseBeacon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}
.badge-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  word-break: break-word;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
  word-break: break-word;
}
.hero-sub-role {
  font-family: var(--font-hud);
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.hero-roles-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.role-pill {
  font-family: var(--font-hud);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(10, 12, 22, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.role-divider {
  color: var(--neon-cyan);
  font-size: 0.75rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: #ffffff;
  margin-top: 18px;
  margin-bottom: 10px;
  padding: 0 10px;
}
.hero-desc {
  max-width: 740px;
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.65;
  padding: 0 10px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 42px;
  width: 100%;
}

/* Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 960px;
}
.stat-card {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.stat-icon { font-size: 1.6rem; flex-shrink: 0; }
.stat-number {
  display: block;
  font-family: var(--font-hud);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.scroll-down-hud {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  z-index: 10;
  transition: color 0.2s;
}
.scroll-down-hud:hover { color: var(--neon-cyan); }
.scroll-arrow { animation: bounceDown 1.5s infinite; }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section {
  padding: 85px 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px auto;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 1px;
  background: rgba(12, 14, 24, 0.85);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   SECTION 02: TENTANG SAYA
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}
.about-card {
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.about-bio-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.about-avatar-wrapper {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #0d0e1a;
  border: 2px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-avatar-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.about-name {
  font-family: var(--font-hud);
  font-size: 1.25rem;
  font-weight: 900;
}
.about-badge-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}
.about-location {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.about-text-content b { color: var(--text-main); }

.color-palette-showcase {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}
.palette-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.palette-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.swatch-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-features-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-card {
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-icon-box {
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-title {
  font-family: var(--font-hud);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.feat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 03: KEAHLIAN & TECH STACK
   ========================================================================== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}
.skill-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.sc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.sc-icon { font-size: 1.4rem; }
.sc-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.sc-title {
  font-family: var(--font-hud);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.sc-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Software Matrix Box */
.software-matrix-box {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 51, 255, 0.35);
}
.matrix-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 18px;
}
.matrix-title {
  font-family: var(--font-hud);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.matrix-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon-cyan);
}
.matrix-meters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.matrix-meter-item {
  background: #090c18;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
}
.m-info {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  margin-bottom: 6px;
}
.m-name { display: flex; align-items: center; gap: 8px; }
.m-val { font-weight: 700; }
.m-track {
  height: 6px;
  background: #151828;
  border-radius: 3px;
  overflow: hidden;
}
.m-fill { height: 100%; border-radius: 3px; }
.fill-green { background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }
.fill-orange { background: var(--neon-orange); box-shadow: 0 0 10px var(--neon-orange); }
.fill-blue { background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }
.fill-cyan { background: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); }

/* ==========================================================================
   SECTION 04: LAYANAN & JASA
   ========================================================================== */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.service-box {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #0e1120;
  border: 1px solid var(--border-subtle);
}
.neon-green-glow { color: var(--neon-green); border-color: var(--neon-green); box-shadow: 0 0 16px var(--neon-green-glow); }
.neon-orange-glow { color: var(--neon-orange); border-color: var(--neon-orange); box-shadow: 0 0 16px var(--neon-orange-glow); }
.neon-blue-glow { color: var(--neon-blue); border-color: var(--neon-blue); box-shadow: 0 0 16px var(--neon-blue-glow); }

.service-number {
  font-family: var(--font-hud);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dim);
}
.service-heading {
  font-family: var(--font-hud);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.service-paragraph {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-deliverables {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  margin-bottom: 22px;
}
.deliv-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.deliv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
}
.deliv-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.deliv-list li i {
  margin-top: 3px;
}

/* ==========================================================================
   SECTION 05: PORTOFOLIO & SHOWREEL
   ========================================================================== */
.master-showreel-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-neon-orange);
  box-shadow: 0 0 30px rgba(255, 51, 0, 0.15);
  margin-bottom: 28px;
}
.showreel-hero-banner {
  padding: 38px 24px;
  background: radial-gradient(circle, rgba(0, 51, 255, 0.25) 0%, rgba(8, 8, 14, 0.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sr-badge-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}
.live-pill {
  background: rgba(255, 51, 0, 0.25);
  border: 1px solid var(--neon-orange);
  color: var(--neon-orange);
  padding: 3px 10px;
  border-radius: 20px;
}
.quality-pill { color: var(--text-muted); }

.sr-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--neon-green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 0 25px var(--neon-green-glow);
  text-decoration: none;
}
.sr-headline {
  font-family: var(--font-hud);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.sr-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 640px;
}
.sr-bottom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.tag-tech {
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--neon-cyan);
}

.works-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.work-card {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wc-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 10px;
}
.thumb-vj { background: radial-gradient(circle, #0033ff 20%, #060914 90%); }
.thumb-aftermovie { background: radial-gradient(circle, #ff3300 20%, #120608 90%); }
.thumb-mv { background: radial-gradient(circle, #66ffcc 20%, #040e12 90%); }
.thumb-loops { background: radial-gradient(circle, #66ff00 20%, #051406 90%); }

.wc-badge {
  font-family: var(--font-hud);
  font-size: 0.64rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
}
.neon-green-badge { background: var(--neon-green); color: #000; }
.neon-orange-badge { background: var(--neon-orange); color: #fff; }
.neon-cyan-badge { background: var(--neon-cyan); color: #000; }
.neon-blue-badge { background: var(--neon-blue); color: #fff; }

.wc-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wc-title {
  font-family: var(--font-hud);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.35;
}
.wc-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex: 1;
}
.wc-footer {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
}

/* ==========================================================================
   SECTION 06: MARI BERKOLABORASI (CONTACT)
   ========================================================================== */
.contact-box {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 51, 255, 0.4);
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.c-title {
  font-family: var(--font-hud);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.c-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.channels-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.channel-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.2s ease;
  min-width: 0;
}
.channel-btn:hover {
  border-color: var(--neon-cyan);
}
.ch-icon { font-size: 1.3rem; flex-shrink: 0; }
.ch-info { flex: 1; min-width: 0; }
.ch-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.ch-val {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.ch-arrow {
  color: var(--text-dim);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Quick Contact Form */
.contact-form-side {
  padding: 22px;
  border-radius: 12px;
}
.form-heading {
  font-family: var(--font-hud);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.cyber-input, .cyber-select, .cyber-textarea {
  width: 100%;
  background: #090c18;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 16px; /* Prevents auto-zoom on iOS */
  padding: 10px 12px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.cyber-input:focus, .cyber-select:focus, .cyber-textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(102, 255, 204, 0.25);
}
.cyber-textarea { resize: vertical; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.cyber-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 44px;
  background: #05060a;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
  padding-bottom: 30px;
}
.footer-brand-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer-brand-text {
  font-family: var(--font-hud);
  font-size: 1.1rem;
  font-weight: 900;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.f-col-title {
  display: block;
  font-family: var(--font-hud);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}
.footer-quick-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
}
.footer-quick-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-quick-links a:hover { color: var(--neon-cyan); }
.f-social-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.f-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #101322;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}
.f-icon-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateY(-2px);
}
.f-status-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--neon-green);
}
.footer-bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}
.fb-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & PHONES)
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid, .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-menu, .nav-cta-btn {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: block !important;
  }
  .hud-nav {
    height: 66px;
  }
  .mobile-drawer {
    top: 66px;
  }
  .brand-title {
    font-size: 1rem;
  }
  .brand-sub {
    font-size: 0.55rem;
  }

  /* Spacing */
  .section {
    padding: 60px 0;
  }
  .hero-section {
    padding-top: 90px;
    padding-bottom: 50px;
    min-height: auto;
  }

  /* Hero */
  .hero-logo-halo {
    width: 86px;
    height: 86px;
    border-radius: 20px;
  }
  .hero-logo-big {
    width: 60px;
    height: 60px;
  }
  .hero-main-title {
    font-size: clamp(2rem, 9.5vw, 3.4rem);
  }
  .hero-sub-role {
    font-size: 1rem;
  }
  .role-pill {
    font-size: 0.68rem;
    padding: 4px 10px;
  }
  .hero-tagline {
    font-size: 0.95rem;
  }
  .hero-desc {
    font-size: 0.88rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stat-card {
    padding: 12px 14px;
    gap: 10px;
  }
  .stat-icon {
    font-size: 1.3rem;
  }
  .stat-number {
    font-size: 1.15rem;
  }
  .stat-label {
    font-size: 0.68rem;
  }

  /* Cards & Grids */
  .about-card,
  .contact-box,
  .service-box,
  .software-matrix-box {
    padding: 20px 16px;
  }
  .skills-grid,
  .services-cards-grid,
  .works-list-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .showreel-hero-banner {
    padding: 26px 16px;
  }
  .sr-icon-circle {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
  .sr-headline {
    font-size: 1.15rem;
  }
  .sr-badge-row {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  /* Footer */
  .fb-container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  .telemetry-badge {
    padding: 5px 12px;
  }
  .badge-text {
    font-size: 0.66rem;
  }
  .palette-swatches {
    gap: 8px;
  }
  .swatch-item {
    font-size: 0.65rem;
  }
}
