/* ═══════════════════════════════════════════════════════
   ShingenAI — Japanese Cyberpunk Design System
   Neon Cyan • Violet • Dark Navy • Samurai Aesthetic
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
  /* Cyberpunk Palette */
  --bg-1: #070b14;
  --bg-2: #0c1120;
  --bg-3: #111827;
  --bg-card: rgba(0,240,255,0.02);
  --bg-card-hover: rgba(0,240,255,0.05);
  --bg-glass: rgba(0,240,255,0.03);

  --cyan: #00f0ff;
  --cyan-soft: rgba(0,240,255,0.08);
  --cyan-border: rgba(0,240,255,0.2);
  --cyan-glow: rgba(0,240,255,0.3);

  --violet: #a855f7;
  --violet-soft: rgba(168,85,247,0.08);
  --violet-border: rgba(168,85,247,0.25);

  --pink: #ec4899;
  --pink-soft: rgba(236,72,153,0.1);

  --green: #22c55e;
  --green-soft: rgba(34,197,94,0.08);
  --red: #ef4444;
  --red-soft: rgba(239,68,68,0.08);
  --amber: #f59e0b;
  --amber-soft: rgba(245,158,11,0.08);
  --amber-border: rgba(245,158,11,0.25);
  --blue: #3b82f6;

  --text-1: #e8f0fe;
  --text-2: #8892a4;
  --text-3: #4b5563;

  --border: rgba(0,240,255,0.06);
  --border-light: rgba(0,240,255,0.12);

  /* Spacing */
  --space-xs: 4px; --space-s: 8px; --space-m: 16px;
  --space-l: 24px; --space-xl: 32px; --space-2xl: 48px;

  /* Radius */
  --radius-s: 6px; --radius-m: 10px; --radius-l: 14px;
  --radius-xl: 18px; --radius-full: 100px;

  /* Fonts */
  --font-sans: 'Inter', 'Noto Sans JP', system-ui, sans-serif;
  --font-display: 'Orbitron', monospace;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, select, textarea { font-family: inherit; outline: none; }
img { max-width: 100%; }
table { border-collapse: collapse; width: 100%; }

/* ── Neon Glow Utilities ───────────────────────── */
.glow-cyan { text-shadow: 0 0 10px var(--cyan), 0 0 40px rgba(0,240,255,0.2); }
.glow-violet { text-shadow: 0 0 10px var(--violet), 0 0 40px rgba(168,85,247,0.2); }

/* ── Buttons ───────────────────────────────────── */
.btn-cyber {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-s);
  background: linear-gradient(135deg, var(--cyan), #0ea5e9);
  color: #000; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.05em;
  border: none;
  box-shadow: 0 0 20px rgba(0,240,255,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all var(--duration) var(--ease);
  position: relative; overflow: hidden;
}
.btn-cyber::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-cyber:hover::after { left: 100%; }
.btn-cyber:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,240,255,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius-s);
  background: transparent;
  border: 1px solid var(--cyan-border);
  color: var(--cyan); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em;
  transition: all var(--duration) var(--ease);
}
.btn-ghost:hover {
  background: var(--cyan-soft);
  box-shadow: 0 0 15px rgba(0,240,255,0.15);
}

.btn-violet {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-s);
  background: linear-gradient(135deg, var(--violet), #7c3aed);
  color: #fff; font-weight: 700; font-size: 14px;
  border: none;
  box-shadow: 0 0 20px rgba(168,85,247,0.3);
  transition: all var(--duration) var(--ease);
}
.btn-violet:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(168,85,247,0.45);
}

/* ── Animated Background ──────────────────────── */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
}
.orb {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(100px); animation: float 10s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; top: -200px; left: -100px; background: rgba(0,240,255,0.06); }
.orb-2 { width: 500px; height: 500px; top: 300px; right: -200px; background: rgba(168,85,247,0.05); animation-delay: -4s; }
.orb-3 { width: 400px; height: 400px; bottom: -100px; left: 30%; background: rgba(236,72,153,0.04); animation-delay: -7s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.05); }
  66% { transform: translate(-25px, 15px) scale(0.95); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   LANDING PAGE
   ═══════════════════════════════════════════════════════ */

/* ── Navbar ────────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: transparent;
  transition: all 400ms var(--ease);
}
.lp-nav.scrolled {
  background: rgba(7,11,20,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.lp-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0,240,255,0.4);
}
.lp-brand img { width: 36px; height: 36px; border-radius: 50%; }
.lp-brand-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px; color: var(--text-3);
  margin-left: -4px; font-weight: 400;
}

/* ── Hero ──────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-logo { width: 120px; height: 120px; margin-bottom: 24px; animation: pulse-logo 3s ease-in-out infinite; border-radius: 50%; filter: drop-shadow(0 0 30px rgba(0,240,255,0.3)); }
@keyframes pulse-logo {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(0,240,255,0.3)); }
  50% { filter: drop-shadow(0 0 50px rgba(0,240,255,0.5)) drop-shadow(0 0 80px rgba(168,85,247,0.2)); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800; line-height: 1.2;
  max-width: 800px; margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: var(--text-2); font-size: clamp(14px, 2vw, 17px);
  max-width: 580px; margin-bottom: 36px; line-height: 1.7;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.hero-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 500;
  background: rgba(0,240,255,0.04);
  border: 1px solid var(--cyan-border);
  color: var(--text-2); backdrop-filter: blur(10px);
}
.hero-chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
}
.stat-row {
  display: flex; justify-content: center; gap: 40px;
  padding: 40px 24px 0; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,240,255,0.3);
}
.stat-label { color: var(--text-3); font-size: 12px; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Model Scroll ──────────────────────────────── */
.models-showcase { padding: 40px 0 80px; overflow: hidden; position: relative; z-index: 1; }
.models-showcase h2 {
  font-family: var(--font-display); font-size: clamp(20px, 3vw, 28px);
  font-weight: 700; text-align: center; margin-bottom: 4px;
  color: var(--text-1); letter-spacing: 0.03em;
}
.section-sub { text-align: center; color: var(--text-3); font-size: 14px; margin-bottom: 32px; }
.models-scroll {
  display: flex; gap: 12px;
  animation: scroll-x 30s linear infinite;
  width: max-content; padding: 16px 0;
}
.models-scroll:hover { animation-play-state: paused; }
@keyframes scroll-x { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.model-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: var(--radius-s);
  background: var(--bg-card);
  border: 1px solid var(--border);
  white-space: nowrap; flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.model-chip:hover { border-color: var(--cyan-border); box-shadow: 0 0 15px rgba(0,240,255,0.1); }
.model-chip-icon { font-size: 18px; }
.model-chip-name { font-size: 13px; font-weight: 600; }
.model-chip-price { color: var(--cyan); font-size: 12px; font-weight: 700; font-family: var(--font-display); }

/* ── Features ──────────────────────────────────── */
.features { padding: 40px 24px 80px; max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.feature-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--cyan-border); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.feature-icon.cy { background: var(--cyan-soft); border: 1px solid var(--cyan-border); }
.feature-icon.vi { background: var(--violet-soft); border: 1px solid var(--violet-border); }
.feature-icon.gr { background: var(--green-soft); border: 1px solid rgba(34,197,94,0.2); }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-2); font-size: 13px; line-height: 1.6; }

/* ── Compare ───────────────────────────────────── */
.compare-section { padding: 60px 24px; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.compare-section h2, .faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700; text-align: center; margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.compare-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--bg-card);
}
.compare-table thead { background: rgba(0,240,255,0.03); }
.compare-table th {
  padding: 14px 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cyan); text-align: left;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
}
.compare-table td {
  padding: 14px 20px; font-size: 14px;
  border-bottom: 1px solid var(--border); color: var(--text-2);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr { transition: background var(--duration); }
.compare-table tr:hover { background: rgba(0,240,255,0.02); }
.price-old { color: var(--text-3); text-decoration: line-through; }
.price-kami { color: var(--cyan); font-weight: 700; font-family: var(--font-display); }
.badge-hemat {
  display: inline-block; padding: 4px 10px; border-radius: var(--radius-s);
  font-size: 11px; font-weight: 700;
  background: var(--cyan-soft); color: var(--cyan);
  border: 1px solid var(--cyan-border);
  font-family: var(--font-display);
}
.status-col { text-align: right; }

/* ── FAQ ───────────────────────────────────────── */
.faq-section { padding: 60px 24px; max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-m);
  margin-bottom: 10px; overflow: hidden;
  background: var(--bg-card);
  transition: all var(--duration) var(--ease);
}
.faq-item:hover { border-color: var(--border-light); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer;
  font-size: 14px; font-weight: 600;
}
.faq-icon {
  width: 26px; height: 26px; border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-glass); border: 1px solid var(--border);
  font-size: 14px; color: var(--text-3);
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 300ms var(--ease), padding 300ms var(--ease); }
.faq-item.active .faq-a { max-height: 200px; padding: 0 20px 16px; }
.faq-item.active .faq-icon { background: var(--cyan-soft); color: var(--cyan); border-color: var(--cyan-border); }
.faq-a p { color: var(--text-2); font-size: 13px; line-height: 1.7; }

/* ── CTA ───────────────────────────────────────── */
.cta-section { padding: 80px 24px; text-align: center; position: relative; z-index: 1; }
.cta-box {
  max-width: 600px; margin: 0 auto;
  padding: 48px 32px;
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-l);
  position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(0,240,255,0.05);
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--cyan));
}
.cta-box h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.03em; }
.cta-box p { color: var(--text-2); margin-bottom: 28px; font-size: 14px; }

/* ── Footer ────────────────────────────────────── */
.lp-footer {
  padding: 48px 24px; text-align: center;
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.lp-footer .lp-brand { justify-content: center; margin-bottom: 16px; display: inline-flex; }
.lp-footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; }
.lp-footer-links a { color: var(--text-3); font-size: 13px; transition: color var(--duration); }
.lp-footer-links a:hover { color: var(--cyan); }
.lp-footer-copy { color: var(--text-3); font-size: 12px; }

/* ═══════════════════════════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════════════════════════ */
.login-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 24px;
  background: var(--bg-1);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(0,240,255,0.04) 0%, transparent 60%);
}
.login-box {
  width: 100%; max-width: 420px;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}
.login-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.login-back {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-3); font-size: 13px;
  margin-bottom: 32px; transition: color var(--duration);
}
.login-back:hover { color: var(--cyan); }
.login-logo {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--text-1); margin-bottom: 8px;
}
.login-logo span {
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0,240,255,0.3);
}
.login-sub { color: var(--text-3); font-size: 14px; margin-bottom: 32px; }

.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 24px;
  background: #fff; color: #1a1a1a;
  border: none; border-radius: var(--radius-s);
  font-size: 15px; font-weight: 600;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.btn-google:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.btn-google img, .btn-google svg { width: 20px; height: 20px; }

.login-referral { margin-top: 24px; text-align: center; }
.login-referral button {
  background: none; color: var(--text-3); font-size: 13px;
  border: none; border-bottom: 1px dashed var(--text-3);
  padding-bottom: 2px; transition: color var(--duration);
}
.login-referral button:hover { color: var(--cyan); }
.referral-input {
  width: 100%; padding: 12px 16px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-s); color: var(--text-1);
  font-size: 14px; margin-top: 12px; display: none;
  transition: border-color var(--duration);
}
.referral-input:focus { border-color: var(--cyan-border); box-shadow: 0 0 10px rgba(0,240,255,0.1); }
.referral-input.show { display: block; }
.login-footer { margin-top: 32px; text-align: center; }
.login-footer p { color: var(--text-3); font-size: 12px; }
.login-footer a { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════
   DASHBOARD
   ═══════════════════════════════════════════════════════ */
.db-layout { background: var(--bg-1); min-height: 100vh; position: relative; }

/* ── Dashboard Navbar ──────────────────────────── */
.db-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px; height: 56px;
  background: rgba(7,11,20,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.db-brand {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,240,255,0.3);
  white-space: nowrap;
}
.db-brand-sub {
  font-size: 10px; font-weight: 500;
  background: var(--violet-soft);
  color: var(--violet);
  padding: 2px 8px; border-radius: var(--radius-s);
  margin-left: 8px;
  border: 1px solid var(--violet-border);
}
.db-nav-divider {
  width: 1px; height: 24px;
  background: var(--border);
  flex-shrink: 0;
}
.db-nav-tabs {
  display: flex; gap: 2px;
  flex: 1; overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
}
.db-nav-tabs::-webkit-scrollbar { display: none; }

.db-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-s);
  background: transparent;
  color: var(--text-3); font-size: 13px; font-weight: 500;
  white-space: nowrap;
  transition: all var(--duration) var(--ease);
}
.db-tab:hover { color: var(--text-2); background: rgba(0,240,255,0.03); }
.db-tab.active {
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
}
.db-tab i { font-size: 16px; }

.db-nav-right {
  display: flex; align-items: center; gap: 12px;
  margin-left: auto; flex-shrink: 0;
}
.db-saldo-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-s);
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  color: var(--cyan); font-size: 12px; font-weight: 700;
  font-family: var(--font-display);
  transition: all var(--duration) var(--ease);
}
.db-saldo-btn:hover { background: rgba(0,240,255,0.12); box-shadow: 0 0 15px rgba(0,240,255,0.15); }

.db-user-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 10px; border-radius: var(--radius-s);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}
.db-user-btn:hover { background: rgba(0,240,255,0.03); }
.db-avatar {
  width: 30px; height: 30px; border-radius: var(--radius-s);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: flex; align-items: center; justify-content: center;
  color: #000; font-size: 12px; font-weight: 700;
}
.db-user-email { font-size: 12px; color: var(--text-2); }
.db-chevron { font-size: 12px; color: var(--text-3); }

/* User Dropdown */
.user-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 8px;
  min-width: 200px;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-m);
  padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 200ms var(--ease);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.user-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-s);
  font-size: 13px; color: var(--text-2); cursor: pointer;
  transition: all var(--duration);
}
.dropdown-item:hover { background: var(--cyan-soft); color: var(--text-1); }
.dropdown-item.danger:hover { color: var(--red); background: var(--red-soft); }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ── Content Area ──────────────────────────────── */
.db-content {
  display: none; padding: 28px 24px;
  max-width: 1200px; margin: 0 auto;
  animation: fadeIn 300ms var(--ease);
}
.db-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.page-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.page-sub { color: var(--text-3); font-size: 13px; margin-bottom: 28px; }

/* ── Cards ─────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.card:hover { border-color: var(--border-light); }
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.card-title { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.card-body { padding: 20px; }

/* ── Stats Grid ────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; margin-top: 20px;
}
.stat-card {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  transition: all var(--duration) var(--ease);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.stat-card:hover { border-color: var(--cyan-border); transform: translateY(-2px); }
.stat-card:hover::before { opacity: 1; }
.stat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.stat-label { color: var(--text-3); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-icon-badge {
  width: 32px; height: 32px; border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.stat-icon-badge.grey { background: var(--bg-glass); color: var(--text-3); border: 1px solid var(--border); }
.stat-icon-badge.green { background: var(--green-soft); color: var(--green); }
.stat-icon-badge.amber { background: var(--amber-soft); color: var(--amber); }
.stat-icon-badge.red { background: var(--red-soft); color: var(--red); }
.stat-value { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--text-1); }
.stat-desc { color: var(--text-3); font-size: 11px; margin-top: 4px; }

/* ── Announcements ─────────────────────────────── */
.announce-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-m);
  margin-bottom: 10px;
  transition: all var(--duration) var(--ease);
}
.announce-card:hover { border-color: rgba(245,158,11,0.4); box-shadow: 0 0 20px rgba(245,158,11,0.05); }
.announce-icon { font-size: 24px; flex-shrink: 0; }
.announce-body { flex: 1; }
.announce-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.announce-desc { color: var(--text-3); font-size: 13px; }

/* ── Generate ──────────────────────────────────── */
.gen-search-bar { position: relative; margin-bottom: 16px; }
.gen-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-3); font-size: 16px; }
.gen-search-bar input {
  width: 100%; padding: 12px 16px 12px 44px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-m); color: var(--text-1); font-size: 14px;
  transition: all var(--duration);
}
.gen-search-bar input:focus { border-color: var(--cyan-border); box-shadow: 0 0 15px rgba(0,240,255,0.1); }
.gen-search-bar input::placeholder { color: var(--text-3); }

.gen-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-chip {
  padding: 7px 14px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 500;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-3); cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.filter-chip:hover { border-color: var(--border-light); color: var(--text-2); }
.filter-chip.active {
  background: var(--cyan-soft); border-color: var(--cyan-border); color: var(--cyan);
}

/* ── Model Grid ────────────────────────────────── */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.model-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-m); overflow: hidden; cursor: pointer;
  transition: all 300ms var(--ease); position: relative;
}
.model-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  opacity: 0; transition: opacity 0.3s;
}
.model-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 15px rgba(0,240,255,0.08);
}
.model-card:hover::before { opacity: 1; }
.model-card-thumb {
  height: 100px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; border-bottom: 1px solid var(--border);
}
.model-card-body { padding: 14px; }
.model-card-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.model-card-desc { color: var(--text-3); font-size: 12px; margin-bottom: 10px; line-height: 1.5; }
.model-card-footer { display: flex; justify-content: space-between; align-items: center; }
.model-price { color: var(--cyan); font-weight: 700; font-size: 13px; font-family: var(--font-display); }
.model-badge {
  padding: 3px 8px; border-radius: var(--radius-s);
  font-size: 10px; font-weight: 600;
  background: var(--bg-glass); border: 1px solid var(--border);
  color: var(--text-3); text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Top-Up ────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.topup-userid-card {
  padding: 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-m); margin-bottom: 16px;
}
.topup-userid-label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.topup-userid-sub { color: var(--text-3); font-size: 12px; margin-bottom: 14px; }
.topup-userid-row { display: flex; align-items: center; gap: 10px; }
.topup-userid-value {
  flex: 1; padding: 10px 14px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-s);
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: 2px; color: var(--cyan);
  text-shadow: 0 0 8px rgba(0,240,255,0.2);
}
.btn-copy {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 14px; border-radius: var(--radius-s);
  background: var(--bg-glass); border: 1px solid var(--border);
  color: var(--text-2); font-size: 13px; font-weight: 500;
  transition: all var(--duration);
}
.btn-copy:hover { border-color: var(--cyan-border); color: var(--cyan); }
.btn-copy.copied { background: var(--green-soft); border-color: rgba(34,197,94,0.3); color: var(--green); }

.topup-steps-card {
  padding: 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-m);
}
.topup-steps-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.topup-step { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: var(--text-2); }
.step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan-soft); border: 1px solid var(--cyan-border);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
  font-family: var(--font-display);
}
.topup-warning {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 14px; padding: 12px 14px;
  border-radius: var(--radius-s);
  background: var(--amber-soft); border: 1px solid var(--amber-border);
  color: var(--amber); font-size: 12px;
}
.topup-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.topup-pkg {
  position: relative; padding: 20px 14px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-m); cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.topup-pkg:hover { border-color: var(--cyan-border); box-shadow: 0 0 15px rgba(0,240,255,0.08); }
.topup-pkg-badge {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  padding: 2px 10px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #000; font-size: 10px; font-weight: 700; white-space: nowrap;
}
.topup-pkg-amount { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text-1); }
.topup-pkg-label { color: var(--text-3); font-size: 11px; margin-top: 4px; }
.topup-pkg.popular { border-color: var(--cyan-border); }

/* ── Profile ───────────────────────────────────── */
.profile-layout { display: grid; grid-template-columns: 200px 1fr; gap: 20px; }
.profile-sidebar { display: flex; flex-direction: column; gap: 2px; }
.profile-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius-s);
  background: transparent; color: var(--text-3);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--duration);
}
.profile-tab:hover { background: rgba(0,240,255,0.03); color: var(--text-2); }
.profile-tab.active { background: var(--cyan-soft); color: var(--cyan); border: 1px solid var(--cyan-border); }

.profile-content {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-m); padding: 28px;
}
.profile-section-header h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.profile-section-header p { color: var(--text-3); font-size: 12px; margin-bottom: 20px; }
.profile-field { padding: 14px 0; border-bottom: 1px solid var(--border); }
.profile-field:last-child { border-bottom: none; }
.profile-field-label { color: var(--text-3); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.profile-field-value { font-size: 14px; font-weight: 600; }

/* ── Empty state ───────────────────────────────── */
.empty-state { text-align: center; padding: 48px 24px; color: var(--text-3); font-size: 14px; }
.empty-icon { font-size: 40px; margin-bottom: 12px; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .lp-nav { padding: 12px 16px; }
  .db-nav { padding: 0 12px; gap: 6px; }
  .db-brand-sub { display: none; }
  .db-tab span { display: none; }
  .db-tab { padding: 8px 10px; }
  .db-tab i { font-size: 18px; }
  .db-user-email, .db-chevron { display: none; }
  .db-saldo-btn { padding: 6px 10px; font-size: 11px; }
  .db-content { padding: 16px 12px; }
  .page-title { font-size: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-card { padding: 14px; }
  .stat-value { font-size: 20px; }
  .model-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .model-card-thumb { height: 70px; font-size: 28px; }
  .model-card-body { padding: 10px; }
  .model-card-name { font-size: 12px; }
  .model-card-desc { font-size: 11px; }
  .two-col { grid-template-columns: 1fr; }
  .topup-packages { grid-template-columns: repeat(2, 1fr); }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sidebar { flex-direction: row; overflow-x: auto; }
  .hero { padding: 100px 20px 60px; }
  .hero-logo { width: 80px; height: 80px; }
  .hero-meta { gap: 6px; }
  .hero-chip { padding: 6px 10px; font-size: 11px; }
  .stat-row { gap: 24px; }
  .stat-num { font-size: 24px; }
  .features, .compare-section, .faq-section { padding: 40px 16px; }
  .compare-table { min-width: 500px; }
  .compare-section { overflow-x: auto; }
}
@media (max-width: 400px) {
  .stats-grid, .model-grid, .topup-packages { grid-template-columns: 1fr; }
  .db-nav-divider { display: none; }
  .stat-row { gap: 16px; }
}