:root {
  --bg: #0f172a;
  --bg-elevated: #1e293b;
  --brand: #ff7300;
  --brand-dark: #e66600;
  --brand-soft: rgba(255, 115, 0, 0.15);
  --ink: #ffffff;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --success: #10b981;
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===================== Toggles trial / paid ===================== */
body[data-mode='trial'] .x-paid {
  display: none !important;
}
body[data-mode='paid'] .x-trial {
  display: none !important;
}

body[data-pay='card'] .pay-panel--boleto {
  display: none !important;
}
body[data-pay='boleto'] .pay-panel--card {
  display: none !important;
}

/* ===================== Fundo decorativo ===================== */
.bg-grid,
.bg-blob {
  position: fixed;
  z-index: 0;
  pointer-events: none;
}

.bg-grid {
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 115, 0, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 115, 0, 0.4) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.03;
}

.bg-blob {
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.bg-blob--orange {
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: var(--brand);
}

.bg-blob--blue {
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: #1e3a8a;
}

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  padding: 16px 24px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 200ms var(--ease);
}

.logo:hover {
  opacity: 0.8;
}

.logo__img {
  height: 36px;
  width: auto;
  display: block;
}

.header-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 200ms var(--ease);
}

.header-link:hover {
  color: var(--ink);
}

/* ===================== Layout ===================== */
.checkout {
  position: relative;
  z-index: 10;
  padding: 120px 24px 96px;
}

.checkout__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 960px) {
  .checkout {
    padding: 104px 20px 64px;
  }
  .checkout__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===================== Glass ===================== */
.glass {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

/* ===================== Coluna esquerda ===================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid rgba(255, 115, 0, 0.3);
  color: #ffb066;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand);
}

.product__title {
  margin: 24px 0 14px;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.product__title-accent {
  color: var(--brand);
}

.product__lead {
  margin: 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
}

/* ===================== Box de preço ===================== */
.price-block {
  margin: 28px 0 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* ----- Plan select custom ----- */
.plan-select {
  position: relative;
  z-index: 10;
}

.plan-select__trigger {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: all 200ms var(--ease);
  position: relative;
  overflow: hidden;
}

.plan-select__trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 115, 0, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 200ms var(--ease);
  pointer-events: none;
}

.plan-select__trigger:hover {
  border-color: rgba(255, 115, 0, 0.4);
}

.plan-select__trigger:hover::before,
.plan-select.is-open .plan-select__trigger::before {
  opacity: 1;
}

.plan-select.is-open .plan-select__trigger {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 115, 0, 0.15);
}

.plan-select__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 115, 0, 0.12);
  border: 1px solid rgba(255, 115, 0, 0.25);
  white-space: nowrap;
}

.plan-select__current {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.plan-select__current-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-select__current-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.plan-select__chevron {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 220ms var(--ease), color 200ms var(--ease);
  flex-shrink: 0;
}

.plan-select.is-open .plan-select__chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

/* Panel */
.plan-select__panel[hidden] {
  display: none;
}

.plan-select__panel {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 8px);
  padding: 8px;
  border-radius: var(--radius-md);
  background: rgba(20, 28, 48, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 30;
  animation: planpanel-in 200ms var(--ease);
}

.plan-select__panel.is-closing {
  animation: planpanel-out 180ms var(--ease) forwards;
}

@keyframes planpanel-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes planpanel-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
}

/* Fade-swap pra textos que mudam dinamicamente (preço, nome do plano, etc) */
@keyframes textswap {
  0% {
    opacity: 0;
    transform: translateY(-3px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.is-swapping {
  animation: textswap 240ms var(--ease);
}

.plan-option {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: all 160ms var(--ease);
  position: relative;
}

.plan-option:hover {
  background: rgba(255, 115, 0, 0.08);
}

.plan-option__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 115, 0, 0.1);
  border: 1px solid rgba(255, 115, 0, 0.18);
  color: var(--brand);
}

.plan-option__icon svg {
  width: 18px;
  height: 18px;
}

.plan-option__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.plan-option__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.plan-option__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  white-space: nowrap;
}

.plan-option__desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-option__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.plan-option.is-selected {
  background: linear-gradient(
    90deg,
    rgba(255, 115, 0, 0.18) 0%,
    rgba(255, 115, 0, 0.06) 100%
  );
}

.plan-option.is-selected::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 3px;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(255, 115, 0, 0.6);
}

.plan-option.is-selected .plan-option__name {
  color: var(--brand);
}

.plan-option--featured .plan-option__icon {
  background: rgba(255, 115, 0, 0.18);
  border-color: rgba(255, 115, 0, 0.35);
}

/* ----- Cycle toggle ----- */
.price-toggle {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  gap: 4px;
}

.price-toggle__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 180ms var(--ease);
}

.price-toggle__btn:hover {
  color: var(--ink);
}

.price-toggle__btn.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 115, 0, 0.35);
}

.price-toggle__save {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.18);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.35);
  letter-spacing: 0.04em;
}

.price-toggle__btn.is-active .price-toggle__save {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* ----- Big price display ----- */
.price-block__main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-block__value {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
}

body[data-mode='trial'] .price-block__value {
  font-size: 44px;
}

.price-block__cycle {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.price-block__cycle:empty {
  display: none;
}

.price-block__note {
  font-size: 15px;
  color: var(--muted-strong);
  line-height: 1.55;
}

.price-block__note:empty {
  display: none;
}

/* ----- Voltar trial (paid only, dentro da box) ----- */
.price-block__back {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 200ms var(--ease);
}

.price-block__back svg {
  width: 14px;
  height: 14px;
  transition: transform 200ms var(--ease);
}

.price-block__back:hover {
  color: var(--brand);
}

.price-block__back:hover svg {
  transform: translateX(-3px);
}

/* ===================== Legal / cadeado ===================== */
.legal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.legal svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--success);
}

.legal--solo {
  margin: 4px 0 0;
}

.legal strong {
  color: var(--ink);
  font-weight: 600;
}

/* ===================== Formulário ===================== */
.form-wrap {
  position: sticky;
  top: 96px;
}

@media (max-width: 960px) {
  .form-wrap {
    position: static;
  }
}

.form-card {
  padding: 36px;
}

@media (max-width: 520px) {
  .form-card {
    padding: 24px;
  }
}

.form-card__header {
  margin-bottom: 28px;
}

.form-card__title {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.form-card__lead {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-strong);
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  transition: all 200ms var(--ease);
}

.field__input::placeholder {
  color: #475569;
}

.field__input:hover {
  border-color: var(--line-strong);
}

.field__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 115, 0, 0.15);
  background: rgba(15, 23, 42, 0.8);
}

.field__hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ===================== Forma de pagamento ===================== */
.pay-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.pay-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 180ms var(--ease);
}

.pay-tab svg {
  width: 18px;
  height: 18px;
}

.pay-tab:hover {
  color: var(--ink);
}

.pay-tab.is-active {
  background: rgba(255, 115, 0, 0.12);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(255, 115, 0, 0.3);
}

.pay-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

/* ===================== Stripe Elements mount mock ===================== */
.stripe-mount {
  width: 100%;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #475569;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 46px;
  position: relative;
  transition: all 200ms var(--ease);
}

.stripe-mount:hover {
  border-color: var(--line-strong);
}

.stripe-mount__placeholder {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  letter-spacing: 0.04em;
}

.stripe-mount__brands {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.brand-pill {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 5px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  border: 1px solid var(--line);
}

.brand-pill--visa {
  color: #1a1f71;
  background: #fff;
  border-color: #fff;
}

.brand-pill--mc {
  color: #fff;
  background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%);
  border-color: transparent;
}

.brand-pill--elo {
  color: #fff;
  background: #000;
  border-color: #000;
}

/* ===================== Boleto ===================== */
.boleto-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.55);
}

.boleto-card__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 2px;
}

.boleto-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.boleto-card span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.boleto-card span strong {
  display: inline;
  color: var(--ink);
  font-weight: 600;
}

/* ===================== Resumo ===================== */
.summary {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
}

.summary__label {
  color: var(--muted);
}

.summary__value {
  color: var(--ink);
  font-weight: 500;
}

.summary__row--total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.summary__row--total .summary__label {
  color: var(--ink);
  font-weight: 600;
}

.summary__row--total .summary__value {
  color: var(--brand);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}

/* ===================== Checkbox ===================== */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox__mark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.6);
  transition: all 200ms var(--ease);
}

.checkbox__mark svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: all 180ms var(--ease);
}

.checkbox__input:checked + .checkbox__mark {
  background: var(--brand);
  border-color: var(--brand);
}

.checkbox__input:checked + .checkbox__mark svg {
  opacity: 1;
  transform: scale(1);
}

.checkbox__input:focus-visible + .checkbox__mark {
  box-shadow: 0 0 0 4px rgba(255, 115, 0, 0.2);
}

.checkbox__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-strong);
}

.checkbox__text a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms var(--ease);
}

.checkbox__text a:hover {
  text-decoration-color: var(--brand);
}

/* ===================== Botão ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms var(--ease);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-dark);
  filter: brightness(1.05);
  box-shadow: 0 0 40px rgba(255, 115, 0, 0.4);
}

.btn--primary:hover svg {
  transform: translateX(4px);
}

.btn--primary:active {
  transform: translateY(1px);
}

/* ===================== Footer ===================== */
.site-footer {
  position: relative;
  z-index: 10;
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}

.site-footer__tag {
  margin: 0;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}

.site-footer__nav {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
}

.site-footer__nav a {
  transition: color 200ms var(--ease);
}

.site-footer__nav a:hover {
  color: var(--ink);
}

.dot {
  opacity: 0.3;
}

.site-footer__copy {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

/* ===================== Animações ===================== */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: fade-up 0.6s var(--ease) forwards;
}

.reveal--1 {
  animation-delay: 0ms;
}

.reveal--2 {
  animation-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}
