/* ============================================
   EXPERT FOR FOREX — Cyberpunk Neon Design System
   ============================================ */
:root {
  --bg-0: #05060D;
  --bg-1: #0A0D1A;
  --bg-2: #11152A;
  --bg-3: #181D3A;
  --line: rgba(0, 229, 255, 0.15);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(0, 229, 255, 0.35);

  --cyan: #00E5FF;
  --cyan-2: #00B8D4;
  --magenta: #FF2DAA;
  --magenta-2: #C81C82;
  --violet: #7C5CFF;
  --green: #00FF94;
  --red: #FF3B5C;
  --amber: #FFB800;

  --text: #E6EDF7;
  --text-2: #B4BDD0;
  --text-3: #7A8499;
  --text-4: #4A5168;

  --grad-1: linear-gradient(135deg, #00E5FF 0%, #7C5CFF 50%, #FF2DAA 100%);
  --grad-2: linear-gradient(180deg, rgba(0,229,255,0.18), rgba(0,229,255,0) 70%);
  --grad-3: linear-gradient(135deg, #00FF94 0%, #00E5FF 100%);

  --shadow-cyan: 0 0 24px rgba(0, 229, 255, 0.35), 0 0 60px rgba(0, 229, 255, 0.15);
  --shadow-magenta: 0 0 24px rgba(255, 45, 170, 0.35);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --font-display: "Orbitron", "Space Grotesk", sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Animated grid background ===== */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 35%, transparent 75%);
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 60px 60px, 60px 60px; }
}
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 229, 255, 0.02) 0,
    rgba(0, 229, 255, 0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
}
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-1 { background: radial-gradient(circle, #00E5FF 0%, transparent 70%); width: 520px; height: 520px; top: -120px; left: -120px; }
.orb-2 { background: radial-gradient(circle, #FF2DAA 0%, transparent 70%); width: 460px; height: 460px; bottom: -120px; right: -100px; animation-delay: -6s; }
.orb-3 { background: radial-gradient(circle, #7C5CFF 0%, transparent 70%); width: 380px; height: 380px; top: 50%; left: 60%; animation-delay: -12s; opacity: 0.3; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ===== Typography ===== */
.display { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.02em; }
.mono { font-family: var(--font-mono); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0; letter-spacing: 0.01em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.gradient-text {
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Layout ===== */
.app {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
main { flex: 1; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 6, 13, 0.7);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
}
.logo-mark {
  width: 40px;
  height: 40px;
  position: relative;
  display: grid;
  place-items: center;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { line-height: 1; }
.logo-text small { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.4em; color: var(--cyan); margin-top: 4px; }

.nav-links { display: flex; gap: 4px; }
.nav-link {
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  transition: all 0.2s;
  position: relative;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--text); background: rgba(0, 229, 255, 0.06); }
.nav-link.active { color: var(--cyan); }
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.2s;
  background: transparent;
  color: var(--text);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 0 0 var(--cyan);
}
.btn-primary:hover { box-shadow: var(--shadow-cyan); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { background: rgba(0, 229, 255, 0.08); border-color: var(--cyan); color: var(--cyan); }
.btn-magenta { background: var(--magenta); color: #fff; }
.btn-magenta:hover { box-shadow: var(--shadow-magenta); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 11px; }
.btn-block { width: 100%; }

.btn-sheen::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}
.btn-sheen:hover::before { left: 100%; }

/* ===== Cards / Panels ===== */
.panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.6;
}
.panel-glow {
  box-shadow: 0 0 0 1px var(--line), 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 80px rgba(0, 229, 255, 0.03);
}
.panel-padded { padding: 24px; }
.panel-padded-lg { padding: 32px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--line-strong);
  color: var(--cyan);
}
.tag-green { background: rgba(0, 255, 148, 0.1); border-color: rgba(0, 255, 148, 0.3); color: var(--green); }
.tag-red { background: rgba(255, 59, 92, 0.1); border-color: rgba(255, 59, 92, 0.3); color: var(--red); }
.tag-magenta { background: rgba(255, 45, 170, 0.1); border-color: rgba(255, 45, 170, 0.3); color: var(--magenta); }
.tag-amber { background: rgba(255, 184, 0, 0.1); border-color: rgba(255, 184, 0, 0.3); color: var(--amber); }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}
.dot-pulse { animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ===== Inputs ===== */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); }
.input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12); }
.input::placeholder { color: var(--text-4); }

/* ===== Grids ===== */
.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); }
@media (max-width: 900px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ===== Stat ===== */
.stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); }
.stat-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text); }
.stat-value.green { color: var(--green); text-shadow: 0 0 12px rgba(0, 255, 148, 0.4); }
.stat-value.red { color: var(--red); text-shadow: 0 0 12px rgba(255, 59, 92, 0.4); }
.stat-value.cyan { color: var(--cyan); text-shadow: 0 0 12px rgba(0, 229, 255, 0.4); }
.stat-delta { font-family: var(--font-mono); font-size: 11px; }

/* ===== Live ticker bar ===== */
.ticker {
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 36px;
  position: relative;
  z-index: 49;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  padding: 9px 0;
  font-family: var(--font-mono);
  font-size: 12px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item { display: inline-flex; gap: 8px; align-items: center; color: var(--text-2); }
.ticker-item .pair { color: var(--text); font-weight: 600; }
.ticker-item .up { color: var(--green); }
.ticker-item .down { color: var(--red); }

/* ===== Number animations ===== */
.count-up { display: inline-block; min-width: 1ch; }

/* ===== Hover lift ===== */
.lift { transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.lift:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--line-strong), 0 0 40px rgba(0, 229, 255, 0.08); }

/* ===== Section ===== */
.section { padding: 80px 0; position: relative; }
.section-sm { padding: 48px 0; }
.section-head { margin-bottom: 48px; }
.section-title { font-size: 40px; line-height: 1.1; margin-top: 12px; }
.section-sub { color: var(--text-2); font-size: 16px; max-width: 600px; margin-top: 12px; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  margin-top: 80px;
  background: rgba(0, 0, 0, 0.4);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.footer h4 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; font-family: var(--font-mono); font-weight: 600; }
.footer-link { display: block; padding: 6px 0; color: var(--text-2); font-size: 13px; }
.footer-link:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--text-3); font-family: var(--font-mono); font-size: 11px; }

/* ===== Chart styles ===== */
.chart-wrap { position: relative; width: 100%; height: 100%; }
.chart-svg { width: 100%; height: 100%; display: block; }
.chart-grid line { stroke: rgba(255,255,255,0.05); stroke-width: 1; }
.chart-area { fill: url(#equityGrad); }
.chart-line { fill: none; stroke: var(--cyan); stroke-width: 2; filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.6)); }
.chart-line-magenta { stroke: var(--magenta); filter: drop-shadow(0 0 6px rgba(255, 45, 170, 0.6)); }

/* ===== Glow rule ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  margin: 24px 0;
}

/* ===== Bot chat ===== */
.chat-msg {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  animation: msgIn 0.4s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  flex-shrink: 0;
}
.chat-avatar.bot { background: var(--grad-1); color: #000; font-weight: 700; box-shadow: 0 0 16px rgba(0, 229, 255, 0.4); }
.chat-avatar.user { background: rgba(255,255,255,0.06); border: 1px solid var(--line); }
.chat-bubble {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  max-width: 80%;
  line-height: 1.5;
}
.chat-bubble.bot { border-color: rgba(0, 229, 255, 0.25); background: rgba(0, 229, 255, 0.04); }

/* ===== Typing indicator ===== */
.typing { display: inline-flex; gap: 4px; padding: 4px 0; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); opacity: 0.4; animation: typing 1.4s infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5, 6, 13, 0.85);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 24px;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: 100%; max-width: 480px;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-cyan);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: translateY(20px) scale(0.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }

/* ===== Image placeholders ===== */
.placeholder-img {
  background:
    repeating-linear-gradient(45deg, rgba(0,229,255,0.04) 0, rgba(0,229,255,0.04) 8px, transparent 8px, transparent 16px),
    linear-gradient(135deg, rgba(0,229,255,0.06), rgba(255,45,170,0.04));
  border: 1px dashed var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-md);
}

/* ===== Utility ===== */
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; } .gap-8 { gap: 32px; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.text-muted { color: var(--text-3); }
.text-cyan { color: var(--cyan); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-mono { font-family: var(--font-mono); }
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }
.text-xs { font-size: 11px; } .text-sm { font-size: 13px; } .text-lg { font-size: 17px; } .text-xl { font-size: 22px; } .text-2xl { font-size: 28px; }

/* ===== Image slot — admin-only gating ===== */
/* When NOT in admin mode, EA image slots are read-only:
   no drag/drop, no empty placeholder UI, just the filled image (if any). */
body:not(.eff-admin-mode) image-slot[data-admin-only] {
  pointer-events: none;
}
body:not(.eff-admin-mode) image-slot[data-admin-only]::part(empty) {
  display: none;
}
/* When admin mode IS on, give a subtle magenta ring so admin sees what's editable */
body.eff-admin-mode image-slot[data-admin-only] {
  outline: 1px dashed rgba(255, 45, 170, 0.4);
  outline-offset: -1px;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: rgba(0, 229, 255, 0.2); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 229, 255, 0.35); }

/* ===== Mobile hamburger nav ===== */
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.nav-burger svg { width: 18px; height: 18px; }
.nav-mobile-drawer {
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(5, 6, 13, 0.96);
  backdrop-filter: blur(16px);
  z-index: 48;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 6px;
  animation: drawerIn 0.2s ease;
}
.nav-mobile-drawer .nav-link {
  padding: 16px;
  font-size: 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
}
.nav-mobile-drawer .nav-link.active {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}
.nav-mobile-drawer .nav-link.active::after { display: none; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile-drawer.open { display: flex; }
}
@media (max-width: 640px) {
  .logo-text { font-size: 13px; }
  .logo-mark { width: 32px !important; height: 32px !important; }
  .nav-inner { height: 60px; }
  .nav-mobile-drawer { inset: 60px 0 0 0; }
}

/* ============================================

/* Tablet */
@media (max-width: 1024px) {
  body { font-size: 14px; }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .panel-padded-lg { padding: 24px; }
  h1 { font-size: 44px !important; line-height: 1.05 !important; }
  h2 { font-size: 32px !important; }
  .stat-value { font-size: 22px; }
  .nav-link { padding: 10px 12px; font-size: 12px; }
}

/* Mobile */
@media (max-width: 640px) {
  .hide-mobile { display: none !important; }
  body { font-size: 14px; }
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 28px; }
  .section-title { font-size: 26px !important; line-height: 1.1; }
  .section-sub { font-size: 14px; }

  /* Grids → single column on mobile */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; gap: 14px; }
  .grid { gap: 14px; }

  /* Override inline 2-column grids (used in hero / detail / checkout / auth) */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Tighter panels */
  .panel-padded { padding: 16px; }
  .panel-padded-lg { padding: 18px; }

  /* Typography clamps */
  h1 { font-size: 32px !important; line-height: 1.05 !important; }
  h2 { font-size: 24px !important; line-height: 1.1 !important; }
  h3 { font-size: 18px !important; }

  /* Buttons full-width-ish */
  .btn-lg { padding: 14px 22px; font-size: 13px; }
  .btn { font-size: 12px; padding: 10px 16px; }

  /* Stat values */
  .stat-value { font-size: 22px !important; }

  /* Tables — horizontal scroll wrapper */
  table { font-size: 12px; }

  /* Hide some nav labels — keep mobile nav minimal */
  .nav-actions .btn-sm { padding: 8px 12px; font-size: 11px; }

  /* Forms / inputs */
  .input { padding: 11px 12px; font-size: 14px; }

  /* Modal smaller padding */
  .modal { padding: 22px; }

  /* Hide some flourishes for perf + clarity */
  .scanlines { display: none; }
  .orb { opacity: 0.25; filter: blur(60px); }
}
