/* ============================================================
   Cher — Landing pública
   Vanilla CSS, mobile-first, sin frameworks.
   Paleta espejo de /root/cher/src/index.css
   ============================================================ */

:root {
  /* Base */
  --bg-base: #fdfcfb;
  --bg-soft: #faf7f5;
  --surface: #ffffff;
  --surface-muted: #f5f3f1;
  --card: #ffffff;

  --border-c: rgba(15, 10, 25, 0.08);
  --border-c-strong: rgba(15, 10, 25, 0.14);

  --text-c: #1a0f24;
  --text-muted: #6b6470;
  --text-subtle: #9d96a3;
  --text-on-primary: #ffffff;

  /* Marca */
  --primary: #ec4899;
  --primary-strong: #db2777;
  --primary-soft: #fce7f3;
  --primary-mist: #fdf2f8;

  --accent-lilac: #c084fc;
  --accent-cream: #fef3c7;
  --accent-coral: #fb7185;
  --accent-mint: #34d399;

  /* Sombras */
  --shadow-card: 0 1px 2px rgba(15, 10, 25, 0.04), 0 4px 12px rgba(15, 10, 25, 0.04);
  --shadow-pop: 0 8px 32px rgba(236, 72, 153, 0.18);
  --shadow-elev: 0 2px 6px rgba(15, 10, 25, 0.06), 0 8px 24px rgba(15, 10, 25, 0.08);

  /* Gradientes */
  --grad-primary: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  --grad-hero: radial-gradient(1100px 600px at 80% -10%, #fce7f3 0%, transparent 60%),
               radial-gradient(900px 500px at -10% 100%, #fef3c7 0%, transparent 60%);
  --grad-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

  /* Tipo */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', 'Inter', serif;

  --maxw: 1180px;
  --maxw-narrow: 760px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ====== Reset ====== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-c);
  background: var(--bg-base);
  background-image: var(--grad-hero);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
em { font-style: italic; }

/* ====== Layout ====== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: var(--maxw-narrow); }

.font-display { font-family: var(--font-display); font-optical-sizing: auto; }

/* ====== Eyebrow + dot ====== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: var(--primary-mist);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(236, 72, 153, 0.18);
}
.eyebrow--centered { margin: 0 auto; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.18);
}

/* ====== Botones ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn--lg { padding: 14px 22px; font-size: 15px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad-primary);
  color: var(--text-on-primary);
  box-shadow: var(--shadow-pop);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(236, 72, 153, 0.32); }
.btn--secondary {
  background: var(--surface);
  color: var(--text-c);
  border-color: var(--border-c-strong);
  box-shadow: var(--shadow-card);
}
.btn--secondary:hover { background: var(--surface-muted); }
.btn--ghost {
  background: transparent;
  color: var(--text-c);
}
.btn--ghost:hover { background: var(--surface-muted); }
.btn--dark {
  background: var(--text-c);
  color: #fff;
}
.btn--dark:hover { background: #2a1838; }

/* ====== Nav ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 251, 0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border-c);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-pop);
}
.nav__logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__links {
  display: none;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.nav__links a { transition: color 0.15s; }
.nav__links a:hover { color: var(--text-c); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__cta .btn--ghost { display: none; }

@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__cta .btn--ghost { display: inline-flex; }
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__blob--1 {
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #fce7f3 0%, transparent 70%);
}
.hero__blob--2 {
  bottom: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #fef3c7 0%, transparent 70%);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.hero__copy { text-align: left; }
.hero__copy .eyebrow { margin-bottom: 20px; }
.hero__title {
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 18px;
}
.hero__title em {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero__sub {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.avatars {
  display: flex;
}
.avatars__a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c, var(--primary-soft));
  border: 2px solid var(--bg-base);
  margin-right: -8px;
  box-shadow: 0 2px 4px rgba(15, 10, 25, 0.06);
}

/* Hero visual — mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 19;
  background: #1a0f24;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 30px 80px -20px rgba(236, 72, 153, 0.35),
              0 20px 50px -10px rgba(15, 10, 25, 0.25);
  transform: rotate(-3deg);
}
.phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #1a0f24;
  border-radius: 9999px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: var(--bg-base);
  background-image: var(--grad-hero);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
/* ====== Screenshots reales de la app (reemplazan mockups SVG) ====== */
.screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 32px;
  /* Sin margen — el frame del phone ya provee el padding */
}

.floaty {
  position: absolute;
  background: var(--surface);
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-elev);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: float 4s ease-in-out infinite;
}
.floaty--1 {
  top: 10%;
  left: -6%;
  color: var(--primary-strong);
  background: var(--primary-mist);
  border: 1px solid rgba(236, 72, 153, 0.2);
}
.floaty--2 {
  bottom: 14%;
  right: -4%;
  animation-delay: 1.2s;
  background: #fef9e7;
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.floaty--3 {
  top: 8%;
  right: -4%;
  animation-delay: 0.6s;
  background: #ede9fe;
  color: #5b21b6;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Variante del phone para el segundo mockup — rotación inversa */
.phone--right { transform: rotate(3deg); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 920px) {
  .hero { padding: 80px 0 120px; }
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
  .phone { max-width: 360px; }
}

/* ====== Sections genéricas ====== */
.section {
  padding: 72px 0;
}
.section--soft {
  background: linear-gradient(180deg, transparent 0%, rgba(252, 231, 243, 0.35) 50%, transparent 100%);
}
.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section__title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.section__sub {
  font-size: 17px;
  color: var(--text-muted);
}

/* ====== Steps ====== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.step {
  background: var(--card);
  border: 1px solid var(--border-c);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-elev); }
.step__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 12px;
}
.step__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-mist);
  color: var(--primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step__desc {
  color: var(--text-muted);
  font-size: 15px;
}

@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ====== Features ====== */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border-c);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elev);
  border-color: rgba(236, 72, 153, 0.25);
}
.feature__icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.feature h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature p {
  color: var(--text-muted);
  font-size: 14px;
}

@media (min-width: 640px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 960px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}

/* ====== Try-on Showcase ====== */
.tryon { padding: 56px 0 72px; }
.tryon__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.tryon__copy .eyebrow { margin-bottom: 18px; }
.tryon__copy .section__title {
  margin-bottom: 16px;
  font-size: clamp(28px, 4.5vw, 42px);
}
.tryon__copy .section__title em {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.tryon__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 480px;
}
.tryon__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tryon__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-c);
}
.tryon__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-mist);
  color: var(--primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.tryon__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 920px) {
  .tryon__grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
  }
}

/* ====== Pricing ====== */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border-c);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-elev); }
.plan--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.18);
  transform: scale(1.0);
}
.plan--featured:hover { transform: translateY(-3px) scale(1.0); }

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: var(--shadow-pop);
  white-space: nowrap;
}
.plan__badge--gold {
  background: var(--grad-gold);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.plan__head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.plan__amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-c);
}
.plan__per {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.plan__tagline {
  font-size: 14px;
  color: var(--text-muted);
}
.plan__feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  flex: 1;
}
.plan__feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-c);
}
.plan__feats li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--primary-mist);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23db2777' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.plan--lifetime {
  background: linear-gradient(135deg, #fffbeb 0%, var(--card) 60%);
  border-color: rgba(245, 158, 11, 0.3);
}

@media (min-width: 760px) {
  .pricing { grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
  .plan--featured { transform: translateY(-8px); }
  .plan--featured:hover { transform: translateY(-12px); }
}

/* ====== Testimonials ====== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border-c);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  margin: 0;
}
.testimonial blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-c);
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c, var(--primary-soft));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-c);
}
.testimonial figcaption strong { display: block; font-weight: 600; }
.testimonial figcaption span { color: var(--text-muted); font-size: 13px; }

@media (min-width: 760px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* ====== FAQ ====== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--card);
  border: 1px solid var(--border-c);
  border-radius: var(--radius-md);
  padding: 0 22px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq__item[open] {
  border-color: rgba(236, 72, 153, 0.25);
  box-shadow: var(--shadow-elev);
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-mist);
  color: var(--primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__chev {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}
.faq__item p {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ====== CTA Final ====== */
.cta-final {
  padding: 40px 0 80px;
}
.cta-card {
  background: var(--grad-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-card__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-card__sub {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cta-card .btn {
  background: #fff;
  color: var(--primary-strong);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(15, 10, 25, 0.15);
}
.cta-card .btn:hover { transform: translateY(-2px); }

/* ====== Footer ====== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-c);
  padding: 56px 0 28px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer__brand p { margin-top: 12px; }
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-c);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--text-c); }
.footer__mx { margin-top: 12px; font-size: 13px; }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-c);
  text-align: center;
  font-size: 13px;
  color: var(--text-subtle);
}

@media (min-width: 760px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
  }
}

/* ====== Reveal animations ====== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floaty { animation: none; }
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
