/* ═══════════════════════════════════════════════════════════════
   UDRINK · Arma tu pack — alineado al prototipo aprobado v3
   Fuente: .claude/prototipos/user-arma-tu-pack-flow.html
   ─────────────────────────────────────────────────────────────
   - Header dark sticky (chrome propio, FullscreenLayout)
   - Hero gradient suave + chips dark
   - Lista vertical de productos (1 col mobile · 1 col desktop ancho)
     con imagen a la izquierda + info a la derecha
   - Panel resumen sticky lateral derecho (≥1024 px)
   - Mobile bar fija + bottom sheet (mobile/tablet)
   - Tokens del sistema cliente (ud-primary #1152D4, Be Vietnam Pro)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ud-primary:        #1152D4;
  --ud-primary-hover:  #0F4BC4;
  --ud-primary-soft:   #E7EBF3;
  --ud-secondary:      #2A344D;
  --ud-inverted:       #0D141B;
  --ud-surface:        #FFFFFF;
  --ud-background:     #F6F7F8;
  --ud-border:         #E7EBF3;
  --ud-border-strong:  #CFDBE7;
  --ud-text:           #0D121B;
  --ud-muted:          #4C739A;
  --ud-soft:           #7A8BA0;
  --ud-danger:         #C03030;
  --ud-success:        #10B981;

  --ud-ring:        0 0 0 4px rgba(17, 82, 212, 0.20);
  --ud-shadow-sm:   0 1px 2px rgba(13,18,27,0.05);
  --ud-shadow:      0 8px 20px -14px rgba(15,23,42,0.18);
  --ud-shadow-md:   0 12px 30px -16px rgba(15,23,42,0.18);
  --ud-shadow-blue: 0 10px 30px -12px rgba(17,82,212,0.20);
}

.atp-page *,
.atp-page *::before,
.atp-page *::after { box-sizing: border-box; }

.atp-page {
  font-family: 'Be Vietnam Pro', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--ud-background);
  color: var(--ud-text);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═════ Header ═════ */
.atp-page .atp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111827; /* gray-900 */
  color: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}

.atp-page .atp-header__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.atp-page .atp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
}

.atp-page .atp-brand__name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.3px;
  line-height: 1;
}

.atp-page .atp-brand__sub {
  font-size: 12px;
  color: #94A3B8; /* slate-400 */
  margin-top: 4px;
  line-height: 1;
}

.atp-page .atp-header__back {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.atp-page .atp-header__back:hover { background: rgba(255,255,255,0.14); }

/* ═════ Main + Hero ═════ */
.atp-page .atp-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 16px 48px;
}

.atp-page .atp-hero {
  background: linear-gradient(135deg, rgba(17,82,212,0.06), rgba(14,165,233,0.06));
  border: 1px solid var(--ud-border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.atp-page .atp-hero__title {
  font-size: clamp(20px, 4.2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--ud-text);
  line-height: 1.15;
}

.atp-page .atp-hero__sub {
  font-size: 14px;
  color: var(--ud-muted);
  margin: 0 0 12px;
  line-height: 1.45;
  max-width: 600px;
}
.atp-page .atp-hero__sub strong { color: var(--ud-text); font-weight: 700; }

.atp-page .atp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.atp-page .atp-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #111827;
  color: white;
}

/* ═════ Layout principal ═════ */
.atp-page .atp-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 88px; /* margen para mobile bar */
}

@media (min-width: 1024px) {
  .atp-page .atp-content {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 20px;
    padding-bottom: 0;
  }
}

/* ═════ Encabezado de productos ═════ */
.atp-page .atp-prod-head { margin-bottom: 12px; }

.atp-page .atp-prod-head__title {
  font-size: 16px;
  font-weight: 900;
  margin: 0;
  color: var(--ud-text);
}

.atp-page .atp-prod-head__sub {
  font-size: 12px;
  color: var(--ud-muted);
  margin: 2px 0 0;
}

/* ═════ Filtros (chips) ═════ */
.atp-page .atp-cats {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  margin-bottom: 12px;
}
.atp-page .atp-cats::-webkit-scrollbar { display: none; }

.atp-page .cat {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--ud-border-strong);
  background: var(--ud-surface);
  color: var(--ud-muted);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  font-family: inherit;
}
.atp-page .cat:hover { border-color: var(--ud-primary); color: var(--ud-primary); }
.atp-page .cat.is-active {
  background: var(--ud-primary);
  border-color: var(--ud-primary);
  color: white;
}

/* ═════ Lista de productos (vertical) ═════ */
.atp-page .atp-prod-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.atp-page .atp-prod-list__loading {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--ud-muted);
  background: var(--ud-surface);
  border: 1.5px dashed var(--ud-border-strong);
  border-radius: 16px;
}

/* ═════ Card de producto ═════ */
/* Reset defensivo contra screen-mis-favoritos.css (que define .prod sin scoping). */
.atp-page .prod {
  background: var(--ud-surface);
  border: 1.5px solid var(--ud-border);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  transition: all 0.2s ease;
  position: relative;
  overflow: visible;
}

@media (min-width: 640px) {
  .atp-page .prod { gap: 16px; }
}

.atp-page .prod:hover {
  /* Cancela el translateY de mis-favoritos para no saltar al hover en lista vertical. */
  transform: none;
  border-color: var(--ud-border-strong);
}

.atp-page .prod.is-selected {
  border-width: 2px;
  border-color: var(--ud-primary);
  box-shadow: var(--ud-shadow);
}

.atp-page .prod__media {
  position: relative;
  width: 96px;
  height: 96px;
  aspect-ratio: auto;
  border-radius: 12px;
  background: var(--ud-background);
  border: 1px solid var(--ud-border-strong);
  flex-shrink: 0;
  /* overflow visible para que el qty-badge pueda superponerse a la esquina (top/left negativos) */
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Anular el gradiente y el sombreado de mis-favoritos en este flujo. */
.atp-page .prod__media--destilados,
.atp-page .prod__media--mixers,
.atp-page .prod__media--snacks { background: var(--ud-background); }
.atp-page .prod__media::after { content: none; }

@media (min-width: 640px) {
  .atp-page .prod__media { width: 112px; height: 112px; }
}

.atp-page .prod__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* La imagen mantiene sus esquinas redondeadas porque el media ya no recorta. */
  border-radius: 11px;
  transform: none !important;
}
.atp-page .prod:hover .prod__img { transform: none; }

/* El badge de cantidad queda por encima de cualquier capa visual del media. */
.atp-page .prod__qty-badge { z-index: 4; }

.atp-page .prod__qty-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ud-primary);
  color: white;
  font-size: 10.5px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.atp-page .prod.is-selected .prod__qty-badge {
  opacity: 1;
  transform: scale(1);
}

.atp-page .prod__stock-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--ud-danger);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  z-index: 3;
  letter-spacing: 0.3px;
}

.atp-page .prod.is-out-of-stock { opacity: 0.7; }
.atp-page .prod.is-out-of-stock .step-btn[data-inc] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

/* Info derecha — reset defensivo contra screen-mis-favoritos.css */
.atp-page .prod__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 0;
}

.atp-page .prod__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ud-text);
  line-height: 1.2;
  margin: 0;
  display: block;
  min-height: 0;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}

.atp-page .prod__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--ud-border);
}

.atp-page .prod__price-wrap { min-width: 0; }

.atp-page .prod__price {
  font-size: 17px;
  font-weight: 900;
  color: var(--ud-text);
  letter-spacing: -0.01em;
  line-height: 1;
}

.atp-page .prod__unit {
  font-size: 11.5px;
  color: var(--ud-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* ═════ Stepper ═════ */
.atp-page .stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F1F5F9; /* slate-100 */
  border-radius: 10px;
  padding: 4px;
}

.atp-page .step-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--ud-border-strong);
  background: var(--ud-surface);
  color: var(--ud-primary);
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  box-shadow: var(--ud-shadow-sm);
  font-family: inherit;
}

.atp-page .step-btn:hover:not(:disabled) {
  background: var(--ud-primary);
  color: white;
  border-color: var(--ud-primary);
}
.atp-page .step-btn:active:not(:disabled) { transform: scale(0.92); }
.atp-page .step-btn:disabled { opacity: 0.38; cursor: default; }

.atp-page .step-num {
  min-width: 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--ud-text);
  font-variant-numeric: tabular-nums;
  padding: 0 4px;
}

/* ═════ Estado vacío de filtro ═════ */
.atp-page .empty-filter {
  padding: 28px 20px;
  text-align: center;
  background: var(--ud-surface);
  border: 1.5px dashed var(--ud-border-strong);
  border-radius: 16px;
  display: none;
}
.atp-page .empty-filter.is-visible { display: block; }

.atp-page .empty-filter__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ud-text);
  margin: 0 0 4px;
}
.atp-page .empty-filter__text {
  font-size: 12.5px;
  color: var(--ud-muted);
  margin: 0;
}

/* ═════ Panel resumen (desktop) ═════ */
.atp-page .summary-col { display: none; }

@media (min-width: 1024px) {
  .atp-page .summary-col {
    display: block;
    position: sticky;
    top: 70px;
    align-self: start;
  }
}

.atp-page .sum {
  background: var(--ud-surface);
  border: 1px solid var(--ud-border);
  border-radius: 16px;
  box-shadow: var(--ud-shadow);
  overflow: hidden;
}

.atp-page .sum__head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--ud-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.atp-page .sum__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--ud-text);
}

.atp-page .sum__count {
  padding: 3px 10px;
  background: var(--ud-primary-soft);
  color: var(--ud-primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.atp-page .sum__body { padding: 18px; }

.atp-page .name-row {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.atp-page .name-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid var(--ud-border-strong);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--ud-text);
  background: #FAFBFC;
  outline: none;
  transition: all 0.18s;
  font-family: inherit;
}
.atp-page .name-input::placeholder { color: var(--ud-muted); }
.atp-page .name-input:focus {
  border-color: var(--ud-primary);
  background: var(--ud-surface);
  box-shadow: var(--ud-ring);
}

.atp-page .save-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--ud-border-strong);
  background: var(--ud-surface);
  color: var(--ud-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.atp-page .save-btn:hover {
  background: var(--ud-primary);
  border-color: var(--ud-primary);
  color: white;
}
.atp-page .save-btn.is-saved {
  background: var(--ud-success);
  border-color: var(--ud-success);
  color: white;
}

/* Items list */
.atp-page .items {
  min-height: 56px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.atp-page .items--sheet { max-height: none; overflow: visible; }

.atp-page .items::-webkit-scrollbar { width: 4px; }
.atp-page .items::-webkit-scrollbar-thumb { background: var(--ud-border-strong); border-radius: 2px; }

.atp-page .items-empty {
  padding: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ud-muted);
  background: var(--ud-background);
  border: 1.5px dashed var(--ud-border-strong);
  border-radius: 12px;
}

.atp-page .item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--ud-border);
  font-size: 13px;
}
.atp-page .item:last-child { border-bottom: none; }

.atp-page .item__qty {
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 6px;
  background: var(--ud-primary);
  color: white;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.atp-page .item__name {
  flex: 1;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ud-text);
}

.atp-page .item__price {
  color: var(--ud-muted);
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Totales */
.atp-page .totals {
  padding: 12px 0;
  border-top: 2px solid var(--ud-border);
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.atp-page .total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
}
.atp-page .total-row__label { color: var(--ud-muted); }
.atp-page .total-row__val   { color: var(--ud-text); font-weight: 700; font-variant-numeric: tabular-nums; }

.atp-page .total-row--grand { padding-top: 4px; }
.atp-page .total-row--grand .total-row__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ud-text);
}
.atp-page .total-row--grand .total-row__val {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ud-primary);
}

/* Botones */
.atp-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
}

.atp-page .btn-primary {
  background: var(--ud-primary);
  color: white;
  box-shadow: var(--ud-shadow-blue);
}
.atp-page .btn-primary:hover:not(:disabled):not(.is-locked) {
  background: var(--ud-primary-hover);
}
.atp-page .btn-primary:active:not(:disabled):not(.is-locked) { transform: scale(0.98); }
.atp-page .btn-primary:disabled,
.atp-page .btn-primary.is-locked {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.atp-page .btn-primary.is-locked:hover,
.atp-page .btn-primary.is-locked:active {
  background: var(--ud-primary);
  transform: none;
}

.atp-page .btn-ghost {
  margin-top: 8px;
  background: var(--ud-primary-soft);
  color: #2A344D;
  border-color: var(--ud-border-strong);
}
.atp-page .btn-ghost:hover:not(:disabled) { background: #D8E0EC; }
.atp-page .btn-ghost:disabled { opacity: 0.6; cursor: not-allowed; }

.atp-page .sum__note {
  margin-top: 14px;
  padding: 10px 13px;
  border-radius: 12px;
  border: 1px dashed var(--ud-border-strong);
  background: var(--ud-background);
  font-size: 12px;
  color: var(--ud-muted);
  line-height: 1.45;
}
.atp-page .sum__note strong { color: var(--ud-text); font-weight: 700; }

/* ═════ Mobile bar (mobile/tablet) ═════ */
.atp-page .mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  background: var(--ud-inverted);
  color: white;
  border-radius: 16px;
  padding: 10px 10px 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(13,18,27,0.3);
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.atp-page .mobile-bar.is-visible { transform: translateY(0); }

@media (min-width: 1024px) {
  .atp-page .mobile-bar { display: none; }
}

.atp-page .mobile-bar__info { flex: 1; min-width: 0; line-height: 1; }

.atp-page .mobile-bar__meta {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.atp-page .mobile-bar__total {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.atp-page .mobile-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: var(--ud-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}
.atp-page .mobile-bar__btn:hover { background: var(--ud-primary-hover); }
.atp-page .mobile-bar__btn:active { transform: scale(0.97); }

/* ═════ Bottom sheet ═════ */
.atp-page .sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,18,27,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.atp-page .sheet-overlay.is-open { opacity: 1; pointer-events: auto; }

.atp-page .sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: white;
  border-radius: 22px 22px 0 0;
  padding: 6px 0 20px;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -20px 60px rgba(13,18,27,0.24);
}
.atp-page .sheet.is-open { transform: translateY(0); }

@media (min-width: 1024px) {
  .atp-page .sheet,
  .atp-page .sheet-overlay { display: none !important; }
}

.atp-page .sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--ud-border-strong);
  border-radius: 2px;
  margin: 8px auto 14px;
}

.atp-page .sheet__head {
  padding: 0 18px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--ud-border);
}

.atp-page .sheet__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ud-text);
  margin: 0;
  letter-spacing: -0.01em;
}

.atp-page .sheet__close {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--ud-background);
  border-radius: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ud-muted);
  transition: all 0.18s;
}
.atp-page .sheet__close:hover {
  background: var(--ud-border);
  color: var(--ud-text);
}

.atp-page .sheet__body {
  padding: 16px 18px 0;
  overflow-y: auto;
  flex: 1;
}

/* ═════ Toast ═════ */
.atp-page .atp-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  background: var(--ud-inverted);
  color: white;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  z-index: 9999;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%) translateY(140%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.atp-page .atp-toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.atp-page .atp-toast__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ud-success);
  flex-shrink: 0;
}

/* ═════ Float +1 (animación de feedback) ═════ */
.atp-float-plus {
  position: fixed;
  pointer-events: none;
  z-index: 200;
  font-size: 18px;
  font-weight: 800;
  color: var(--ud-primary);
  animation: atp-float-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  text-shadow: 0 4px 10px rgba(17,82,212,0.35);
  font-family: 'Be Vietnam Pro', system-ui, sans-serif;
}

@keyframes atp-float-up {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  25%  { opacity: 1; transform: translate(-50%, -70%) scale(1.1); }
  100% { opacity: 0; transform: translate(-50%, -150%) scale(1); }
}

/* ═════ Reduced motion ═════ */
@media (prefers-reduced-motion: reduce) {
  .atp-page *,
  .atp-page *::before,
  .atp-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
