/* ============================================================
   BASE — reset, body background, typography, global utilities
   ============================================================ */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--ink);
  background:
    radial-gradient(1100px 700px at 12% -8%, #2A1F55 0%, transparent 55%),
    radial-gradient(900px 600px at 100% 0%,   #3A1C42 0%, transparent 50%),
    var(--bg);
  min-height: 100vh;
}

img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--pink); color: #fff; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 8px;
}

/* --- Animations --- */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@keyframes pop {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,107,107,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(255,107,107,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,107,107,0); }
}

@keyframes wave-bounce {
  0%,100% { transform: scaleY(.35); }
  50%      { transform: scaleY(1); }
}

@keyframes wobble {
  0%,100% { transform: rotate(-7deg); }
  50%      { transform: rotate(7deg); }
}

/* --- Global helper classes --- */
.text-pink   { color: var(--pink); }
.text-cyan   { color: var(--cyan); }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-muted  { color: var(--muted); }

.eyebrow {
  color: var(--pink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.h-title {
  font-size: 24px;
  font-weight: 800;
  margin: 4px 0 0;
  letter-spacing: -.3px;
}

.sub {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.block-h {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.verified { color: var(--cyan); font-size: 18px; }
.stars    { color: var(--gold); letter-spacing: 1px; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
