:root {
  --bg: #05060a;
  --panel: #0a0c14;
  --border: rgba(148, 163, 184, 0.15);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --purple: #a78bfa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1280px, 100%); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 40px -12px rgba(34, 211, 238, 0.25);
}
.hover-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 0 30px -10px rgba(34, 211, 238, 0.2);
}
.hover-card:hover .feature-icon {
  transform: scale(1.1);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(37,99,235,0.2));
  color: var(--cyan);
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.25rem;
  border-radius: .9rem;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}
.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(34, 211, 238, 0.35);
}
.btn-secondary {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: white;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
}
.magnetic-wrap {
  display: inline-block;
  transition: transform 0.2s ease;
}
.magnetic-wrap:active {
  transform: scale(0.97);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible,
.hero-enter.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-enter {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.navbar-scrolled {
  background: rgba(5, 6, 10, 0.7);
  border-bottom-color: rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-link {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active { color: white; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  transition: opacity 0.3s ease;
}
.nav-brand:hover { opacity: 0.9; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.2);
}
.section-band {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(10, 12, 20, 0.5);
}
.section-glow {
  position: relative;
}
.section-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(30, 58, 138, 0.1), transparent);
  pointer-events: none;
}
.badge {
  display: inline-block;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(34,211,238,.12);
  color: var(--cyan);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero { padding: 8rem 0 5rem; position: relative; overflow: hidden; min-height: 100vh; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(59, 130, 246, 0.15), transparent 55%),
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(167, 139, 250, 0.1), transparent 60%),
    linear-gradient(180deg, #05060a 0%, #0a0c14 50%, #05060a 100%);
  background-size: 200% 200%;
  animation: gradient-shift 12s ease infinite;
}
.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
}
.hero-orb-cyan {
  left: 25%;
  top: 25%;
  width: 18rem;
  height: 18rem;
  background: rgba(34, 211, 238, 0.2);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-blue {
  right: 25%;
  top: 33%;
  width: 24rem;
  height: 24rem;
  background: rgba(37, 99, 235, 0.15);
  filter: blur(120px);
  animation: float-delayed 10s ease-in-out 2s infinite;
}
.hero-orb-purple {
  left: 50%;
  bottom: 25%;
  width: 16rem;
  height: 16rem;
  transform: translateX(-50%);
  background: rgba(167, 139, 250, 0.15);
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.4);
  animation: particle-pulse 3s ease-in-out infinite;
}
.hero-content { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 3rem; grid-template-columns: 1.2fr .8fr; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin: 1rem 0; font-weight: 700; }
.hero p { color: var(--muted); font-size: 1.05rem; max-width: 42rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.1);
  color: #67e8f9;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22d3ee;
  animation: pulse-glow 2s ease-in-out infinite;
}
.hero-terminal-wrap { position: relative; max-width: 36rem; margin: 0 auto; }
.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10, 12, 20, 0.8);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}
.floating-card svg { width: 1rem; height: 1rem; color: #22d3ee; flex-shrink: 0; }
.floating-card-1 { top: 0; left: -1rem; animation-delay: 0s; }
.floating-card-2 { top: 4rem; right: -1rem; animation-delay: 0.5s; }
.floating-card-3 { bottom: 5rem; left: -1.5rem; animation-delay: 1s; }
.floating-card-4 { bottom: 0; right: -1rem; animation-delay: 1.5s; }
.terminal-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 24px 60px rgba(34, 211, 238, 0.05);
  backdrop-filter: blur(16px);
}
.terminal-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(15, 18, 25, 0.8);
}
.terminal-dot { width: 12px; height: 12px; border-radius: 999px; }
.terminal-dot-red { background: rgba(239, 68, 68, 0.8); }
.terminal-dot-yellow { background: rgba(234, 179, 8, 0.8); }
.terminal-dot-green { background: rgba(34, 197, 94, 0.8); }
.terminal-host {
  margin-left: 0.5rem;
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: #64748b;
}
.terminal-body {
  padding: 1.25rem 1.5rem;
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  background: rgba(5, 6, 10, 0.9);
  min-height: 280px;
}
.terminal-response {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.term-line { min-height: 1.35em; white-space: pre; }
.term-cyan { color: #22d3ee; }
.term-muted { color: #64748b; }
.term-purple { color: #c084fc; }
.term-light { color: #cbd5e1; }
.term-green { color: #34d399; }
.term-cursor { color: #22d3ee; animation: pulse-glow 1s step-end infinite; }

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes particle-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

@media (prefers-reduced-motion: reduce) {
  .mesh-gradient,
  .hero-orb,
  .hero-particle,
  .floating-card,
  .term-cursor,
  .reveal,
  .hero-enter { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}
.grid-3 { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-2 { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card { padding: 1.5rem; }
.card h3 { margin-top: 0; }
.muted { color: var(--muted); }
.footer { border-top: 1px solid var(--border); padding: 3rem 0; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.footer h4 { margin-bottom: .75rem; }
.footer a { display: block; color: var(--muted); margin: .35rem 0; transition: color 0.3s ease; }
.footer a:hover { color: white; }
.page-header { padding: 8rem 0 3rem; text-align: center; }
.auth-overlay {
  min-height: 100vh; display: grid; place-items: center;
  background: #030712; padding: 1.5rem;
}
.auth-card {
  width: min(100%, 460px);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(10,12,20,.95);
  box-shadow: 0 20px 60px rgba(34,211,238,.08);
}
.auth-card h1 { margin: .5rem 0; }
.tabs { display: flex; gap: .5rem; margin-bottom: 1rem; }
.tab { flex: 1; padding: .75rem; border-radius: .75rem; border: 1px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; }
.tab.active { color: white; border-color: rgba(34,211,238,.35); background: rgba(34,211,238,.08); }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field input { padding: .85rem 1rem; border-radius: .75rem; border: 1px solid var(--border); background: rgba(15,23,42,.85); color: white; }
.alert { padding: .9rem 1rem; border-radius: .9rem; margin-bottom: 1rem; }
.alert.error { background: rgba(239,68,68,.12); color: #fecaca; border: 1px solid rgba(239,68,68,.25); }
.alert.success { background: rgba(16,185,129,.12); color: #bbf7d0; border: 1px solid rgba(16,185,129,.25); }
.api-card { display: grid; gap: 1rem; }
.api-meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { font-size: .75rem; padding: .25rem .6rem; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); }
.code { font-family: ui-monospace, monospace; font-size: .85rem; color: #7dd3fc; word-break: break-all; }
.dashboard-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.stat strong { font-size: 2rem; display: block; margin-top: .35rem; }
.list-item { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }

/* Customer wallet dashboard */
.wallet-dashboard { overflow-x: hidden; }
.wallet-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 3rem;
}
.wallet-hero .mesh-gradient,
.wallet-hero .bg-grid {
  position: absolute;
  inset: 0;
}
.wallet-hero .bg-grid { opacity: .28; }
.wallet-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}
.wallet-hero-copy { text-align: left; }
.wallet-hero-copy h1 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  font-weight: 700;
}
.wallet-hero-copy p {
  margin: 1.25rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.wallet-hero-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.wallet-visual-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.35), transparent 70%);
  filter: blur(8px);
}
.wallet-visual-wallet {
  position: relative;
  width: 180px;
  height: 140px;
  display: grid;
  place-items: center;
}
.wallet-visual-body {
  font-size: 5.5rem;
  filter: drop-shadow(0 18px 30px rgba(59,130,246,.35));
}
.wallet-visual-coin {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(245,158,11,.35);
}
.wallet-visual-coin.coin-a { top: 8px; right: -8px; }
.wallet-visual-coin.coin-b { top: -10px; left: 18px; }
.wallet-visual-coin.coin-c { bottom: 10px; right: 24px; }
.wallet-visual-api-card {
  position: absolute;
  right: 8%;
  bottom: 12%;
  padding: .85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148,163,184,.2);
  background: rgba(15,23,42,.85);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  display: grid;
  gap: .2rem;
  text-align: center;
}
.wallet-visual-api-card span {
  color: #93c5fd;
  font-family: ui-monospace, monospace;
}
.wallet-visual-api-card strong {
  font-size: .85rem;
  color: #cbd5e1;
}
.wallet-dashboard-section {
  padding-top: 0;
  padding-bottom: 5rem;
}
.wallet-loading {
  color: var(--muted);
  text-align: center;
  padding: 2rem 0;
}
.wallet-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.wallet-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
}
.wallet-stat-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.wallet-stat-body { min-width: 0; }
.wallet-stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}
.wallet-stat-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .35rem;
  color: var(--muted);
  font-size: .9rem;
}
.status-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.tone-green { background: #34d399; box-shadow: 0 0 10px rgba(52,211,153,.6); }
.status-dot.tone-purple { background: #a78bfa; box-shadow: 0 0 10px rgba(167,139,250,.6); }
.tone-blue { background: linear-gradient(135deg, rgba(59,130,246,.2), rgba(37,99,235,.15)); }
.tone-purple { background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(124,58,237,.15)); }
.tone-green { background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(20,184,166,.15)); }
.tone-orange { background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(249,115,22,.15)); }
.wallet-stat-status {
  justify-content: space-between;
}
.wallet-status-badge {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(16,185,129,.15);
  color: #6ee7b7;
  font-size: .95rem;
  font-weight: 600;
}
.wallet-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1rem;
  border-radius: .85rem;
  border: 1px solid var(--border);
  background: rgba(15,23,42,.75);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
}
.wallet-logout-btn:hover {
  border-color: rgba(148,163,184,.35);
  background: rgba(30,41,59,.85);
}
.wallet-recharge-section {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, .75fr);
  gap: 1.5rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.wallet-section-head h2,
.wallet-activity-head h2 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}
.wallet-section-head p,
.wallet-activity-head p {
  margin: .45rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.wallet-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.wallet-package-card {
  position: relative;
  display: grid;
  gap: .55rem;
  justify-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(15,23,42,.55);
  color: white;
  cursor: pointer;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.wallet-package-card strong {
  font-size: 1.05rem;
}
.wallet-package-price {
  color: var(--muted);
  font-size: .9rem;
}
.wallet-package-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .85rem;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.wallet-package-card.package-blue .wallet-package-icon { background: rgba(59,130,246,.18); color: #60a5fa; }
.wallet-package-card.package-purple .wallet-package-icon { background: rgba(168,85,247,.18); color: #c084fc; }
.wallet-package-card.package-orange .wallet-package-icon { background: rgba(245,158,11,.18); color: #fbbf24; }
.wallet-package-card.package-green .wallet-package-icon { background: rgba(16,185,129,.18); color: #34d399; }
.wallet-package-card:hover {
  transform: translateY(-2px);
  border-color: rgba(148,163,184,.35);
}
.wallet-package-card.is-selected {
  border-color: rgba(59,130,246,.65);
  box-shadow: 0 0 0 1px rgba(59,130,246,.25), 0 12px 30px rgba(59,130,246,.12);
}
.wallet-package-check {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  font-size: .75rem;
  font-weight: 700;
}
.wallet-packages-empty {
  grid-column: 1 / -1;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(148, 163, 184, 0.25);
  border-radius: 1rem;
}

.wallet-packages-empty p {
  margin: 0;
  max-width: 28rem;
  margin-inline: auto;
  line-height: 1.6;
}

.wallet-recharge-btn {
  margin-top: 1.25rem;
  min-width: 220px;
}

.wallet-custom-recharge {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.55);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.wallet-custom-recharge.is-selected {
  border-color: rgba(59, 130, 246, 0.65);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25), 0 12px 30px rgba(59, 130, 246, 0.12);
}

.wallet-custom-head h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}

.wallet-custom-head p,
.wallet-custom-hint {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.wallet-custom-hint {
  margin-top: .75rem;
}

.wallet-custom-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  margin-top: 1rem;
}

.wallet-custom-input-row .input-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.75);
}

.wallet-custom-input-row .input-with-icon input {
  border: 0;
  background: transparent;
  padding: 12px 0;
  flex: 1;
  color: white;
  width: 100%;
}

.wallet-custom-input-row .input-icon {
  color: #fbbf24;
  font-size: 16px;
}

.wallet-custom-price-box {
  min-width: 140px;
  padding: .85rem 1rem;
  border-radius: .85rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.08);
  text-align: right;
}

.wallet-custom-price-box span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
}

.wallet-custom-price-box strong {
  display: block;
  margin-top: .2rem;
  font-size: 1.15rem;
  color: #93c5fd;
}

.wallet-recharge-sidebar {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(59,130,246,.18);
  background: linear-gradient(180deg, rgba(59,130,246,.08), rgba(15,23,42,.35));
}
.wallet-recharge-sidebar h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}
.wallet-sidebar-shield {
  position: absolute;
  right: -10px;
  bottom: -18px;
  font-size: 6rem;
  opacity: .08;
  pointer-events: none;
}
.wallet-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.wallet-benefits-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #cbd5e1;
  font-size: .95rem;
}
.wallet-benefits-list span {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(59,130,246,.18);
  color: #93c5fd;
  font-size: .75rem;
  flex-shrink: 0;
}
.wallet-activity-section {
  padding: 1.75rem;
}
.wallet-activity-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.wallet-view-all {
  border: 0;
  background: transparent;
  color: #93c5fd;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.wallet-activity-list {
  display: grid;
  gap: .85rem;
}
.wallet-activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
}
.wallet-activity-left {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 0;
}
.wallet-activity-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .85rem;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wallet-activity-icon.tone-green { background: rgba(16,185,129,.15); }
.wallet-activity-icon.tone-amber { background: rgba(245,158,11,.15); }
.wallet-activity-left strong {
  display: block;
  font-size: .98rem;
}
.wallet-activity-left p {
  margin: .2rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}
.wallet-activity-right {
  text-align: right;
  flex-shrink: 0;
}
.wallet-activity-amount {
  display: block;
  font-weight: 700;
  font-size: .95rem;
}
.wallet-activity-amount.positive { color: #6ee7b7; }
.wallet-activity-amount.negative { color: #fcd34d; }
.wallet-activity-right time {
  display: block;
  margin-top: .25rem;
  color: #64748b;
  font-size: .82rem;
}
.wallet-activity-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
}
.wallet-activity-empty span {
  display: block;
  font-size: 2rem;
  margin-bottom: .75rem;
  opacity: .7;
}

.wallet-api-keys-list {
  display: grid;
  gap: 1rem;
}

.wallet-loading-inline {
  margin: 0;
  padding: 1.5rem 0;
  color: var(--muted);
  text-align: center;
}

.wallet-api-keys-table-wrap {
  overflow-x: auto;
}

.wallet-api-keys-table {
  width: 100%;
  border-collapse: collapse;
}

.wallet-api-keys-table th,
.wallet-api-keys-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  vertical-align: top;
}

.wallet-api-keys-table th {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.wallet-api-keys-table td strong {
  display: block;
  margin-bottom: 0.15rem;
}

.wallet-api-keys-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

.wallet-stat-link {
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.wallet-stat-link:hover,
.wallet-stat-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.35);
  outline: none;
}

.wallet-api-keys-table tr.is-expired {
  opacity: 0.78;
}

.wallet-key-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wallet-key-status-active {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #6ee7b7;
}

.wallet-key-status-expired {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: #fca5a5;
}

.wallet-expiry-meta {
  display: block;
  margin-top: 0.35rem;
  color: #94a3b8;
  font-size: 0.8rem;
}

.wallet-api-keys-table td strong {
  display: block;
  margin-bottom: 0;
}

.wallet-expired-badge {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  font-size: 0.72rem;
  font-weight: 600;
}

.wallet-api-key-card {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.45);
}

.wallet-api-key-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.wallet-api-key-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.wallet-api-key-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.wallet-api-key-field {
  word-break: break-all;
}

.wallet-api-key-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 1100px) {
  .wallet-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .wallet-hero-copy { text-align: center; }
  .wallet-hero-copy p { margin-left: auto; margin-right: auto; }
  .wallet-packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wallet-recharge-section { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wallet-stats-grid { grid-template-columns: 1fr; }
  .wallet-stat-status { flex-wrap: wrap; }
  .wallet-logout-btn { width: 100%; justify-content: center; }
  .wallet-activity-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .wallet-activity-right { text-align: left; width: 100%; }
  .wallet-hero-visual { min-height: 220px; }
  .wallet-api-keys-table thead { display: none; }
  .wallet-api-keys-table tr {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.35);
  }
  .wallet-api-keys-table td {
    display: grid;
    grid-template-columns: minmax(110px, 38%) 1fr;
    gap: 0.5rem 1rem;
    padding: 0.55rem 0;
    border-bottom: none;
  }
  .wallet-api-keys-table td::before {
    content: attr(data-label);
    color: #94a3b8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .wallet-custom-input-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .wallet-packages-grid { grid-template-columns: 1fr; }
}

.coin-badge { padding: .45rem .8rem; border-radius: 999px; background: rgba(34,211,238,.12); color: var(--cyan); }
.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin: 0;
}
.section-subheading {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.section-intro { text-align: center; margin-bottom: 3.5rem; }
.center-text { text-align: center; }
.text-cyan { color: var(--cyan); }
.trust-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.category-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.category-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  height: 100%;
  color: inherit;
}
.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  font-size: 1.35rem;
}
.category-icon-cyan { background: linear-gradient(135deg, rgba(34,211,238,.2), rgba(37,99,235,.2)); color: #22d3ee; }
.category-icon-blue { background: linear-gradient(135deg, rgba(59,130,246,.2), rgba(79,70,229,.2)); color: #60a5fa; }
.category-icon-purple { background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(236,72,153,.2)); color: #c084fc; }
.category-icon-emerald { background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(20,184,166,.2)); color: #34d399; }
.category-icon-amber { background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(249,115,22,.2)); color: #fbbf24; }
.category-icon-rose { background: linear-gradient(135deg, rgba(244,63,94,.2), rgba(239,68,68,.2)); color: #fb7185; }
.category-icon-sky { background: linear-gradient(135deg, rgba(14,165,233,.2), rgba(34,211,238,.2)); color: #38bdf8; }
.category-icon-violet { background: linear-gradient(135deg, rgba(139,92,246,.2), rgba(168,85,247,.2)); color: #a78bfa; }
.category-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.category-count { font-size: .75rem; font-weight: 500; color: #64748b; }
.category-arrow { color: var(--cyan); transition: transform .3s ease; }
.category-card:hover .category-arrow { transform: translateX(4px); }
.timeline { position: relative; margin-top: 4rem; }
.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(34,211,238,.5), rgba(59,130,246,.3), transparent);
}
.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.timeline-dot {
  display: none;
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 1rem;
  height: 1rem;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 2px solid #22d3ee;
  background: var(--bg);
  z-index: 2;
}
.timeline-card { max-width: 32rem; padding: 1.5rem 2rem; }
.timeline-card-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.timeline-number { font-family: ui-monospace, monospace; font-size: .875rem; font-weight: 700; color: var(--cyan); }
.section-security::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(88,28,135,.1), transparent);
  pointer-events: none;
}
.section-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(30,58,138,.1), transparent);
  pointer-events: none;
}
.flow-steps { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem .75rem; margin-top: 2rem; }
.flow-step {
  padding: .55rem .9rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  font-size: .8rem;
  font-weight: 500;
  color: #cbd5e1;
}
.flow-arrow { color: rgba(34,211,238,.6); font-size: .85rem; }
.pricing-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 3.5rem; }
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.pricing-card:hover { border-color: rgba(255,255,255,.2); }
.pricing-card-popular {
  border-color: rgba(34,211,238,.4);
  background: linear-gradient(180deg, rgba(34,211,238,.1), rgba(37,99,235,.05));
  box-shadow: 0 0 60px -15px rgba(34,211,238,.3);
}
.pricing-badge {
  position: absolute;
  top: -.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: .25rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(34,211,238,.3);
  background: rgba(34,211,238,.2);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #67e8f9;
}
.pricing-features { list-style: none; padding: 0; margin: 2rem 0 0; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .9rem;
  color: #cbd5e1;
}
.check-icon { color: #64748b; flex-shrink: 0; margin-top: .15rem; }
.pricing-card-popular .check-icon { color: var(--cyan); }
.faq-list { display: grid; gap: .75rem; margin-top: 3rem; }
.faq-item { overflow: hidden; }
.faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.faq-chevron { color: var(--muted); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-panel {
  display: none;
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.05);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}
.faq-item.is-open .faq-panel { display: block; padding-top: .75rem; }
.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(135deg, rgba(34,211,238,.1), rgba(37,99,235,.05), rgba(167,139,250,.1));
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.final-cta-inner { position: relative; }
.final-cta h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin: 0; }
.final-cta p { max-width: 36rem; margin: 1rem auto 0; color: var(--muted); }
.final-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.page-header-banner {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
  text-align: center;
}
.page-header-banner .mesh-gradient { position: absolute; inset: 0; }
.page-header-banner .bg-grid { position: absolute; inset: 0; opacity: .3; }
.page-header-banner .container { position: relative; z-index: 1; max-width: 48rem; }
.page-header-banner h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0; font-weight: 700; }
.page-header-banner p { margin: 1.25rem 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.marketplace-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.marketplace-footer { margin-top: 2rem; }
.marketplace-card { display: flex; flex-direction: column; gap: .9rem; padding: 1.5rem; }
.card-title { margin: 0; font-size: 1.15rem; }
.card-copy { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; flex: 1; }
.api-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 999px;
}
.pill-cyan { background: rgba(34,211,238,.12); color: #67e8f9; }
.pill-emerald { background: rgba(16,185,129,.12); color: #6ee7b7; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.mini-tag {
  font-size: .75rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}
.mini-tag-amber { border-color: rgba(245,158,11,.25); color: #fbbf24; }
.endpoint-box {
  padding: .85rem 1rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(5,6,10,.5);
  font-size: .8rem;
}
.endpoint-title { color: #cbd5e1; margin-bottom: .35rem; }
.endpoint-url { color: var(--muted); word-break: break-all; }
.endpoint-url span { color: #7dd3fc; font-family: ui-monospace, monospace; }
.card-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .25rem; }
.btn-sm { padding: .6rem 1rem; font-size: .85rem; }
.btn-nav { padding: .65rem 1.1rem; font-size: .875rem; }
.btn-block { width: 100%; }
.btn-icon { display: inline-flex; align-items: center; gap: .45rem; }
.coin-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border-radius: .85rem;
  border: 1px solid rgba(34,211,238,.2);
  background: rgba(34,211,238,.1);
  color: #a5f3fc;
  font-size: .875rem;
  font-weight: 500;
}
.coin-badge-link { text-decoration: none; transition: background .3s ease; }
.coin-badge-link:hover { background: rgba(34,211,238,.15); }
.coin-badge-block { width: 100%; justify-content: center; margin-bottom: .5rem; }
.coin-icon { font-size: .9rem; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-links-desktop { display: flex; align-items: center; gap: 2rem; }
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: white;
  cursor: pointer;
}
.menu-icon-close { display: none; }
.mobile-menu-open .menu-icon-open { display: none; }
.mobile-menu-open .menu-icon-close { display: inline; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.mobile-overlay[hidden],
.mobile-drawer[hidden] {
  display: none !important;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(100%, 24rem);
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.1);
  background: rgba(10,12,20,.95);
  backdrop-filter: blur(16px);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-drawer:not([hidden]) {
  display: flex;
  transform: translateX(0);
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-drawer-title { font-size: 1.1rem; font-weight: 700; }
.mobile-close-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .65rem;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: white;
  cursor: pointer;
}
.mobile-drawer-nav { flex: 1; padding: 1rem; display: grid; gap: .25rem; }
.mobile-nav-link {
  display: block;
  padding: .85rem 1rem;
  border-radius: .85rem;
  color: #cbd5e1;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { background: rgba(255,255,255,.05); color: #67e8f9; }
.mobile-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: .75rem;
}
.footer {
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(10,12,20,.5);
  padding: 4rem 0 0;
  margin-top: 0;
}
.footer-inner { padding-bottom: 0; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.footer-brand .footer-copy {
  margin: 1rem 0 0;
  font-size: .875rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 18rem;
}
.footer-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin: 0 0 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a {
  display: block;
  padding: .35rem 0;
  font-size: .875rem;
  color: #64748b;
  transition: color .3s ease;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .875rem;
  color: #64748b;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: #64748b; transition: color .3s ease; }
.footer-bottom-links a:hover { color: #cbd5e1; }
.footer-powered {
  margin: 0;
  padding: 0 0 2rem;
  text-align: center;
  font-size: .82rem;
  color: #64748b;
}
.footer-powered a {
  color: #94a3b8;
  transition: color .3s ease;
}
.footer-powered a:hover {
  color: var(--cyan);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat-card { padding: 1.5rem; text-align: center; }
.stat-value { font-size: 2rem; font-weight: 700; margin: 0; }
.offer-list { list-style: none; padding: 0; margin: 0; }
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: .95rem;
}
.offer-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  margin-top: .55rem;
  flex-shrink: 0;
}
.value-card { display: flex; gap: 1rem; padding: 1.5rem; }
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .85rem;
  background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(37,99,235,.2));
  color: #c084fc;
  flex-shrink: 0;
}
.key-dashboard { overflow: hidden; }
.key-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(15,18,25,.6);
}
.key-status {
  padding: .2rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(16,185,129,.3);
  background: rgba(16,185,129,.1);
  color: #6ee7b7;
  font-size: .7rem;
  font-weight: 600;
}
.key-field {
  margin-top: .5rem;
  padding: .85rem 1rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(5,6,10,.8);
  font-family: ui-monospace, monospace;
  font-size: .85rem;
  color: #94a3b8;
}
.key-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 1rem; }
.key-metric {
  padding: .85rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
}
.key-warning {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  padding: .85rem;
  border-radius: .85rem;
  border: 1px solid rgba(245,158,11,.2);
  background: rgba(245,158,11,.05);
  font-size: .8rem;
  color: var(--muted);
}
.code-block {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(5,6,10,.8);
  font-family: ui-monospace, monospace;
  font-size: .85rem;
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre-wrap;
}
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .9rem;
  color: #cbd5e1;
}
.feature-check { color: var(--cyan); flex-shrink: 0; }
.section-band-muted { background: rgba(10,12,20,.4); border-block: 1px solid rgba(255,255,255,.05); }
.section-band-light { background: rgba(10,12,20,.3); border-top: 1px solid rgba(255,255,255,.05); }
.two-col { display: grid; gap: 3rem; align-items: center; }
.offer-card { max-width: 48rem; margin: 0 auto; padding: 2rem 2.5rem; }
.offer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .timeline-line, .timeline-dot { display: block; }
  .timeline-step { flex-direction: row; align-items: center; margin-bottom: 0; }
  .timeline-step:nth-child(even) { flex-direction: row-reverse; }
  .timeline-spacer { width: 50%; }
  .timeline-content { width: 50%; }
  .timeline-step:nth-child(odd) .timeline-content { padding-right: 4rem; text-align: right; }
  .timeline-step:nth-child(odd) .timeline-card-head { justify-content: flex-end; }
  .timeline-step:nth-child(even) .timeline-content { padding-left: 4rem; }
  .two-col { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .mobile-overlay,
  .mobile-drawer,
  .mobile-menu-btn {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .nav-links-desktop, .nav-actions { display: none !important; }
  .mobile-menu-btn { display: inline-flex; }
  body.mobile-menu-open { overflow: hidden; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.bulk-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(6px);
}

.bulk-modal-card {
  width: min(100%, 480px);
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 24, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.bulk-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem 0.75rem;
}

.bulk-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.bulk-modal-close {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: #e2e8f0;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.bulk-modal-body {
  padding: 0 1.25rem 1.25rem;
  display: grid;
  gap: 0.9rem;
}

.bulk-modal-api-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.bulk-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.bulk-modal-meta span {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  color: #cbd5e1;
  font-size: 0.78rem;
}

.bulk-modal-field {
  display: grid;
  gap: 0.45rem;
}

.bulk-modal-field span {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.bulk-modal-field input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.65);
  color: #f8fafc;
  font-size: 1rem;
}

.bulk-modal-total {
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.18);
  color: #cbd5e1;
}

.bulk-modal-error {
  margin: 0;
  color: #fca5a5;
  font-size: 0.88rem;
}

.bulk-modal-summary {
  display: grid;
  gap: 0.35rem;
  color: #cbd5e1;
}

.bulk-modal-actions,
.bulk-modal-body .btn {
  margin-top: 0.15rem;
}

.bulk-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.bulk-modal-body .bulk-download-btn,
.bulk-modal-body .btn-secondary {
  width: fit-content;
}

.marketplace-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
