:root {
  --ink: #17212b;
  --ink-soft: #33414f;
  --blue: #2f5dd7;
  --blue-dark: #2448a7;
  --green: #18a777;
  --green-bright: #24c98b;
  --paper: #ffffff;
  --cloud: #f4f7f8;
  --line: #d9e1e6;
  --muted: #667786;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(23, 33, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(23, 33, 43, 0.06);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  width: 176px;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--blue);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(23, 33, 43, 0.15);
}

.language-menu a {
  padding: 8px 9px;
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
}

.language-menu a:hover {
  color: var(--blue);
  background: var(--cloud);
}

.language-menu a[aria-current="page"] {
  color: #fff;
  background: var(--blue);
}

.mobile-language {
  display: none;
}

.nav-download {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-download:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 760px;
  padding: 132px 0 0;
  overflow: hidden;
  background: var(--cloud);
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 536px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: 70px;
}

.product-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-kicker img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 4.65rem);
  line-height: 1.04;
  font-weight: 780;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.play-button {
  min-width: 202px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 9px 16px 9px 10px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.play-button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.play-button img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
}

.play-button span {
  display: flex;
  flex-direction: column;
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.1;
}

.play-button small {
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.text-link {
  color: var(--blue-dark);
  font-weight: 750;
  text-underline-offset: 5px;
}

.text-link span {
  margin-left: 6px;
}

.compatibility {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  height: 550px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 9px solid var(--ink);
  border-radius: 30px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.phone-main {
  width: 282px;
  height: 502px;
  left: 22px;
  top: 0;
  z-index: 2;
}

.phone-secondary {
  width: 238px;
  height: 423px;
  right: 0;
  bottom: -6px;
  z-index: 1;
  border-color: #253646;
}

.capability-strip {
  width: min(calc(100% - 40px), var(--max));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.capability-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.capability-strip div:last-child {
  border-right: 0;
}

.capability-strip strong {
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1;
}

.capability-strip span {
  max-width: 92px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 66px;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 850;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  line-height: 1.12;
  font-weight: 760;
}

.section-heading > p:last-child,
.split-heading > p,
.workflow-copy > p,
.faq-title > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-item {
  min-height: 262px;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-number {
  display: block;
  margin-bottom: 42px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-item h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.feature-item p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-dark {
  color: #fff;
  background: var(--ink);
}

.workflow-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 116px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 100px;
}

.eyebrow-light {
  color: var(--green-bright);
}

.workflow-copy > p {
  color: #b9c6d0;
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.format-list li {
  padding: 5px 10px;
  border: 1px solid #52616f;
  border-radius: 4px;
  color: #d5dee5;
  font-size: 0.75rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid #394856;
}

.steps li:last-child {
  border-bottom: 1px solid #394856;
}

.steps > li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green-bright);
  border-radius: 50%;
  color: var(--green-bright);
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 7px;
  font-size: 1.28rem;
}

.steps p {
  margin: 0;
  color: #aebdc8;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 5px;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.screen-gallery figure {
  margin: 0;
}

.screen-gallery figure:nth-child(even) {
  padding-top: 48px;
}

.screen-gallery img {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 7px solid var(--ink);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 14px 35px rgba(23, 33, 43, 0.12);
}

.screen-gallery figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 4px 0;
}

.screen-gallery figcaption strong {
  font-size: 0.94rem;
}

.screen-gallery figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.use-cases {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cloud);
}

.use-cases-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.use-cases-inner h2 {
  max-width: 760px;
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.use-case-list span {
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-weight: 720;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
}

.faq-title {
  position: sticky;
  top: 118px;
  align-self: start;
}

.faq-title a {
  color: var(--blue-dark);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 730;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--blue);
  font-size: 1.7rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 660px;
  padding: 0 42px 25px 0;
  color: var(--muted);
}

.download-section {
  padding: 0 20px 20px;
}

.download-inner {
  width: min(100%, 1400px);
  min-height: 260px;
  margin: 0 auto;
  padding: 54px max(36px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
}

.download-inner > img {
  border-radius: 18px;
}

.download-inner h2 {
  max-width: 610px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.play-button-light {
  border-color: #fff;
  color: var(--ink);
  background: #fff;
}

.play-button-light:hover {
  color: #fff;
  background: var(--ink);
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 70px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 176px;
}

.footer-brand p {
  max-width: 320px;
  margin: 22px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background: var(--cloud);
}

.legal-header {
  position: static;
}

.legal-shell {
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-title {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.legal-title h1 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.legal-title p {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal-content h2 {
  margin: 44px 0 14px;
  font-size: 1.45rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue-dark);
}

@media (max-width: 1050px) {
  .nav-shell {
    gap: 16px;
  }

  .brand,
  .brand img {
    width: 150px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .nav-download {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr 390px;
    gap: 30px;
  }

  .phone-main {
    left: 0;
  }

  .phone-secondary {
    right: -34px;
  }

  .workflow-inner {
    gap: 58px;
  }

  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .nav-download,
  .language-switcher {
    display: none;
  }

  .nav-shell {
    height: 68px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 160ms ease, opacity 160ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .mobile-nav {
    min-height: calc(100vh - 68px);
    padding: 34px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .mobile-nav:not([hidden]) {
    display: flex;
  }

  .mobile-nav a {
    padding: 17px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .mobile-language {
    display: block;
    padding-top: 28px;
  }

  .mobile-language > strong {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.74rem;
    text-transform: uppercase;
  }

  .mobile-language-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .mobile-language-grid a {
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 0.84rem;
  }

  .mobile-language-grid a[aria-current="page"] {
    border-color: var(--blue);
    color: #fff;
    background: var(--blue);
  }

  .hero {
    padding-top: 108px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .phone-main {
    left: 12%;
  }

  .phone-secondary {
    right: 8%;
  }

  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }

  .capability-strip div:nth-child(2) {
    border-right: 0;
  }

  .capability-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .workflow-inner,
  .faq-layout,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .workflow-inner,
  .faq-layout {
    gap: 54px;
  }

  .split-heading {
    gap: 22px;
  }

  .split-heading > p {
    max-width: 620px;
  }

  .screen-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .screen-gallery figure:nth-child(even) {
    padding-top: 0;
  }

  .faq-title {
    position: static;
  }

  .download-inner {
    grid-template-columns: 88px 1fr;
  }

  .download-inner > img {
    width: 88px;
  }

  .download-inner .play-button {
    grid-column: 2;
    justify-self: start;
  }
}

html[dir="rtl"] .desktop-nav {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .menu-toggle {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .faq-list summary {
  padding-right: 0;
  padding-left: 48px;
}

html[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 4px;
}

html[dir="rtl"] .faq-list details p {
  padding-right: 0;
  padding-left: 42px;
}

@media (max-width: 620px) {
  .nav-shell,
  .hero-inner,
  .capability-strip,
  .section,
  .workflow-inner,
  .use-cases-inner,
  .site-footer,
  .legal-shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    height: 470px;
  }

  .phone-main {
    width: 242px;
    height: 430px;
    left: 0;
  }

  .phone-secondary {
    width: 188px;
    height: 334px;
    right: -34px;
    bottom: -2px;
  }

  .capability-strip div {
    justify-content: flex-start;
    padding: 20px 12px;
  }

  .capability-strip strong {
    font-size: 1.35rem;
  }

  .section,
  .workflow-inner {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

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

  .feature-item {
    min-height: 238px;
    padding: 30px;
  }

  .feature-number {
    margin-bottom: 34px;
  }

  .steps li {
    grid-template-columns: 46px 1fr;
    gap: 16px;
  }

  .screen-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
  }

  .screen-gallery img {
    border-width: 4px;
    border-radius: 16px;
  }

  .screen-gallery figcaption {
    padding: 12px 2px 0;
  }

  .screen-gallery figcaption strong {
    font-size: 0.82rem;
  }

  .screen-gallery figcaption span {
    display: none;
  }

  .use-cases-inner {
    padding: 76px 0;
  }

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

  .use-case-list span {
    min-height: 68px;
    padding: 14px;
    font-size: 0.88rem;
  }

  .download-section {
    padding: 0 12px 12px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 44px 28px;
  }

  .download-inner > img {
    width: 76px;
  }

  .download-inner .play-button {
    grid-column: auto;
  }

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

  .footer-main {
    gap: 48px;
  }

  .footer-links {
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .legal-shell {
    padding: 64px 0 82px;
  }

  .legal-content {
    padding: 30px 22px;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    height: 420px;
  }

  .phone-main {
    width: 220px;
    height: 391px;
  }

  .phone-secondary {
    width: 165px;
    height: 293px;
  }

  .capability-strip div {
    gap: 7px;
  }

  .capability-strip span {
    font-size: 0.75rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
