:root {
  --ink: #15213d;
  --ink-soft: #44506c;
  --blue: #2455d6;
  --blue-dark: #173b9f;
  --coral: #f15f4b;
  --coral-dark: #c73f31;
  --yellow: #f4d64d;
  --sky: #dff3ff;
  --sky-strong: #a9dcf5;
  --lilac: #ece9ff;
  --paper: #ffffff;
  --paper-blue: #f6faff;
  --line: #15213d;
  --line-soft: #c9d4ec;
  --focus: #ff3d72;
  --shell: 1200px;
  --shadow-offset: 9px 9px 0 var(--ink);
  --shadow-small: 5px 5px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper-blue);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  overflow-x: clip;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  line-height: 1.3;
  letter-spacing: 0.01em;
  word-break: auto-phrase;
  text-wrap: balance;
}

ul,
ol {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  min-height: 44px;
  padding: 9px 16px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--paper);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: relative;
  z-index: 10;
  background: rgb(255 255 255 / 96%);
  border-bottom: 3px solid var(--ink);
}

.site-header::after {
  position: absolute;
  right: 7%;
  bottom: -10px;
  width: 110px;
  height: 14px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  content: "";
  transform: rotate(-2deg);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 92px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 52px;
  text-decoration: none;
}

.wordmark__main {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.wordmark__sub {
  color: var(--coral-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.site-header__role {
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
  border-left: 2px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 760;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 50px;
  padding: 12px 22px;
  color: var(--paper);
  background: var(--blue-dark);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-small);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition:
    box-shadow 140ms ease,
    transform 140ms ease,
    background-color 140ms ease;
}

.button:hover {
  background: var(--blue);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.button--small {
  max-width: 340px;
  color: var(--ink);
  background: var(--yellow);
}

.button--small:hover {
  background: #ffe46c;
}

.button--primary {
  min-height: 58px;
  padding: 15px 27px;
  font-size: 1rem;
}

.button--wide {
  width: 100%;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(36 85 214 / 7%) 1px, transparent 1px),
    linear-gradient(rgb(36 85 214 / 7%) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  border-bottom: 3px solid var(--ink);
}

.hero::before {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: var(--sky);
  border: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
  min-height: 690px;
  padding-block: clamp(86px, 10vw, 132px);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 12em;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.8vw, 5.8rem);
  letter-spacing: -0.045em;
  line-height: 1.13;
}

.hero h1 span {
  display: block;
  color: var(--blue-dark);
}

.hero__lead {
  max-width: 48rem;
  margin-bottom: 18px;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  font-weight: 680;
}

.hero__note {
  max-width: 45rem;
  margin-bottom: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  border-left: 4px solid var(--coral);
}

.hero__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 34px;
}

.hero__action small {
  color: var(--ink-soft);
  font-weight: 700;
}

.funnel-map {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 42px);
  background: rgb(255 255 255 / 94%);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-offset);
  transform: rotate(1deg);
}

.funnel-map__label {
  margin-bottom: 24px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.funnel-map ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.funnel-map li {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  min-height: 78px;
}

.funnel-map li:not(:last-child)::after {
  position: absolute;
  top: 60px;
  bottom: -18px;
  left: 23px;
  width: 3px;
  background: var(--sky-strong);
  content: "";
}

.funnel-map li span {
  display: grid;
  z-index: 1;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--paper);
  background: var(--blue-dark);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.funnel-map li strong {
  font-size: 1.08rem;
}

.funnel-map__note {
  margin: 22px 0 0;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.section {
  padding-block: clamp(82px, 10vw, 132px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading--wide {
  max-width: 900px;
}

.section-heading h2,
.operator-content h2,
.contact-section h2,
.faq-heading h2,
.sample-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.problem-section {
  background: var(--paper-blue);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-grid li {
  position: relative;
  min-height: 96px;
  padding: 24px 24px 24px 62px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--line-soft);
  font-weight: 680;
}

.problem-grid li::before {
  position: absolute;
  top: 24px;
  left: 22px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--paper);
  background: var(--coral-dark);
  border-radius: 50%;
  content: "?";
  font-size: 0.85rem;
  font-weight: 900;
}

.section-callout {
  margin: 34px 0 0;
  padding: 25px 28px;
  color: var(--paper);
  background: var(--ink);
  border-left: 10px solid var(--yellow);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 850;
}

.journey-section {
  background: var(--paper);
}

.journey-flow {
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-offset);
}

.journey-flow ol {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-flow li {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 126px;
  padding: 22px 13px;
  place-items: center;
  color: var(--ink);
  background: var(--paper-blue);
  border-right: 2px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
}

.journey-flow li:nth-child(even) {
  background: var(--sky);
}

.journey-flow li:last-child {
  border-right: 0;
  color: var(--paper);
  background: var(--blue-dark);
}

.journey-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  right: -12px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--paper);
  background: var(--coral-dark);
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "→";
  font-size: 0.72rem;
}

.journey-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  margin-top: 54px;
}

.journey-detail__label {
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 850;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  min-height: 44px;
  padding: 8px 15px;
  background: var(--paper-blue);
  border: 2px solid var(--line-soft);
  font-size: 0.88rem;
  font-weight: 750;
}

.hypothesis-note {
  padding: 28px;
  color: var(--paper);
  background: var(--blue-dark);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
}

.hypothesis-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.hypothesis-note p {
  margin-bottom: 0;
}

.boundary-note {
  margin: 34px 0 0;
  padding: 20px 24px;
  background: var(--lilac);
  border-left: 6px solid var(--blue);
  font-weight: 850;
}

.principles-section {
  color: var(--paper);
  background: var(--ink);
}

.principles-section .eyebrow {
  color: var(--yellow);
}

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

.principle-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 42px);
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--paper);
}

.principle-card--blue {
  background: var(--sky);
}

.principle-card--coral {
  background: #ffdcd6;
}

.principle-card__number {
  margin-bottom: 36px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.principle-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.principle-card p:last-child {
  margin-bottom: 0;
}

.principles-summary {
  max-width: 900px;
  margin: 38px 0 0;
  padding-left: 20px;
  border-left: 5px solid var(--coral);
  font-size: 1.08rem;
  font-weight: 760;
}

.operator-section {
  background:
    linear-gradient(90deg, rgb(36 85 214 / 6%) 1px, transparent 1px),
    linear-gradient(rgb(36 85 214 / 6%) 1px, transparent 1px),
    var(--paper-blue);
  background-size: 28px 28px;
}

.operator-section__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.operator-mark {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-offset);
  transform: rotate(-2deg);
}

.operator-mark span {
  color: var(--blue-dark);
  font-size: clamp(7rem, 13vw, 11rem);
  font-weight: 950;
  line-height: 0.9;
  text-shadow: 6px 6px 0 var(--yellow);
}

.operator-mark small {
  margin-top: 24px;
  color: var(--coral-dark);
  font-weight: 900;
  letter-spacing: 0.22em;
}

.operator-content__lead {
  font-size: 1.12rem;
  font-weight: 780;
}

.operator-quote {
  margin: 32px 0;
  padding: 26px 28px;
  color: var(--paper);
  background: var(--blue-dark);
  border-left: 8px solid var(--yellow);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 850;
}

.sample-section {
  background: var(--paper);
}

.sample-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px 60px;
  align-items: center;
  padding: clamp(34px, 6vw, 64px);
  background: var(--paper-blue);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-offset);
}

.sample-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.sample-disclosure {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.sample-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 52px;
  padding: 13px 20px;
  color: var(--blue-dark);
  background: var(--paper);
  border: 3px solid var(--blue-dark);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition:
    color 140ms ease,
    background-color 140ms ease,
    transform 140ms ease;
}

.sample-link:hover {
  color: var(--paper);
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.process-section {
  background: var(--paper-blue);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-width: 0;
  min-height: 190px;
  padding: 24px 18px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.process-list li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: -13px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--paper);
  background: var(--coral-dark);
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "→";
  font-size: 0.72rem;
  font-weight: 900;
}

.process-list span,
.process-list strong,
.process-list small {
  display: block;
}

.process-list span {
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.process-list strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.process-list small {
  color: var(--ink-soft);
}

.contact-section {
  padding-block: clamp(82px, 10vw, 126px);
  color: var(--paper);
  background: var(--blue-dark);
  border-block: 3px solid var(--ink);
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
}

.contact-section h2 {
  font-size: clamp(2.1rem, 4.3vw, 3.8rem);
}

.contact-section__layout > div:first-child > p:last-child {
  margin-bottom: 0;
  color: #e5ebff;
}

.contact-card {
  padding: 30px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--yellow);
}

.contact-card p {
  margin: 24px 0 8px;
  font-weight: 800;
}

.contact-card small {
  display: block;
  color: var(--ink-soft);
}

.faq-section {
  background: var(--paper);
}

.faq-section__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(42px, 8vw, 108px);
}

.faq-heading {
  align-self: start;
}

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

.faq-list summary {
  position: relative;
  min-height: 60px;
  padding: 20px 50px 20px 0;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 8px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--paper);
  background: var(--blue-dark);
  border-radius: 50%;
  content: "+";
  font-size: 1.2rem;
}

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

.faq-list details p {
  margin: -2px 0 22px;
  padding-right: 50px;
  color: var(--ink-soft);
}

.site-footer {
  padding-block: 48px;
  color: var(--paper);
  background: var(--ink);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr) auto;
  gap: 34px;
  align-items: center;
}

.site-footer__name,
.site-footer__english,
.site-footer__details p {
  margin-bottom: 0;
}

.site-footer__name {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-footer__english {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.site-footer__details {
  color: #dce4f5;
  font-size: 0.82rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-end;
}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    gap: 48px;
  }

  .journey-flow ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .journey-flow li:nth-child(4) {
    border-right: 0;
  }

  .journey-flow li:nth-child(4)::after {
    display: none;
  }

  .journey-flow li:nth-child(-n + 4) {
    border-bottom: 2px solid var(--ink);
  }

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

  .process-list li:nth-child(3)::after {
    display: none;
  }
}

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

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding-block: 13px;
  }

  .site-header__role {
    display: none;
  }

  .hero::before {
    top: auto;
    right: -180px;
    bottom: -190px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 68px;
    min-height: 0;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 10em;
    font-size: clamp(3rem, 10vw, 5.2rem);
  }

  .funnel-map {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .journey-detail,
  .operator-section__layout,
  .sample-card,
  .contact-section__layout,
  .faq-section__layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .principle-card__number {
    margin-bottom: 20px;
  }

  .operator-mark {
    width: min(100%, 340px);
    min-height: 230px;
  }

  .sample-link {
    justify-self: start;
  }

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

  .site-footer__nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

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

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

  .button--small {
    width: 100%;
    max-width: none;
  }

  .hero__layout {
    gap: 54px;
    padding-block: 66px 92px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12.4vw, 3.8rem);
  }

  .hero__action,
  .hero__action .button {
    width: 100%;
  }

  .funnel-map {
    padding: 24px 20px;
    box-shadow: 6px 6px 0 var(--ink);
    transform: none;
  }

  .problem-grid,
  .process-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .problem-grid li {
    min-height: 0;
    padding: 21px 20px 21px 56px;
  }

  .problem-grid li::before {
    top: 21px;
    left: 18px;
  }

  .journey-flow ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .journey-flow li {
    min-height: 64px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .journey-flow li:nth-child(-n + 7) {
    border-bottom: 2px solid var(--ink);
  }

  .journey-flow li:last-child {
    border-bottom: 0;
  }

  .journey-flow li:not(:last-child)::after {
    right: auto;
    bottom: -13px;
    content: "↓";
  }

  .journey-flow li:nth-child(4)::after {
    display: grid;
  }

  .tag-list li {
    width: 100%;
  }

  .principle-card,
  .hypothesis-note,
  .contact-card {
    padding: 25px 22px;
  }

  .sample-card {
    padding: 28px 22px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .sample-link {
    width: 100%;
  }

  .process-list li {
    min-height: 0;
  }

  .process-list li::after {
    display: none;
  }

  .process-list span {
    margin-bottom: 16px;
  }

  .section-heading h2,
  .operator-content h2,
  .contact-section h2,
  .faq-heading h2,
  .sample-card h2 {
    font-size: clamp(2rem, 10.2vw, 3rem);
  }

  .faq-list summary {
    padding-right: 44px;
  }

  .faq-list details p {
    padding-right: 0;
  }

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

  .site-footer__nav {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(2.15rem, 11.8vw, 3.1rem);
  }

  .wordmark__main {
    font-size: 1.2rem;
  }

  .button {
    padding-inline: 15px;
  }
}

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

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