:root {
  color-scheme: dark;
  --bg: #0d0c0e;
  --surface: rgb(29 26 28 / 0.84);
  --surface-strong: #211d20;
  --surface-soft: rgb(255 255 255 / 0.035);
  --text: #fff8fa;
  --text-soft: #d8cfd2;
  --muted: #a79ca0;
  --accent: #ff4f72;
  --accent-strong: #e63c62;
  --accent-soft: rgb(255 79 114 / 0.13);
  --mint: #4fd5ad;
  --line: rgb(255 234 240 / 0.1);
  --line-strong: rgb(255 125 158 / 0.24);
  --shadow: 0 24px 70px rgb(0 0 0 / 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgb(255 255 255 / 0.018) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 2px solid #ff91aa; outline-offset: 3px; }
[hidden] { display: none !important; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 12px;
  width: min(1180px, calc(100% - 28px));
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 12px auto 0;
  padding: 9px 11px 9px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(24 21 23 / 0.76);
  box-shadow: 0 14px 40px rgb(0 0 0 / 0.26), inset 0 1px 0 rgb(255 255 255 / 0.055);
  backdrop-filter: blur(24px) saturate(140%);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.site-header:hover { border-color: rgb(255 125 158 / 0.18); background: rgb(28 24 27 / 0.84); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 760; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  border: 1px solid rgb(255 184 202 / 0.3);
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.25), 0 8px 22px rgb(255 79 114 / 0.2);
}
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 5px; }
.site-nav > a { padding: 10px 13px; border-radius: 999px; color: var(--text-soft); font-size: 13px; font-weight: 650; }
.site-nav > a:hover, .site-nav > a[data-active="true"] { background: rgb(255 255 255 / 0.055); color: white; }
.site-nav .nav-account { color: white; }
.icon-button { width: 40px; height: 40px; display: none; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-soft); color: white; }
.icon-button svg { width: 19px; height: 19px; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.045);
  color: var(--text);
  font-weight: 720;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}
.button:hover { transform: translateY(-1px); border-color: var(--line-strong); }
.button svg { width: 18px; height: 18px; }
.button-primary { position: relative; overflow: hidden; border-color: rgb(255 135 165 / 0.42); background: linear-gradient(180deg, #ff6383, #ee4268); color: white; box-shadow: 0 11px 30px rgb(255 79 114 / 0.22), inset 0 1px 0 rgb(255 255 255 / 0.22); }
.button-primary::after { content: ""; position: absolute; inset: -60% auto -60% -45%; width: 32%; pointer-events: none; background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.3), transparent); transform: rotate(18deg) translateX(-260%); transition: transform 520ms ease; }
.button-primary:hover::after { transform: rotate(18deg) translateX(620%); }
.button-primary:hover { background: linear-gradient(180deg, #ff7090, #f1496f); }
.button-secondary { background: rgb(255 255 255 / 0.055); }
.button-glass { background: rgb(20 18 20 / 0.5); backdrop-filter: blur(18px); }
.button-large { min-height: 50px; padding-inline: 22px; }
.button-full { width: 100%; }
.text-button { display: inline-flex; align-items: center; gap: 8px; padding: 10px 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.text-button:hover { color: white; }
.text-button svg { width: 17px; height: 17px; }

.page { min-height: calc(100vh - 92px); }
.hero {
  position: relative;
  width: min(1320px, calc(100% - 28px));
  height: clamp(580px, 76vh, 720px);
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #151216;
  isolation: isolate;
}
.hero-media { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(0.74) contrast(1.05); transform: scale(1.015); animation: heroCamera 16s ease-in-out infinite alternate; }
.hero-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgb(10 8 10 / 0.58), rgb(10 8 10 / 0.82) 50%, rgb(10 8 10 / 0.58)), linear-gradient(0deg, rgb(10 8 10 / 0.88), rgb(10 8 10 / 0.28) 78%); }
.hero-content { width: min(820px, 100%); display: grid; justify-items: center; gap: 20px; padding: clamp(30px, 6vw, 76px); text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; color: #ff8ca7; font-size: 11px; font-weight: 780; letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow svg { width: 15px; height: 15px; }
.hero h1, .page-heading h1, .auth-panel h1, .download-stage h1 { margin: 0; letter-spacing: 0; }
.hero h1 { max-width: 690px; font-size: clamp(54px, 8vw, 96px); line-height: 0.95; }
.hero-content > p { max-width: 620px; margin: 0 auto; color: var(--text-soft); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.release-note { display: inline-flex; align-items: center; gap: 7px; color: #b7adb0; font-size: 11px; }
.release-note svg { width: 15px; color: var(--mint); }

.platform-strip { width: min(1120px, calc(100% - 34px)); display: grid; grid-template-columns: repeat(5, 1fr); margin: 16px auto 0; border-block: 1px solid var(--line); }
.platform-item { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 12px; color: #b5aaae; text-align: center; font-size: 12px; transition: color 200ms ease, background 200ms ease, transform 200ms ease; }
.platform-item img { width: 22px; height: 22px; flex: 0 0 22px; object-fit: contain; transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 240ms ease; }
.platform-item b { font-weight: 750; }
.platform-item:hover { z-index: 1; background: rgb(255 255 255 / 0.035); color: white; transform: translateY(-2px); }
.platform-item:hover img { transform: scale(1.14); }
.platform-item[data-platform="tiktok"] img { filter: drop-shadow(1.5px 0 #25f4ee) drop-shadow(-1.5px 0 #fe2c55); }
.platform-item[data-platform="youtube"] img { filter: drop-shadow(0 4px 9px rgb(255 49 49 / 0.22)); }
.platform-item[data-platform="kick"] img { filter: drop-shadow(0 4px 9px rgb(83 252 24 / 0.2)); }
.platform-item[data-platform="twitch"] img { filter: drop-shadow(0 4px 9px rgb(169 112 255 / 0.22)); }
.platform-item[data-platform="obs"] img { filter: drop-shadow(0 4px 9px rgb(255 255 255 / 0.12)); }
.platform-strip span + span { border-left: 1px solid var(--line); }

.content-section { width: min(1120px, calc(100% - 34px)); margin: 112px auto; }
.section-heading { max-width: 760px; display: grid; gap: 16px; margin-bottom: 42px; }
.section-heading h2, .product-band h2, .download-cta h2 { margin: 0; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.06; letter-spacing: 0; }
.section-heading p, .download-cta p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.feature-item { min-width: 0; padding: 28px 24px 30px; transition: background 220ms ease, transform 220ms ease; }
.feature-item:hover { background: rgb(255 255 255 / 0.025); transform: translateY(-4px); }
.feature-item + .feature-item { border-left: 1px solid var(--line); }
.feature-icon, .plan-icon, .account-icon, .download-icon, .checkout-plan-icon { display: grid; place-items: center; color: #ff7c9b; background: var(--accent-soft); }
.feature-icon { width: 38px; height: 38px; margin-bottom: 25px; border-radius: 50%; }
.feature-icon svg { width: 18px; height: 18px; }
.feature-item h3 { margin: 0 0 10px; font-size: 17px; }
.feature-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.product-band { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr); gap: 70px; align-items: end; padding-block: 54px; border-block: 1px solid var(--line); }
.product-band > div { display: grid; gap: 15px; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 9px; color: var(--text-soft); font-size: 13px; }
.check-list svg { width: 17px; height: 17px; flex: 0 0 17px; color: var(--mint); }
.download-cta { display: grid; justify-items: center; gap: 18px; padding: 38px 30px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--surface); text-align: center; box-shadow: var(--shadow); backdrop-filter: blur(24px); }
.download-icon { width: 58px; height: 58px; border-radius: 50%; }
.download-icon svg { width: 25px; height: 25px; }
.download-cta > div { display: grid; justify-items: center; gap: 8px; }
.download-cta p { max-width: 620px; }
.download-cta h2 { font-size: clamp(25px, 3vw, 38px); }
.download-cta { transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease; }
.download-cta:hover { border-color: rgb(255 125 158 / 0.38); box-shadow: 0 30px 80px rgb(0 0 0 / 0.4), 0 0 44px rgb(255 79 114 / 0.06); transform: translateY(-3px); }

.inner-page { width: min(1120px, calc(100% - 34px)); margin: 0 auto; padding: 92px 0 120px; }
.page-heading { max-width: 760px; display: grid; gap: 16px; margin: 0 auto 54px; text-align: center; }
.page-heading h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1; }
.page-heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.compact-heading { margin-left: 0; text-align: left; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; gap: 18px; padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04); }
.plan-featured { border-color: rgb(255 94 131 / 0.34); background: linear-gradient(180deg, rgb(73 35 46 / 0.82), rgb(31 26 29 / 0.9)); box-shadow: 0 24px 60px rgb(255 79 114 / 0.09), inset 0 1px 0 rgb(255 255 255 / 0.07); }
.plan-ribbon { position: absolute; top: 14px; right: 14px; padding: 5px 8px; border-radius: 999px; background: rgb(255 79 114 / 0.16); color: #ff9cb3; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.plan-heading { display: flex; align-items: center; gap: 11px; }
.plan-heading h2 { margin: 0; font-size: 20px; }
.plan-icon { width: 34px; height: 34px; border-radius: 50%; }
.plan-icon svg { width: 16px; height: 16px; }
.plan-price { display: grid; gap: 2px; margin: 4px 0 0; }
.plan-price strong { font-size: 45px; line-height: 1; }
.plan-price span, .plan-card > p, .pricing-note { color: var(--muted); font-size: 12px; }
.plan-card > p { min-height: 38px; margin: 0; line-height: 1.55; }
.plan-features { display: grid; gap: 10px; margin: 0 0 10px; padding: 0; color: var(--text-soft); list-style: none; font-size: 13px; }
.plan-features li::before { content: ""; width: 5px; height: 5px; display: inline-block; margin: 0 9px 2px 0; border-radius: 50%; background: var(--mint); }
.plan-card .button { margin-top: auto; }
.pricing-note { margin: 20px 0 0; text-align: center; }

.checkout-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.checkout-summary, .checkout-action { min-width: 0; padding: clamp(28px, 5vw, 54px); }
.checkout-summary { display: grid; grid-template-columns: 46px 1fr; gap: 22px; }
.checkout-plan-icon { width: 46px; height: 46px; border-radius: 50%; }
.checkout-plan-icon svg { width: 22px; height: 22px; }
.checkout-summary span, .account-grid article span { color: var(--muted); font-size: 11px; }
.checkout-summary h2 { margin: 5px 0 0; font-size: 28px; }
.checkout-price { grid-column: 1 / -1; display: grid; gap: 4px; margin: 24px 0; }
.checkout-price strong { font-size: 54px; }
.checkout-summary .check-list { grid-column: 1 / -1; }
.checkout-action { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; border-left: 1px solid var(--line); background: rgb(13 11 13 / 0.36); }
.checkout-action h2 { margin: 8px 0 0; font-size: 28px; }
.checkout-action p { margin: 0; color: var(--muted); line-height: 1.6; }
.checkout-action > a { color: #ff92aa; font-size: 12px; font-weight: 700; }
.checkout-action small, .auth-form small, .download-stage small { min-height: 18px; color: #ff9aad; font-size: 11px; }
.status-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border-radius: 999px; background: rgb(79 213 173 / 0.09); color: #98e7cf; font-size: 10px; font-weight: 750; }
.status-chip svg { width: 14px; height: 14px; }

.auth-page { min-height: calc(100vh - 88px); display: grid; place-items: center; padding: 70px 18px 110px; }
.auth-panel { width: min(430px, 100%); display: grid; gap: 16px; padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); backdrop-filter: blur(24px); }
.auth-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 760; }
.auth-brand .brand-mark { width: 34px; height: 34px; flex-basis: 34px; border-radius: 10px; font-size: 11px; }
.auth-panel h1 { font-size: 40px; }
.auth-panel > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.auth-form { display: grid; gap: 15px; margin-top: 12px; }
.auth-form label { display: grid; gap: 7px; color: var(--text-soft); font-size: 11px; font-weight: 650; }
.input-shell { min-height: 46px; display: flex; align-items: center; gap: 10px; padding: 0 13px; border: 1px solid var(--line); border-radius: 8px; background: rgb(10 9 10 / 0.42); }
.input-shell:focus-within { border-color: var(--line-strong); box-shadow: 0 0 0 3px rgb(255 79 114 / 0.08); }
.input-shell svg { width: 17px; height: 17px; flex: 0 0 17px; color: #8f8589; }
.input-shell input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: white; }
.auth-switch { text-align: center; }
.auth-switch a { color: #ff8fa8; font-weight: 700; }

.account-grid { display: grid; gap: 14px; }
.account-grid article { display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.account-icon { width: 46px; height: 46px; border-radius: 50%; }
.account-icon svg { width: 21px; height: 21px; }
.account-grid h2 { margin: 4px 0 5px; font-size: 22px; }
.account-grid p { margin: 0; color: var(--muted); font-size: 12px; }
.account-page > .text-button { margin-top: 24px; }

.download-page { display: grid; place-items: center; }
.download-stage { width: min(720px, 100%); display: grid; justify-items: center; gap: 18px; padding: 58px 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); text-align: center; box-shadow: var(--shadow); }
.download-stage-icon { width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid rgb(255 125 158 / 0.24); border-radius: 24px; background: var(--accent-soft); color: #ff7898; }
.download-stage-icon svg { width: 34px; height: 34px; }
.download-stage h1 { font-size: clamp(40px, 6vw, 64px); }
.download-stage > p { max-width: 530px; margin: 0; color: var(--muted); line-height: 1.6; }
.download-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.download-meta span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; }

.site-footer { width: min(1120px, calc(100% - 34px)); display: grid; grid-template-columns: 1fr auto auto; gap: 44px; align-items: center; margin: 0 auto; padding: 34px 0 44px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.site-footer .brand { color: white; font-size: 13px; }
.site-footer .brand-mark { width: 30px; height: 30px; flex-basis: 30px; border-radius: 9px; font-size: 10px; }
.site-footer p { margin: 8px 0 0; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer a:hover { color: white; }
.toast { position: fixed; z-index: 100; right: 18px; bottom: 18px; max-width: min(360px, calc(100% - 36px)); padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 8px; background: rgb(34 28 31 / 0.96); color: white; font-size: 12px; box-shadow: var(--shadow); backdrop-filter: blur(18px); }

.motion-ready .site-header { animation: headerEnter 600ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.motion-ready .hero-content > * { opacity: 0; animation: heroContentEnter 720ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.motion-ready .hero-content > :nth-child(1) { animation-delay: 100ms; }
.motion-ready .hero-content > :nth-child(2) { animation-delay: 170ms; }
.motion-ready .hero-content > :nth-child(3) { animation-delay: 240ms; }
.motion-ready .hero-content > :nth-child(4) { animation-delay: 310ms; }
.motion-ready .hero-content > :nth-child(5) { animation-delay: 380ms; }
.motion-ready [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease var(--reveal-delay, 0ms), transform 650ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .page.route-enter { animation: routeEnter 360ms ease both; }

@keyframes headerEnter { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroContentEnter { from { opacity: 0; transform: translateY(22px); filter: blur(4px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes routeEnter { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroCamera { from { transform: scale(1.015); } to { transform: scale(1.045); } }

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; }
  .nav-toggle { display: grid; margin-left: auto; }
  .site-nav { width: 100%; display: none; flex-direction: column; align-items: stretch; margin: 0; padding: 5px; border-top: 1px solid var(--line); }
  .site-header[data-menu-open="true"] .site-nav { display: flex; }
  .site-nav > a { text-align: center; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .feature-item:nth-child(4) { border-top: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-action { border-left: 0; border-top: 1px solid var(--line); }
  .account-grid article { grid-template-columns: 46px 1fr; }
  .account-grid article .button { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .site-header { top: 8px; width: calc(100% - 16px); margin-top: 8px; border-radius: 14px; }
  .hero { width: calc(100% - 16px); height: 650px; min-height: 650px; margin-top: 12px; border-radius: 18px; }
  .hero-media { object-position: 28% top; }
  .hero-shade { background: linear-gradient(0deg, rgb(10 8 10 / 0.98) 0%, rgb(10 8 10 / 0.83) 58%, rgb(10 8 10 / 0.32) 100%); }
  .hero-content { padding: 26px 22px 34px; }
  .hero h1 { font-size: 58px; }
  .hero-content > p { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .platform-strip { grid-template-columns: 1fr 1fr; }
  .platform-strip span { border-bottom: 1px solid var(--line); }
  .platform-strip span:nth-child(odd) { border-left: 0; }
  .platform-strip span:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .content-section { margin-block: 78px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item + .feature-item { border-left: 0; border-top: 1px solid var(--line); }
  .product-band { grid-template-columns: 1fr; gap: 34px; }
  .download-cta { padding: 30px 22px; }
  .download-icon { width: 48px; height: 48px; }
  .inner-page { padding-top: 70px; }
  .page-heading { margin-bottom: 38px; text-align: left; }
  .page-heading h1 { font-size: 43px; }
  .plan-card { padding: 24px; }
  .checkout-summary, .checkout-action { padding: 28px 22px; }
  .auth-page { padding-inline: 8px; }
  .auth-panel { padding: 26px 20px; }
  .account-grid article { padding: 22px 18px; }
  .download-stage { padding: 44px 20px; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
  .site-footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .motion-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
}
