/* ════════════════════════════════════════════════
   HERO — KBPPAY Landing
   ════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: clamp(32px, 5vh, 70px) 0 0;       /* reducido · body ya tiene padding-top para nav fixed */
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}

/* ─────── LEFT COPY ─────── */
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

/* Hero pills row */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.1px;
  line-height: 1;
}
.pill strong { color: var(--text); font-weight: 700; }
.pill--live {
  background: linear-gradient(90deg, rgba(82,174,50,0.10), rgba(255,255,255,0.04));
  border-color: rgba(82,174,50,0.25);
}
.pill--reg {
  color: var(--text-secondary);
}
.pill--reg svg { color: var(--brand-green); }
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: livePulse 2s var(--ease) infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* Eyebrow / kicker above H1 */
.hero__kicker {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin: 4px 0 -8px;
}

/* Headline */
.hero__title {
  font-size: clamp(38px, 5.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--text);
}
.hero__title-grad {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* subtle shimmer */
  background-size: 200% 100%;
  animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero__sub {
  font-size: clamp(16px, 1.45vw, 19px);
  color: var(--text-secondary);
  max-width: 52ch;
  line-height: 1.55;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

/* ─────── CONVERTER ─────── */
.converter {
  position: relative;
  background: var(--glass-premium);
  border: 1px solid var(--glass-border-strong);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--r);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  color: var(--text);
}
.converter::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(82,174,50,0.4), rgba(50,89,253,0.4), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.converter__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: end;
}
.converter__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.converter__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.converter__input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.converter__input-wrap:focus-within {
  border-color: rgba(82,174,50,0.6);
  background: rgba(255,255,255,0.06);
}
.converter__input-wrap--output {
  background: rgba(82,174,50,0.06);
  border-color: rgba(82,174,50,0.18);
}
.converter__input-wrap input,
.converter__input-wrap output {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  width: 100%;
  font-variant-numeric: tabular-nums;
}
.converter__input-wrap input::-webkit-outer-spin-button,
.converter__input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.converter__input-wrap input[type=number] { -moz-appearance: textfield; }
.converter__currency {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 3px 7px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}
.converter__arrow {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(50,89,253,0.3);
}

.converter__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.converter__meta-item {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 13px;
}
.converter__meta-label {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 500;
}
.converter__meta-val {
  color: var(--text);
  font-weight: 600;
}
.converter__meta-val--fee {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.converter__meta-sep {
  width: 1px;
  height: 14px;
  background: var(--glass-border);
}
.converter__rate-change {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 500;
}
.converter__rate-change--up { color: var(--ok); background: var(--ok-bg); }
.converter__rate-change--down { color: var(--fail); background: var(--fail-bg); }

.converter__spark {
  width: 80px;
  height: 22px;
  flex-shrink: 0;
  margin-left: auto;
}
.converter__spark-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: sparkDraw 1.4s var(--ease) .8s forwards;
}
@keyframes sparkDraw { to { stroke-dashoffset: 0; } }

/* ─────── CTAs + trust ─────── */
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
/* ═══════════════════════════════════════════════
   TRUST BAND — full-width separator
   ═══════════════════════════════════════════════ */
.trust-band {
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 50%, transparent),
    rgba(255,255,255,0.015);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Variante integrada en el hero · separación superior + borde inferior limpio */
.trust-band--hero {
  margin-top: clamp(40px, 6vh, 72px);
  border-bottom: none;     /* la siguiente sección define su propio borde */
}
.trust-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-band__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.trust-band__item svg {
  flex-shrink: 0;
  color: var(--brand-green);
  width: 22px; height: 22px;
  padding: 8px;
  box-sizing: content-box;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
}
.trust-band__item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.trust-band__item strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.trust-band__item span {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.3;
}

@media (max-width: 880px) {
  .trust-band__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 480px) {
  .trust-band__inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   RIGHT COLUMN — PHONE 3D MOCKUP
   ═══════════════════════════════════════════════ */
.hero__phone {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1400px;
  min-height: 560px;
}

.phone-frame {
  position: relative;
  width: 290px;
  aspect-ratio: 290 / 600;
  background: linear-gradient(155deg, #1a1f2e 0%, #0b0f1a 100%);
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.08),
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 50px 100px -30px rgba(50,89,253,0.35),
    0 -10px 60px -20px rgba(82,174,50,0.25);
  transform: rotateY(-14deg) rotateX(6deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  transition: transform .8s var(--ease);
  z-index: 2;
}
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .phone-frame {
      animation: phoneTilt linear both;
      animation-timeline: scroll(root);
      animation-range: 0 600px;
    }
    @keyframes phoneTilt {
      from { transform: rotateY(-14deg) rotateX(6deg) rotateZ(-1deg); }
      to   { transform: rotateY(-4deg) rotateX(2deg) rotateZ(0deg) translateY(-12px); }
    }
  }
}
.hero__phone:hover .phone-frame {
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(0deg) translateY(-6px);
}

/* Notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 34px;
  padding: 38px 16px 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* same gradient mesh, smaller */
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(82,174,50,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(50,89,253,0.16) 0%, transparent 60%);
  background-color: #0B0F1A;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  padding: 0 4px;
}
.phone-status__icons { color: var(--text-secondary); }

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.phone-logo { width: 22px; height: 22px; }
.phone-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(82,174,50,0.25);
}

.phone-welcome h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.phone-welcome p {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.phone-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}
.phone-section-head > span:first-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.phone-count {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}

.phone-tx-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.phone-tx {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 9px 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.phone-tx__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.phone-tx__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.phone-tx__row1 {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text);
}
.phone-tx__row2 {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-muted);
  align-items: center;
}
.phone-tx__amt { font-variant-numeric: tabular-nums; }
.phone-tx__status {
  padding: 2px 6px;
  border-radius: var(--r-pill);
  font-size: 8.5px;
  font-weight: 500;
}
.phone-tx__status--ok { color: var(--ok); background: var(--ok-bg); }
.phone-tx__status--pending { color: var(--pending); background: var(--pending-bg); }

.phone-fab {
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow: var(--shadow-cta);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   PHONE AURA — ring + particles + floating cards
   ═══════════════════════════════════════════════ */

/* Anillo halo conic detrás */
.phone-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 380px; height: 380px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(82,174,50,0) 0deg,
    rgba(82,174,50,0.35) 60deg,
    rgba(50,89,253,0.35) 180deg,
    rgba(82,174,50,0.20) 280deg,
    rgba(82,174,50,0) 360deg);
  filter: blur(28px);
  opacity: 0.7;
  z-index: 0;
  animation: ringSpin 18s linear infinite;
  pointer-events: none;
}
.phone-ring::after {
  content: '';
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, rgba(11,15,26,0.95), transparent 70%);
  border-radius: 50%;
}
@keyframes ringSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Partículas orbitales */
.phone-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(82,174,50,0.6), 0 0 20px rgba(50,89,253,0.4);
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}
.particle--1 { top: 12%; left: 8%;  width: 6px; height: 6px; animation-delay: 0s;  animation-duration: 9s; }
.particle--2 { top: 22%; right: 6%; width: 4px; height: 4px; animation-delay: 1.2s; animation-duration: 11s; }
.particle--3 { top: 48%; left: 4%;  width: 5px; height: 5px; animation-delay: 2.4s; animation-duration: 10s; }
.particle--4 { top: 68%; right: 10%; width: 7px; height: 7px; animation-delay: 0.8s; animation-duration: 12s; }
.particle--5 { top: 82%; left: 18%; width: 4px; height: 4px; animation-delay: 3.6s; animation-duration: 9.5s; }
.particle--6 { top: 35%; right: 14%; width: 5px; height: 5px; animation-delay: 1.8s; animation-duration: 10.5s; }
.particle--7 { top: 92%; right: 28%; width: 3px; height: 3px; animation-delay: 4.2s; animation-duration: 8s; }
.particle--8 { top: 5%;  left: 38%; width: 4px; height: 4px; animation-delay: 2.8s; animation-duration: 11.5s; }

@keyframes particleFloat {
  0%   { opacity: 0; transform: translate(0,0) scale(0.6); }
  20%  { opacity: 1; }
  50%  { transform: translate(12px, -18px) scale(1); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-8px, -36px) scale(0.6); }
}

/* Tarjetas flotantes */
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 14px;
  box-shadow:
    0 12px 40px -8px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08);
  min-width: 180px;
  opacity: 0;
  animation: floatCardIn 0.8s var(--ease) forwards, floatCardBob 6s ease-in-out infinite;
}
.float-card__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
}
.float-card__icon--ok   { background: linear-gradient(135deg, #34D399, #10B981); box-shadow: 0 4px 12px rgba(52,211,153,0.4); }
.float-card__icon--rate { background: var(--gradient); box-shadow: 0 4px 12px rgba(50,89,253,0.4); }

.float-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.float-card__body strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.float-card__body span {
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Posiciones específicas */
.float-card--success {
  top: 8%;
  left: -8%;
  animation-delay: 1.1s, 0s;
}
.float-card--rate {
  bottom: 12%;
  right: -6%;
  animation-delay: 1.4s, 1s;
}

@keyframes floatCardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatCardBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Glow behind phone */
.phone-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(82,174,50,0.25), transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(50,89,253,0.30), transparent 60%);
  filter: blur(40px);
  animation: glowFloat 10s ease-in-out infinite;
}
@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(10px, -10px) scale(1.05); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--glass-border-strong);
  border-radius: 12px;
  display: grid;
  place-items: start center;
  padding-top: 6px;
}
.hero__scroll-hint span {
  display: block;
  width: 2.5px; height: 6px;
  border-radius: 2px;
  background: var(--gradient);
  animation: scrollHint 1.6s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { opacity: 0; transform: translateY(0); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ═══════════════════════════════════════════════
   ENTRY ANIMATIONS — stagger
   ═══════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp .7s var(--ease) forwards;
}
[data-anim="1"] { animation-delay: .05s; }
[data-anim="2"] { animation-delay: .15s; }
[data-anim="3"] { animation-delay: .30s; }
[data-anim="4"] { animation-delay: .45s; }
[data-anim="5"] { animation-delay: .60s; }
[data-anim="6"] { animation-delay: .75s; }
[data-anim="phone"] { animation: phoneIn 1s var(--ease) .35s forwards; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes phoneIn {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
  }
  .hero__phone {
    min-height: auto;
    order: 2;
    perspective: 1000px;
  }
  .phone-frame {
    transform: rotateY(-6deg) rotateX(3deg);
    width: 250px;
  }
  .hero__copy { order: 1; }
  .hero__scroll-hint { display: none; }
}

@media (max-width: 960px) {
  .float-card--success { top: 2%; left: 2%; }
  .float-card--rate { bottom: 4%; right: 2%; }
  .phone-ring { width: 320px; height: 320px; }
}
@media (max-width: 540px) {
  .hero { padding-top: 40px; }
  .hero__title { font-size: clamp(34px, 9vw, 44px); }
  .converter { padding: 14px; }
  .converter__row { grid-template-columns: 1fr; gap: 12px; }
  .converter__arrow { transform: rotate(90deg); margin: 0 auto; }
  .hero__ctas .btn { flex: 1; min-width: 0; }
  .phone-frame { transform: none; width: 240px; }
  .float-card { display: none; }
  .phone-ring { width: 280px; height: 280px; opacity: 0.5; }
  .particle { opacity: 0.4; }
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-anim] { opacity: 1; transform: none; }
  .phone-frame { transform: rotateY(-6deg) rotateX(3deg); animation: none !important; }
  .pill__dot { box-shadow: none; }
  .phone-ring, .particle, .float-card { animation: none !important; opacity: 1; }
  .particle { opacity: 0.6; }
}
