/* =========================================================
   Operativo ManoMano · Finde de Caza
   Archetype 05 — Mouse-Reactive Gradient ADAPTED
   Paleta cobre + morado · ES Caleño
   ========================================================= */

:root {
  --bg:        #0e0a08;
  --bg-2:      #1a1410;
  --ink:       #f5ede0;
  --ink-mute:  #a08c75;
  --copper:    #E55A1F;
  --copper-2:  #ff7a3d;
  --purple:    #7C3AED;
  --gold:      #C9A961;
  --line:      rgba(245, 237, 224, 0.12);
  --line-2:    rgba(245, 237, 224, 0.22);

  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "Courier New", monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --mx: 50%;
  --my: 50%;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--font-display); font-weight: 700; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg); border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

/* =========================================================
   SIGNATURE: mouse-reactive gradient mesh (fixed bg)
   ========================================================= */
.gradient-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle 600px at var(--mx) var(--my),
      rgba(229, 90, 31, 0.55) 0%, transparent 50%),
    radial-gradient(circle 800px at calc(var(--mx) + 12%) calc(var(--my) - 8%),
      rgba(124, 58, 237, 0.45) 0%, transparent 50%),
    radial-gradient(circle 700px at calc(var(--mx) - 15%) calc(var(--my) + 18%),
      rgba(201, 169, 97, 0.30) 0%, transparent 50%),
    var(--bg);
  filter: blur(40px) saturate(140%);
  transition: background 0.3s ease;
}

.grain {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; opacity: 0.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* =========================================================
   Layout: containers + sections
   ========================================================= */
main { position: relative; z-index: 1; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.container-narrow { max-width: 720px; }

.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2.5rem;
  color: var(--ink);
}
.section-title .title-suffix {
  color: var(--ink-mute);
  font-weight: 500;
  font-size: 0.6em;
  display: inline-block;
  margin-left: 0.4em;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(229, 90, 31, 0.4);
  border-radius: 999px;
  background: rgba(229, 90, 31, 0.08);
  margin-bottom: 2rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--copper);
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 12px var(--copper);
}
.dot-live { background: #4ade80; box-shadow: 0 0 12px #4ade80; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(3.5rem, 14vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.word-solid {
  display: inline-block;
  background: linear-gradient(135deg, var(--ink) 0%, var(--copper-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.word-outline {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px var(--copper);
  transition: color 0.45s var(--ease-out), -webkit-text-stroke 0.45s var(--ease-out);
}
.word-outline:hover {
  color: var(--copper);
  -webkit-text-stroke: 2px transparent;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-counter {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--ink-mute);
  margin-bottom: 2.5rem;
}
.hero-counter .count {
  color: var(--copper);
  font-weight: 500;
  font-size: 1.15rem;
  display: inline-block;
  min-width: 1.5ch;
  transition: transform 0.35s var(--ease-out);
}
.hero-counter .count.is-bump {
  transform: scale(1.25);
}
.counter-label { color: var(--ink-mute); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft), background 0.35s var(--ease-soft);
}
.btn-primary {
  background: var(--copper);
  color: var(--bg);
  box-shadow: 0 8px 22px rgba(229, 90, 31, 0.35), 0 2px 6px rgba(229, 90, 31, 0.2);
}
.btn-primary:hover {
  background: var(--copper-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(229, 90, 31, 0.5), 0 4px 12px rgba(229, 90, 31, 0.3);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.btn-secondary {
  background: rgba(245, 237, 224, 0.06);
  color: var(--ink);
  border: 1px solid var(--line-2);
  width: 100%;
  justify-content: center;
}
.btn-secondary:hover {
  background: rgba(229, 90, 31, 0.1);
  border-color: var(--copper);
  color: var(--copper);
}

.btn-submit { width: 100%; justify-content: center; position: relative; }
.btn-submit .btn-spinner {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.btn-submit .btn-spinner::after {
  content: "";
  width: 18px; height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.rsvp-form.is-sending .btn-label { opacity: 0; }
.rsvp-form.is-sending .btn-spinner { display: flex; }
.rsvp-form.is-sending .btn-submit { pointer-events: none; }

/* =========================================================
   Cards (programa + donde)
   ========================================================= */
.card {
  background: rgba(26, 20, 16, 0.6);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), border-color 0.45s var(--ease-soft);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 90, 31, 0.4);
  box-shadow: 0 30px 60px -20px rgba(229, 90, 31, 0.3), 0 10px 25px -10px rgba(0, 0, 0, 0.5);
}

.card-time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.card-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.card-sub {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.card-body {
  color: var(--ink-mute);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.programa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .programa-grid { grid-template-columns: repeat(2, 1fr); }
}

.programa-card-bday {
  position: relative;
  border-color: rgba(201, 169, 97, 0.4);
}
.programa-card-bday:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 60px -20px rgba(201, 169, 97, 0.4), 0 10px 25px -10px rgba(0, 0, 0, 0.5);
}
.bday-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid rgba(201, 169, 97, 0.5);
  color: var(--gold);
  margin-bottom: 0.85rem;
  white-space: normal;
}
@media (prefers-reduced-motion: no-preference) {
  .bday-badge {
    animation: bdayPulse 3s ease-in-out infinite;
  }
}
@keyframes bdayPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.4); }
  50%      { box-shadow: 0 0 20px 2px rgba(201, 169, 97, 0.25); }
}

.donde-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .donde-grid { grid-template-columns: repeat(2, 1fr); }
}
.donde-icon { font-size: 2.5rem; margin-bottom: 1rem; line-height: 1; }
.donde-card { display: flex; flex-direction: column; }
.donde-card .card-body { flex: 1; }

/* =========================================================
   DOGO
   ========================================================= */
.dogo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .dogo-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.dogo-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 2rem;
  min-height: 360px;
}
.dogo-halo {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(229, 90, 31, 0.35) 0%,
    rgba(124, 58, 237, 0.18) 40%,
    transparent 70%);
  filter: blur(30px);
  border-radius: 50%;
  z-index: 0;
}
.dogo-img {
  position: relative;
  z-index: 1;
  max-width: min(100%, 380px);
  width: 100%;
  height: auto;
  animation: dogoBob 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
}
@keyframes dogoBob {
  0%, 100% { transform: translateY(-12px); }
  50%      { transform: translateY(12px); }
}
.dogo-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(14, 10, 8, 0.85);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dogo-name {
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.9;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--copper);
  margin-bottom: 1.25rem;
}
.dogo-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.25;
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--copper);
}
.dogo-meta {
  color: var(--ink-mute);
  font-size: 0.95rem;
}

/* =========================================================
   RSVP FORM
   ========================================================= */
.rsvp-section {
  position: relative;
}
.rsvp-form {
  position: relative;
  background: rgba(26, 20, 16, 0.7);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-soft);
}
.rsvp-form.is-sent {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.field { margin-bottom: 1.5rem; }
.field label,
.field-group legend {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.6rem;
}

.field input[type="text"],
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(14, 10, 8, 0.55);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.field textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); }
.field input[type="text"]:focus,
.field textarea:focus {
  border-color: var(--copper);
  background: rgba(14, 10, 8, 0.85);
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(160, 140, 117, 0.55); }

.field-group {
  margin-bottom: 1.5rem;
  border: 0;
  padding: 0;
}
.field-group > legend { padding: 0; margin-bottom: 0.75rem; }
.radio {
  display: block;
  cursor: pointer;
  margin-bottom: 0.6rem;
}
.radio input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: rgba(14, 10, 8, 0.55);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-soft);
}
.radio:hover .radio-card { border-color: rgba(229, 90, 31, 0.5); transform: translateY(-1px); }
.radio input:checked + .radio-card {
  border-color: var(--copper);
  background: rgba(229, 90, 31, 0.1);
  box-shadow: 0 0 0 1px var(--copper);
}
.radio-icon { font-size: 1.5rem; line-height: 1; }
.radio-label {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  display: block;
}
.radio-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 0.15rem;
}
.radio-card { flex-wrap: wrap; }
.radio-card > span:not(.radio-icon) { flex: 1; }

.form-note {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.rsvp-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out) 0.3s, transform 0.7s var(--ease-soft) 0.3s;
}
.rsvp-success.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rsvp-success h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.rsvp-success p {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.rsvp-success .success-meta {
  font-size: 0.9rem;
  color: var(--ink-mute);
}

/* =========================================================
   CONFIRMADOS — avatares
   ========================================================= */
.confirmados {
  text-align: center;
}
.confirmados .kicker { display: inline-block; }
.confirmados-breakdown {
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}
.confirmados-breakdown .bullet { margin: 0 0.6rem; opacity: 0.5; }
.confirmados-breakdown span[data-count-casa],
.confirmados-breakdown span[data-count-discord] {
  color: var(--copper);
  font-weight: 500;
}

.avatars-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  min-height: 80px;
  align-items: center;
}
.avatars-empty {
  color: var(--ink-mute);
  font-family: var(--font-display);
  font-size: 1.1rem;
  width: 100%;
}
.avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0;
  cursor: default;
  transition: transform 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
  border: 2px solid rgba(14, 10, 8, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: avatarPop 0.5s var(--ease-out) backwards;
}
@keyframes avatarPop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.avatar:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 30px rgba(229, 90, 31, 0.4);
  z-index: 5;
}
.avatar .avatar-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease-soft);
}
.avatar:hover .avatar-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================================================
   Footer + sticky CTA
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 5rem;
  margin-top: 2rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}
.footer a { color: var(--copper); transition: color 0.3s; }
.footer a:hover { color: var(--copper-2); }

.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--copper);
  color: var(--bg);
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  z-index: 80;
  box-shadow: 0 12px 30px rgba(229, 90, 31, 0.5), 0 4px 10px rgba(0, 0, 0, 0.4);
  animation: stickySlide 0.6s var(--ease-soft) 1s backwards;
}
@keyframes stickySlide {
  from { transform: translateY(120%); }
  to   { transform: translateY(0); }
}
.sticky-cta strong { font-weight: 700; }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* =========================================================
   Confetti
   ========================================================= */
.confetti {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  width: 8px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  animation: confettiFall var(--dur, 1.2s) ease-out forwards;
}
@keyframes confettiFall {
  0% {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
  }
  100% {
    transform: translate(calc(-50% + var(--tx, 0)), calc(-50% + var(--ty, -400px))) rotate(var(--rot, 360deg));
    opacity: 0;
  }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* =========================================================
   Reduced motion guards (per skill 07)
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .gradient-bg { filter: blur(30px); }
  .dogo-img { animation: none; }
  .dot { animation: none; }
  .sticky-cta { animation: none; }
  .avatar { animation: none; }
  /* Keep: hovers, reveals, counter pulses, confetti (user-initiated) */
}

/* =========================================================
   Mobile fine-tuning
   ========================================================= */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 16vw, 6rem); }
  .hero-actions .btn { flex: 1; justify-content: center; min-width: 0; }
  body { padding-bottom: 5rem; } /* room for sticky CTA */
}
