:root {
  --ink: #162237;
  --ink-strong: #0d1829;
  --muted: #5f6f86;
  --quiet: #718097;
  --line: #dce2eb;
  --line-strong: #c9d2df;
  --paper: #ffffff;
  --surface: #f7f9fc;
  --blue: #2454ff;
  --blue-dark: #173dd1;
  --blue-soft: #edf2ff;
  --yellow: #f5d90a;
  --shell: 1180px;
  --shadow: 0 16px 38px rgba(22, 34, 55, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(36, 84, 255, 0.42);
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: var(--ink-strong);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand img {
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #46566e;
  font-size: 14px;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.header-action {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--ink);
}

.button--primary:hover {
  background: #233651;
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.button--secondary:hover {
  border-color: #9cacbf;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 88px;
  background: var(--surface);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: -180px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: var(--blue-soft);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(500px, 1.07fr);
  align-items: center;
  gap: 68px;
}

.hero__category,
.section-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2.9rem, 3.7vw, 3.7rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span + span {
  margin-top: 10px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.hero__facts li + li::before {
  margin: 0 12px;
  color: #a3afbf;
  content: "·";
}

.product-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-shot--hero {
  transform: translateY(8px);
}

.window-bar {
  display: flex;
  height: 39px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  color: var(--quiet);
  font-size: 12px;
}

.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aab7c8;
}

.window-bar strong {
  margin-left: 5px;
  font-weight: 600;
}

.hero-sequence {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1442 / 923;
  background: #f7f9fc;
}

.hero-sequence__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: hero-sequence 12s linear infinite;
  pointer-events: none;
  will-change: opacity;
}

.hero-sequence__frame:nth-child(2) {
  animation-delay: -8s;
}

.hero-sequence__frame:nth-child(3) {
  animation-delay: -4s;
}

.hero-sequence__frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sequence__frame--agent > img {
  transform: scale(1.24);
}

.hero-sequence__frame--input {
  background: #f7f9fc;
}

.hero-sequence__frame--input .hero-sequence__context {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-sequence__frame--input .hero-sequence__focus {
  position: absolute;
  right: 18px;
  bottom: 28px;
  left: 18px;
  width: calc(100% - 36px);
  height: auto;
  padding-block: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(22, 34, 55, 0.18);
}

@keyframes hero-sequence {
  0%,
  27% {
    opacity: 1;
  }

  33%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.section {
  padding: 112px 0;
}

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

.section-heading--centered {
  max-width: 720px;
  text-align: center;
}

.section-heading .section-label {
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-heading h2,
.faq h2,
.release h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.section-heading > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.how {
  background: #fff;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.how__steps li {
  min-width: 0;
  padding: 4px 50px 2px;
  text-align: center;
}

.how__steps li + li {
  border-left: 1px solid var(--line);
}

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink-strong);
}

.step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.how__steps h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.how__steps p {
  max-width: 280px;
  margin: 9px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.templates {
  background: var(--surface);
}

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

.template-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: -24px;
  margin-bottom: 28px;
}

.template-toolbar p {
  display: flex;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.template-toolbar p strong {
  color: var(--ink-strong);
}

.template-toggle {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border-radius: 9px;
  background: #e8edf4;
}

.template-toggle button {
  min-height: 36px;
  cursor: pointer;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  color: #5b6b81;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.template-toggle button.is-active {
  color: var(--ink-strong);
  background: #fff;
  box-shadow: 0 1px 4px rgba(22, 34, 55, 0.12);
}

.template-card {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  cursor: zoom-in;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.template-card:hover {
  border-color: #b9c5d5;
  box-shadow: 0 12px 28px rgba(22, 34, 55, 0.08);
  transform: translateY(-3px);
}

.template-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #fbfbfc;
}

.template-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.template-card__backend {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #42536a;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 5px rgba(22, 34, 55, 0.12);
  font-size: 10px;
  font-weight: 750;
  backdrop-filter: blur(6px);
}

.template-card__content {
  display: block;
  min-height: 92px;
  padding: 16px 17px 18px;
}

.template-card__content strong,
.template-card__content span {
  display: block;
}

.template-card__content strong {
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 750;
}

.template-card__content span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.template-fallback {
  color: var(--muted);
  text-align: center;
}

.template-dialog {
  width: min(calc(100% - 40px), 1120px);
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 32px 90px rgba(13, 24, 41, 0.3);
}

.template-dialog::backdrop {
  background: rgba(13, 24, 41, 0.58);
  backdrop-filter: blur(5px);
}

.template-dialog__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px 20px;
}

.template-dialog__header span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.template-dialog__header h2 {
  margin: 2px 0 0;
  color: var(--ink-strong);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.template-dialog__header p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.template-dialog__header button {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  cursor: pointer;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  font-size: 25px;
  line-height: 1;
}

.template-dialog__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.template-dialog__compare figure {
  margin: 0;
  background: #fff;
}

.template-dialog__compare figcaption {
  padding: 11px 16px;
  color: #42536a;
  background: #f6f8fb;
  font-size: 12px;
  font-weight: 750;
}

.template-dialog__compare img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.template-dialog__provenance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 15px 26px 18px;
  color: var(--muted);
  font-size: 12px;
}

.template-dialog__provenance a {
  margin-left: auto;
  color: var(--blue);
  font-weight: 700;
}

.template-index {
  margin-top: 42px;
  text-align: center;
}

.template-index summary {
  display: inline-flex;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 7px;
  color: #fff;
  background: var(--ink-strong);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  transition: background-color 160ms ease;
}

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

.template-index summary::after {
  margin-left: 9px;
  content: "+";
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.template-index[open] summary::after {
  content: "−";
}

.template-index summary:hover {
  background: #233651;
}

.template-index__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  background: #fff;
  text-align: left;
}

.template-index__list span {
  padding: 13px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #43536a;
  font-size: 13px;
}

.template-index__note {
  margin: 14px 0 0;
  color: var(--quiet);
  font-size: 12px;
}

.faq {
  background: var(--surface);
}

.faq__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: 96px;
}

.faq__heading {
  position: sticky;
  top: 116px;
}

.faq__heading p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq__heading a {
  color: var(--ink-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #b8c3d1;
  text-underline-offset: 4px;
}

.faq__heading a:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

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

.faq__item {
  border-bottom: 1px solid var(--line-strong);
}

.faq__item summary {
  position: relative;
  cursor: pointer;
  padding: 24px 52px 24px 0;
  color: var(--ink-strong);
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.015em;
  list-style: none;
}

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

.faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 28px;
  height: 28px;
  color: var(--muted);
  content: "+";
  font-size: 24px;
  font-weight: 350;
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item summary:hover,
.faq__item[open] summary {
  color: var(--blue);
}

.faq__item > p {
  max-width: 720px;
  margin: -4px 0 0;
  padding: 0 52px 26px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: -13px 0 26px;
  padding-right: 52px;
}

.faq__links a {
  cursor: pointer;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.faq__links a::after {
  margin-left: 4px;
  content: "↗";
}

.faq__links a:hover {
  color: var(--blue-dark);
  text-decoration-color: currentColor;
}

.faq__resources {
  display: grid;
  gap: 8px;
  margin: -13px 0 26px;
  padding-right: 52px;
}

.faq__resource-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.faq__resource-row > span {
  flex: 0 0 82px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.faq__resources .faq__links {
  margin: 0;
  padding: 0;
}

.release {
  color: #fff;
  background: var(--ink-strong);
}

.release__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 90px;
}

.release__status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #c7d2e3;
  font-size: 13px;
  font-weight: 650;
}

.release__status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(245, 217, 10, 0.12);
}

.release h2 {
  color: #fff;
}

.release__copy > p:not(.release__status) {
  max-width: 520px;
  margin: 22px 0 0;
  color: #b8c5d7;
  font-size: 16px;
}

.release__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

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

.button--light:hover {
  background: #edf2f9;
}

.text-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 160ms ease;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.text-link--light {
  color: #dce5f2;
}

.requirements {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.requirements div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.requirements dt {
  color: #8fa0b8;
  font-size: 13px;
}

.requirements dd {
  margin: 0;
  color: #edf2f9;
  font-size: 14px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  color: var(--quiet);
  font-size: 12px;
}

.brand--footer {
  font-size: 15px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a:hover {
  color: var(--ink);
}

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

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 84px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 740px;
  }

  .product-shot--hero {
    transform: none;
  }

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

  .how__steps li {
    padding-inline: 32px;
  }

  .faq__inner,
  .release__inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .faq__heading {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    height: 64px;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 15px;
  }

  .hero {
    padding: 72px 0 58px;
  }

  .hero::after {
    top: 320px;
    right: -260px;
    width: 540px;
    height: 540px;
  }

  .hero__inner {
    gap: 46px;
  }

  .hero__category {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
    letter-spacing: -0.06em;
  }

  .hero h1 span + span {
    margin-top: 7px;
  }

  .hero__actions {
    margin-top: 32px;
  }

  .hero__facts {
    margin-top: 23px;
  }

  .window-bar {
    height: 34px;
  }

  .section {
    padding: 80px 0;
  }

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

  .section-heading h2,
  .faq h2,
  .release h2 {
    font-size: 2.05rem;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how__steps li {
    padding: 34px 12px;
  }

  .how__steps li:first-child {
    padding-top: 0;
  }

  .how__steps li:last-child {
    padding-bottom: 0;
  }

  .how__steps li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .template-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -12px;
  }

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

  .template-dialog__provenance {
    flex-direction: column;
  }

  .template-dialog__provenance a {
    margin-left: 0;
  }

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

  .faq__inner,
  .release__inner {
    gap: 42px;
  }

  .faq__item summary {
    padding-block: 22px;
    font-size: 16px;
  }

  .faq__item > p {
    padding-right: 32px;
    font-size: 14px;
  }

  .faq__links {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -12px;
    padding-right: 32px;
  }

  .faq__resources {
    margin-top: -12px;
    padding-right: 32px;
  }

  .faq__resource-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .faq__resource-row > span {
    flex-basis: auto;
  }

  .release__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .requirements div {
    grid-template-columns: 94px 1fr;
    gap: 16px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 8px;
    font-size: 16px;
  }

  .brand img {
    width: 25px;
    height: 25px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero__facts li + li::before {
    display: none;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-sequence__frame {
    animation: none;
  }

  .hero-sequence__frame:first-child {
    opacity: 1;
  }

  .hero-sequence__frame:not(:first-child) {
    display: none;
  }

}
