:root {
  color-scheme: dark;
  --bg: #050706;
  --bg-soft: #0b0e0c;
  --panel: #111512;
  --panel-high: #181e19;
  --paper: #f5f7f5;
  --paper-soft: #d8ded9;
  --muted: #95a097;
  --line: rgba(243, 240, 233, 0.13);
  --line-strong: rgba(243, 240, 233, 0.24);
  --gold: #7c5cff;
  --gold-bright: #cfff2e;
  --green: #cfff2e;
  --danger: #ff6d63;
  --max: 1440px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 0%, rgba(124, 92, 255, 0.16), transparent 30rem),
    var(--bg);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--gold);
  color: #100e0a;
}

a {
  color: inherit;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--bg);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 78px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid transparent;
  padding: 0 clamp(20px, 4vw, 68px);
  transition: height 180ms ease, border-color 180ms ease, background 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(10, 10, 9, 0.87);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.site-brand img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
}

.site-brand strong,
.site-brand small {
  display: block;
}

.site-brand strong {
  font-size: 13px;
  letter-spacing: 0.18em;
}

.site-brand small {
  margin-top: 2px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 42px);
}

.site-nav a {
  position: relative;
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px;
  background: rgba(243, 240, 233, 0.035);
}

.site-nav .language-switcher a {
  display: grid;
  min-width: 34px;
  min-height: 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.site-nav .language-switcher a::after {
  display: none;
}

.site-nav .language-switcher a:hover {
  color: var(--paper);
}

.site-nav .language-switcher a[aria-current="page"] {
  background: var(--paper);
  color: var(--bg);
}

.header-cta {
  justify-self: end;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 11px 18px;
  background: rgba(243, 240, 233, 0.04);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.header-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #12100d;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(440px, 0.78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(28px, 5vw, 92px);
  padding: 118px clamp(22px, 5vw, 88px) 58px;
}

.hero::before {
  position: absolute;
  top: 16%;
  left: -7%;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(124, 92, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 670px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(70, 210, 123, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 28px 0 28px;
  font-size: clamp(64px, 7.2vw, 124px);
  font-weight: 760;
  letter-spacing: -0.072em;
  line-height: 0.82;
}

.hero h1 em {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-weight: 500;
}

.hero-copy > p {
  max-width: 600px;
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-large {
  min-height: 55px;
  padding-inline: 25px;
  font-size: 14px;
}

.button-primary {
  background: var(--paper);
  color: #11100d;
}

.button-primary:hover {
  background: var(--gold-bright);
}

.button-quiet {
  border-color: var(--line-strong);
  background: rgba(243, 240, 233, 0.035);
  color: var(--paper);
}

.button-quiet:hover {
  border-color: var(--gold);
}

.hero-proof {
  display: flex;
  gap: clamp(24px, 3vw, 50px);
  margin: 44px 0 0;
}

.hero-proof div {
  min-width: 84px;
}

.hero-proof dt {
  color: var(--paper);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-stage {
  position: relative;
  min-height: min(78vh, 830px);
  perspective: 1800px;
}

.stage-glow {
  position: absolute;
  inset: 8% 0 5% 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.25), rgba(124, 92, 255, 0.04) 45%, transparent 70%);
  filter: blur(16px);
}

.controller-window {
  position: absolute;
  z-index: 1;
  top: 6%;
  right: 1%;
  width: min(92%, 960px);
  overflow: hidden;
  border: 1px solid rgba(243, 240, 233, 0.2);
  border-radius: 25px;
  background: rgba(19, 19, 17, 0.95);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  transform: rotateY(-7deg) rotateX(2deg);
}

.controller-bar {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
  color: var(--paper-soft);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.controller-bar i {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: rgba(243, 240, 233, 0.2);
}

.controller-bar i + i {
  margin-left: -3px;
}

.controller-logo {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 8px;
  background: var(--paper);
  color: var(--bg);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.controller-body {
  display: grid;
  min-height: 420px;
  grid-template-columns: 0.74fr 1.7fr 0.8fr;
  gap: 10px;
  padding: 12px;
}

.controller-body > div {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 17px;
  background: var(--bg-soft);
}

.controller-body small {
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.controller-script strong {
  display: block;
  margin: 18px 0 24px;
  font-size: 13px;
}

.controller-script span {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 9px;
  border-radius: 4px;
  background: rgba(243, 240, 233, 0.12);
}

.controller-script span:nth-of-type(2),
.controller-script span:nth-of-type(5) {
  width: 77%;
}

.controller-preview {
  position: relative;
  background: #050505 !important;
}

.controller-preview p {
  position: absolute;
  top: 39%;
  right: 25px;
  left: 25px;
  z-index: 2;
  margin: 0;
  color: white;
  font-size: clamp(18px, 1.55vw, 30px);
  font-weight: 760;
  line-height: 1.35;
  text-align: center;
}

.reading-guide {
  position: absolute;
  top: 46%;
  right: 8px;
  left: 8px;
  height: 28%;
  border-block: 1px solid rgba(207, 255, 46, 0.34);
  background: rgba(207, 255, 46, 0.06);
}

.controller-devices b {
  display: block;
  margin: 14px 0 17px;
  color: var(--green);
  font-size: 12px;
}

.controller-devices span {
  display: block;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  color: var(--paper-soft);
  font-size: 9px;
}

.device {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  margin: 0;
  border: 6px solid #050505;
  background: #050505;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.68);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prompt-screen {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 9%;
  background:
    linear-gradient(180deg, rgba(124, 92, 255, 0.12), transparent 34%),
    #020302;
  color: var(--paper);
}

.prompt-screen::after {
  position: absolute;
  right: 0;
  left: 0;
  top: 46%;
  height: 28%;
  border-block: 1px solid rgba(207, 255, 46, 0.32);
  background: rgba(207, 255, 46, 0.055);
  content: "";
}

.prompt-screen small {
  position: absolute;
  top: 7%;
  left: 7%;
  color: var(--gold-bright);
  font-size: clamp(6px, 0.8vw, 11px);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.prompt-screen p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(13px, 2vw, 31px);
  font-weight: 520;
  line-height: 1.3;
  text-align: center;
}

.prompt-screen strong {
  color: #fff;
  font-weight: 820;
}

.prompt-screen-compact p {
  font-size: clamp(9px, 1.4vw, 20px);
}

.device-ipad {
  right: 3%;
  bottom: 2%;
  width: 63%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  transform: rotate(3deg);
}

.device-iphone {
  bottom: 0;
  left: 0;
  width: 56%;
  aspect-ratio: 2.164 / 1;
  border-width: 5px;
  border-radius: 22px;
  transform: rotate(-5deg);
}

.latency-pill {
  position: absolute;
  z-index: 6;
  right: 8%;
  bottom: 1%;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(14, 14, 12, 0.86);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--paper-soft);
  font-size: 11px;
  font-weight: 760;
}

.latency-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.section-pad {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
  padding-block: clamp(86px, 11vw, 168px);
}

.statement {
  max-width: 1260px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.statement h2,
.section-heading h2,
.feature-lead h2,
.autofit-copy h2,
.compatibility h2,
.closing-cta h2 {
  margin: 24px 0;
  font-size: clamp(46px, 6.2vw, 104px);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.statement p {
  max-width: 940px;
  margin: 0 auto;
  color: var(--paper-soft);
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 38px);
  line-height: 1.38;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: clamp(58px, 10vw, 150px);
}

.showcase-copy h2 {
  margin: 25px 0 28px;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.showcase-copy > p {
  max-width: 640px;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--paper-soft);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(70, 210, 123, 0.13);
  color: var(--green);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.qr-demo {
  position: relative;
  justify-self: center;
  width: min(100%, 530px);
  border: 1px solid rgba(243, 240, 233, 0.12);
  border-radius: 38px;
  padding: clamp(28px, 4vw, 52px);
  background: linear-gradient(150deg, #f7f5f0, #d8d3ca);
  box-shadow: 0 46px 100px rgba(0, 0, 0, 0.46);
  color: #0b0b0a;
  transform: rotate(2deg);
}

.qr-grid {
  display: grid;
  aspect-ratio: 1;
  grid-template-columns: repeat(13, 1fr);
  gap: 3px;
  border: 12px solid #fff;
  background: #fff;
}

.qr-grid i {
  background: white;
}

.qr-grid i.is-dark {
  background: #050706;
}

.qr-caption {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px 4px 0;
}

.qr-caption img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.qr-caption strong,
.qr-caption span {
  display: block;
}

.qr-caption strong {
  font-size: 17px;
}

.qr-caption span {
  margin-top: 4px;
  color: #5a5751;
  font-size: 12px;
}

.workflow {
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 980px;
}

.section-heading h2 {
  margin-bottom: clamp(55px, 7vw, 98px);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.workflow-grid article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 58px);
  background: var(--bg);
}

.workflow-grid article > span,
.feature-index {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.workflow-grid h3 {
  margin: 92px 0 18px;
  font-size: clamp(25px, 2.3vw, 38px);
  letter-spacing: -0.045em;
}

.workflow-grid p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.feature-editorial {
  padding-top: clamp(110px, 14vw, 210px);
}

.feature-lead {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: start;
  gap: 40px;
}

.feature-lead h2 {
  max-width: 1050px;
  margin-top: 0;
}

.feature-grid {
  display: grid;
  margin-top: 80px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(25px, 3vw, 40px);
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 92, 255, 0.13), transparent 44%),
    var(--panel);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-card h3 {
  max-width: 440px;
  margin: 70px 0 18px;
  font-size: clamp(27px, 2.8vw, 43px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.feature-card p {
  max-width: 520px;
}

.feature-card-library {
  min-height: 520px;
  padding-bottom: 205px;
}

.sliders {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  display: grid;
  gap: 13px;
}

.sliders span {
  height: 5px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(243, 240, 233, 0.09);
}

.sliders i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--paper));
}

.sliders .slider-a { width: 68%; }
.sliders .slider-b { width: 44%; }
.sliders .slider-c { width: 82%; }

.feature-card-voice {
  background:
    radial-gradient(circle at 50% 100%, rgba(70, 210, 123, 0.15), transparent 50%),
    var(--panel);
}

.voice-wave {
  position: absolute;
  right: 28px;
  bottom: 36px;
  left: 28px;
  display: flex;
  height: 66px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.voice-wave i {
  width: 5px;
  height: 18%;
  border-radius: 6px;
  background: var(--green);
  animation: voice-wave 1.1s ease-in-out infinite alternate;
}

.voice-wave i:nth-child(2),
.voice-wave i:nth-child(8) { height: 42%; animation-delay: -0.2s; }
.voice-wave i:nth-child(3),
.voice-wave i:nth-child(7) { height: 68%; animation-delay: -0.5s; }
.voice-wave i:nth-child(4),
.voice-wave i:nth-child(6) { height: 88%; animation-delay: -0.7s; }
.voice-wave i:nth-child(5) { height: 100%; animation-delay: -0.35s; }

@keyframes voice-wave {
  to { transform: scaleY(0.45); opacity: 0.55; }
}

.script-stack {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
  gap: 7px;
}

.script-stack span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  background: rgba(10, 10, 9, 0.6);
}

.script-stack b {
  font-size: 10px;
}

.script-stack small {
  color: var(--muted);
  font-size: 9px;
}

.voice-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  align-items: center;
  gap: clamp(52px, 8vw, 130px);
  border-block: 1px solid var(--line);
}

.voice-showcase::before {
  position: absolute;
  z-index: -1;
  right: -8vw;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 210, 123, 0.1), transparent 68%);
  content: "";
  filter: blur(20px);
}

.voice-copy h2 {
  margin: 24px 0 30px;
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.voice-copy h2 em {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-weight: 500;
}

.voice-copy > p {
  max-width: 660px;
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.65;
}

.voice-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
}

.voice-facts span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.voice-facts strong {
  display: block;
  margin-bottom: 5px;
  color: var(--paper);
  font-size: 18px;
}

.voice-console {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  padding: clamp(25px, 3vw, 42px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.035), transparent 38%),
    #0b0e0c;
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.5);
}

.voice-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.voice-console-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-console-head strong {
  font-size: 15px;
}

.voice-console-head small,
.voice-source-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.voice-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(70, 210, 123, 0.12), 0 0 22px rgba(70, 210, 123, 0.5);
}

.voice-source-label {
  display: block;
  margin-top: 29px;
}

.voice-source-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.voice-source-tabs span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.voice-source-tabs span.is-active {
  border-color: rgba(70, 210, 123, 0.45);
  background: rgba(70, 210, 123, 0.1);
  color: #b7f2cc;
}

.voice-source-tabs i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.voice-script {
  display: grid;
  gap: 5px;
  margin-top: 42px;
}

.voice-script p {
  position: relative;
  margin: 0;
  border-radius: 11px;
  padding: 14px 18px;
  color: rgba(243, 240, 233, 0.28);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.28;
}

.voice-script p.is-current {
  padding-left: 35px;
  background: rgba(124, 92, 255, 0.14);
  color: var(--paper);
}

.voice-script p.is-current i {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  transform: translateY(-50%);
}

.voice-status {
  position: absolute;
  right: clamp(25px, 3vw, 42px);
  bottom: clamp(25px, 3vw, 42px);
  left: clamp(25px, 3vw, 42px);
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.voice-signal {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 4px;
}

.voice-signal i {
  width: 4px;
  height: 18%;
  border-radius: 4px;
  background: var(--green);
  animation: voice-wave 950ms ease-in-out infinite alternate;
}

.voice-signal i:nth-child(2n) { height: 45%; animation-delay: -180ms; }
.voice-signal i:nth-child(3n) { height: 82%; animation-delay: -410ms; }
.voice-signal i:nth-child(5n) { height: 100%; animation-delay: -620ms; }

.voice-status strong,
.voice-status span {
  display: block;
}

.voice-status strong {
  color: #b7f2cc;
  font-size: 12px;
}

.voice-status span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.autofit-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.autofit-copy h2 {
  font-size: clamp(50px, 5.5vw, 92px);
}

.autofit-copy > p {
  max-width: 650px;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.6;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 42px;
}

.metric-row span {
  color: var(--muted);
  font-size: 11px;
}

.metric-row strong {
  display: block;
  margin-bottom: 5px;
  color: var(--paper);
  font-size: 18px;
}

.autofit-visual {
  position: relative;
  margin: 0;
  background: transparent;
}

.autofit-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 739;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  object-fit: contain;
  background: #050505;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.46);
}

.autofit-visual .prompt-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 739;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.46);
}

.prompt-screen-wide p {
  font-size: clamp(22px, 3.5vw, 58px);
}

.autofit-visual figcaption {
  margin-top: 15px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.compatibility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 150px);
  border-block: 1px solid var(--line);
}

.compatibility h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5vw, 82px);
}

.compatibility-list {
  display: grid;
}

.compatibility-list article {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.compatibility-list article:last-child {
  border-bottom: 0;
}

.compatibility-list strong {
  font-size: 19px;
}

.compatibility-list span {
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  border-top: 1px solid var(--line);
}

.pricing .section-heading {
  display: grid;
  max-width: 960px;
  gap: 18px;
}

.pricing .section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 6.5vw, 104px);
}

.pricing .section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}

.price-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(25px, 3vw, 42px);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.035), transparent 62%), var(--panel);
}

.price-card-featured {
  border-color: rgba(207, 255, 46, 0.46);
  background:
    radial-gradient(circle at 100% 0%, rgba(207, 255, 46, 0.13), transparent 42%),
    linear-gradient(155deg, rgba(124, 92, 255, 0.23), transparent 64%),
    var(--panel);
}

.price-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 36px 0 14px;
  font-size: clamp(39px, 4vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.price-card h3 small {
  display: block;
  margin-top: 11px;
  color: var(--gold-bright);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card p {
  min-height: 90px;
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.65;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: var(--paper-soft);
  font-size: 13px;
  line-height: 1.45;
}

.price-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  content: "";
}

.availability-note {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 30px;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(207, 255, 46, 0.1);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
}

.distribution {
  margin-top: 96px;
  border-top: 1px solid var(--line);
  padding-top: 52px;
}

.distribution-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.distribution-heading h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.045em;
}

.distribution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.store-card {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

a.store-card:hover {
  border-color: var(--gold-bright);
  background: rgba(124, 92, 255, 0.12);
  transform: translateY(-3px);
}

.store-card span,
.store-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.store-card strong {
  margin: 8px 0 19px;
  font-size: 21px;
}

.store-card small {
  color: var(--gold-bright);
  text-transform: none;
}

.store-card.is-preparing {
  opacity: 0.74;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(50px, 9vw, 150px);
}

.faq .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5vw, 82px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 52px 27px 0;
  cursor: pointer;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-bright);
  content: "+";
  font-size: 18px;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 50px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.closing-cta {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  text-align: center;
}

.closing-cta > img {
  width: 120px;
  height: 120px;
  margin-bottom: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
}

.closing-cta h2 {
  margin: 24px 0;
}

.closing-cta > p {
  max-width: 640px;
  margin: 0;
  color: var(--paper-soft);
  font-size: 18px;
  line-height: 1.6;
}

.closing-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 70px 0 32px;
}

.footer-brand {
  display: flex;
  max-width: 540px;
  align-items: center;
  gap: 18px;
}

.footer-monogram {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  background: var(--paper);
  color: var(--bg);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-brand p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  width: fit-content;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 68px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  color: #706d66;
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* Páginas de suporte e documentos */

.legal-page {
  width: min(calc(100% - 44px), 1120px);
  min-height: 70vh;
  margin: 0 auto;
  padding: 150px 0 130px;
}

.legal-hero {
  max-width: 940px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 65px;
}

.legal-hero h1 {
  margin: 25px 0;
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 690;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.legal-hero > p {
  max-width: 790px;
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.4;
}

.updated {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 11px;
}

.legal-section {
  max-width: 880px;
  margin-top: 70px;
}

.legal-section h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.legal-section h3 {
  margin: 38px 0 12px;
  font-size: 19px;
}

.legal-section p,
.legal-section li {
  color: var(--paper-soft);
  font-size: 16px;
  line-height: 1.78;
}

.legal-section a,
.legal-callout a {
  color: var(--gold-bright);
}

.legal-section ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.legal-summary {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(25px, 4vw, 45px);
  background: var(--panel);
}

.legal-callout {
  max-width: 880px;
  margin-top: 80px;
  border: 1px solid rgba(207, 255, 46, 0.34);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(207, 255, 46, 0.06);
}

.legal-callout h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.legal-callout p {
  margin: 0;
  color: var(--paper-soft);
  line-height: 1.7;
}

.support-contact-grid {
  display: grid;
  max-width: 980px;
  margin-top: 70px;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.support-contact-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--panel);
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.support-contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.support-contact-card > span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.support-contact-card strong {
  display: block;
  margin-top: 48px;
  font-size: clamp(20px, 2.5vw, 32px);
}

.support-contact-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.support-steps {
  display: grid;
  gap: 1px;
  margin: 30px 0 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.support-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--bg);
}

.support-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
}

.support-steps strong {
  color: var(--paper);
  font-size: 18px;
}

.support-steps p {
  margin: 7px 0 0;
  font-size: 14px;
}

.shortcut-table {
  border-top: 1px solid var(--line);
}

.shortcut-table > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

kbd {
  width: max-content;
  min-width: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 7px 11px;
  background: var(--panel);
  box-shadow: inset 0 -2px rgba(255, 255, 255, 0.05);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.has-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hero-stage {
    min-height: 650px;
  }

  .controller-body {
    min-height: 350px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    min-height: 360px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    justify-self: end;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(18, 18, 16, 0.9);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--paper);
    transition: transform 150ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 27px;
    padding: 90px 34px;
    background: rgba(10, 10, 9, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 36px;
    font-weight: 680;
    letter-spacing: -0.04em;
  }

  .site-nav .language-switcher a {
    min-width: 44px;
    min-height: 44px;
    font-size: 10px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
    padding-top: 135px;
  }

  .hero h1 {
    font-size: clamp(68px, 13vw, 108px);
  }

  .hero-stage {
    width: min(100%, 820px);
    min-height: 690px;
    margin-inline: auto;
  }

  .product-showcase,
  .voice-showcase,
  .autofit-section,
  .compatibility,
  .faq {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .distribution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qr-demo {
    width: min(78vw, 520px);
  }

  .feature-lead {
    grid-template-columns: 1fr;
  }

  .feature-lead h2 {
    margin-top: 22px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding-inline: 16px;
  }

  .site-brand img {
    width: 39px;
    height: 39px;
    border-radius: 10px;
  }

  .hero {
    min-height: auto;
    padding: 118px 20px 40px;
  }

  .hero-copy,
  .hero-kicker {
    width: 100%;
    max-width: 100%;
  }

  .hero-kicker {
    display: flex;
    line-height: 1.45;
    white-space: normal;
  }

  .hero-kicker span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    width: 100%;
    overflow-wrap: break-word;
  }

  .hero-kicker .live-dot {
    flex: 0 0 auto;
  }

  .hero h1 {
    margin-top: 23px;
    font-size: clamp(58px, 18vw, 88px);
    line-height: 0.86;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 19px;
  }

  .hero-proof div {
    min-width: 0;
  }

  .hero-proof dd {
    font-size: 9px;
  }

  .hero-stage {
    min-height: 470px;
    margin-top: 8px;
  }

  .controller-window {
    top: 5%;
    right: -15%;
    width: 110%;
    border-radius: 18px;
  }

  .controller-bar {
    height: 42px;
    padding-inline: 11px;
    font-size: 8px;
  }

  .controller-logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-size: 8px;
  }

  .controller-body {
    min-height: 250px;
    grid-template-columns: 0.66fr 1.5fr 0.72fr;
    gap: 5px;
    padding: 6px;
  }

  .controller-body > div {
    border-radius: 8px;
    padding: 8px;
  }

  .controller-preview p {
    right: 9px;
    left: 9px;
    font-size: 12px;
  }

  .controller-devices span {
    padding: 5px;
    font-size: 5px;
  }

  .controller-devices b {
    margin: 7px 0;
    font-size: 7px;
  }

  .device {
    border-width: 3px;
  }

  .device-ipad {
    right: -2%;
    width: 69%;
    border-radius: 13px;
  }

  .device-iphone {
    width: 62%;
    border-radius: 12px;
  }

  .latency-pill {
    right: 1%;
    padding: 8px 10px;
    font-size: 8px;
  }

  .section-pad {
    width: min(calc(100% - 32px), var(--max));
    padding-block: 84px;
  }

  .statement h2,
  .section-heading h2,
  .feature-lead h2,
  .autofit-copy h2,
  .compatibility h2,
  .closing-cta h2 {
    font-size: 48px;
  }

  .statement p {
    font-size: 21px;
  }

  .showcase-copy h2 {
    font-size: 58px;
  }

  .qr-demo {
    width: 92%;
    border-radius: 25px;
    padding: 26px;
  }

  .qr-grid {
    gap: 2px;
    border-width: 8px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid article {
    min-height: 260px;
  }

  .workflow-grid h3 {
    margin-top: 58px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .feature-card,
  .feature-card-wide {
    min-height: 360px;
    grid-column: auto;
  }

  .feature-card-library {
    min-height: 520px;
    padding-bottom: 205px;
  }

  .voice-console {
    min-height: 570px;
  }

  .voice-status {
    grid-template-columns: 92px 1fr;
  }

  .feature-card h3 {
    margin-top: 58px;
  }

  .metric-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .distribution-heading {
    display: grid;
    align-items: start;
  }

  .distribution-grid {
    grid-template-columns: 1fr;
  }

  .compatibility-list article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .faq {
    gap: 42px;
  }

  .closing-cta {
    min-height: 570px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-page {
    width: min(calc(100% - 32px), 1120px);
    padding-top: 120px;
  }

  .legal-hero h1 {
    font-size: 58px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }

  .support-contact-grid {
    grid-template-columns: 1fr;
  }

  .support-contact-card {
    min-height: 195px;
  }

  .support-steps li {
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 22px 14px;
  }

  .shortcut-table > div {
    grid-template-columns: 80px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
