/* =========================================================================
   Avantys Labs — Mapa de Bienestar (lead magnet)
   Tema oscuro "glass": gradiente gris → azul profundo, acento ROJO Avantys,
   tarjetas glassmorphism (translúcidas + blur).
   ========================================================================= */
:root {
  --lm-text: #e9ebf1;
  --lm-text-soft: rgba(233, 235, 241, 0.74);
  --lm-text-faint: rgba(233, 235, 241, 0.5);
  --lm-red: #c01f1f;
  --lm-red-deep: #a11818;
  --lm-red-bright: #e3625f;
  --lm-glass: rgba(255, 255, 255, 0.055);
  --lm-glass-2: rgba(255, 255, 255, 0.085);
  --lm-border: rgba(255, 255, 255, 0.12);
  --lm-border-soft: rgba(255, 255, 255, 0.07);
  --lm-shadow: 0 30px 80px -36px rgba(0, 0, 0, 0.75);
  --lm-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lm-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --lm-sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}

.lm-page {
  min-height: 100vh;
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(192, 31, 31, 0.2), transparent 58%),
    radial-gradient(820px 600px at 102% 6%, rgba(64, 96, 140, 0.28), transparent 55%),
    radial-gradient(700px 700px at 50% 120%, rgba(64, 96, 140, 0.18), transparent 60%),
    linear-gradient(158deg, #222732 0%, #181d28 42%, #0c1626 100%);
  background-attachment: fixed;
  color: var(--lm-text);
  font-family: var(--lm-sans);
  -webkit-font-smoothing: antialiased;
}
.lm-shell {
  width: min(64rem, 92%);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) 0 110px;
}

/* Top bar */
.lm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 48px);
}
.lm-topbar a {
  color: inherit;
  text-decoration: none;
}
.lm-wordmark {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lm-wordmark b {
  color: var(--lm-red-bright);
}
.lm-back {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lm-text-faint);
  cursor: pointer;
  background: none;
  border: 0;
  font-family: inherit;
  transition: color 0.25s var(--lm-ease);
}
.lm-back:hover {
  color: var(--lm-text);
}

/* Shared */
.lm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lm-text-faint);
  font-weight: 700;
}
.lm-kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lm-red-bright);
  box-shadow: 0 0 12px rgba(227, 98, 95, 0.8);
}
.lm-h1 {
  font-family: var(--lm-serif);
  font-size: clamp(36px, 6.4vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 18px;
}
.lm-h1 em {
  font-style: italic;
  color: var(--lm-red-bright);
}
.lm-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--lm-text-soft);
  max-width: 52ch;
  margin: 0 0 34px;
}

/* Progress */
.lm-progress {
  margin-bottom: 28px;
}
.lm-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lm-text-faint);
}
.lm-progress-meta b {
  color: var(--lm-red-bright);
  font-weight: 700;
}
.lm-progress-track {
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.lm-progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--lm-red-deep), var(--lm-red-bright));
  box-shadow: 0 0 16px rgba(192, 31, 31, 0.6);
  transition: width 0.6s var(--lm-ease);
}

/* Glass card */
.lm-card {
  background: var(--lm-glass);
  border: 1px solid var(--lm-border);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--lm-shadow);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.lm-question {
  font-family: var(--lm-serif);
  font-size: clamp(23px, 3.2vw, 34px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.lm-options {
  display: grid;
  gap: 12px;
}
.lm-option {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--lm-border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--lm-text);
  font-size: 15px;
  line-height: 1.45;
  font-family: inherit;
  cursor: pointer;
  transition:
    border-color 0.25s var(--lm-ease),
    background 0.25s var(--lm-ease),
    transform 0.18s var(--lm-ease),
    box-shadow 0.25s var(--lm-ease);
}
.lm-option:hover {
  border-color: rgba(227, 98, 95, 0.55);
  background: rgba(192, 31, 31, 0.1);
  transform: translateX(4px);
}
.lm-option.is-active {
  border-color: var(--lm-red-bright);
  background: rgba(192, 31, 31, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(227, 98, 95, 0.5),
    0 8px 30px -12px rgba(192, 31, 31, 0.6);
}
.lm-option-key {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--lm-border);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--lm-text-faint);
  background: rgba(255, 255, 255, 0.05);
  transition: 0.2s var(--lm-ease);
}
.lm-option:hover .lm-option-key,
.lm-option.is-active .lm-option-key {
  background: var(--lm-red);
  border-color: var(--lm-red-bright);
  color: #fff;
}

.lm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
}
.lm-ghost {
  background: transparent;
  border: 0;
  color: var(--lm-text-faint);
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s var(--lm-ease);
}
.lm-ghost:hover {
  color: var(--lm-text);
}
.lm-ghost:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.lm-nav-hint {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lm-text-faint);
}

/* Buttons */
.lm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  padding: 15px 28px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lm-text);
  border: 1px solid var(--lm-border);
  transition:
    transform 0.18s var(--lm-ease),
    box-shadow 0.25s var(--lm-ease),
    background 0.2s ease,
    opacity 0.2s ease;
  text-decoration: none;
}
.lm-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.7);
}
.lm-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.lm-btn-red {
  background: linear-gradient(135deg, var(--lm-red), var(--lm-red-deep));
  border-color: transparent;
  color: #fff;
}
.lm-btn-red:hover {
  background: linear-gradient(135deg, var(--lm-red-bright), var(--lm-red));
  box-shadow: 0 16px 38px -14px rgba(192, 31, 31, 0.7);
}
.lm-btn-ghost {
  background: transparent;
  border: 1px solid var(--lm-border);
  color: var(--lm-text);
}
.lm-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Loading */
.lm-loading {
  display: grid;
  place-items: center;
  min-height: 56vh;
  text-align: center;
}
.lm-orbit {
  width: 84px;
  height: 84px;
  position: relative;
  margin: 0 auto 30px;
}
.lm-orbit::before,
.lm-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.lm-orbit::before {
  border-top-color: var(--lm-red-bright);
  animation: lm-spin 1.1s linear infinite;
}
.lm-orbit::after {
  inset: 14px;
  border-top-color: rgba(120, 160, 210, 0.9);
  animation: lm-spin 1.6s linear infinite reverse;
}
.lm-orbit i {
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lm-red-bright), transparent 70%);
  animation: lm-pulse 1.8s ease-in-out infinite;
}
@keyframes lm-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes lm-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.lm-loading-text {
  font-family: var(--lm-serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--lm-text);
  max-width: 22ch;
  transition: opacity 0.4s ease;
}

/* Result hero */
.lm-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--lm-border);
  background: var(--lm-glass);
  color: var(--lm-text-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.lm-result-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lm-red-bright);
}
.lm-secondary-note {
  font-size: 14px;
  color: var(--lm-text-soft);
  margin: -16px 0 30px;
}
.lm-secondary-note b {
  color: var(--lm-red-bright);
}

/* Form */
.lm-form {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}
.lm-field {
  display: grid;
  gap: 7px;
}
.lm-field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lm-text-faint);
}
.lm-field input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lm-border);
  border-radius: 12px;
  padding: 15px 16px;
  color: var(--lm-text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.2s var(--lm-ease),
    box-shadow 0.2s var(--lm-ease);
}
.lm-field input::placeholder {
  color: var(--lm-text-faint);
}
.lm-field input:focus {
  border-color: var(--lm-red-bright);
  box-shadow: 0 0 0 3px rgba(192, 31, 31, 0.18);
}
.lm-error {
  color: var(--lm-red-bright);
  font-size: 13px;
  margin: 4px 0 0;
}
.lm-fineprint {
  font-size: 12px;
  line-height: 1.55;
  color: var(--lm-text-faint);
  margin: 14px 0 0;
}

/* Teaser / gate */
.lm-teaser {
  background: var(--lm-glass);
  border: 1px solid var(--lm-border);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--lm-shadow);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.lm-teaser-name {
  font-family: var(--lm-serif);
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 600;
  line-height: 1.05;
  margin: 6px 0 10px;
}
.lm-teaser-tag {
  font-size: 16px;
  color: var(--lm-text-soft);
  font-style: italic;
  margin: 0 0 24px;
}
.lm-locklist {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.lm-locklist li {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 14px;
  color: var(--lm-text-soft);
}
.lm-locklist svg {
  color: var(--lm-red-bright);
  flex: 0 0 auto;
}
.lm-locklist b {
  color: var(--lm-text);
  font-weight: 600;
}

/* ===================== RESULTADO EXPANDIDO ===================== */
.lm-result-summary {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.7;
  color: var(--lm-text-soft);
  max-width: 60ch;
  margin: 0 0 14px;
}
.lm-group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lm-text-faint);
  font-weight: 700;
}
.lm-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--lm-border);
}

.lm-dims {
  display: grid;
  gap: 12px;
}
.lm-dim {
  border: 1px solid var(--lm-border-soft);
  border-radius: 18px;
  background: var(--lm-glass);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 0.25s var(--lm-ease),
    box-shadow 0.25s var(--lm-ease);
}
.lm-dim.is-open {
  border-color: rgba(227, 98, 95, 0.5);
  box-shadow: var(--lm-shadow);
}
.lm-dim-head {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  color: var(--lm-text);
}
.lm-dim-ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(192, 31, 31, 0.16);
  color: var(--lm-red-bright);
  border: 1px solid rgba(227, 98, 95, 0.25);
}
.lm-dim-titles {
  flex: 1;
  min-width: 0;
}
.lm-dim-titles h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lm-dim-titles span {
  font-size: 12px;
  color: var(--lm-text-faint);
  letter-spacing: 0.04em;
}
.lm-dim-chev {
  flex: 0 0 auto;
  color: var(--lm-text-faint);
  transition: transform 0.3s var(--lm-ease);
}
.lm-dim.is-open .lm-dim-chev {
  transform: rotate(180deg);
  color: var(--lm-red-bright);
}
.lm-dim-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--lm-ease);
}
.lm-dim.is-open .lm-dim-body {
  grid-template-rows: 1fr;
}
.lm-dim-body > div {
  overflow: hidden;
}
.lm-dim-body p {
  margin: 0;
  padding: 0 20px 20px 77px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--lm-text-soft);
}
.lm-dim-safety {
  margin: 0 20px 20px 77px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(192, 31, 31, 0.1);
  border: 1px solid rgba(227, 98, 95, 0.28);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--lm-text-soft);
  display: flex;
  gap: 9px;
}
.lm-dim-safety svg {
  color: var(--lm-red-bright);
  flex: 0 0 auto;
  margin-top: 1px;
}

/* First steps */
.lm-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.lm-steps li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--lm-border-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 15px;
  color: var(--lm-text);
  cursor: pointer;
  user-select: none;
  transition: 0.2s var(--lm-ease);
}
.lm-steps li:hover {
  border-color: rgba(227, 98, 95, 0.45);
}
.lm-steps li.is-done {
  color: var(--lm-text-faint);
}
.lm-steps li.is-done .lm-step-text {
  text-decoration: line-through;
}
.lm-step-box {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1.5px solid var(--lm-border);
  display: grid;
  place-items: center;
  transition: 0.2s var(--lm-ease);
}
.lm-steps li.is-done .lm-step-box {
  background: var(--lm-red);
  border-color: var(--lm-red-bright);
}
.lm-step-box svg {
  opacity: 0;
  color: #fff;
}
.lm-steps li.is-done .lm-step-box svg {
  opacity: 1;
}

/* ===================== CUPONES / BENEFICIOS ===================== */
.lm-coupon {
  position: relative;
  margin-top: 18px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 20px;
  border: 1px solid rgba(227, 98, 95, 0.4);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(192, 31, 31, 0.22), transparent 55%), var(--lm-glass-2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--lm-shadow);
  overflow: hidden;
}
.lm-coupon-brand {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lm-red-bright);
  font-weight: 700;
  margin: 0 0 6px;
}
.lm-coupon-offer {
  font-family: var(--lm-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  margin: 0 0 6px;
}
.lm-coupon-channel {
  font-size: 13px;
  color: var(--lm-text-faint);
  margin: 0 0 18px;
}
.lm-coupon-code {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lm-code-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(227, 98, 95, 0.6);
  background: rgba(0, 0, 0, 0.25);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
}
.lm-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--lm-red), var(--lm-red-deep));
  color: #fff;
  transition:
    transform 0.18s var(--lm-ease),
    box-shadow 0.2s ease;
}
.lm-copy:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -12px rgba(192, 31, 31, 0.7);
}
.lm-coupon-note {
  font-size: 12px;
  color: var(--lm-text-faint);
  margin: 16px 0 0;
  line-height: 1.5;
}

.lm-partners {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.lm-partner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--lm-border-soft);
  background: var(--lm-glass);
  backdrop-filter: blur(12px);
}
.lm-partner-ico {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lm-text-soft);
  border: 1px solid var(--lm-border);
}
.lm-partner-body {
  flex: 1;
  min-width: 0;
}
.lm-partner-body h4 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 600;
}
.lm-partner-body p {
  margin: 0;
  font-size: 13px;
  color: var(--lm-text-faint);
}
.lm-partner-tag {
  flex: 0 0 auto;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid var(--lm-border);
  color: var(--lm-text-faint);
  background: rgba(255, 255, 255, 0.04);
}

/* CTA */
.lm-cta {
  margin-top: 44px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 24px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(192, 31, 31, 0.35), transparent 55%),
    linear-gradient(135deg, rgba(36, 61, 73, 0.6), rgba(13, 22, 38, 0.6));
  border: 1px solid var(--lm-border);
  box-shadow: var(--lm-shadow);
  backdrop-filter: blur(18px);
}
.lm-cta h2 {
  font-family: var(--lm-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  margin: 0 0 10px;
  color: #fff;
}
.lm-cta p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--lm-text-soft);
  max-width: 54ch;
}

.lm-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Tip lists (afirmaciones / prompts / movimiento) */
.lm-tip-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.lm-tip {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--lm-border-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 15px;
  line-height: 1.55;
  color: var(--lm-text-soft);
}
.lm-tip svg {
  flex: 0 0 auto;
  color: var(--lm-red-bright);
  margin-top: 2px;
}

/* PDF card */
.lm-pdf {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(20px, 3vw, 26px);
  border-radius: 18px;
  border: 1px solid var(--lm-border);
  background: var(--lm-glass);
  backdrop-filter: blur(14px);
}
.lm-pdf-ico {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(192, 31, 31, 0.16);
  color: var(--lm-red-bright);
  border: 1px solid rgba(227, 98, 95, 0.25);
}
.lm-pdf-body {
  flex: 1;
  min-width: 0;
}
.lm-pdf-body h4 {
  margin: 0 0 3px;
  font-size: 16px;
  font-weight: 600;
}
.lm-pdf-body p {
  margin: 0;
  font-size: 13px;
  color: var(--lm-text-faint);
}

/* Animations */
@keyframes lm-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lm-fade-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.lm-anim-up {
  animation: lm-fade-up 0.5s var(--lm-ease) both;
}
.lm-anim-in {
  animation: lm-fade-in 0.3s var(--lm-ease) both;
}
@media (prefers-reduced-motion: reduce) {
  .lm-anim-up,
  .lm-anim-in {
    animation: none;
  }
  .lm-orbit::before,
  .lm-orbit::after,
  .lm-orbit i {
    animation: none;
  }
}

@media (max-width: 560px) {
  .lm-wordmark {
    font-size: 14px;
  }
  .lm-dim-body p {
    padding-left: 20px;
  }
  .lm-dim-safety {
    margin-left: 20px;
  }
  .lm-partner {
    flex-wrap: wrap;
  }
}

@media print {
  .lm-page {
    background: #fff;
    color: #111;
  }
  .lm-topbar,
  .lm-guide-actions,
  .lm-back,
  .lm-copy {
    display: none;
  }
  .lm-dim-body {
    grid-template-rows: 1fr !important;
  }
  .lm-dim,
  .lm-coupon {
    break-inside: avoid;
    box-shadow: none;
  }
}
