:root {
  --bg: #08070d;
  --bg-soft: #100e1c;
  --card: rgba(255, 255, 255, 0.025);
  --card-strong: rgba(168, 85, 247, 0.1);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(168, 85, 247, 0.38);
  --text: #f4f2fa;
  --muted: #9a96ab;
  --muted-strong: #c4bdd6;
  --purple: #a855f7;
  --purple-dark: #7c3aed;
  --purple-soft: #c084fc;
  --green: #34d399;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  font-family: Onest, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body::before,
body::after {
  position: fixed;
  z-index: -2;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  content: "";
  filter: blur(20px);
  pointer-events: none;
}
body::before {
  top: -15%;
  left: -7%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28), transparent 65%);
  animation: drift-one 22s ease-in-out infinite;
}
body::after {
  top: 28%;
  right: -12%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.22), transparent 65%);
  animation: drift-two 26s ease-in-out infinite;
}
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000, transparent 75%);
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(168, 85, 247, 0.35); }

@keyframes drift-one { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.08); } }
@keyframes drift-two { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,40px) scale(1.12); } }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 70%,100% { transform: scale(2.6); opacity: 0; } }
@keyframes pulse { 0%,100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float-phone { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes route-flow { to { background-position: 48px 0; } }

.shell { width: min(1200px, calc(100% - 56px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(8, 7, 13, 0.72);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand,
.nav,
.header-actions,
.language-switcher,
.hero-actions,
.trust-list,
.footer-inner,
.footer-links,
.route-chain,
.setup-note,
.legal-nav { display: flex; align-items: center; }
.brand { gap: 11px; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 6px 22px rgba(124,58,237,.5);
}
.brand-accent { color: var(--purple); }
.nav { gap: 30px; color: var(--muted); font-size: 14.5px; font-weight: 500; }
.nav a, .footer-links a { transition: color .2s; }
.nav a:hover, .footer-links a:hover { color: var(--text); }
.header-actions { gap: 10px; }
.language-switcher { gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); }
.lang-button {
  min-width: 38px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  background: transparent;
  cursor: pointer;
}
.lang-button.is-active { color: #fff; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 13px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.header-cta { padding: 10px 18px; color: #fff; font-size: 14px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); box-shadow: 0 8px 24px rgba(124,58,237,.4); }
.button { min-height: 50px; padding: 0 24px; font-size: 15.5px; }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); box-shadow: 0 10px 30px rgba(124,58,237,.45); }
.button.ghost { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: var(--text); }
.button:hover, .header-cta:hover { transform: translateY(-2px); }
.button.primary:hover, .header-cta:hover { box-shadow: 0 16px 40px rgba(124,58,237,.58); }
.button.ghost:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 60px;
}
.reveal { animation: fade-up .7s ease both; }
.motion-ready .reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 34px, 0) scale(.985);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), filter .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  animation: none;
  will-change: transform, opacity, filter;
}
.motion-ready .reveal.is-visible { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 7px 14px;
  border: 1px solid rgba(168,85,247,.3);
  border-radius: 999px;
  color: #c9b8e8;
  background: rgba(168,85,247,.08);
  font-size: 13px;
  font-weight: 600;
}
.live-dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.live-dot::before,
.live-dot::after { position: absolute; inset: 0; border-radius: 999px; content: ""; background: var(--green); }
.live-dot::before { animation: ping 2s ease-out infinite; }
.hero h1 { margin: 0 0 22px; font-size: clamp(44px, 6vw, 58px); line-height: 1.04; letter-spacing: -0.03em; text-wrap: balance; }
.gradient-text { background: linear-gradient(120deg, #c084fc, var(--purple), var(--purple-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-text { max-width: 500px; margin: 0 0 30px; color: #a8a3ba; font-size: 18px; line-height: 1.6; }
.hero-actions { flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.trust-list { flex-wrap: wrap; gap: 8px 22px; color: #8b8799; font-size: 14px; font-weight: 600; }
.trust-list span::before { margin-right: 7px; color: var(--purple); content: "✦"; }
.phone-wrap { position: relative; display: flex; justify-content: center; perspective: 900px; animation: float-phone 7s ease-in-out infinite; }
.phone-glow { position: absolute; inset: -30px; background: radial-gradient(circle at 50% 40%, rgba(168,85,247,.35), transparent 70%); filter: blur(40px); transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s; }
.phone {
  position: relative;
  width: 300px;
  height: 600px;
  padding: 13px;
  border-radius: 42px;
  background: linear-gradient(160deg, #1c1830, #0e0c18);
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06), inset 0 1px 0 rgba(255,255,255,.08);
  transform: rotateX(var(--phone-rx, 0deg)) rotateY(var(--phone-ry, 0deg)) translate3d(var(--phone-x, 0), var(--phone-y, 0), 0);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.phone-wrap:hover .phone { box-shadow: 0 46px 110px rgba(0,0,0,.72), 0 0 0 1px rgba(168,85,247,.16), inset 0 1px 0 rgba(255,255,255,.12); }
.phone-wrap:hover .phone-glow { opacity: 1; transform: scale(1.08); }
.phone::before { position: absolute; top: 24px; left: 50%; z-index: 3; width: 104px; height: 26px; border-radius: 14px; content: ""; background: #000; transform: translateX(-50%); }
.phone-screen { overflow: hidden; display: flex; flex-direction: column; width: 100%; height: 100%; border-radius: 30px; background: #0c0b14; }
.phone-top { display: flex; align-items: center; gap: 11px; padding: 38px 16px 12px; border-bottom: 1px solid rgba(255,255,255,.06); background: linear-gradient(180deg,#17152a,#100e1c); }
.phone-avatar { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: linear-gradient(135deg,var(--purple),var(--purple-dark)); font-weight: 800; }
.phone-title { font-weight: 700; font-size: 14px; }
.phone-status { display: flex; align-items: center; gap: 5px; color: var(--green); font-size: 11px; }
.phone-status::before { width: 6px; height: 6px; border-radius: 999px; content: ""; background: var(--green); }
.chat { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 16px 14px; background: #0a0912; }
.bubble { max-width: 88%; padding: 10px 13px; border-radius: 14px; color: #d9d5e8; background: #1c1930; font-size: 12.5px; line-height: 1.45; }
.bubble.left { align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.right { align-self: flex-end; border-bottom-right-radius: 4px; color: #fff; background: linear-gradient(135deg,var(--purple-dark),#9333ea); }
.code-line { margin-top: 7px; padding: 8px 10px; border: 1px solid rgba(168,85,247,.25); border-radius: 8px; color: var(--purple-soft); background: #0e0c18; font-family: "JetBrains Mono", monospace; font-size: 10.5px; word-break: break-all; }
.typing span { display: inline-block; width: 6px; height: 6px; margin: 4px 2px; border-radius: 999px; background: #5b5870; animation: pulse 1.4s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }

.stats { padding: 8px 0 70px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; background: rgba(255,255,255,.02); }
.stat { padding: 30px 28px; border-right: 1px solid rgba(255,255,255,.06); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--text); font: 600 40px/1 "JetBrains Mono", monospace; letter-spacing: -0.02em; }
.stat span { display: block; margin-top: 6px; color: #8b8799; font-size: 14px; }
.section { padding: 30px 0 80px; }
.section-kicker { margin-bottom: 12px; color: var(--purple); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.section-title { max-width: 680px; margin: 0; font-size: clamp(32px, 4vw, 40px); line-height: 1.08; letter-spacing: -0.03em; text-wrap: balance; }
.section-lead { max-width: 560px; margin: 12px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.route-card { padding: 42px 36px; border: 1px solid rgba(255,255,255,.07); border-radius: 22px; text-align: center; background: linear-gradient(180deg, rgba(168,85,247,.05), rgba(255,255,255,.01)); }
.route-card h3 { margin: 0 0 34px; font-size: 24px; letter-spacing: -0.02em; }
.route-chain { justify-content: center; gap: 0; flex-wrap: wrap; }
.route-node { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 150px; }
.route-icon { display: grid; width: 60px; height: 60px; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.04); font-size: 26px; }
.route-icon.hot { border-color: rgba(168,85,247,.35); background: rgba(168,85,247,.12); box-shadow: 0 0 30px rgba(168,85,247,.25); }
.route-node strong { font-size: 14px; }
.route-node span { color: #6b6880; font: 500 11px/1.2 "JetBrains Mono", monospace; }
.route-line { flex: 1; min-width: 80px; height: 2px; margin: 30px 6px 0; background: repeating-linear-gradient(90deg, var(--purple) 0 8px, transparent 8px 16px); background-size: 48px 2px; opacity: .65; animation: route-flow 1.8s linear infinite; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.card { padding: 30px 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .25s, background .25s, box-shadow .35s; }
.card:hover { transform: translateY(-6px); border-color: rgba(168,85,247,.4); background: rgba(168,85,247,.04); box-shadow: 0 18px 44px rgba(0,0,0,.24); }
.card-index { margin-bottom: 16px; color: var(--purple); font: 600 13px/1 "JetBrains Mono", monospace; }
.card h3 { margin: 0 0 9px; font-size: 20px; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.step-card { position: relative; overflow: hidden; min-height: 210px; }
.step-num { position: absolute; top: -16px; right: 14px; color: rgba(168,85,247,.1); font: 600 96px/1 "JetBrains Mono", monospace; }
.step-icon { display: grid; width: 46px; height: 46px; margin-bottom: 20px; place-items: center; border-radius: 12px; background: linear-gradient(135deg,var(--purple),var(--purple-dark)); box-shadow: 0 8px 22px rgba(124,58,237,.4); }
.setup-note { justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-top: 24px; padding: 20px 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.setup-note p { margin: 3px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.price-card { display: flex; flex-direction: column; min-height: 285px; border-radius: 20px; }
.price-card.featured { position: relative; border-color: rgba(168,85,247,.5); background: linear-gradient(180deg, rgba(168,85,247,.12), rgba(124,58,237,.04)); box-shadow: 0 24px 60px rgba(124,58,237,.22); }
.popular { position: absolute; top: -12px; left: 28px; padding: 5px 12px; border-radius: 999px; color: #fff; background: linear-gradient(135deg,var(--purple),var(--purple-dark)); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.badge { margin-bottom: 18px; color: #8b8799; font: 600 12px/1 "JetBrains Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.price-card p { flex: 1; margin-bottom: 24px; }
.faq-wrap { max-width: 880px; }
.faq-head { text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 20px 24px; border: 0; color: var(--text); background: transparent; font: inherit; font-size: 16.5px; font-weight: 700; text-align: left; cursor: pointer; }
.faq-arrow { display: grid; flex: 0 0 auto; width: 28px; height: 28px; place-items: center; border-radius: 8px; color: var(--purple-soft); background: rgba(168,85,247,.12); transition: transform .25s; }
.faq-item.is-open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.faq-item.is-open .faq-answer { display: block; }
.final-cta { position: relative; overflow: hidden; padding: 64px 40px; border: 1px solid rgba(168,85,247,.3); border-radius: 28px; text-align: center; background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(168,85,247,.06)); }
.final-cta::before { position: absolute; top: -40%; left: 50%; width: 500px; height: 500px; border-radius: 999px; content: ""; background: radial-gradient(circle, rgba(168,85,247,.3), transparent 65%); filter: blur(40px); transform: translateX(-50%); }
.final-cta > * { position: relative; }
.final-cta h2 { margin: 0 0 16px; font-size: clamp(34px, 5vw, 44px); line-height: 1.08; letter-spacing: -0.03em; }
.final-cta p { margin: 0 0 32px; color: #bdb6cf; font-size: 17px; }
.site-footer { border-top: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.01); }
.footer-inner { justify-content: space-between; flex-wrap: wrap; gap: 24px; padding: 40px 0; }
.footer-links { flex-wrap: wrap; gap: 26px; color: var(--muted); font-size: 14px; }
.copyright { color: #5b5870; font: 500 13px/1 "JetBrains Mono", monospace; }

.legal-page { padding: 54px 0 88px; }
.legal-card { padding: clamp(24px, 5vw, 54px); border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.025); box-shadow: var(--shadow); }
.legal-top { justify-content: space-between; gap: 18px; margin-bottom: 28px; }
.back-link { color: var(--purple-soft); font-weight: 800; }
.legal-card h1 { margin: 0 0 14px; font-size: clamp(38px, 6vw, 64px); line-height: 1.02; letter-spacing: -0.05em; }
.legal-card h2 { margin: 34px 0 12px; font-size: 24px; letter-spacing: -0.03em; }
.legal-card p,
.legal-card li { color: var(--muted-strong); font-size: 16px; line-height: 1.72; }
.legal-card ul { margin: 0 0 18px; padding-left: 20px; }
.legal-lead { max-width: 880px; color: var(--text) !important; font-weight: 700; }

.status-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 36px;
  align-items: center;
  padding: 74px 0 36px;
}
.status-hero h1 { max-width: 760px; margin: 0 0 22px; font-size: clamp(42px, 6vw, 64px); line-height: 1.02; letter-spacing: -0.05em; text-wrap: balance; }
.status-actions { margin-bottom: 16px; }
.status-updated { margin: 0; color: var(--muted); font: 600 13px/1.5 "JetBrains Mono", monospace; }
.status-summary { padding: 34px; border: 1px solid rgba(168,85,247,.28); border-radius: 26px; background: linear-gradient(180deg, rgba(168,85,247,.14), rgba(255,255,255,.025)); box-shadow: var(--shadow); }
.status-ring { display: grid; width: 154px; height: 154px; margin: 0 auto 24px; place-items: center; border: 1px solid rgba(168,85,247,.4); border-radius: 999px; background: radial-gradient(circle, rgba(52,211,153,.14), rgba(168,85,247,.08) 55%, transparent 70%); box-shadow: inset 0 0 38px rgba(168,85,247,.18), 0 20px 60px rgba(0,0,0,.28); }
.status-ring span { color: var(--text); font: 800 38px/1 "JetBrains Mono", monospace; }
.status-summary p { margin: 0; color: var(--muted-strong); font-size: 15px; line-height: 1.65; text-align: center; }
.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.status-card { min-height: 245px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.025); transition: transform .25s, border-color .25s, background .25s; }
.status-card:hover { transform: translateY(-4px); border-color: rgba(168,85,247,.34); background: rgba(168,85,247,.045); }
.status-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 26px; }
.status-dot { position: relative; display: inline-flex; width: 14px; height: 14px; border-radius: 999px; background: #6b6880; box-shadow: 0 0 0 6px rgba(107,104,128,.12); }
.status-label { color: var(--muted); font: 800 11px/1 "JetBrains Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.status-card h2 { margin: 0 0 10px; font-size: 22px; letter-spacing: -0.03em; }
.status-card p { margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.status-link { color: var(--purple-soft); font-weight: 800; }
.status-card.is-checking .status-dot { background: var(--purple-soft); box-shadow: 0 0 0 6px rgba(168,85,247,.14); }
.status-card.is-online .status-dot { background: var(--green); box-shadow: 0 0 0 6px rgba(52,211,153,.14); }
.status-card.is-issue .status-dot { background: #fb7185; box-shadow: 0 0 0 6px rgba(251,113,133,.14); }
.status-card.is-online { border-color: rgba(52,211,153,.22); }
.status-card.is-issue { border-color: rgba(251,113,133,.35); }
.status-dot.is-info { background: var(--purple); box-shadow: 0 0 0 6px rgba(168,85,247,.14); }
.status-help { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; padding: 36px; border: 1px solid rgba(255,255,255,.08); border-radius: 24px; background: linear-gradient(135deg, rgba(168,85,247,.09), rgba(255,255,255,.025)); }
.status-help h2 { margin: 0; font-size: clamp(30px, 4vw, 40px); line-height: 1.08; letter-spacing: -0.04em; }
.status-steps { display: grid; gap: 12px; margin: 0; padding-left: 22px; color: var(--muted-strong); font-size: 16px; line-height: 1.65; }
.status-help .hero-actions { grid-column: 1 / -1; margin: 4px 0 0; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .status-hero, .status-help { grid-template-columns: 1fr; }
  .cards-2, .cards-3, .stat-grid, .status-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat:last-child { border-bottom: 0; }
  .route-line { display: none; }
  .route-chain { gap: 20px; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 24px, 1200px); }
  .header-inner { gap: 10px; }
  .brand span:last-child { display: none; }
  .header-actions { gap: 6px; }
  .header-cta { padding: 9px 12px; font-size: 13px; }
  .language-switcher { padding: 3px; }
  .lang-button { min-width: 32px; height: 30px; padding-inline: 8px; }
  .hero h1 { font-size: 44px; }
  .phone { width: 280px; height: 560px; }
  .button { width: 100%; }
  .setup-note { align-items: flex-start; flex-direction: column; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-direction: column; gap: 10px; }
}

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