/* ── Stitch Design System Overrides ── */
/* Consolidated from desktop + mobile Stitch exports */

/* Material Symbols base config */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Glass/blur effects */
.glass-header {
  background: rgba(7, 9, 10, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #232628; border-radius: 10px; }

/* Hide scrollbar */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Ghost border */
.ghost-border { border: 1px solid rgba(116, 118, 119, 0.15); }

/* Input focus */
.input-focus-effect:focus {
  border-color: #c4f000;
  outline: none;
  box-shadow: 0 0 0 1px #c4f000;
}

/* Editorial gradient */
.editorial-gradient {
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 240, 0, 0.08) 0%, transparent 60%);
}

/* Logo glow */
.logo-glow {
  text-shadow: 0 0 40px rgba(196, 240, 0, 0.3);
}

/* Button glow on hover */
.btn-glow:hover {
  box-shadow: 0 0 20px rgba(196, 240, 0, 0.2);
}

/* Neon glow — tertiary color (from runner_home) */
.neon-glow-tertiary {
  box-shadow: 0 0 20px rgba(123, 255, 216, 0.15);
}

/* Body min-height for mobile screens (from mobile Stitch exports) */
.stitch-mobile-shell {
  min-height: max(884px, 100dvh);
}
