/* Jump In The Spotlight — custom utilities not covered by Tailwind CDN */

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  color: #071a3d;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(180deg, #f5b400 0%, #d89a00 100%);
  color: rgb(0 14 32);
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 30px -8px rgba(245,180,0,0.5);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  cursor: pointer; border: none; text-decoration: none;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(245,180,0,0.65); filter: brightness(1.05); }

.btn-outline-white {
  background: transparent; color: #fff; font-weight: 700;
  border-radius: 999px; padding: 0.85rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,.35);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .2s ease; cursor: pointer; text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.btn-royal {
  background: rgb(0 73 164); color: #fff; font-weight: 800;
  border-radius: 999px; padding: 0.9rem 1.75rem;
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: 0 8px 30px -8px rgba(0,73,164,.55);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer; border: none; text-decoration: none;
}
.btn-royal:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(0,73,164,.7); }

/* Card lift */
.card-lift { transition: transform .35s cubic-bezier(.2,.9,.3,1), box-shadow .35s ease; }
.card-lift:hover { transform: translateY(-6px); box-shadow: 0 25px 60px -20px rgba(7,26,61,.3); }

/* Uppercase tight */
.uppercase-tight { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; }

/* QR pulse */
@keyframes qrPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,180,0,.6); }
  50%    { box-shadow: 0 0 0 18px rgba(245,180,0,0); }
}
.qr-pulse { animation: qrPulse 2.4s ease-in-out infinite; }

/* Scan effect */
@keyframes scanLine {
  0%   { transform: translateY(-100%); opacity: .9; }
  50%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}
.scan-effect { position: relative; overflow: hidden; }
.scan-effect::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(245,180,0,.55) 50%, transparent 100%);
  animation: scanLine 2.6s ease-in-out infinite; pointer-events: none;
}

/* Float soft */
@keyframes floatSoft {
  0%,100% { transform: translateY(0); }
  50%    { transform: translateY(-8px); }
}
.float-soft { animation: floatSoft 5s ease-in-out infinite; }

/* Fade in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn .3s ease-out; }

/* Shadow tokens */
.shadow-elevated { box-shadow: 0 20px 60px -20px rgba(7,26,61,.35); }
.shadow-gold     { box-shadow: 0 10px 40px -10px rgba(245,180,0,.45); }
.shadow-royal    { box-shadow: 0 10px 40px -10px rgba(0,73,164,.45); }

/* Utility color fallbacks (in case CDN JIT misses variant classes with slashes) */
.text-muted-foreground { color: #5b6b85; }
.bg-soft-gray  { background-color: #f6f8fb; }
.text-success  { color: #27c46a; }
.bg-success    { background-color: #27c46a; }

/* Focus ring for accessibility */
:focus-visible { outline: 2px solid #1565ff; outline-offset: 2px; border-radius: 6px; }
