/* ═══════════════════════════════════════════════════════════
   HIGH RISK PROCESSING PLATFORM — Global Styles
   Dark Fintech UI • Glassmorphism • Enterprise Aesthetic
   Colors: Black, Graphite, Electric Blue, Neon Cyan, Soft White
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Core Palette */
  --black: #000000;
  --graphite: #1a1a2e;
  --graphite-light: #16213e;
  --graphite-mid: #0f3460;
  --electric-blue: #0066ff;
  --electric-blue-hover: #3385ff;
  --neon-cyan: #00f5ff;
  --neon-cyan-dim: rgba(0,245,255,0.15);
  --neon-cyan-glow: rgba(0,245,255,0.4);
  --soft-white: #e8e8f0;
  --muted: #6b7280;
  --danger: #ff3b5c;
  --danger-dim: rgba(255,59,92,0.15);
  --warning: #ffb800;
  --warning-dim: rgba(255,184,0,0.15);
  --success: #00e676;
  --success-dim: rgba(0,230,118,0.15);
  --purple: #a855f7;
  --purple-dim: rgba(168,85,247,0.15);

  /* Glass */
  --glass-bg: rgba(26,26,46,0.6);
  --glass-border: rgba(255,255,255,0.06);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.4);
  --glass-blur: blur(16px);

  /* Spacing */
  --sidebar-w: 260px;
  --header-h: 64px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--soft-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--neon-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--electric-blue-hover); }

::selection { background: var(--electric-blue); color: white; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--graphite); }
::-webkit-scrollbar-thumb { background: var(--graphite-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--electric-blue); }

/* ══════════ Typography ══════════ */
h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--soft-white); letter-spacing: -0.02em; }
h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 2rem; line-height: 1.15; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

.text-cyan { color: var(--neon-cyan); }
.text-blue { color: var(--electric-blue); }
.text-muted { color: var(--muted); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }

/* ══════════ Glass Cards ══════════ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 24px;
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(0,245,255,0.15);
  box-shadow: 0 8px 40px rgba(0,245,255,0.08);
}

/* ══════════ Buttons ══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  color: var(--black);
}
.btn-primary:hover {
  box-shadow: 0 0 24px rgba(0,245,255,0.4);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
}
.btn-secondary:hover {
  background: var(--neon-cyan-dim);
  box-shadow: 0 0 20px rgba(0,245,255,0.2);
}
.btn-danger {
  background: var(--danger);
  color: white;
}
.btn-danger:hover { background: #ff5a75; }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { color: var(--soft-white); border-color: rgba(255,255,255,0.2); }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* ══════════ Inputs ══════════ */
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group label { font-size: 13px; color: var(--muted); font-weight: 500; }
.input-field {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--soft-white);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.input-field:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
}
.input-field::placeholder { color: rgba(255,255,255,0.25); }
select.input-field { cursor: pointer; appearance: none; }

/* ══════════ Badges ══════════ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-success { background: var(--success-dim); color: var(--success); }
.badge-danger { background: var(--danger-dim); color: var(--danger); }
.badge-warning { background: var(--warning-dim); color: var(--warning); }
.badge-info { background: var(--neon-cyan-dim); color: var(--neon-cyan); }
.badge-purple { background: var(--purple-dim); color: var(--purple); }

/* ══════════ Tables ══════════ */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; padding: 12px 16px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); font-weight: 600;
  border-bottom: 1px solid var(--glass-border);
}
.data-table td {
  padding: 12px 16px; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.data-table tr:hover td { background: rgba(0,245,255,0.03); }

/* ══════════ Sidebar Layout ══════════ */
.app-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-w);
  background: linear-gradient(180deg, rgba(15,15,30,0.95), rgba(10,10,25,0.98));
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--glass-border);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.sidebar-logo {
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-border);
  display: flex; align-items: center; gap: 12px;
}
.sidebar-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; color: var(--black);
}
.sidebar-logo .logo-text {
  font-size: 18px; font-weight: 700; color: var(--soft-white);
}
.sidebar-logo .logo-text span { color: var(--neon-cyan); }

.sidebar-section {
  padding: 16px 16px 8px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); font-weight: 600;
}

.sidebar-nav { padding: 0 8px; flex: 1; }

.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 13px; font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 2px;
}
.sidebar-link:hover { color: var(--soft-white); background: rgba(255,255,255,0.04); }
.sidebar-link.active {
  color: var(--neon-cyan);
  background: var(--neon-cyan-dim);
  border-left: 3px solid var(--neon-cyan);
}
.sidebar-link .link-icon { font-size: 18px; width: 20px; text-align: center; }
.sidebar-link .link-badge {
  margin-left: auto;
  background: var(--danger);
  color: white;
  font-size: 10px;
  padding: 1px 7px;
  border-radius: 10px;
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--glass-border);
}
.sidebar-user {
  display: flex; align-items: center; gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.sidebar-user:hover { background: rgba(255,255,255,0.04); }
.sidebar-user .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.sidebar-user .user-info { flex: 1; }
.sidebar-user .user-name { font-size: 13px; font-weight: 600; }
.sidebar-user .user-role { font-size: 11px; color: var(--muted); }

/* ══════════ Main Content ══════════ */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
}

.top-header {
  height: var(--header-h);
  background: rgba(10,10,25,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  position: sticky; top: 0; z-index: 50;
}
.top-header .header-left { display: flex; align-items: center; gap: 16px; }
.top-header .header-right { display: flex; align-items: center; gap: 16px; }
.top-header .page-title { font-size: 18px; font-weight: 600; }

.search-box {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  min-width: 260px;
}
.search-box input {
  background: transparent; border: none; outline: none;
  color: var(--soft-white); font-size: 13px; width: 100%;
}
.search-box input::placeholder { color: var(--muted); }

.header-icon-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  color: var(--muted); position: relative;
}
.header-icon-btn:hover { background: rgba(255,255,255,0.08); color: var(--soft-white); }
.header-icon-btn .notif-dot {
  position: absolute; top: 6px; right: 6px;
  width: 7px; height: 7px;
  background: var(--danger); border-radius: 50%;
}

.page-content { padding: 24px 32px; }

/* ══════════ Grid ══════════ */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ══════════ Stat Widgets ══════════ */
.stat-widget {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.stat-widget::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: var(--transition);
}
.stat-widget:hover::before { opacity: 1; }
.stat-widget .stat-label {
  font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 500;
}
.stat-widget .stat-value {
  font-size: 28px; font-weight: 800; margin-top: 6px;
  background: linear-gradient(135deg, var(--soft-white), var(--neon-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-widget .stat-change {
  font-size: 12px; margin-top: 4px; display: flex; align-items: center; gap: 4px;
}
.stat-widget .stat-icon {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

/* ══════════ Charts ══════════ */
.chart-container {
  position: relative;
  height: 200px;
  margin-top: 12px;
}
.chart-bar {
  display: flex; align-items: flex-end; gap: 6px;
  height: 100%; padding-bottom: 24px;
}
.chart-bar .bar {
  flex: 1; border-radius: 4px 4px 0 0;
  transition: var(--transition);
  position: relative;
  min-width: 8px;
}
.chart-bar .bar:hover { opacity: 0.8; }
.chart-bar .bar-label {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  font-size: 10px; color: var(--muted); white-space: nowrap;
}

/* Mini Sparkline */
.sparkline { display: flex; align-items: flex-end; gap: 2px; height: 32px; }
.sparkline .spark {
  width: 3px; border-radius: 2px;
  background: var(--neon-cyan);
  transition: var(--transition);
}

/* ══════════ Live Feed ══════════ */
.live-feed { max-height: 360px; overflow-y: auto; }
.feed-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  animation: feedSlide 0.4s ease;
}
.feed-item:last-child { border: none; }
.feed-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.feed-dot.success { background: var(--success); box-shadow: 0 0 8px rgba(0,230,118,0.4); }
.feed-dot.danger { background: var(--danger); box-shadow: 0 0 8px rgba(255,59,92,0.4); }
.feed-dot.warning { background: var(--warning); box-shadow: 0 0 8px rgba(255,184,0,0.4); }
.feed-dot.info { background: var(--neon-cyan); box-shadow: 0 0 8px rgba(0,245,255,0.4); }
.feed-info { flex: 1; }
.feed-info .feed-title { font-size: 13px; font-weight: 500; }
.feed-info .feed-sub { font-size: 11px; color: var(--muted); }
.feed-amount { font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }

@keyframes feedSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ══════════ Pulse Animation ══════════ */
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); position: relative;
  display: inline-block;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--success);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

/* ══════════ Tabs ══════════ */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--glass-border); margin-bottom: 20px; }
.tab {
  padding: 10px 20px; font-size: 13px; font-weight: 500;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.tab:hover { color: var(--soft-white); }
.tab.active { color: var(--neon-cyan); border-bottom-color: var(--neon-cyan); }

/* ══════════ Modal ══════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; display: none;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--graphite);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 560px; width: 100%;
  max-height: 80vh; overflow-y: auto;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-header h3 { font-size: 18px; }
.modal-close { cursor: pointer; color: var(--muted); font-size: 20px; }
.modal-close:hover { color: var(--soft-white); }

/* ══════════ Filters Bar ══════════ */
.filters-bar {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap; margin-bottom: 20px;
}
.filter-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: 12px; color: var(--muted);
  cursor: pointer; transition: var(--transition);
}
.filter-chip:hover, .filter-chip.active {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: var(--neon-cyan-dim);
}

/* ══════════ Progress ══════════ */
.progress-bar {
  height: 6px; background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 3px;
  transition: width 0.6s ease;
}

/* ══════════ Tooltip ══════════ */
.tooltip {
  position: relative;
}
.tooltip::after {
  content: attr(data-tip);
  position: absolute; bottom: 100%; left: 50%;
  transform: translateX(-50%); padding: 4px 10px;
  background: var(--graphite-light);
  border: 1px solid var(--glass-border);
  border-radius: 6px; font-size: 11px;
  white-space: nowrap; opacity: 0;
  pointer-events: none; transition: var(--transition);
}
.tooltip:hover::after { opacity: 1; }

/* ══════════ Routing Map Visual ══════════ */
.routing-visual {
  position: relative;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 300px;
  overflow: hidden;
}
.routing-node {
  position: absolute;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600;
  border: 1px solid;
  z-index: 2;
}
.routing-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  z-index: 1;
}

/* ══════════ Heatmap ══════════ */
.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 2px;
}
.heatmap-cell {
  aspect-ratio: 1;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.heatmap-cell:hover { transform: scale(1.3); z-index: 2; }

/* ══════════ Rule Builder ══════════ */
.rule-block {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.rule-condition {
  padding: 4px 10px;
  background: var(--neon-cyan-dim);
  color: var(--neon-cyan);
  border-radius: 4px;
  font-size: 12px; font-weight: 600;
  font-family: monospace;
}
.rule-action {
  padding: 4px 10px;
  background: var(--danger-dim);
  color: var(--danger);
  border-radius: 4px;
  font-size: 12px; font-weight: 600;
  font-family: monospace;
}

/* ══════════ Public Page Styles ══════════ */
.public-page { background: var(--black); }

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,102,255,0.08), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0,245,255,0.06), transparent 60%);
  animation: heroGlow 10s ease infinite alternate;
}
@keyframes heroGlow {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(3deg) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.hero h1 {
  font-size: 4rem; line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

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

.section-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--neon-cyan); font-weight: 600; margin-bottom: 12px;
}
.section-title { font-size: 2.5rem; margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: var(--muted); max-width: 600px; line-height: 1.7; }

/* Feature Cards */
.feature-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feature-card {
  padding: 28px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition-slow);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,255,0.2);
  box-shadow: 0 12px 48px rgba(0,245,255,0.08);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}

/* Nav */
.public-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700; color: var(--soft-white);
}
.nav-logo span { color: var(--neon-cyan); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--soft-white); }
.nav-actions { display: flex; gap: 12px; }

/* ══════════ Auth Pages ══════════ */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  position: relative;
}
.auth-page::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.1), transparent 70%);
  top: 20%; left: 30%;
  animation: heroGlow 8s ease infinite alternate;
}
.auth-card {
  width: 100%; max-width: 480px;
  padding: 40px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  position: relative; z-index: 2;
}
.auth-card h2 { text-align: center; margin-bottom: 8px; }
.auth-card .auth-sub { text-align: center; color: var(--muted); margin-bottom: 28px; font-size: 14px; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 8px 0; color: var(--muted); font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--glass-border);
}

/* ══════════ Onboarding Steps ══════════ */
.steps-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 32px;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  border: 2px solid var(--glass-border);
  color: var(--muted); transition: var(--transition);
}
.step-dot.active { border-color: var(--neon-cyan); color: var(--neon-cyan); background: var(--neon-cyan-dim); }
.step-dot.done { border-color: var(--success); color: var(--success); background: var(--success-dim); }
.step-line {
  width: 40px; height: 2px;
  background: var(--glass-border);
}
.step-line.done { background: var(--success); }

/* \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550 Responsive \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550 */

/* --- Mobile Sidebar Overlay --- */
.mobile-header {
  display: none;
  height: 56px;
  background: rgba(10,10,25,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 90;
  gap: 12px;
}
.mobile-header .mh-left { display: flex; align-items: center; gap: 12px; min-width: 0; flex-shrink: 0; }
.mobile-header .mh-logo { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: var(--soft-white); white-space: nowrap; }
.mobile-header .mh-logo span { color: var(--neon-cyan); }
.mobile-header .mh-title { font-size: 12px; font-weight: 600; color: var(--soft-white); text-align: right; max-width: 140px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-header .mh-logo .logo-icon-sm {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; color: var(--black);
}
.hamburger-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--soft-white);
  -webkit-tap-highlight-color: transparent;
}
.hamburger-btn:hover, .hamburger-btn:active { background: rgba(255,255,255,0.08); }
.hamburger-btn svg { width: 20px; height: 20px; }

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* --- Responsive Table Wrapper --- */
.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
  padding: 0 16px;
}
.table-scroll-wrap .data-table {
  min-width: 700px;
}

/* --- Responsive Breakpoints --- */

/* Tablet landscape */
@media (max-width: 1280px) {
  .dash-grid { grid-template-columns: 1fr 1fr; }
  .dash-grid-2, .dash-grid-3, .dash-grid-equal { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }

  /* Sidebar: hidden by default, shown via overlay on mobile */
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 200;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .mobile-header { display: flex; }
  .main-content { margin-left: 0; }
  .top-header { display: none; }

  .hero h1 { font-size: 2.5rem; }
  .hero-content { padding: 0 24px; }
  .section-title { font-size: 2rem; }

  /* Public nav */
  .nav-links { display: none; }
  .public-nav { padding: 12px 20px; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
}

/* Mobile */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }

  .page-content { padding: 16px; }

  /* Header */
  .top-header { display: none; }
  .mobile-header { display: flex; }

  /* Hero */
  .hero h1 { font-size: 2rem; }
  .hero { padding: 80px 0 60px; }
  .hero-content { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.75rem; }
  .section-desc { font-size: 1rem; }

  /* Container */
  .container { padding: 0 16px; }

  /* Stat widgets */
  .stat-widget { padding: 16px; }
  .stat-widget .stat-value { font-size: 22px; }
  .stat-widget .stat-icon { width: 32px; height: 32px; border-radius: 8px; }
  .stat-widget .stat-icon svg { width: 16px; height: 16px; }

  /* Glass cards */
  .glass-card { padding: 16px; }

  /* Filters */
  .filters-bar { flex-direction: column; align-items: stretch; }
  .search-box { min-width: 0; width: 100%; }

  /* Tables: scroll horizontally */
  .data-table th, .data-table td { padding: 10px 12px; font-size: 12px; white-space: nowrap; }

  /* Buttons */
  .btn { padding: 8px 16px; font-size: 13px; }
  .btn-lg { padding: 12px 24px; font-size: 14px; }

  /* Feature grid */
  .feature-grid { grid-template-columns: 1fr; }

  /* Public nav */
  .nav-links { display: none; }
  .nav-actions .btn-secondary { display: none; }

  /* Modal */
  .modal { padding: 20px; margin: 16px; border-radius: 12px; }
  .modal-overlay { padding: 16px; align-items: flex-end; }
  .modal-overlay .modal { max-height: 90vh; border-radius: 16px 16px 0 0; }

  /* Auth pages */
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 24px; }
  .auth-form-card { padding: 0; }
  .auth-form-card h2 { font-size: 24px; }
  .mfa-inputs input { width: 48px; height: 52px; font-size: 20px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .stat-widget .stat-value { font-size: 20px; }
  .hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.5rem; }
  .page-content { padding: 12px; }
  .glass-card { padding: 14px; }
  .hamburger-btn { width: 36px; height: 36px; }
  .input-row { grid-template-columns: 1fr; }
  .social-row { grid-template-columns: 1fr; }
  .auth-card { padding: 24px; }
  .feature-card { padding: 20px; }
  .heatmap-grid { grid-template-columns: repeat(12, 1fr); }
}

/* ═══════════════════════════════════ Universal Mobile Grid Overrides ═══════════════════════════════════
   Принудительно перестраивают любые inline-стили grid-template-columns на мобильных.
   Покрывают паттерны: 2fr 1fr, 1fr 2fr, 3fr 1fr, 1fr 3fr, 1fr 1fr, repeat(N,...)
*/
@media (max-width: 1024px) {
  /* Inline grids with 2-3 fr columns → 2 cols on tablet */
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns: 3fr 1fr"],
  [style*="grid-template-columns:3fr 1fr"],
  [style*="grid-template-columns: 1fr 3fr"],
  [style*="grid-template-columns:1fr 3fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
  [style*="grid-template-columns: repeat(6"],
  [style*="grid-template-columns:repeat(6"] { grid-template-columns: repeat(3, 1fr) !important; }
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  /* Special grids */
  .global-grid, .risk-grid, .traders-grid, .routing-grid, .acq-grid, .currency-grid,
  .onboard-wrap, .auth-wrap, .dash-grid-2, .dash-grid-3, .dash-grid-equal {
    grid-template-columns: 1fr !important;
  }
  .acq-grid { grid-template-columns: 1fr 1fr !important; }
  .currency-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:repeat(5"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns: repeat(6"],
  [style*="grid-template-columns:repeat(6"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .acq-grid, .currency-grid { grid-template-columns: 1fr 1fr !important; }
  .heat-grid { grid-template-columns: repeat(12, 1fr) !important; }

  /* Routing visualizations: stack vertically */
  .cascade-flow { flex-direction: column !important; }
  .cascade-step::after { display: none !important; }
  .cascade-step { min-width: 0 !important; }

  /* Heatmap: smaller cells */
  .heatmap-grid { grid-template-columns: repeat(12, 1fr) !important; }

  /* Sidebar logos and nav */
  .sidebar { width: 280px !important; }

  /* Image and chart sizes */
  .approval-ring { width: 64px !important; height: 64px !important; }
  .approval-ring .ring-value { font-size: 14px !important; }

  /* Top status bars on dashboards */
  [style*="display:flex"][style*="justify-content:space-between"] { flex-wrap: wrap; gap: 10px; }

  /* Long descriptive text */
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.25rem !important; }
  h4 { font-size: 1.1rem !important; }

  /* Geo map smaller */
  .geo-map { height: 180px !important; }

  /* Code blocks scroll */
  pre, code { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }

  /* Truncate long IDs in mobile tables */
  .data-table .truncate { max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
}

@media (max-width: 480px) {
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:repeat(5"],
  [style*="grid-template-columns: repeat(6"],
  [style*="grid-template-columns:repeat(6"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .acq-grid, .currency-grid { grid-template-columns: 1fr !important; }
  .heat-grid { grid-template-columns: repeat(8, 1fr) !important; }

  /* Smaller paddings */
  .stat-widget { padding: 14px !important; }
  .stat-widget .stat-value { font-size: 18px !important; }
  .stat-widget .stat-label { font-size: 10px !important; }
  .stat-widget .stat-icon { width: 28px !important; height: 28px !important; }

  /* Forms */
  .input-field { font-size: 16px !important; /* Prevent iOS zoom */ }
  .input-row { grid-template-columns: 1fr !important; }

  /* Hero */
  .hero h1 { font-size: 1.5rem !important; }
  .hero p { font-size: 14px !important; }

  /* Buttons full width on small mobile */
  .btn-lg { width: 100%; justify-content: center; }
}

/* iOS / Android touch optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn, .filter-pill, .filter-chip, .sidebar-link, .header-icon-btn, .hamburger-btn, .tab {
    min-height: 40px;
  }
  .data-table tr { cursor: pointer; }
  /* Disable hover transforms on touch */
  .feature-card:hover, .glass-card:hover, .strategy-card:hover { transform: none !important; }
}

/* Prevent horizontal page scroll */
html, body { max-width: 100vw; overflow-x: hidden; }
.app-layout { max-width: 100vw; overflow-x: hidden; }
.page-content { max-width: 100%; overflow-x: hidden; }
.main-content { max-width: 100vw; overflow-x: hidden; }

/* Make all images and SVGs responsive */
img, svg { max-width: 100%; height: auto; }
svg.fixed-icon, .icon-wrap svg { max-width: none; height: auto; } /* keep icons crisp */

/* ══════════ Animations ══════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

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

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

/* ══════════ Utility ══════════ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.p-16 { padding: 16px; }
.p-20 { padding: 20px; }
.p-24 { padding: 24px; }
.w-full { width: 100%; }
.text-center { text-align: center; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.font-mono { font-family: 'JetBrains Mono', monospace; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.hidden { display: none !important; }

/* ═══ Icon System ═══ */
.icon-wrap { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.icon-wrap svg { display: block; flex-shrink: 0; }
.icon-sm svg { width: 14px; height: 14px; }
.icon-md svg { width: 18px; height: 18px; }
.icon-lg svg { width: 22px; height: 22px; }
.icon-xl svg { width: 28px; height: 28px; }
.icon-2xl svg { width: 40px; height: 40px; }

.icon-cyan { color: var(--neon-cyan); }
.icon-blue { color: var(--electric-blue); }
.icon-success { color: var(--success); }
.icon-warning { color: var(--warning); }
.icon-danger { color: var(--danger); }
.icon-purple { color: var(--purple); }
.icon-muted { color: var(--muted); }

.icon-tile {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--neon-cyan-dim); color: var(--neon-cyan);
  flex-shrink: 0;
}
.icon-tile.lg { width: 48px; height: 48px; border-radius: 12px; }
.icon-tile.danger { background: var(--danger-dim); color: var(--danger); }
.icon-tile.success { background: var(--success-dim); color: var(--success); }
.icon-tile.warning { background: var(--warning-dim); color: var(--warning); }
.icon-tile.purple { background: var(--purple-dim); color: var(--purple); }
.icon-tile.blue { background: rgba(0,102,255,0.15); color: var(--electric-blue); }

/* link-icon container in sidebar */
.sidebar-link .link-icon {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: currentColor;
}

/* hero-tx-dot left as is (not emoji) */

/* ═══ Sidebar V2 — multi-group, scrollable ═══ */
.sidebar-scroll {
  flex: 1; overflow-y: auto; padding: 0 12px 12px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.08) transparent;
}
.sidebar-scroll::-webkit-scrollbar { width: 4px; }
.sidebar-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }
.sidebar-nav-group { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.link-badge.new { background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue)); color: #000; font-size: 9px; padding: 2px 6px; border-radius: 4px; font-weight: 700; }

.search-box .kbd {
  font-size: 10px; padding: 2px 6px; border-radius: 4px;
  background: rgba(255,255,255,0.06); color: var(--muted);
  font-family: 'JetBrains Mono', monospace; margin-left: 6px;
}
.lang-select {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--soft-white); border-radius: 8px; padding: 6px 10px;
  font-size: 12px; font-weight: 500; outline: none; cursor: pointer;
}
.header-icon-btn {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--soft-white); width: 36px; height: 36px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); position: relative;
}
.header-icon-btn:hover { border-color: rgba(0,245,255,0.3); color: var(--neon-cyan); }
.notif-dot {
  position: absolute; top: 6px; right: 7px; width: 8px; height: 8px;
  background: var(--danger); border-radius: 50%;
  border: 2px solid var(--graphite); box-shadow: 0 0 6px var(--danger);
}

/* sidebar-user logout icon hover */
.sidebar-user .link-icon { margin-left: auto; padding: 6px; border-radius: 6px; cursor: pointer; transition: var(--transition); }
.sidebar-user .link-icon:hover { background: rgba(255,255,255,0.04); color: var(--danger); }

/* ═══ Alert rows ═══ */
.alert-row { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-radius: 10px; border-left: 3px solid; }
.alert-danger  { background: var(--danger-dim);  border-color: var(--danger); }
.alert-warning { background: var(--warning-dim); border-color: var(--warning); }
.alert-info    { background: var(--neon-cyan-dim); border-color: var(--neon-cyan); }
.alert-success { background: var(--success-dim); border-color: var(--success); }

/* ═══ Feed amount color helpers ═══ */
.feed-amount.text-success { color: var(--success); }
.feed-amount.text-danger { color: var(--danger); }
.feed-amount.text-warning { color: var(--warning); }

/* ═══ Auth Pages ═══ */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left { padding: 60px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-left::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(0,102,255,0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(0,245,255,0.08) 0%, transparent 40%); }
.auth-left::after { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }
.auth-left > * { position: relative; z-index: 1; }
.auth-right { padding: 60px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.5); }
.auth-form-card { width: 100%; max-width: 460px; }
.auth-form-card h2 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.auth-form-card p.lead { color: var(--muted); margin-bottom: 32px; font-size: 14px; line-height: 1.6; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--soft-white); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; color: var(--muted); font-size: 12px; }
.divider::before, .divider::after { content:''; flex:1; height:1px; background: var(--glass-border); }
.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-btn { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--soft-white); padding: 12px; border-radius: 10px; cursor: pointer; font-size: 13px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); }
.social-btn:hover { border-color: rgba(0,245,255,0.3); }
.checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.checkbox-row input { width: 16px; height: 16px; accent-color: var(--neon-cyan); }

/* Steps indicator */
.steps-bar { display: flex; gap: 8px; margin-bottom: 32px; }
.step-pill { flex: 1; height: 4px; border-radius: 2px; background: var(--glass-border); transition: var(--transition); }
.step-pill.active { background: linear-gradient(90deg, var(--electric-blue), var(--neon-cyan)); }
.step-pill.done { background: var(--success); }
.step-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.step-title { font-size: 22px; font-weight: 700; margin-bottom: 24px; }

.auth-feature-list { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
.auth-feature { display: flex; gap: 14px; padding: 16px; border-radius: 12px; background: var(--glass-bg); border: 1px solid var(--glass-border); }
.auth-feature .icon-tile { flex-shrink: 0; }
.auth-feature h5 { font-size: 14px; font-weight: 600; color: var(--soft-white); margin-bottom: 4px; }
.auth-feature p { font-size: 12px; color: var(--muted); line-height: 1.5; }

@media(max-width:1024px) { .auth-wrap { grid-template-columns: 1fr; } .auth-left { display: none; } }

/* MFA code inputs */
.mfa-inputs { display: flex; gap: 10px; justify-content: center; margin: 24px 0; }
.mfa-inputs input { width: 56px; height: 64px; text-align: center; font-size: 24px; font-weight: 700; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; color: var(--soft-white); outline: none; transition: var(--transition); font-family: 'JetBrains Mono', monospace; }
.mfa-inputs input:focus { border-color: var(--neon-cyan); box-shadow: 0 0 0 3px rgba(0,245,255,0.1); }
