/* ==========================================================================
   VICKY DIGITAL PROFILE — FINAL CLEAN CSS
   Fixes avatar/photo layout, removes duplicate overrides, keeps premium dark UI.
   ========================================================================== */

:root {
  --bg-space: #030407;
  --glass-bg: rgba(16, 18, 27, 0.42);
  --glass-hover: rgba(22, 25, 38, 0.66);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.15);
  --cyan: #00f0ff;
  --violet: #8a2be2;
  --blue: #0055ff;
  --green: #00ff88;
  --gradient-glow: linear-gradient(135deg, var(--cyan) 0%, #3b82ff 48%, var(--violet) 100%);
  --text-primary: #f8f9fc;
  --text-secondary: #9aa2b5;
  --text-muted: rgba(255, 255, 255, 0.42);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --spring: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s var(--spring);
  --transition-slow: 0.6s var(--spring);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg-space);
  color: var(--text-primary);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -webkit-user-select: none;
  -ms-user-select: none;
    user-select: none;
}

img, svg {
  max-width: 100%;
}

/* ==========================================================================
   CINEMATIC BACKGROUND
   ========================================================================== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.15;
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -120px;
  background: var(--blue);
  animation: drift 15s infinite alternate linear;
}

.orb-2 {
  width: 360px;
  height: 360px;
  bottom: 80px;
  right: -120px;
  background: var(--violet);
  animation: drift 20s infinite alternate-reverse linear;
}

.orb-3 {
  width: 250px;
  height: 250px;
  top: 40%;
  left: 30%;
  background: var(--cyan);
  filter: blur(120px);
  opacity: 0.1;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(50px, 40px, 0); }
}

.subtle-grid {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.card-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 440px;
  padding: 30px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.glass-panel {
  background: linear-gradient(160deg, rgba(30, 32, 44, 0.42) 0%, rgba(12, 14, 20, 0.64) 100%);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

/* ==========================================================================
   MAIN PROFILE CARD — CLEAN STACK, NO OVERLAP
   ========================================================================== */
.profile-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 28px 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-glare {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 24px;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1), transparent 60%);
  transition: opacity var(--transition-fast);
}

.status-badge {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 22px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: rgba(0, 0, 0, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 24px rgba(0,0,0,0.24);
}

.status-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 20px rgba(0,255,136,0.4);
  animation: breathe 3s infinite ease-in-out;
}

@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.22); }
}

.status-text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  line-height: 1;
  color: #a1a7b8;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.avatar-area {
  position: relative !important;
  z-index: 2;
  width: 112px !important;
  height: 112px !important;
  min-width: 112px !important;
  min-height: 112px !important;
  margin: 0 auto 18px !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
}

.avatar-glow {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 112px !important;
  height: 112px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle, rgba(0,240,255,0.42) 0%, rgba(0,85,255,0.28) 35%, rgba(138,43,226,0.16) 55%, transparent 72%) !important;
  filter: blur(12px) !important;
  opacity: 0.72 !important;
  pointer-events: none !important;
  animation: avatarPulse 4.5s ease-in-out infinite !important;
}

@keyframes avatarPulse {
  0%, 100% { transform: scale(0.94); opacity: 0.52; }
  50% { transform: scale(1.04); opacity: 0.78; }
}

.avatar-placeholder {
  position: relative !important;
  z-index: 2 !important;
  width: 92px !important;
  height: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
  min-height: 92px !important;
  max-height: 92px !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  display: block !important;
  border-radius: 50% !important;
  background: #111 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow:
    0 0 0 5px rgba(255,255,255,0.025),
    0 16px 36px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.14) !important;
}

.avatar-photo {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center 43% !important;
  transform: scale(1.08) !important;
}

.avatar-initial {
  display: none !important;
}

.profile-info {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dynamic-greeting {
  display: block;
  margin: 0 0 9px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  line-height: 1.1;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 2.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.text-gradient {
  background: linear-gradient(180deg, #ffffff 0%, #a5abbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.profile-role {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 12px;
  width: fit-content;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
}

.profile-tagline {
  position: relative;
  z-index: 3;
  max-width: 330px;
  margin: 24px auto 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.84;
}

.primary-actions {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  color: #fff;
  border: 0;
  background: var(--gradient-glow);
  background-size: 200% auto;
  box-shadow:
    0 8px 20px rgba(138, 43, 226, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: 0.4s;
}

.btn-primary:hover {
  background-position: right center;
  box-shadow:
    0 10px 25px rgba(0, 240, 255, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-secondary {
  color: #fff;
  border: 1px solid var(--border-highlight);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tap-target:active {
  transform: scale(0.96) !important;
  filter: brightness(0.92);
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
.scroll-hint {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 15px 0 5px;
  opacity: 0.6;
}

.scroll-hint span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.hint-arrow {
  position: relative;
  overflow: hidden;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.1);
}

.hint-arrow::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: dropDown 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes dropDown {
  to { top: 150%; }
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--text-primary);
  text-decoration: none;
}

.link-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: center;
  transition: var(--transition-fast);
}

.link-item:hover {
  background: var(--glass-hover);
  border-color: var(--border-highlight);
  transform: translateX(4px);
}

.link-item:hover::before {
  transform: scaleY(1);
}

.link-icon {
  display: flex;
  align-items: center;
  margin-right: 18px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.link-item:hover .link-icon {
  color: var(--cyan);
}

.link-label {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.chevron,
.copy-ic {
  color: var(--text-secondary);
  opacity: 0.5;
  transition: var(--transition-fast);
}

.link-item:hover .chevron {
  color: #fff;
  opacity: 1;
  transform: translateX(4px);
}

.section-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.section-title::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0,240,255,0.4);
}

.panel-content {
  padding: 24px;
  border-radius: 20px;
}

.about-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 400;
}

.about-text p + p {
  margin-top: 14px;
}

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

.skill-badge {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: default;
  transition: var(--transition-fast);
}

.skill-badge:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(0,240,255,0.1);
}

.portfolio-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  cursor: pointer;
}

.portfolio-card:hover {
  background: var(--glass-hover);
  border-color: var(--border-highlight);
}

.port-info h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.port-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.portfolio-card:hover .chevron {
  color: var(--cyan);
  opacity: 1;
  transform: translateX(4px);
}

.footer-block {
  margin-top: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.btn-cta {
  padding: 18px;
  border-radius: 16px;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.copyright p {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.22) !important;
  font-family: var(--font-body) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ==========================================================================
   ANIMATION HELPERS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  transition: opacity 0.8s var(--spring), transform 0.8s var(--spring);
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-highlight);
  background: rgba(12, 14, 20, 0.8);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: var(--transition-slow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: var(--glass-hover);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 480px) {
  .card-wrapper {
    max-width: 100%;
    padding: 22px 14px 90px;
    gap: 30px;
  }

  .profile-card {
    border-radius: 22px;
    padding: 26px 22px 30px;
  }

  .status-badge {
    margin-bottom: 20px;
    padding: 6px 13px;
  }

  .status-text {
    font-size: 0.6rem;
    letter-spacing: 0.8px;
  }

  .avatar-area {
    width: 106px !important;
    height: 106px !important;
    min-width: 106px !important;
    min-height: 106px !important;
    margin-bottom: 16px !important;
  }

  .avatar-glow {
    width: 106px !important;
    height: 106px !important;
  }

  .avatar-placeholder {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    max-width: 88px !important;
    min-height: 88px !important;
    max-height: 88px !important;
  }

  .profile-name {
    font-size: 2rem;
  }

  .profile-role,
  .profile-tagline {
    font-size: 0.9rem;
  }

  .primary-actions {
    gap: 10px;
  }

  .btn {
    min-height: 48px;
    padding: 13px 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 360px) {
  .primary-actions {
    grid-template-columns: 1fr;
  }
}

/* Custom Scrollbar untuk Browser Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0e12; /* Sesuaikan dengan warna background gelapmu */
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes ambientPulse {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(5px, -10px) scale(1.05); opacity: 0.7; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
}

.glow-overlay {
    animation: ambientPulse 8s ease-in-out infinite;
    filter: blur(120px); /* Memastikan blur tetap halus */
}
/* 1. Paksa SEMUA elemen tidak bisa di-highlight */
* {
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE & Edge */
    user-select: none; /* Standard syntax */
    -webkit-tap-highlight-color: transparent; /* Hilangin kotak biru pas di-tap di HP */
}

/* 2. KECUALI bagian yang emang sengaja buat disalin (misal teks alamat email) */
/* Nanti di HTML, tambahin class="allow-select" di teks yang boleh di-copy */
.allow-select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

/* Ganti .profile-img dengan class foto lu yang bener */
.profile-img {
    animation: softPulse 3s infinite;
}
.whatsapp-btn-large {
    max-width: 350px;
    margin: 0 auto; /* Biar posisinya pas di tengah */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Jarak antara icon dan teks */
}

/* --- STYLE UNTUK SECTION NOW --- */
.now-section {
    width: 100%;
    max-width: 540px; /* Menyelaraskan dengan lebar card utama lu */
    margin: 40px auto 20px auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none; /* Menjaga teks tetap natural */
    letter-spacing: 0.5px;
}

/* Titik Hijau Berdetak Halus (Glow Indikator Aktif) */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.now-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Card Transparan Mengikuti Estetika Web Lu */
.now-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.now-card:hover {
    border-color: rgba(0, 240, 255, 0.2); /* Efek glow tipis pas disentuh/hover */
    transform: translateY(-2px);
}

.now-icon {
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.now-content h4 {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.now-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

body {
    background-color: #0d0e12; /* Warna dasar lu */
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 240, 255, 0.03) 0px, transparent 40%),
        radial-gradient(at 100% 100%, rgba(138, 43, 226, 0.04) 0px, transparent 40%);
    background-attachment: fixed;
}

/* --- STAGGERED REVEAL EFFECT --- */
/* Base style saat elemen belum muncul */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Saat class 'active' ditempelkan oleh JS */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Jeda otomatis untuk elemen yang berurutan */
.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }

/* --- PREMIUM GRADIENT DIVIDER --- */
.divider {
    height: 1px;
    width: 100%;
    max-width: 540px;
    margin: 30px auto;
    border: none;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(0, 240, 255, 0.2) 30%, 
        rgba(138, 43, 226, 0.2) 70%, 
        transparent 100%
    );
}