:root {
  --background: #f5f5fa;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --text: #071a3f;
  --muted: #657085;
  --border: rgba(7, 26, 63, 0.1);
  --primary: #17478c;
  --secondary: #2e85eb;
  --accent: #fa8c38;
  --success: #29ab63;
  --danger: #e63342;
  --purple: #856ef2;
  --shadow: 0 10px 30px rgba(18, 42, 84, 0.06);
  --shadow-soft: 0 4px 14px rgba(18, 42, 84, 0.05);
  --shadow-elevated: 0 16px 40px rgba(18, 42, 84, 0.12);
  --card-gradient-border: linear-gradient(180deg, rgba(7, 26, 63, 0.05), rgba(7, 26, 63, 0.1));
  --radius: 20px;
  --radius-lg: 28px;
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-lg: 16px;
  --sp-xl: 20px;
  --sp-2xl: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1100px 620px at 12% -8%, rgba(46, 133, 235, 0.1), transparent 60%),
    radial-gradient(900px 540px at 100% 0%, rgba(23, 71, 140, 0.08), transparent 55%),
    radial-gradient(760px 460px at 50% 120%, rgba(133, 110, 242, 0.06), transparent 60%),
    var(--background);
  background-attachment: fixed;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 245, 250, 0.72);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.nav-shell {
  width: min(1200px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(23, 71, 140, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #142342;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: #233452;
  transition: color 180ms var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* ---------- Buttons ---------- */

.store-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}

.store-button {
  background: linear-gradient(180deg, #1c1c22, #050506);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0 18px;
  box-shadow: 0 8px 22px rgba(5, 5, 8, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.store-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.store-button.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  font-size: 16px;
}

.store-button.nav-cta svg {
  width: 20px;
  height: 20px;
}

.store-button.large {
  width: 180px;
  min-width: 180px;
  min-height: 58px;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 18px;
  border-radius: 15px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(5, 5, 8, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.store-button.large svg {
  width: 29px;
  height: 29px;
}

.store-button.large span {
  display: grid;
  gap: 1px;
  text-align: left;
  white-space: nowrap;
  line-height: 0.92;
}

.store-button small {
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.95;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(5, 5, 8, 0.28), 0 0 0 4px rgba(46, 133, 235, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.secondary-button {
  border: 1px solid rgba(23, 71, 140, 0.22);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
  padding: 0 22px;
}

.secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 71, 140, 0.4);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.store-button:focus-visible,
.secondary-button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(46, 133, 235, 0.4);
  outline-offset: 4px;
}

/* ---------- Eyebrow label ---------- */

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(46, 133, 235, 0.1);
  color: #1655d9;
  border: 1px solid rgba(46, 133, 235, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */

.hero {
  min-height: calc(100vh - 72px);
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 34px;
  align-items: center;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #061842;
  background: linear-gradient(180deg, #0a2566, #17478c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: #233452;
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(128px, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-facts div {
  min-height: 104px;
  padding: 17px 16px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.hero-facts div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.hero-facts dt {
  min-height: 28px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.75px;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: #071a3f;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 800;
  line-height: 1.22;
  text-wrap: balance;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(closest-side, rgba(46, 133, 235, 0.28), rgba(23, 71, 140, 0.08) 60%, transparent 75%);
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

.phone {
  width: 290px;
  margin: 0;
  background: #070707;
  border: 8px solid #070707;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 30px 64px rgba(6, 24, 66, 0.3);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.phone-center {
  position: relative;
  z-index: 3;
  width: min(340px, 48vw);
}

.phone-left,
.phone-right {
  position: absolute;
  z-index: 2;
  top: 82px;
  width: min(285px, 38vw);
}

.phone-left {
  left: 22px;
  transform: rotate(-8deg);
}

.phone-right {
  right: 8px;
  transform: rotate(8deg);
}

.phone-center,
.phone-left,
.phone-right {
  animation: phone-float 7s ease-in-out infinite;
}

.phone-left {
  animation-delay: -2.4s;
}

.phone-right {
  animation-delay: -4.6s;
}

@keyframes phone-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

/* ---------- Quick strip ---------- */

.quick-strip {
  padding: 8px 0 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-strip article,
.feature-grid article,
.faq-grid details {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-image: linear-gradient(var(--surface), var(--surface)), var(--card-gradient-border);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.quick-strip article:hover,
.feature-grid article:hover,
.faq-grid details:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.quick-strip article {
  min-height: 116px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.strip-icon,
.feature-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  font-weight: 800;
}

.strip-icon {
  width: 46px;
  height: 46px;
  font-size: 11px;
  letter-spacing: 0.5px;
  position: relative;
}

.strip-icon svg {
  width: 22px;
  height: 22px;
}

.feature-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
}

.feature-mark svg {
  width: 24px;
  height: 24px;
}

.strip-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.strip-num {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.quick-strip h2 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.15;
}

.quick-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.blue {
  background: rgba(46, 133, 235, 0.13);
  color: #1655d9;
}

.green {
  background: rgba(41, 171, 99, 0.14);
  color: #12834a;
}

.orange {
  background: rgba(250, 140, 56, 0.16);
  color: #c85f13;
}

.navy {
  background: rgba(23, 71, 140, 0.13);
  color: #17478c;
}

.red {
  background: rgba(230, 51, 66, 0.12);
  color: #c72837;
}

.purple {
  background: rgba(133, 110, 242, 0.14);
  color: #6b4fe5;
}

/* ---------- Features / workflows ---------- */

.features {
  padding: 86px 0 72px;
}

.dealer-workflows {
  padding: 18px 0 84px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 360px;
  margin-bottom: 0;
}

.section-heading h2,
.workflow-card h2,
.final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.015em;
  color: #061842;
}

.workflow-card h2,
.final-cta h2 {
  color: #fff;
}

.section-heading p,
.workflow-card p,
.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  min-height: 222px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.workflow-grid article {
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.workflow-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.workflow-grid article h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  margin-bottom: 14px;
}

.feature-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.workflow-grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.18;
}

.feature-grid p,
.workflow-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Screens ---------- */

.screens {
  padding: 78px 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef3fb 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.screens-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.secondary-button.inline {
  width: fit-content;
  margin-top: 24px;
}

.screen-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 18px;
  overflow-x: auto;
  padding: 22px 8px 34px;
  scrollbar-color: rgba(23, 71, 140, 0.35) transparent;
  scroll-snap-type: x proximity;
}

.screen-rail .phone {
  scroll-snap-align: center;
}

.small-phone {
  width: 220px;
  border-width: 6px;
  border-radius: 34px;
  box-shadow: 0 18px 38px rgba(6, 24, 66, 0.18);
  transition: transform 240ms var(--ease);
}

.small-phone:hover {
  transform: translateY(-6px);
}

.small-phone img {
  border-radius: 26px;
}

/* ---------- Workflow card ---------- */

.workflow {
  padding: 76px 0;
}

.workflow-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 46px;
  color: #fff;
  background:
    radial-gradient(600px 360px at 90% 10%, rgba(46, 133, 235, 0.4), transparent 70%),
    linear-gradient(135deg, #061842, #17478c);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

.workflow-card p {
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  line-height: 1.42;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(41, 171, 99, 0.25);
  box-shadow: inset 0 0 0 1.5px rgba(41, 171, 99, 0.6);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid #5fe19a;
  border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg);
}

/* ---------- FAQ ---------- */

.faq {
  padding: 30px 0 78px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid details {
  padding: 0;
  overflow: hidden;
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

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

.faq-chevron {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 133, 235, 0.12);
  color: var(--primary);
  transition: transform 280ms var(--ease), background 280ms var(--ease);
}

.faq-chevron svg {
  width: 13px;
  height: 13px;
}

.faq-grid details[open] .faq-chevron {
  transform: rotate(180deg);
  background: rgba(46, 133, 235, 0.2);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease);
}

.faq-grid details[open] .faq-body {
  grid-template-rows: 1fr;
}

.faq-body > div {
  overflow: hidden;
}

.faq-grid p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Final CTA ---------- */

.final-cta {
  margin-bottom: 54px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: #fff;
  background:
    radial-gradient(520px 320px at 12% 0%, rgba(46, 133, 235, 0.45), transparent 70%),
    linear-gradient(135deg, #08205c, #0a2f72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  position: relative;
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(133, 110, 242, 0.3), transparent 70%);
  pointer-events: none;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .store-button.large {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 30px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 700;
  color: var(--primary);
}

.site-footer div a {
  transition: color 180ms var(--ease);
}

.site-footer div a:hover {
  color: var(--secondary);
}

/* ---------- Scroll reveal ---------- */

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

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

[data-reveal][data-reveal-delay="1"] {
  transition-delay: 80ms;
}
[data-reveal][data-reveal-delay="2"] {
  transition-delay: 160ms;
}
[data-reveal][data-reveal-delay="3"] {
  transition-delay: 240ms;
}
[data-reveal][data-reveal-delay="4"] {
  transition-delay: 320ms;
}
[data-reveal][data-reveal-delay="5"] {
  transition-delay: 400ms;
}
[data-reveal][data-reveal-delay="6"] {
  transition-delay: 480ms;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .nav-shell {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    grid-template-columns: 1fr;
  }

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

  .hero-facts {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    max-width: 520px;
  }

  .hero-facts div {
    min-height: 98px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .phone-left {
    left: 8%;
  }

  .phone-right {
    right: 8%;
  }

  .quick-strip,
  .feature-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screens-layout,
  .workflow-card {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 28px, 1200px);
  }

  .nav-cta {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

  .hero {
    padding-top: 34px;
    gap: 18px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .store-button.large {
    width: min(180px, 100%);
    min-width: 0;
  }

  .secondary-button {
    width: 100%;
  }

  .hero-facts,
  .quick-strip,
  .feature-grid,
  .workflow-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .phone-center {
    width: min(260px, 72vw);
  }

  .phone-left,
  .phone-right {
    top: 68px;
    width: min(210px, 58vw);
  }

  .phone-left {
    left: -64px;
  }

  .phone-right {
    right: -64px;
  }

  .features,
  .dealer-workflows,
  .screens,
  .workflow,
  .faq {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-heading h2,
  .workflow-card h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .screens-layout {
    gap: 20px;
  }

  .screen-rail {
    grid-auto-columns: 188px;
    margin-right: -14px;
  }

  .small-phone {
    width: 188px;
  }

  .workflow-card,
  .final-cta {
    padding: 28px;
    border-radius: 22px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta .store-button.large {
    align-self: flex-start;
  }

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

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

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

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