:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #51606f;
  --paper: #f6f8f7;
  --white: #ffffff;
  --line: rgba(16, 24, 32, 0.12);
  --black: #05070a;
  --cyan: #00b8d9;
  --green: #43d17a;
  --magenta: #d84f8f;
  --amber: #f0b84a;
  --shadow: 0 22px 60px rgba(5, 7, 10, 0.14);
  font-family: "Inter", "Noto Sans JP", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 12px;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
  padding: 0 40px;
  color: var(--white);
  transition: background 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 248, 247, 0.88);
  box-shadow: 0 12px 30px rgba(5, 7, 10, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: #05070c;
  box-shadow: 0 10px 24px rgba(0, 229, 255, 0.14);
  line-height: 1;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-size: 19px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a,
.header-call {
  position: relative;
}

.site-nav a::after,
.header-call::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.header-call:hover::after,
.header-call:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  overflow: hidden;
  color: var(--white);
  background: #05070a;
  isolation: isolate;
}

.flux-canvas,
.contact-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.scanline {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.46;
  background:
    linear-gradient(112deg, transparent 0 44%, rgba(67, 209, 122, 0.13) 45%, transparent 47%),
    linear-gradient(112deg, transparent 0 58%, rgba(0, 184, 217, 0.1) 59%, transparent 61%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-position: 0 0, 120px 0, 0 0;
  background-size: 240px 100%, 360px 100%, 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}

.hero-content {
  width: min(1120px, calc(100% - 48px));
  margin: auto auto 0;
  padding: 142px 0 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1020px;
  margin: 0;
  font-size: 68px;
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 820px;
  margin-top: 24px;
}

.keyword-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #04110a;
  background: var(--green);
  box-shadow: 0 18px 44px rgba(67, 209, 122, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.hero-metrics div {
  position: relative;
  min-height: 156px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
}

.hero-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
}

.hero-metrics p {
  max-width: 280px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.metric-bar {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.metric-bar::before,
.metric-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: inherit;
}

.metric-bar::before {
  left: 0;
  width: 68%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 18px rgba(63, 226, 192, 0.5);
}

.metric-bar::after {
  left: -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  animation: metricSweep 2.9s linear infinite;
}

.hero-metrics div:nth-child(2) .metric-bar::before {
  width: 78%;
}

.hero-metrics div:nth-child(3) .metric-bar::before {
  width: 58%;
}

@keyframes metricSweep {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(410%);
  }
}

.section {
  padding: 104px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  position: relative;
  display: grid;
  max-width: 920px;
  align-items: start;
  justify-content: start;
  gap: 10px;
  margin-bottom: 42px;
  padding: 0 0 0 24px;
}

.section-heading::before {
  position: absolute;
  top: 2px;
  bottom: 4px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(180deg, var(--cyan), var(--green));
  box-shadow: 0 0 24px rgba(0, 184, 217, 0.28);
}

.section-heading::after {
  width: 88px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--green), transparent);
}

.section-heading .section-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin: 0;
  border: 1px solid rgba(0, 184, 217, 0.24);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(0, 184, 217, 0.08);
}

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

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.18;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.42;
}

p {
  margin: 0;
}

.intro-band {
  padding: 46px 0;
  color: var(--white);
  background: #101820;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 52px;
  align-items: start;
}

.intro-grid h2 {
  font-size: 34px;
}

.intro-grid p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.section-light {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 32, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

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

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

.problem-card,
.keyword-card,
.faq-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.problem-card {
  min-height: 230px;
  border: 1px solid var(--line);
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(0, 184, 217, 0.08), transparent 44%),
    rgba(246, 248, 247, 0.74);
}

.problem-card span,
.keyword-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.problem-card span {
  color: var(--cyan);
  background: rgba(0, 184, 217, 0.1);
}

.problem-card h3,
.keyword-card h3 {
  margin-top: 18px;
}

.problem-card p {
  margin-top: 14px;
  color: var(--muted);
}

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

.service-card,
.value-item {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::before,
.value-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--magenta), var(--amber));
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-card:hover,
.value-item:hover {
  border-color: rgba(0, 184, 217, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card:hover::before,
.value-item:hover::before {
  transform: scaleX(1);
}

.service-index {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.service-card p,
.value-item p {
  margin-top: 16px;
  color: var(--muted);
}

.keyword-card {
  min-height: 252px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(67, 209, 122, 0.11), transparent 48%),
    rgba(255, 255, 255, 0.05);
}

.keyword-card span {
  color: #04110a;
  background: var(--green);
}

.keyword-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.industries-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.industries-lead {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 600;
}

.industry-list {
  display: grid;
  gap: 12px;
}

.industry-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.04);
}

.industry-item strong {
  font-size: 18px;
}

.industry-item span {
  color: var(--muted);
  font-weight: 700;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 10%, rgba(0, 184, 217, 0.18), transparent 32%),
    linear-gradient(135deg, #070a0f 0%, #101820 58%, #07130d 100%);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: stretch;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: method;
}

.timeline li {
  position: relative;
  min-height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 24px 24px 24px 82px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.timeline li::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(67, 209, 122, 0.7);
  border-radius: 8px;
  color: var(--green);
  content: counter(method, decimal-leading-zero);
  counter-increment: method;
  font-size: 12px;
  font-weight: 900;
}

.timeline span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.timeline p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.signal-panel {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 488px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: 44px 44px;
}

.signal-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(67, 209, 122, 0.18));
  animation: signalRise 4.8s ease-in-out infinite alternate;
}

.signal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.signal-grid span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.16);
}

.signal-panel p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-item {
  min-height: auto;
}

.faq-section {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 32, 0.04) 1px, transparent 1px),
    var(--white);
  background-size: 64px 64px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.04);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

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

.faq-item summary::after {
  float: right;
  color: var(--cyan);
  content: "+";
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  border-top: 1px solid var(--line);
  padding: 18px 0 22px;
  color: var(--muted);
}

.company-section {
  color: var(--white);
  background: #101820;
}

.company-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.company-lead {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.company-table {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.company-table div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.company-table dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 900;
}

.company-table dd {
  margin: 0;
  font-weight: 700;
}

.company-table a {
  color: var(--green);
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #05070a;
  isolation: isolate;
}

.contact-inner {
  position: relative;
  padding: 110px 0;
}

.contact-inner h2 {
  max-width: none;
  white-space: nowrap;
}

.contact-inner p:not(.section-kicker) {
  max-width: none;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  white-space: nowrap;
}

.contact-call {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 54px rgba(0, 184, 217, 0.14);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-actions .contact-call {
  margin-top: 0;
}

.contact-call:hover,
.contact-call:focus-visible {
  background: rgba(67, 209, 122, 0.14);
  transform: translateY(-3px);
}

.contact-call span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.contact-call strong {
  color: var(--green);
  font-size: 26px;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #05070a;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: flex;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: var(--white);
}

.copyright {
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes signalRise {
  from {
    transform: translateY(22%);
  }
  to {
    transform: translateY(-6%);
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
    padding: 0 24px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-metrics,
  .problem-grid,
  .service-grid,
  .keyword-grid,
  .intro-grid,
  .industries-layout,
  .method-layout,
  .split-section,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .industry-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .signal-panel {
    min-height: 360px;
  }

  h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    gap: 12px;
    padding: 0 16px;
  }

  .brand-text {
    font-size: 17px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-call {
    font-size: 12px;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-content,
  .section-inner,
  .footer-inner {
    width: min(100% - 32px, 1120px);
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .keyword-strip {
    margin-top: 20px;
  }

  .keyword-strip span {
    min-height: 32px;
    font-size: 11px;
  }

  .hero-metrics {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .hero-metrics div {
    min-height: 148px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-metrics p {
    max-width: none;
    font-size: 12px;
  }

  .metric-bar {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 32px;
    padding-left: 18px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 19px;
  }

  .intro-grid h2 {
    font-size: 28px;
  }

  .service-card {
    min-height: 232px;
  }

  .problem-card,
  .keyword-card {
    min-height: auto;
    padding: 22px;
  }

  .industry-item {
    padding: 18px;
  }

  .faq-item {
    padding: 0 18px;
  }

  .faq-item summary {
    font-size: 16px;
  }

  .timeline li {
    padding: 72px 20px 22px;
  }

  .timeline li::before {
    top: 20px;
    left: 20px;
  }

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

  .company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-inner {
    padding: 78px 0;
  }

  .contact-inner h2 {
    white-space: normal;
  }

  .contact-inner p:not(.section-kicker) {
    white-space: normal;
  }

  .contact-call {
    display: flex;
    width: 100%;
    min-height: 84px;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
  }

  .contact-call strong {
    font-size: 22px;
  }

  .footer-inner {
    display: grid;
  }
}

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

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