:root {
  --yellow: #f7bf26;
  --yellow-soft: #fff4c7;
  --yellow-deep: #bd8500;
  --ink: #171714;
  --ink-soft: #37372f;
  --muted: #6f6f66;
  --line: #e3e3dc;
  --paper: #ffffff;
  --canvas: #f3f3ef;
  --shadow: 0 18px 48px rgba(23, 23, 20, 0.09);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
}

.brand span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.brand strong {
  font-size: 18px;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.button-yellow:hover {
  background: #ffc92f;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(620px, calc(100svh - 58px));
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: #6b6459;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/hero-pets.webp");
  background-position: center;
  background-size: cover;
}

.hero-scrim {
  background: rgba(18, 18, 15, 0.48);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 66px;
}

.hero-copy {
  width: min(610px, 58%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 750;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  background: var(--yellow);
}

.eyebrow-dark {
  color: var(--yellow-deep);
}

.hero h1,
.hero-lead,
.section-heading h2,
.workflow-intro h2,
.cta-inner h2 {
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 1.05;
  font-weight: 900;
}

.hero-lead {
  margin: 24px 0 18px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.28;
  font-weight: 750;
}

.hero-description {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions .button {
  min-width: 166px;
}

.capability-strip {
  position: relative;
  z-index: 2;
  background: var(--yellow);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.capability-grid > div {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(23, 23, 20, 0.16);
  font-weight: 750;
}

.capability-grid > div:last-child {
  border-right: 0;
}

.capability-grid svg {
  width: 21px;
  height: 21px;
}

.section {
  padding: 112px 0;
}

.services-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 68px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.section-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.2;
  font-weight: 850;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  display: grid;
  min-height: 264px;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow-soft);
  border-radius: 8px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-number {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow-deep);
  font-size: 12px;
  font-weight: 800;
}

.service-item h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.35;
}

.service-item p {
  margin: 0;
  color: var(--muted);
}

.workflow-section {
  color: var(--paper);
  background: var(--ink);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 92px;
}

.workflow-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.workflow-intro h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
}

.workflow-intro > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--yellow);
  font-weight: 750;
}

.text-link svg {
  width: 19px;
  height: 19px;
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.workflow-list li {
  display: grid;
  min-height: 168px;
  grid-template-columns: 62px 1fr 48px;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.step-index {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.workflow-list h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.workflow-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.workflow-list > li > svg {
  width: 34px;
  height: 34px;
  color: var(--yellow);
}

.app-section {
  overflow: hidden;
  background: var(--paper);
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: start;
  gap: 90px;
}

.app-intro h2 {
  margin: 18px 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
  font-weight: 900;
}

.app-summary {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.app-status {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  color: #725000;
  background: var(--yellow-soft);
  border: 1px solid #f0d570;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.app-status svg {
  width: 16px;
  height: 16px;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.app-features svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--yellow-deep);
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-download-note {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.app-card {
  position: relative;
  padding: 36px;
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.app-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 8px;
  background: var(--yellow);
  content: "";
}

.app-identity {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d6d6ce;
}

.app-identity img {
  width: 100px;
  height: 100px;
  padding: 8px;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.app-identity > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.app-card-label {
  margin-bottom: 4px;
  color: var(--yellow-deep);
  font-size: 12px;
  font-weight: 800;
}

.app-identity strong {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.app-identity small {
  margin-top: 5px;
  color: var(--muted);
}

.app-meta {
  margin: 0;
}

.app-meta > div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #d6d6ce;
}

.app-meta dt,
.app-meta dd {
  margin: 0;
}

.app-meta dt {
  color: var(--muted);
  font-size: 13px;
}

.app-meta dd {
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 700;
}

.app-meta code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.app-review-note {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  margin-top: 22px;
  padding: 16px;
  color: var(--ink-soft);
  background: var(--yellow-soft);
  border-left: 3px solid var(--yellow);
}

.app-review-note svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.app-review-note p {
  margin: 0;
  font-size: 12px;
}

.app-flow {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 72px;
  padding: 34px 40px;
  color: var(--paper);
  background: var(--ink);
}

.app-flow > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
}

.app-flow span {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.app-flow strong {
  line-height: 1.35;
}

.app-flow small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
}

.app-flow > svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.35);
}

.trust-section {
  background: var(--canvas);
}

.section-heading.centered {
  display: flex;
  max-width: 820px;
  align-items: center;
  flex-direction: column;
  gap: 0;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-bottom: 18px;
}

.section-heading.centered h2 {
  max-width: 820px;
}

.section-heading.centered > p:last-child {
  max-width: 660px;
  margin-top: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
  border-top: 1px solid #d6d6ce;
  border-bottom: 1px solid #d6d6ce;
}

.trust-item {
  display: flex;
  min-height: 156px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid #d6d6ce;
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  font-size: 32px;
  font-weight: 900;
}

.trust-item span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  padding: 84px 0;
  color: var(--paper);
  background: var(--ink);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-inner .eyebrow {
  margin-bottom: 14px;
}

.cta-inner h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.22;
}

.cta-inner .button {
  min-width: 180px;
  flex: 0 0 auto;
}

.site-footer {
  color: var(--paper);
  background: #0c0c0a;
}

.footer-top {
  display: flex;
  min-height: 164px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.58);
  opacity: 1;
}

.footer-company {
  display: flex;
  max-width: 440px;
  flex-direction: column;
}

.footer-company p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-company p + p {
  margin-top: 4px;
}

.footer-company p a:hover {
  color: var(--yellow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 62px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-bottom > :last-child {
  justify-self: end;
}

.footer-registration {
  justify-self: center;
  color: rgba(255, 255, 255, 0.58);
}

.footer-registration:hover {
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
    order: 2;
  }

  .header-action {
    display: none;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 78px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 24px 28px;
    overflow-y: auto;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .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);
  }

  .hero-copy {
    width: min(640px, 78%);
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 18px;
  }

  .section-heading > p:last-child {
    max-width: 680px;
    margin-top: 22px;
  }

  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .workflow-intro {
    position: static;
  }

  .app-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .app-card {
    max-width: 680px;
  }

  .app-flow {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .app-flow > svg {
    margin-left: 10px;
    transform: rotate(90deg);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

  .primary-nav {
    top: 70px;
    max-height: calc(100svh - 70px);
  }

  .hero {
    min-height: max(610px, calc(100svh - 40px));
  }

  .hero-media {
    background-position: 61% center;
  }

  .hero-scrim {
    background: rgba(18, 18, 15, 0.58);
  }

  .hero-inner {
    align-items: flex-end;
    padding-top: 110px;
    padding-bottom: 58px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 28px;
  }

  .hero-description {
    max-width: 520px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    min-width: 0;
    padding: 0 12px;
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .capability-grid > div {
    min-height: 64px;
    border-bottom: 1px solid rgba(23, 23, 20, 0.16);
    font-size: 14px;
  }

  .capability-grid > div:nth-child(2) {
    border-right: 0;
  }

  .capability-grid > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .workflow-intro h2 {
    font-size: 34px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 0;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 30px 24px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }

  .service-icon svg {
    width: 24px;
    height: 24px;
  }

  .service-item h3 {
    font-size: 21px;
  }

  .workflow-layout {
    gap: 42px;
  }

  .workflow-list li {
    min-height: 144px;
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .workflow-list > li > svg {
    display: none;
  }

  .workflow-list h3 {
    font-size: 20px;
  }

  .app-intro h2 {
    font-size: 40px;
  }

  .app-features {
    grid-template-columns: 1fr;
  }

  .app-actions {
    display: grid;
  }

  .app-actions .button {
    width: 100%;
  }

  .app-card {
    padding: 26px 22px;
  }

  .app-identity {
    align-items: flex-start;
    gap: 18px;
  }

  .app-identity img {
    width: 78px;
    height: 78px;
    border-radius: 16px;
  }

  .app-identity strong {
    font-size: 23px;
  }

  .app-meta > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .app-flow {
    gap: 20px;
    margin-top: 48px;
    padding: 28px 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    min-height: 126px;
    border-bottom: 1px solid #d6d6ce;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-bottom: 0;
  }

  .trust-item strong {
    font-size: 27px;
  }

  .cta-section {
    padding: 66px 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .cta-inner .button {
    width: 100%;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .footer-links {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    justify-content: start;
    gap: 16px 24px;
  }

  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 16px 0;
  }

  .footer-bottom > :last-child,
  .footer-registration {
    align-self: flex-start;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
