:root {
  color-scheme: light;
  --brand-900: #0b4f3a;
  --brand-800: #0d5b43;
  --brand-700: #116b4f;
  --text-900: #163b31;
  --text-700: #425f55;
  --text-500: #5f736b;
  --surface: #ffffff;
  --surface-subtle: #f4f7f5;
  --surface-tint: #edf4f0;
  --surface-footer: #e6efea;
  --line: #d7e1dc;
  --line-strong: #afc0b8;
  --accent-gold: #c6ac32;
  --accent-red: #a84336;
  --accent-teal: #176c73;
  --error: #a84336;
  --header-height: 76px;
  --page-gutter: 32px;
  --content-width: 1240px;
  --shadow-dialog: 0 28px 80px rgba(11, 79, 58, 0.24);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text-900);
  background: var(--surface);
  font-family: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body:has(.trace-dialog[open]) {
  overflow: hidden;
}

main {
  padding-top: var(--header-height);
}

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

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

figure,
ol,
ul,
dl,
dd {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--surface);
  background: var(--brand-700);
}

:focus-visible {
  outline: 2px solid var(--brand-700);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(17, 107, 79, 0.16);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 14px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--brand-700);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  margin-right: auto;
  margin-left: auto;
}

.section {
  padding: 72px 0;
}

.button {
  min-height: 48px;
  padding: 11px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  color: var(--surface);
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--brand-900);
  border-color: var(--brand-900);
}

.button--secondary,
.button--outline {
  color: var(--brand-900);
  background: transparent;
  border-color: var(--brand-700);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--outline:hover,
.button--outline:focus-visible {
  color: var(--surface);
  background: var(--brand-700);
}

/* Header */
.site-header {
  height: var(--header-height);
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(320px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.site-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-brand__mark {
  width: 44px;
  height: 43px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-brand__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.site-brand__copy strong {
  color: var(--text-900);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.site-brand__copy small {
  color: var(--text-500);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.site-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
}

.site-nav > a {
  padding: 10px 0;
  color: var(--text-700);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-active {
  color: var(--brand-900);
  text-decoration-color: var(--brand-700);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  place-items: center;
  color: var(--brand-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}

.menu-toggle__lines {
  width: 18px;
  height: 14px;
  position: relative;
  display: block;
}

.menu-toggle__lines span {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: currentColor;
  transition: top 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.menu-toggle__lines span:nth-child(1) { top: 0; }
.menu-toggle__lines span:nth-child(2) { top: 6px; }
.menu-toggle__lines span:nth-child(3) { top: 12px; }

.menu-toggle.is-open .menu-toggle__lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle__lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Trace query hero */
.trace-hero {
  min-height: min(520px, calc(100svh - var(--header-height) - 32px));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface-tint);
}

.trace-hero__media {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 52%;
  filter: brightness(1.04) saturate(0.9);
}

.trace-hero__inner {
  padding: 44px 0;
  position: relative;
  z-index: 1;
}

.trace-hero__query {
  width: min(600px, 100%);
  padding: 30px 34px 28px;
  color: var(--text-900);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 52px rgba(20, 66, 51, 0.14);
  backdrop-filter: blur(10px);
}

.trace-hero__query h1 {
  margin: 0;
  color: var(--brand-900);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

.trace-hero__query > p:first-of-type {
  max-width: 500px;
  margin: 12px 0 0;
  color: var(--text-700);
  font-size: 15px;
  line-height: 1.75;
}

.hero-trace-form {
  margin-top: 22px;
}

.hero-trace-form > label {
  display: block;
  color: var(--text-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-trace-form__control {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
}

.hero-trace-form__control input {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 16px;
  color: var(--text-900);
  background: #f9fbfa;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 15px;
  line-height: 1.5;
}

.hero-trace-form__control input::placeholder {
  color: #71847c;
}

.hero-trace-form__control input:focus {
  border-color: var(--brand-700);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(17, 107, 79, 0.16);
}

.hero-trace-form__control button {
  height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--surface);
  background: var(--brand-700);
  border: 1px solid var(--brand-700);
  border-radius: 2px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.hero-trace-form__control button:hover,
.hero-trace-form__control button:focus-visible {
  color: var(--surface);
  background: var(--brand-900);
  border-color: var(--brand-900);
}

.trace-search-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.trace-search-icon::after {
  width: 7px;
  height: 2px;
  position: absolute;
  right: -5px;
  bottom: -2px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.hero-trace-form > p {
  margin: 9px 0 0;
  color: var(--text-500);
  font-size: 12px;
  line-height: 1.6;
}

.hero-trace-form > p button {
  padding: 0;
  color: var(--brand-700);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: inherit;
  font-weight: 700;
}

.trace-hero__public {
  margin: 16px 0 0 !important;
  padding-top: 14px;
  color: var(--text-700) !important;
  border-top: 1px solid var(--line);
  font-size: 12px !important;
  line-height: 1.6 !important;
}

/* Platform introduction */
.platform-intro {
  background: var(--surface);
}

.platform-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  align-items: center;
  gap: 48px;
}

.platform-intro__copy {
  min-width: 0;
  max-width: 720px;
}

.platform-intro h2 {
  margin: 0;
  color: var(--text-900);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.platform-intro__lead {
  margin-top: 23px;
}

.platform-intro__lead p {
  margin: 0;
  color: var(--text-700);
  font-size: 16px;
  line-height: 1.9;
}

.platform-intro__lead p:first-child {
  color: var(--text-900);
  font-weight: 500;
}

.platform-intro__lead p + p {
  margin-top: 12px;
}

.platform-intro__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.platform-intro__actions .button--secondary {
  min-height: auto;
  padding: 7px 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
}

.platform-intro__actions .button--secondary:hover,
.platform-intro__actions .button--secondary:focus-visible {
  color: var(--brand-700);
  background: transparent;
  transform: none;
}

.platform-intro__framework {
  width: 100%;
  max-width: 500px;
  min-width: 0;
  justify-self: end;
  opacity: 0.96;
}

.platform-intro__framework picture,
.platform-intro__framework img {
  width: 100%;
  display: block;
}

/* Shared headings */
.section-heading--row {
  display: grid;
  grid-template-columns: minmax(250px, 4fr) minmax(0, 8fr);
  align-items: end;
  gap: 40px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text-900);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.section-heading--row > p {
  max-width: 700px;
  margin: 0;
  justify-self: end;
  color: var(--text-700);
  font-size: 15px;
  line-height: 1.8;
}

/* Platform functions */
.functions-section {
  background: var(--surface-subtle);
}

.feature-list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 68px;
  list-style: none;
}

.feature-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.feature-card__media {
  width: 148px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
  border-radius: 2px;
}

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

.feature-card__body {
  min-width: 0;
}

.feature-card__body h3 {
  margin: 0;
  color: var(--text-900);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.feature-card__body > p {
  margin: 10px 0 0;
  color: var(--text-700);
  font-size: 14px;
  line-height: 1.78;
}

.feature-card__body ul {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
}

.feature-card__body li {
  position: relative;
  padding-left: 11px;
  color: var(--text-500);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.feature-card__body li::before {
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0.68em;
  left: 0;
  content: "";
  background: var(--brand-700);
  border-radius: 50%;
}

.feature-card--trace .feature-card__body li::before { background: var(--accent-red); }
.feature-card--logistics .feature-card__body li::before { background: var(--accent-teal); }
.feature-card--agronomy .feature-card__body li::before { background: var(--accent-gold); }
.feature-card--value .feature-card__body li::before { background: var(--brand-700); }

/* Trace journey */
.journey-section {
  background: var(--surface);
}

.journey-list {
  margin-top: 52px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  list-style: none;
}

.journey-list::before {
  height: 2px;
  position: absolute;
  top: 29px;
  right: calc(12.5% - 14px);
  left: calc(12.5% - 14px);
  content: "";
  background: var(--line-strong);
}

.journey-step {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.journey-step__copy {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.journey-step__heading {
  position: relative;
  z-index: 1;
}

.journey-step__heading > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--brand-900);
  background: var(--surface);
  border: 2px solid var(--brand-700);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.journey-step__heading > div {
  margin-top: 20px;
}

.journey-step__heading h3 {
  margin: 0;
  color: var(--text-900);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.journey-step__heading p {
  margin: 5px 0 0;
  color: var(--text-500);
  font-size: 13px;
  line-height: 1.6;
}

.journey-step__copy > p {
  margin: 16px 0 0;
  color: var(--text-700);
  font-size: 14px;
  line-height: 1.76;
}

.journey-step__copy ul {
  margin-top: 14px;
  display: grid;
  gap: 5px;
  list-style: none;
}

.journey-step__copy li {
  position: relative;
  padding-left: 13px;
  color: var(--text-500);
  font-size: 12px;
  line-height: 1.6;
}

.journey-step__copy li::before {
  width: 5px;
  height: 1px;
  position: absolute;
  top: 0.82em;
  left: 0;
  content: "";
  background: var(--accent-gold);
}

.text-action {
  width: fit-content;
  margin-top: 15px;
  padding: 0 0 3px;
  color: var(--brand-700);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.journey-step__media {
  margin-top: 22px;
}

.journey-step__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-subtle);
}

.journey-step:first-child .journey-step__media img {
  object-fit: contain;
}

.journey-step__media figcaption {
  margin-top: 8px;
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.5;
}

/* Industry applications */
.industries-section {
  color: var(--text-900);
  background: var(--surface-tint);
}

.industries-section .section-heading h2 {
  color: var(--text-900);
}

.industries-section .section-heading--row > p {
  color: var(--text-700);
}

.industries-layout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 64px;
}

.industries-media {
  min-width: 0;
}

.industries-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.industries-media figcaption {
  margin-top: 10px;
  color: var(--text-700);
  font-size: 11px;
  line-height: 1.5;
}

.industry-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 44px;
  list-style: none;
}

.industry-list > li {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.industry-list__number {
  padding-top: 3px;
  color: var(--brand-700);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.industry-list h3 {
  margin: 0;
  color: var(--text-900);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
}

.industry-list p {
  margin: 9px 0 0;
  color: var(--text-700);
  font-size: 13px;
  line-height: 1.75;
}

/* Enterprise onboarding */
.join-section {
  background: var(--surface);
}

.join-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  align-items: end;
  gap: 52px;
}

.join-heading__copy h2 {
  margin: 0;
  color: var(--text-900);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.join-heading__copy p {
  max-width: 720px;
  margin: 17px 0 0;
  color: var(--text-700);
  font-size: 15px;
  line-height: 1.8;
}

.join-stats-wrap {
  min-width: 0;
}

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

.join-stats > div {
  min-width: 0;
}

.join-stats dt {
  color: var(--text-500);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.join-stats dd {
  margin-top: 5px;
  color: var(--brand-900);
  line-height: 1;
  white-space: nowrap;
}

.join-stats data {
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
}

.join-stats dd span {
  margin-left: 5px;
  color: var(--text-700);
  font-size: 12px;
  font-weight: 500;
}

.join-stats__source {
  margin: 10px 0 0;
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.6;
}

.join-network {
  margin-top: 50px;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  align-items: start;
  gap: 54px;
}

.join-map-panel,
.join-enterprises {
  min-width: 0;
}

.join-map-panel > header,
.join-enterprises > header {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.join-map-panel h3,
.join-enterprises h3,
.join-access h3,
.join-requirements > h4,
.join-process > header h4 {
  margin: 0;
  color: var(--text-900);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.join-map-panel > header span {
  padding-top: 4px;
  color: var(--text-500);
  font-size: 12px;
  line-height: 1.5;
}

.join-enterprises > header p {
  max-width: 230px;
  margin: 0;
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

.enterprise-map {
  width: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--surface-subtle);
}

.enterprise-map__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text-500);
  font-size: 13px;
}

.enterprise-map.is-ready .enterprise-map__fallback {
  display: none;
}

.enterprise-map > div:not(.enterprise-map__fallback),
.enterprise-map canvas,
.enterprise-map svg {
  width: 100% !important;
  height: 100% !important;
}

.join-map-panel figcaption {
  margin-top: 9px;
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.55;
}

.join-enterprises ul {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 14px;
  list-style: none;
}

.join-enterprises li {
  min-width: 0;
  height: 94px;
  padding: 8px;
  display: grid;
  place-items: center;
}

.join-enterprises img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.join-access {
  margin-top: 58px;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(260px, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: 58px;
  background: var(--surface-subtle);
}

.join-access__intro > p {
  margin: 13px 0 0;
  color: var(--text-700);
  font-size: 14px;
  line-height: 1.78;
}

.join-copy__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.join-phone {
  margin-top: 20px;
  display: inline-grid;
  gap: 3px;
  color: var(--brand-900);
}

.join-phone span {
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.5;
}

.join-phone strong {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.join-access__details {
  min-width: 0;
}

.join-requirements ul {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
}

.join-requirements li {
  min-width: 0;
}

.join-requirements strong {
  display: block;
  color: var(--text-900);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.join-requirements span {
  margin-top: 6px;
  display: block;
  color: var(--text-500);
  font-size: 12px;
  line-height: 1.65;
}

.join-requirements > p {
  margin: 13px 0 0;
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.6;
}

.join-process {
  margin-top: 30px;
}

.join-process > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.join-process > header p {
  margin: 0;
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

.join-process ol {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.join-process li {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
}

.join-process li > span {
  color: var(--accent-gold);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.65;
}

.join-process h4 {
  margin: 0;
  color: var(--text-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  color: var(--text-900);
  background: var(--surface-footer);
  border-top: 1px solid var(--line);
}

.site-footer__main {
  padding: 50px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: 72px;
}

.site-footer__brand > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.site-footer__brand img {
  width: 46px;
  height: 45px;
  object-fit: contain;
  filter: none;
}

.site-footer__brand > div p {
  margin: 0;
  color: var(--text-900);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer__brand > p {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--text-700);
  font-size: 13px;
  line-height: 1.75;
}

.site-footer__owner {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px 22px;
}

.site-footer__owner > p {
  grid-row: 1 / span 3;
  margin: 0;
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.site-footer__owner span,
.site-footer__owner a {
  color: var(--text-700);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__owner a:hover,
.site-footer__owner a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--brand-900);
}

.site-footer__legal {
  padding: 15px 0;
  color: var(--text-700);
  background: #dce8e2;
  font-size: 11px;
}

.site-footer__legal > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

/* Query dialog */
.trace-dialog {
  width: min(760px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--text-900);
  background: var(--surface);
  border: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-dialog);
}

.trace-dialog::backdrop {
  background: rgba(11, 79, 58, 0.38);
  backdrop-filter: blur(3px);
}

.trace-dialog:not([open]) {
  display: none;
}

.trace-dialog__surface {
  padding: 42px 44px 40px;
  position: relative;
}

.trace-dialog__dismiss {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
}

.trace-dialog__dismiss button {
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px 0;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--text-700);
  background: var(--surface-subtle);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}

.trace-dialog__dismiss button > span {
  width: 16px;
  height: 16px;
  position: relative;
  display: block;
}

.trace-dialog__dismiss button > span::before,
.trace-dialog__dismiss button > span::after {
  width: 18px;
  height: 2px;
  position: absolute;
  top: 7px;
  left: -1px;
  content: "";
  background: currentColor;
}

.trace-dialog__dismiss button > span::before { transform: rotate(45deg); }
.trace-dialog__dismiss button > span::after { transform: rotate(-45deg); }

.trace-dialog__dismiss button:hover,
.trace-dialog__dismiss button:focus-visible {
  color: var(--surface);
  background: var(--brand-700);
}

.trace-dialog__heading {
  padding-right: 48px;
}

.trace-dialog__heading > p:first-child,
.trace-no-result > div > p:first-child,
.trace-result__header p {
  margin: 0;
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.trace-dialog__heading h2 {
  margin: 6px 0 0;
  color: var(--text-900);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.trace-dialog__heading > p:last-child {
  margin: 12px 0 0;
  color: var(--text-700);
  font-size: 13px;
  line-height: 1.7;
}

.trace-form {
  margin-top: 28px;
}

.trace-form > label {
  display: block;
  color: var(--text-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.trace-form__control {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 10px;
}

.trace-form__control input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 15px;
  color: var(--text-900);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.5;
}

.trace-form__control input::placeholder {
  color: #8a9a94;
}

.trace-form__control input:focus {
  border-color: var(--brand-700);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(17, 107, 79, 0.14);
}

.trace-form__control input[aria-invalid="true"] {
  border-color: var(--error);
}

.trace-form__hint {
  margin: 9px 0 0;
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.6;
}

.trace-form__hint button {
  padding: 0;
  color: var(--brand-700);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: inherit;
  font-weight: 600;
}

.trace-form__message {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--text-500);
  font-size: 12px;
  line-height: 1.6;
}

.trace-form__message.is-error {
  color: var(--error);
}

.trace-captcha {
  margin-top: 20px;
  padding: 20px 22px;
  scroll-margin-top: 14px;
  background: var(--surface-tint);
  border-radius: 2px;
}

.trace-captcha__heading h3 {
  margin: 0;
  color: var(--text-900);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.trace-captcha__heading p {
  margin: 5px 0 0;
  color: var(--text-700);
  font-size: 12px;
  line-height: 1.65;
}

.trace-captcha__form {
  margin-top: 16px;
}

.trace-captcha__form > label {
  display: block;
  color: var(--text-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.trace-captcha__layout {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.trace-captcha__challenge {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trace-captcha__challenge canvas {
  width: 132px;
  height: 48px;
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
}

.trace-captcha__challenge button {
  min-width: 44px;
  min-height: 36px;
  padding: 4px 0;
  color: var(--brand-700);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

.trace-captcha__entry {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 122px;
  gap: 10px;
}

.trace-captcha__entry input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  color: var(--text-900);
  text-transform: uppercase;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.5;
}

.trace-captcha__entry input:focus {
  border-color: var(--brand-700);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(17, 107, 79, 0.14);
}

.trace-captcha__entry input[aria-invalid="true"] {
  border-color: var(--error);
}

.trace-captcha__entry .button {
  min-height: 48px;
  padding-right: 14px;
  padding-left: 14px;
  font-size: 13px;
}

.trace-captcha__message {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--text-500);
  font-size: 12px;
  line-height: 1.6;
}

.trace-captcha__message.is-error {
  color: var(--error);
}

.trace-no-result,
.trace-result {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.trace-no-result.is-visible:not([hidden]) {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
}

.trace-no-result__icon,
.trace-result__status {
  width: 42px;
  height: 42px;
  position: relative;
  background: var(--surface-subtle);
  border-radius: 50%;
}

.trace-no-result__icon::before,
.trace-no-result__icon::after {
  position: absolute;
  content: "";
  background: var(--error);
}

.trace-no-result__icon::before {
  width: 2px;
  height: 16px;
  top: 9px;
  left: 20px;
}

.trace-no-result__icon::after {
  width: 3px;
  height: 3px;
  bottom: 9px;
  left: 20px;
  border-radius: 50%;
}

.trace-no-result h3,
.trace-result__header h3 {
  margin: 5px 0 0;
  color: var(--text-900);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.trace-no-result > div > p:not(:first-child) {
  margin: 8px 0 0;
  color: var(--text-700);
  font-size: 13px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.trace-result.is-visible:not([hidden]) {
  display: block;
}

.trace-result__header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
}

.trace-result__status::before {
  width: 17px;
  height: 9px;
  position: absolute;
  top: 13px;
  left: 12px;
  content: "";
  border-bottom: 2px solid var(--brand-700);
  border-left: 2px solid var(--brand-700);
  transform: rotate(-45deg);
}

.trace-result__header span {
  margin-top: 4px;
  display: block;
  color: var(--text-500);
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.trace-result__identity {
  margin-top: 22px;
  padding: 18px 20px;
  background: #f5f8f6;
  border-left: 3px solid var(--brand-700);
}

.trace-result__product span,
.trace-result__summary dt {
  display: block;
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.6;
}

.trace-result__product strong {
  margin-top: 3px;
  display: block;
  color: var(--text-900);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.trace-result__summary {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 18px;
}

.trace-result__summary > div {
  min-width: 0;
}

.trace-result__summary dd {
  margin-top: 3px;
  color: var(--text-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.trace-result__details {
  margin-top: 22px;
}

.trace-result__details h4 {
  margin: 0;
  color: var(--text-900);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.trace-result__fields {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
}

.trace-result__fields > div {
  min-width: 0;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.trace-result__fields dt {
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.6;
}

.trace-result__fields dd {
  color: var(--text-900);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.trace-result__note {
  margin: 16px 0 0;
  color: var(--text-500);
  font-size: 11px;
  line-height: 1.65;
}

.trace-result__reset {
  margin-top: 14px;
  padding: 0 0 3px;
  color: var(--brand-700);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  :root {
    --page-gutter: 28px;
  }

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

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    min-height: calc(100svh - var(--header-height));
    padding: 30px var(--page-gutter) 44px;
    position: fixed;
    z-index: 990;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    overflow-y: auto;
    background: var(--surface);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav > a {
    padding: 17px 18px;
    color: var(--text-700);
    border-left: 3px solid transparent;
    font-size: 19px;
    text-decoration: none;
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .site-nav > a.is-active {
    color: var(--brand-900);
    background: var(--surface-subtle);
    border-left-color: var(--brand-700);
  }

  .platform-intro__inner {
    grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
    gap: 42px;
  }

  .feature-list {
    gap: 46px 48px;
  }

  .feature-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 22px;
  }

  .feature-card__media {
    width: 132px;
  }

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

  .journey-list::before {
    display: none;
  }

  .journey-step__heading > span {
    width: 52px;
    height: 52px;
  }

  .industries-layout {
    gap: 42px;
  }

  .join-network {
    gap: 38px;
  }

  .join-access {
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .platform-intro__inner {
    grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
    gap: 30px;
  }

  .platform-intro__framework {
    max-width: 340px;
  }

  .industries-layout,
  .join-heading,
  .join-network {
    grid-template-columns: 1fr;
  }

  .industries-media {
    max-width: 720px;
  }

  .industry-list {
    gap: 30px 40px;
  }

  .join-stats-wrap {
    max-width: 500px;
  }

  .join-network {
    gap: 46px;
  }

  .enterprise-map {
    min-height: 380px;
    aspect-ratio: 16 / 9;
  }

  .join-enterprises ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .join-enterprises li {
    height: 86px;
  }

  .join-access {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .join-access__intro {
    max-width: 620px;
  }

  .site-footer__main {
    gap: 44px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --page-gutter: 20px;
  }

  .section {
    padding: 64px 0;
  }

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

  .site-brand {
    gap: 9px;
  }

  .site-brand__mark {
    width: 38px;
    height: 37px;
  }

  .site-brand__copy strong {
    font-size: 16px;
  }

  .site-brand__copy small {
    font-size: 9px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    padding-top: 22px;
  }

  .site-nav > a {
    padding: 15px 16px;
    font-size: 17px;
  }

  .trace-hero {
    min-height: min(460px, calc(100svh - var(--header-height) - 24px));
  }

  .trace-hero__inner {
    padding: 30px 0;
  }

  .trace-hero__query {
    padding: 26px 24px 24px;
  }

  .trace-hero__query h1 {
    font-size: 30px;
  }

  .trace-hero__query > p:first-of-type {
    font-size: 14px;
  }

  .platform-intro__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .platform-intro h2 {
    font-size: 30px;
  }

  .platform-intro__lead {
    margin-top: 19px;
  }

  .platform-intro__lead p {
    font-size: 15px;
    line-height: 1.85;
  }

  .platform-intro__actions {
    margin-top: 24px;
  }

  .platform-intro__framework {
    width: min(100%, 410px);
    max-width: none;
    justify-self: center;
  }

  .section-heading--row {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .section-heading h2,
  .join-heading__copy h2 {
    font-size: 28px;
  }

  .section-heading--row > p {
    justify-self: start;
    font-size: 14px;
  }

  .feature-list {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 20px;
  }

  .feature-card__media {
    width: 112px;
  }

  .feature-card__body h3,
  .journey-step__heading h3,
  .industry-list h3 {
    font-size: 19px;
  }

  .journey-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .journey-list::before {
    width: 2px;
    height: calc(100% - 52px);
    top: 26px;
    right: auto;
    bottom: auto;
    left: 25px;
    display: block;
    background: var(--line-strong);
  }

  .journey-step {
    position: relative;
  }

  .journey-step__heading > span {
    width: 52px;
    height: 52px;
  }

  .journey-step__heading > div {
    margin: -47px 0 0 72px;
    min-height: 52px;
  }

  .journey-step__copy > p {
    margin-top: 18px;
  }

  .journey-step__copy > p,
  .journey-step__copy ul,
  .journey-step__copy .text-action,
  .journey-step__media {
    margin-left: 72px;
  }

  .journey-step__media img {
    aspect-ratio: 16 / 10;
  }

  .industries-layout {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .industry-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .join-heading {
    gap: 28px;
  }

  .join-heading__copy p {
    margin-top: 13px;
    font-size: 14px;
  }

  .join-stats data {
    font-size: 30px;
  }

  .join-network {
    margin-top: 40px;
    gap: 40px;
  }

  .join-map-panel > header,
  .join-enterprises > header {
    min-height: 0;
    margin-bottom: 14px;
  }

  .enterprise-map {
    min-height: 310px;
    aspect-ratio: 4 / 3;
  }

  .join-enterprises ul {
    margin-top: 2px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .join-enterprises li {
    height: 82px;
  }

  .join-access {
    margin-top: 42px;
    padding: 28px;
  }

  .join-copy__actions .button {
    flex: 1 1 180px;
  }

  .join-requirements ul {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .join-process > header {
    display: block;
  }

  .join-process > header p {
    margin-top: 6px;
    text-align: left;
  }

  .join-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
  }

  .site-footer__main {
    padding: 42px 0 34px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__owner {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .site-footer__owner > p {
    grid-row: auto;
    margin-bottom: 3px;
  }

  .site-footer__legal > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .trace-dialog {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
  }

  .trace-dialog__surface {
    padding: 34px 26px 30px;
  }

  .trace-dialog__heading h2 {
    font-size: 26px;
  }

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

  .trace-result__summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 16px;
  }

  .site-brand__copy strong {
    font-size: 15px;
  }

  .site-brand__copy small {
    display: none;
  }

  .hero-trace-form__control {
    grid-template-columns: 1fr;
  }

  .hero-trace-form__control button {
    width: 100%;
  }

  .platform-intro__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .platform-intro__actions .button--primary {
    width: 100%;
  }

  .platform-intro__actions .button--secondary {
    width: fit-content;
    align-self: flex-start;
  }

  .feature-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .feature-card__media {
    width: 96px;
  }

  .journey-step__copy > p,
  .journey-step__copy ul,
  .journey-step__copy .text-action,
  .journey-step__media {
    margin-left: 62px;
  }

  .journey-step__heading > div {
    margin-left: 62px;
  }

  .enterprise-map {
    min-height: 290px;
  }

  .join-access {
    padding: 24px 20px;
  }

  .join-process ol {
    grid-template-columns: 1fr;
  }

  .trace-dialog__surface {
    padding: 30px 20px 26px;
  }

  .trace-dialog__dismiss button {
    margin: 8px 8px -50px 0;
  }

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

  .trace-form__control .button {
    width: 100%;
  }

  .trace-captcha {
    padding: 18px;
  }

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

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

  .trace-captcha__entry .button {
    width: 100%;
  }

  .trace-no-result.is-visible:not([hidden]),
  .trace-result__header {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
  }

  .trace-no-result__icon,
  .trace-result__status {
    width: 38px;
    height: 38px;
  }

  .trace-no-result__icon::before {
    top: 8px;
    left: 18px;
  }

  .trace-no-result__icon::after {
    bottom: 8px;
    left: 18px;
  }

  .trace-result__status::before {
    top: 11px;
    left: 10px;
  }
}

@media (max-width: 430px) {
  .site-brand__mark {
    width: 35px;
    height: 34px;
  }

  .site-brand__copy strong {
    max-width: 150px;
    font-size: 14px;
    white-space: normal;
  }

  .trace-hero__query {
    padding: 20px 18px 18px;
  }

  .trace-hero {
    min-height: min(438px, calc(100svh - var(--header-height) - 36px));
  }

  .trace-hero__inner {
    padding: 20px 0;
  }

  .trace-hero__query h1 {
    font-size: 27px;
  }

  .platform-intro {
    padding-top: 48px;
  }

  .feature-card__body > p {
    font-size: 13px;
  }

  .feature-card__body ul {
    gap: 4px 11px;
  }

  .journey-step__copy > p,
  .journey-step__copy ul,
  .journey-step__copy .text-action,
  .journey-step__media {
    margin-left: 0;
  }

  .journey-list::before {
    display: none;
  }

  .journey-step__media {
    margin-top: 20px;
  }

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

  .join-enterprises li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .join-enterprises li:last-child:nth-child(odd) img {
    width: 50%;
  }

  .join-stats {
    gap: 18px;
  }

  .join-map-panel > header,
  .join-enterprises > header {
    display: block;
  }

  .join-map-panel > header span,
  .join-enterprises > header p {
    margin-top: 4px;
    display: block;
    text-align: left;
  }

  .trace-result__fields > div {
    grid-template-columns: 74px minmax(0, 1fr);
  }
}

@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;
  }
}
