/* ============================================================
   Trioxen — design system
   ============================================================ */

:root {
  --ink: #0A1526;
  --ink-700: #2C3752;
  --ink-500: #5A6580;
  --ink-400: #7B8599;
  --navy: #0A1B3D;
  --navy-900: #050F26;
  --electric: #2450E6;
  --sky: #5FD4F4;
  --wa: #25D366;
  --mist: #F6F7FA;
  --paper: #FCFCFD;
  --line: #E6E9F1;
  --line-soft: #EEF1F6;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;

  --ease: cubic-bezier(.22,.7,.25,1);

  --pad: clamp(20px, 5vw, 40px);
  --sec: clamp(64px, 8.5vw, 128px);
  --header-h: 64px;
}
@media (min-width: 1024px) { :root { --header-h: 76px; } }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; -webkit-text-size-adjust: 100%; }
body {
  font-family: Manrope, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; }
img { height: auto; }
.font-display { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; letter-spacing: -0.018em; }
:focus-visible { outline: 2px solid var(--electric); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(36,80,230,.16); }

/* safe-area (iOS app feel) */
.pt-safe { padding-top: env(safe-area-inset-top); }
.pb-safe { padding-bottom: env(safe-area-inset-bottom); }
.pb-tabbar { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
@media (min-width: 1024px) { .pb-tabbar { padding-bottom: 0; } }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); }
.section-sm { padding-block: clamp(48px, 6vw, 88px); }
.rule { height: 1px; background: var(--line); border: 0; }

/* ---------- type scale (fluid) ---------- */
.t-display {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.3rem, 1.1rem + 5.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.t-h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.95rem, 1.15rem + 2.9vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.t-h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.t-lede {
  font-size: clamp(1.02rem, .96rem + .35vw, 1.2rem);
  line-height: 1.66;
  color: var(--ink-500);
}
.on-dark .t-lede, .t-lede.on-dark { color: rgba(255,255,255,.72); }
.t-body { font-size: 1rem; line-height: 1.68; color: var(--ink-500); }
.t-sm { font-size: .9rem; line-height: 1.6; color: var(--ink-500); }

/* eyebrow — the clearest "considered design" tell */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-400);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .55; }
.eyebrow.on-dark { color: rgba(255,255,255,.55); }
.eyebrow.no-rule::before { display: none; }

.measure { max-width: 40ch; }
.measure-lg { max-width: 56ch; }

/* ---------- dark sections ---------- */
.bg-deep {
  background:
    radial-gradient(1100px 600px at 78% -18%, rgba(36,80,230,.30), transparent 62%),
    radial-gradient(760px 520px at -8% 108%, rgba(95,212,244,.13), transparent 60%),
    linear-gradient(180deg, #050F26 0%, #08183A 58%, #0A1B3D 100%);
}
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent 78%);
}
.hairline-t { border-top: 1px solid rgba(255,255,255,.08); }
.hairline-b { border-bottom: 1px solid rgba(255,255,255,.08); }

/* ---------- reveal on scroll (restrained) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-group > * { opacity: 0; transform: translateY(14px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-group.in > * { opacity: 1; transform: none; }
.reveal-group.in > *:nth-child(1) { transition-delay: .04s }
.reveal-group.in > *:nth-child(2) { transition-delay: .10s }
.reveal-group.in > *:nth-child(3) { transition-delay: .16s }
.reveal-group.in > *:nth-child(4) { transition-delay: .22s }
.reveal-group.in > *:nth-child(5) { transition-delay: .28s }
.reveal-group.in > *:nth-child(6) { transition-delay: .34s }
.reveal-group.in > *:nth-child(7) { transition-delay: .40s }
.reveal-group.in > *:nth-child(8) { transition-delay: .46s }

/* ---------- buttons ---------- */
.btn-primary, .btn-ghost, .btn-wa, .btn-quiet {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-size: .95rem; font-weight: 700; letter-spacing: -.005em;
  white-space: nowrap; text-align: center;
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), transform .28s var(--ease);
}
.btn-primary { color: #fff; background: var(--navy); box-shadow: 0 1px 2px rgba(10,21,38,.12), 0 12px 26px -14px rgba(10,21,38,.5); }
.btn-primary:hover { background: #12295c; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(10,21,38,.12), 0 18px 34px -16px rgba(10,21,38,.55); }
.btn-primary:active { transform: translateY(0); }

/* on dark backgrounds the primary flips to light — reads far more premium than a gradient */
.on-dark .btn-primary, .btn-primary.btn-light { background: #fff; color: var(--navy); box-shadow: 0 1px 2px rgba(0,0,0,.2), 0 16px 34px -18px rgba(0,0,0,.7); }
.on-dark .btn-primary:hover, .btn-primary.btn-light:hover { background: #EDF1FA; }

.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.02); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.42); }

.btn-quiet { color: var(--ink); border: 1px solid var(--line); background: #fff; }
.btn-quiet:hover { border-color: #C3CCDF; background: var(--mist); }

.btn-wa { color: #fff; background: #1FB855; box-shadow: 0 1px 2px rgba(10,21,38,.1), 0 12px 26px -14px rgba(31,184,85,.7); }
.btn-wa:hover { background: #18A44A; transform: translateY(-1px); }

.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn-full { width: 100%; }

/* text link with a retracting underline */
.link {
  color: var(--electric); font-weight: 600; text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 100%;
  padding-bottom: 1px; transition: background-size .3s var(--ease);
}
.link:hover { background-size: 0% 1px; }
.link.on-dark { color: var(--sky); }

/* ---------- cards ---------- */
.card {
  position: relative; background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.card:hover { border-color: #D3DAE8; box-shadow: 0 2px 4px rgba(10,21,38,.03), 0 20px 44px -26px rgba(10,21,38,.28); transform: translateY(-2px); }
.card-flat { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-lg); }
.card-dark { background: var(--navy); color: #fff; border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; }

/* icon tiles — tinted, not gradient-filled */
.icon-tile {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; flex: none;
  color: var(--electric);
  background: rgba(36,80,230,.07);
  border: 1px solid rgba(36,80,230,.12);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.card:hover .icon-tile { background: rgba(36,80,230,.11); }
.icon-tile.on-dark { color: var(--sky); background: rgba(95,212,244,.10); border-color: rgba(95,212,244,.18); }
.icon-tile.wa { color: #fff; background: #1FB855; border-color: transparent; }

/* check marks */
.check { flex: none; width: 17px; height: 17px; margin-top: 3px; color: var(--electric); }
.check.on-dark { color: var(--sky); }

/* small pill */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  border: 1px solid var(--line); color: var(--ink-700); background: #fff;
}
.pill.on-dark { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: rgba(255,255,255,.82); letter-spacing: .05em; }

.badge {
  display: inline-flex; align-items: center; flex: none;
  padding: 5px 11px; border-radius: 999px;
  font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sky); background: rgba(95,212,244,.12); border: 1px solid rgba(95,212,244,.3);
}

/* ---------- stats ---------- */
.stat > div { display: flex; flex-direction: column; }
.stat dt { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.45); line-height: 1.4; }
.stat dd { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.8rem, 1.3rem + 1.7vw, 2.7rem); line-height: 1.1; margin-top: auto; padding-top: 10px; letter-spacing: -.02em; }
.stat .unit { font-family: Manrope, system-ui, sans-serif; font-size: .44em; font-weight: 800; letter-spacing: 0; margin-left: .09em; vertical-align: .34em; }
/* currency mark set in the sans face — the serif has no Taka glyph and falls back mid-word */
.cur { font-family: Manrope, system-ui, sans-serif; font-size: .6em; font-weight: 700; margin-right: .05em; vertical-align: .1em; }
.num { font-variant-numeric: tabular-nums; }

/* ---------- phone / chat demo ---------- */
.phone {
  width: min(304px, 76vw);
  aspect-ratio: 9 / 18.6;
  border-radius: 42px;
  background: #070B14;
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.09), 0 2px 6px rgba(0,0,0,.4), 0 46px 90px -34px rgba(0,0,0,.85);
  position: relative;
}
.phone::before { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 96px; height: 24px; background: #070B14; border-radius: 0 0 16px 16px; z-index: 5; }
.screen { width: 100%; height: 100%; border-radius: 33px; overflow: hidden; background: #EAE4DC; display: flex; flex-direction: column; }
.wa-head { background: #0B4A44; color: #fff; padding: 30px 13px 10px; display: flex; align-items: center; gap: 10px; }
.wa-body { flex: 1; padding: 12px 10px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.msg { color: #111B21; max-width: 84%; padding: 7px 10px; border-radius: 10px; font-size: 12.2px; line-height: 1.42; box-shadow: 0 1px 1px rgba(0,0,0,.07); opacity: 0; transform: translateY(8px) scale(.97); animation: msgIn .45s var(--ease) forwards; animation-delay: var(--d, 0s); position: relative; }
.msg.in { background: #fff; align-self: flex-start; border-top-left-radius: 3px; }
.msg.out { background: #D9FDD3; align-self: flex-end; border-top-right-radius: 3px; }
.msg .t { display: block; text-align: right; font-size: 9.5px; color: #86928B; margin-top: 3px; }
.msg .btn { display: block; margin-top: 7px; text-align: center; color: #0891C2; font-weight: 700; border-top: 1px solid #ECEFF1; padding-top: 6px; }
.typing { display: inline-flex; gap: 3px; padding: 10px 12px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #9AA3A0; display: block; animation: pulseDot 1.2s infinite ease-in-out; }
.typing i:nth-child(2) { animation-delay: .15s } .typing i:nth-child(3) { animation-delay: .3s }
.typing-wrap { opacity: 0; animation: typingShow var(--len, 1.2s) linear forwards; animation-delay: var(--d, 0s); }
@keyframes msgIn { to { opacity: 1; transform: none; } }
@keyframes typingShow { 0% { opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { opacity: 0; height: 0; padding: 0; margin: 0; } }

.wa-foot { display: flex; align-items: center; gap: 7px; padding: 8px 9px 12px; background: #EAE4DC; }
.wa-input { flex: 1; min-width: 0; background: #fff; border-radius: 999px; padding: 8px 12px; font-size: 11px; color: #9AA3A0; box-shadow: 0 1px 1px rgba(0,0,0,.06); }
.wa-send { width: 30px; height: 30px; border-radius: 50%; background: #1FB855; color: #fff; display: grid; place-items: center; flex: none; }

/* floating annotation chips */
.wa-tag {
  position: absolute; z-index: 6;
  padding: 9px 13px; border-radius: 12px;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--navy); font-size: 12px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,.1), 0 18px 36px -18px rgba(0,0,0,.6);
  display: flex; align-items: center; gap: 8px;
  opacity: 0; animation: msgIn .6s var(--ease) forwards; animation-delay: var(--d, 0s);
}
.wa-tag i { width: 6px; height: 6px; border-radius: 50%; flex: none; }
/* below lg the phone has no room beside it — a half-covered chip reads as a mistake,
   so the annotations are a desktop-only layer */
@media (max-width: 1023px) { .wa-tag { display: none; } }

/* ---------- marquee ---------- */
.marquee-track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- accordion ---------- */
details.faq { border-bottom: 1px solid var(--line); }
details.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-weight: 700; font-size: 1.02rem; line-height: 1.45; color: var(--ink); transition: color .25s var(--ease); }
details.faq summary:hover { color: var(--electric); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .chev { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .35s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
details.faq summary:hover .chev { border-color: #C3CCDF; background: var(--mist); }
details.faq[open] summary .chev { transform: rotate(45deg); }
details.faq .ans { padding: 0 0 22px; max-width: 62ch; color: var(--ink-500); line-height: 1.7; animation: fadeDown .35s var(--ease); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }

/* ---------- forms ---------- */
.field { display: block; min-width: 0; }
.field .lbl { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 12px 14px; font: inherit; font-size: .95rem; color: var(--ink);
  background: #fff; -webkit-appearance: none; appearance: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #A6AEC0; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #CDD5E5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--electric); box-shadow: 0 0 0 3px rgba(36,80,230,.12); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6580' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}

/* ---------- header ---------- */
#site-header { transition: background .3s var(--ease), box-shadow .3s var(--ease); }
#site-header.scrolled { background: rgba(5,15,38,.88); -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4); box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 18px 40px -30px rgba(0,0,0,.9); }
.nav-link { position: relative; padding: 6px 1px; color: rgba(255,255,255,.72); font-size: .92rem; font-weight: 600; transition: color .25s var(--ease); }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

/* ---------- mobile drawer ---------- */
.drawer { transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform .32s var(--ease), opacity .32s var(--ease); }
.drawer.open { transform: none; opacity: 1; pointer-events: auto; }
.drawer::after { content: ""; position: fixed; inset: 0; z-index: -1; background: rgba(3,9,22,.55); opacity: 0; pointer-events: none; transition: opacity .32s var(--ease); }
.drawer.open::after { opacity: 1; }
.drawer .dlink { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.02rem; font-weight: 600; color: rgba(255,255,255,.9); }
.drawer .dlink svg { opacity: .3; flex: none; }

/* ---------- bottom tab bar ---------- */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(20px) saturate(1.6); backdrop-filter: blur(20px) saturate(1.6);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar a { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 700; color: var(--ink-400); padding: 9px 2px 7px; transition: color .2s var(--ease), transform .2s var(--ease); }
.tabbar a span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.tabbar a.active { color: var(--electric); }
.tabbar a:active { transform: scale(.93); }
.tabbar .wa-fab { margin-top: -24px; width: 52px; height: 52px; border-radius: 50%; background: #1FB855; color: #fff; display: grid; place-items: center; box-shadow: 0 2px 6px rgba(0,0,0,.14), 0 14px 28px -12px rgba(31,184,85,.8); position: relative; }
.tabbar .wa-fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #1FB855; animation: ring 2.6s ease-out infinite; }

/* ---------- legal pages ---------- */
.legal { font-size: 1rem; min-width: 0; }
.toc { min-width: 0; }
.legal h2 { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem); letter-spacing: -.015em; margin: 2.6rem 0 .7rem; color: var(--navy); scroll-margin-top: calc(var(--header-h) + 28px); padding-top: 1.7rem; border-top: 1px solid var(--line); }
.legal > h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.legal h3 { font-weight: 800; font-size: 1rem; letter-spacing: -.005em; margin: 1.6rem 0 .4rem; color: var(--ink); }
.legal p, .legal li { color: var(--ink-500); line-height: 1.78; }
.legal p { margin: .75rem 0; max-width: 68ch; }
.legal ul { list-style: none; padding-left: 0; margin: .7rem 0; }
.legal ul > li { position: relative; padding-left: 20px; margin: .45rem 0; max-width: 66ch; }
.legal ul > li::before { content: ""; position: absolute; left: 3px; top: .74em; width: 5px; height: 5px; border-radius: 50%; background: #C3CCDF; }
.legal ol { list-style: decimal; padding-left: 1.3rem; margin: .7rem 0; }
.legal ol > li { margin: .45rem 0; max-width: 66ch; padding-left: 4px; }
.legal strong { color: var(--ink); font-weight: 700; }
.legal .tbl-scroll { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.2rem 0; border: 1px solid var(--line); border-radius: var(--r-md); }
.legal table { width: 100%; min-width: 460px; border-collapse: collapse; font-size: .92rem; }
.legal th, .legal td { border-bottom: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.legal tr:last-child th, .legal tr:last-child td { border-bottom: 0; }
.legal th { background: var(--mist); font-weight: 700; color: var(--ink); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.legal a { color: var(--electric); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal .callout { background: var(--mist); border: 1px solid var(--line); border-left: 2px solid var(--electric); border-radius: var(--r-md); padding: 16px 20px; margin: 1.3rem 0; }
.legal .callout p:first-child { margin-top: 0; }
.legal .callout p:last-child { margin-bottom: 0; }

.toc a { display: block; padding: 7px 0 7px 14px; color: var(--ink-500); font-size: .875rem; line-height: 1.4; border-left: 1px solid var(--line); transition: color .25s var(--ease), border-color .25s var(--ease); }
.toc a:hover { color: var(--ink); border-color: #C3CCDF; }
.toc a.active { color: var(--electric); border-color: var(--electric); font-weight: 600; }

/* ---------- misc ---------- */
.gradient-text { background: linear-gradient(96deg, #A9C1FF, #5FD4F4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-group > *, .msg, .wa-tag { opacity: 1 !important; transform: none !important; }
  .typing-wrap { display: none; }
}
