/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: #06020f;
  color: #a0aec0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grid latar belakang sangat tipis */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 51, 234, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 51, 234, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
* { position: relative; z-index: 1; }
body::before { z-index: 0; }

/* ===== VARIABEL WARNA ===== */
/* Ungu   : #9333ea */
/* Pink   : #ec4899 */
/* Cyan   : #06b6d4 */
/* Putih  : #f1f5f9 */

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(6, 2, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(147, 51, 234, 0.15);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(147,51,234,0.4);
  box-shadow: 0 0 12px rgba(147,51,234,0.3);
}
.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.02em;
}
.logo-text span { color: #a855f7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: #64748b;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #e2e8f0; background: rgba(255,255,255,0.04); }

.nav-cta {
  background: linear-gradient(135deg, #7c3aed, #9333ea) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 0 16px rgba(147,51,234,0.3);
}
.nav-cta:hover { opacity: 0.85 !important; box-shadow: 0 0 24px rgba(147,51,234,0.5) !important; }

.nav-battle {
  border: 1px solid rgba(6,182,212,0.35) !important;
  color: #06b6d4 !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-battle:hover { background: rgba(6,182,212,0.08) !important; box-shadow: 0 0 16px rgba(6,182,212,0.2) !important; color: #22d3ee !important; }

.nav-battle-cta {
  background: linear-gradient(135deg, #1e1240, #2d1b5e) !important;
  border: 1px solid rgba(168,85,247,0.5) !important;
  color: #c084fc !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: all 0.2s !important;
  box-shadow: 0 0 12px rgba(168,85,247,0.15);
}
.nav-battle-cta:hover { background: linear-gradient(135deg, #2d1b5e, #3d1f80) !important; box-shadow: 0 0 22px rgba(168,85,247,0.35) !important; color: #e9d5ff !important; border-color: #a855f7 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #a855f7; border-radius: 2px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(6,2,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(147,51,234,0.12);
  padding: 16px;
  z-index: 998;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a { color: #94a3b8; padding: 12px 16px; display: block; border-radius: 6px; font-size: 15px; }
.mobile-menu a:hover { background: rgba(147,51,234,0.08); color: #e2e8f0; }
.mobile-menu .nav-cta { margin-top: 8px; text-align: center; border-radius: 8px !important; }

/* ===== LAYOUT ===== */
.container { max-width: 1060px; margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section-dark { background: rgba(0,0,0,0.25); border-top: 1px solid rgba(147,51,234,0.07); border-bottom: 1px solid rgba(147,51,234,0.07); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a855f7;
  margin-bottom: 16px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: #a855f7; }

.section-title { margin-bottom: 52px; }
.section-title h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 700; color: #f1f5f9; line-height: 1.25; margin-bottom: 12px; }
.section-title p { color: #64748b; font-size: 15px; max-width: 500px; }
.section-title.center { text-align: center; }
.section-title.center p { margin: 0 auto; }

/* ===== GRADIENT TEXT ===== */
.grad {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-cyan {
  background: linear-gradient(135deg, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  box-shadow: 0 0 20px rgba(147,51,234,0.25);
}
.btn-primary:hover { opacity: 0.9; box-shadow: 0 0 32px rgba(147,51,234,0.45); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #a855f7;
  border: 1px solid rgba(168,85,247,0.45);
}
.btn-outline:hover { background: rgba(168,85,247,0.08); border-color: #a855f7; transform: translateY(-1px); }

.btn-tg {
  background: linear-gradient(135deg, #0088cc, #006699);
  color: white;
  box-shadow: 0 0 16px rgba(0,136,204,0.2);
}
.btn-tg:hover { opacity: 0.9; box-shadow: 0 0 28px rgba(0,136,204,0.4); transform: translateY(-1px); }

.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 20px 60px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Glow bola belakang hero */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(147,51,234,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(236,72,153,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content { z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a855f7;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-logo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(147,51,234,0.3);
  box-shadow:
    0 0 40px rgba(147,51,234,0.25),
    0 0 80px rgba(236,72,153,0.1),
    0 0 120px rgba(147,51,234,0.08);
  animation: float 6s ease-in-out infinite;
}

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

/* ===== EXPERIENCE BADGES ===== */
.exp-row {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.exp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(147,51,234,0.07);
  border: 1px solid rgba(147,51,234,0.15);
  border-radius: 8px;
}
.exp-badge .num { font-size: 22px; font-weight: 800; color: #a855f7; line-height: 1; }
.exp-badge .lbl { font-size: 12px; color: #64748b; line-height: 1.4; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-focus-list { list-style: none; margin-top: 24px; }
.about-focus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: #94a3b8;
  font-size: 15px;
}
.about-focus-list li:last-child { border: none; }
.about-focus-list li::before { content: ''; width: 6px; height: 6px; background: #a855f7; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 8px #a855f7; }

.about-exp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.about-exp-card {
  background: rgba(147,51,234,0.07);
  border: 1px solid rgba(147,51,234,0.15);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}
.about-exp-card .num { font-size: 32px; font-weight: 800; color: #a855f7; display: block; line-height: 1; margin-bottom: 6px; }
.about-exp-card .lbl { font-size: 13px; color: #64748b; }

.about-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}

/* ===== PRODUK ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: rgba(10, 5, 25, 0.8);
  border: 1px solid rgba(147,51,234,0.12);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.5), transparent);
}
.product-card:hover {
  border-color: rgba(147,51,234,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(147,51,234,0.08);
}

.product-icon {
  width: 44px; height: 44px;
  background: rgba(147,51,234,0.12);
  border: 1px solid rgba(147,51,234,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.product-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.product-price {
  font-size: 22px;
  font-weight: 800;
  color: #a855f7;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.product-price span { font-size: 13px; font-weight: 400; color: #64748b; }

/* Produk featured (kolom lebar) */
.product-card.featured {
  grid-column: span 1;
  border-color: rgba(168,85,247,0.25);
  background: rgba(147,51,234,0.05);
}
.product-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(236,72,153,0.12);
  color: #ec4899;
  border: 1px solid rgba(236,72,153,0.25);
}

/* ===== TESTIMONI ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testi-card {
  background: rgba(10, 5, 25, 0.7);
  border: 1px solid rgba(147,51,234,0.1);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(147,51,234,0.25); }

.quote-icon {
  font-size: 32px;
  line-height: 1;
  color: rgba(168,85,247,0.3);
  font-family: Georgia, serif;
  margin-bottom: 12px;
  display: block;
}
.testi-text {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 36px; height: 36px;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #a855f7;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { color: #e2e8f0; font-size: 14px; font-weight: 600; }
.testi-label { font-size: 11px; color: #475569; margin-top: 2px; }

/* ===== CHALLENGE ===== */
.challenge-box {
  background: rgba(10, 5, 25, 0.8);
  border: 1px solid rgba(236,72,153,0.2);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.challenge-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ec4899, transparent);
}
.challenge-box::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.challenge-box h2 { font-size: 32px; font-weight: 800; color: #f1f5f9; margin-bottom: 12px; }
.challenge-box p { color: #64748b; font-size: 15px; line-height: 1.8; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ===== FREE SIGNALER ===== */
.signaler-box {
  background: rgba(6,182,212,0.04);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.signaler-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
}
.signaler-box h2 { font-size: 32px; font-weight: 800; color: #f1f5f9; margin-bottom: 12px; }
.signaler-box p { color: #64748b; font-size: 15px; line-height: 1.8; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-cyan {
  background: transparent;
  color: #06b6d4;
  border: 1px solid rgba(6,182,212,0.4);
  box-shadow: 0 0 16px rgba(6,182,212,0.1);
}
.btn-cyan:hover { background: rgba(6,182,212,0.08); border-color: #06b6d4; box-shadow: 0 0 24px rgba(6,182,212,0.25); transform: translateY(-1px); }

/* ===== FAQ ===== */
.faq-wrap { max-width: 680px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(147,51,234,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  background: rgba(10,5,25,0.6);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: #e2e8f0; }
.faq-icon { font-size: 20px; color: #a855f7; flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-a { display: none; padding: 0 22px 18px; color: #64748b; font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open { border-color: rgba(147,51,234,0.2); }
.faq-item.open .faq-q { color: #e2e8f0; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(147,51,234,0.1);
  padding: 48px 20px 28px;
  background: rgba(0,0,0,0.4);
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand .logo-wrap { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: #374151; line-height: 1.7; max-width: 240px; }
.footer-col h4 { color: #94a3b8; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #374151; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #a855f7; }
.footer-bottom {
  max-width: 1060px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: #1f2937; }
.disclaimer {
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  color: #1f2937;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-logo { width: 200px; height: 200px; }
  .hero-logo-wrap { order: -1; }
  .hero p { margin: 0 auto 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-row { justify-content: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-exp { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .challenge-box, .signaler-box { padding: 40px 24px; }
  .challenge-box h2, .signaler-box h2 { font-size: 26px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== BTN BATTLE (hero) ===== */
.btn-battle {
  background: linear-gradient(135deg, #1e1240, #2d1b5e);
  color: #c084fc;
  border: 1px solid rgba(168,85,247,0.45);
  box-shadow: 0 0 14px rgba(168,85,247,0.15);
}
.btn-battle:hover {
  background: linear-gradient(135deg, #2d1b5e, #3d1f80);
  color: #e9d5ff;
  border-color: #a855f7;
  box-shadow: 0 0 26px rgba(168,85,247,0.35);
  transform: translateY(-1px);
}

/* ===== SPLASH SCREEN ===== */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #06020f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.45s ease;
}
.splash-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(147,51,234,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.splash-overlay.splash-out {
  opacity: 0;
  pointer-events: none;
}
.splash-content {
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.splash-logo {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.45s cubic-bezier(0.34,1.56,0.64,1), transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.splash-logo.vis {
  opacity: 1;
  transform: scale(1);
}
.splash-logo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168,85,247,0.55);
  box-shadow: 0 0 0 0 rgba(168,85,247,0.4);
  animation: splash-ring 1.6s ease-out infinite;
}
@keyframes splash-ring {
  0%   { box-shadow: 0 0 0 0 rgba(168,85,247,0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(168,85,247,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,85,247,0); }
}
.splash-brand {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}
.splash-brand.vis {
  opacity: 1;
  transform: translateY(0);
}
.splash-welcome {
  font-size: 11px;
  color: #475569;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.splash-brandname {
  font-size: clamp(38px, 10vw, 68px);
  font-weight: 900;
  background: linear-gradient(100deg, #7c3aed 0%, #a855f7 40%, #ec4899 70%, #a855f7 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
  animation: splash-shimmer 2s linear infinite;
}
@keyframes splash-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.splash-tagline {
  font-size: 11px;
  color: #06b6d4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.splash-skip {
  position: absolute;
  bottom: 28px;
  font-size: 10px;
  color: #1f2937;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== TESTIMONI SCREENSHOT CAROUSEL ===== */
.testi-carousel {
  margin-top: 16px;
}
.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 16px 0 24px;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-slide {
  flex: 0 0 auto;
  width: clamp(240px, 70vw, 320px);
  scroll-snap-align: center;
}
.testi-img-frame {
  background: rgba(147,51,234,0.06);
  border: 1px solid rgba(147,51,234,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(147,51,234,0.1), 0 4px 24px rgba(0,0,0,0.45);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testi-img-frame:hover {
  box-shadow: 0 0 50px rgba(168,85,247,0.25), 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.testi-img-frame img {
  width: 100%;
  display: block;
}
.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(168,85,247,0.25);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
  flex-shrink: 0;
}
.testi-dot.active {
  background: #a855f7;
  width: 22px;
}
