:root {
  --ink: #11161c;
  --ink-2: #303943;
  --muted: #68737f;
  --paper: #f4f6f5;
  --white: #ffffff;
  --line: #dce2e1;
  --blue: #2458e8;
  --blue-dark: #163aa6;
  --green: #009c73;
  --green-bright: #00d49a;
  --coral: #d9583f;
  --gold: #b87d12;
  --dark: #0b0f14;
  --header-height: 76px;
  --section-width: 1240px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid rgba(36, 88, 232, 0.4);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: #05080e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(17, 22, 28, 0.06);
}

.header-inner {
  width: min(calc(100% - 48px), var(--section-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-weight: 800;
}

.brand-mark span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 8px;
  opacity: 0.62;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a,
.text-link {
  position: relative;
  opacity: 0.82;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  opacity: 1;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.desktop-download-nav,
.desktop-platform-nav {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.desktop-download-trigger,
.desktop-platform-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.desktop-download-trigger svg,
.desktop-platform-trigger svg {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}

.desktop-download-nav:hover .desktop-download-trigger svg,
.desktop-download-nav:focus-within .desktop-download-trigger svg,
.desktop-platform-nav:hover .desktop-platform-trigger svg,
.desktop-platform-nav:focus-within .desktop-platform-trigger svg,
.desktop-platform-nav.is-open .desktop-platform-trigger svg {
  transform: rotate(180deg);
}

.desktop-download-menu,
.desktop-platform-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 3;
  display: grid;
  visibility: hidden;
  width: 330px;
  gap: 4px;
  padding: 9px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(9, 16, 12, 0.16);
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
}

.desktop-download-nav:hover .desktop-download-menu,
.desktop-download-nav:focus-within .desktop-download-menu,
.desktop-platform-nav:hover .desktop-platform-menu,
.desktop-platform-nav:focus-within .desktop-platform-menu,
.desktop-platform-nav.is-open .desktop-platform-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.desktop-download-menu > a,
.desktop-platform-menu > a {
  display: grid;
  min-height: 62px;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 9px;
  border-radius: 3px;
  opacity: 1;
}

.desktop-download-menu > a::after,
.desktop-platform-menu > a::after {
  display: none;
}

.desktop-download-menu > a:hover,
.desktop-download-menu > a:focus-visible,
.desktop-platform-menu > a:hover,
.desktop-platform-menu > a:focus-visible {
  outline: none;
  color: var(--blue);
  background: #edf4ff;
}

.desktop-download-menu > a > svg:first-child {
  width: 30px;
  height: 30px;
  padding: 7px;
  color: var(--white);
  border-radius: 3px;
  background: var(--blue);
}

.desktop-platform-menu {
  width: 320px;
}

.desktop-platform-menu > a > svg:first-child {
  width: 30px;
  height: 30px;
  padding: 7px;
  color: var(--white);
  border-radius: 3px;
  background: var(--green);
}

.desktop-download-menu > a > svg:last-child,
.desktop-platform-menu > a > svg:last-child {
  width: 15px;
  height: 15px;
}

.desktop-download-menu span,
.desktop-platform-menu span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.desktop-download-menu strong,
.desktop-platform-menu strong {
  font-size: 14px;
}

.desktop-download-menu small,
.desktop-platform-menu small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-download-menu b,
.desktop-platform-menu b {
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  font-size: 14px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-compact {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.button-light {
  color: var(--dark);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--blue);
}

.button-ghost {
  color: var(--white);
  background: rgba(11, 15, 20, 0.28);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-ghost:hover {
  background: rgba(11, 15, 20, 0.65);
  border-color: var(--white);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: #9ea8b0;
}

.button-outline:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.menu-button {
  display: none;
}

.mobile-nav {
  padding: 12px 24px 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.mobile-download-links {
  padding: 3px 0 9px 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .mobile-download-links a {
  min-height: 44px;
  gap: 9px;
  border-bottom: 0;
  color: var(--blue);
  font-size: 14px;
}

.mobile-download-links svg {
  width: 15px;
  height: 15px;
}

.mobile-download-links small {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}

.mobile-platform-nav {
  border-bottom: 1px solid var(--line);
}

.mobile-platform-nav > summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
}

.mobile-platform-nav > summary::-webkit-details-marker {
  display: none;
}

.mobile-platform-nav > summary svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
  transition: transform 160ms ease;
}

.mobile-platform-nav[open] > summary svg {
  transform: rotate(180deg);
}

.mobile-platform-links {
  padding: 2px 0 9px 16px;
}

.mobile-nav .mobile-platform-links a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 9px;
  border-bottom: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.mobile-platform-links a:hover,
.mobile-platform-links a:focus-visible {
  color: var(--blue);
}

.mobile-platform-links a > svg:first-child {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.mobile-platform-links a > svg:last-child {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.mobile-platform-links span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.mobile-platform-links strong {
  font-size: 14px;
  font-weight: 600;
}

.mobile-platform-links small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero {
  position: relative;
  height: min(820px, calc(100svh - 54px));
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  background: rgba(5, 8, 14, 0.76);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--section-width));
  height: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: center;
  gap: 80px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-bright);
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.06;
}

.hero-lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.75;
}

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

.hero-proof {
  align-self: end;
  padding-bottom: 8px;
}

.hero-proof div {
  padding: 16px 0 16px 22px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-proof strong {
  font-size: 28px;
  font-weight: 750;
}

.hero-proof span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

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

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

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

.section h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 750;
  line-height: 1.24;
}

.statement {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.statement-copy > p {
  margin: 0;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.85;
}

.fact-rule {
  margin-top: 30px;
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.75;
}

.fact-rule svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--green);
}

.section-heading,
.standard-intro,
.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}

.section-heading > p,
.standard-intro > p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.domain-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.domain-item {
  position: relative;
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 6px;
}

.domain-item > svg {
  width: 34px;
  height: 34px;
  margin-top: 42px;
  color: var(--blue);
}

.domain-number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: #aab2b8;
  font-size: 13px;
  font-weight: 700;
}

.domain-item h3 {
  margin: 28px 0 0;
  font-size: 22px;
}

.domain-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.domain-item > span {
  margin-top: auto;
  padding-top: 30px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.domain-green {
  border-top-color: var(--green);
}

.domain-green > svg,
.domain-green > span {
  color: var(--green);
}

.domain-gold {
  border-top-color: var(--gold);
}

.domain-gold > svg,
.domain-gold > span {
  color: var(--gold);
}

.domain-coral {
  border-top-color: var(--coral);
}

.domain-coral > svg,
.domain-coral > span {
  color: var(--coral);
}

.compact-heading {
  align-items: center;
}

.service-list {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-list article {
  min-height: 154px;
  padding: 28px 26px 28px 0;
  display: grid;
  grid-template-columns: 42px 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.service-list article:nth-child(odd) {
  padding-right: 42px;
  border-right: 1px solid var(--line);
}

.service-list article:nth-child(even) {
  padding-left: 42px;
}

.service-index {
  color: #9ca6ae;
  font-size: 12px;
  font-weight: 700;
}

.service-list article > svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.service-list h3 {
  margin: 0;
  font-size: 18px;
}

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

.standard-intro {
  align-items: end;
}

.standard-intro .section-kicker,
.platform .section-kicker {
  color: var(--green-bright);
}

.standard-intro > p {
  color: rgba(255, 255, 255, 0.62);
}

.term-browser {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  border: 1px solid #303844;
  border-radius: 6px;
  overflow: hidden;
}

.term-tabs {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #10161e;
  border-right: 1px solid #303844;
}

.term-tabs button {
  min-height: 54px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
}

.term-tabs button span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #394453;
  border-radius: 50%;
  font-size: 11px;
}

.term-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--blue);
}

.term-tabs button[aria-selected="true"] span {
  border-color: rgba(255, 255, 255, 0.5);
}

.term-panel {
  min-height: 374px;
  padding: 30px 34px;
  background: #0d1219;
}

.term-panel-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.term-panel-heading h3 {
  margin: 0;
  font-size: 22px;
}

.term-panel-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.term-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #2b3440;
}

.term-item {
  min-height: 86px;
  padding: 18px 20px 18px 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid #2b3440;
}

.term-item:nth-child(odd) {
  border-right: 1px solid #2b3440;
}

.term-item:nth-child(even) {
  padding-left: 20px;
}

.term-item > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--green-bright);
  border: 1px solid #35504b;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.term-item strong {
  display: block;
  font-size: 14px;
}

.term-item small {
  margin-top: 5px;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.55;
}

.source-link {
  width: fit-content;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.source-link:hover {
  color: var(--green-bright);
}

.source-link svg {
  width: 14px;
  height: 14px;
}

.journey-track {
  margin: 60px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-track li {
  min-height: 164px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.journey-track li:last-child {
  border-right: 0;
}

.journey-track span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.journey-track strong {
  margin-top: 35px;
  font-size: 17px;
}

.journey-track small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.platform {
  padding-bottom: 0;
  color: var(--white);
  background: #0c1219;
}

.platform-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 100px;
  align-items: start;
}

.platform-copy > div:first-child > p:not(.section-kicker) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.9;
}

.platform-links {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.inline-link svg {
  width: 16px;
  height: 16px;
}

.live-status {
  padding: 24px 0 0 32px;
  border-left: 1px solid #33404d;
}

.live-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
}

.live-heading small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 212, 154, 0.1);
}

.live-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #2c3641;
}

.live-grid div {
  min-height: 100px;
  padding: 20px 12px 16px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #2c3641;
}

.live-grid div:nth-child(odd) {
  border-right: 1px solid #2c3641;
}

.live-grid div:nth-child(even) {
  padding-left: 22px;
}

.live-grid strong {
  font-size: 28px;
}

.live-grid span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.live-status > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  line-height: 1.7;
}

.platform-visual {
  width: min(calc(100% - 48px), 1440px);
  margin: 70px auto 0;
  overflow: hidden;
  border: 1px solid #2a3440;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.platform-visual img {
  width: 100%;
  height: auto;
}

.desktop-download {
  background: #e8eeec;
}

.desktop-download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 92px;
  align-items: center;
}

.desktop-download-copy h2 {
  max-width: 680px;
  margin: 0;
}

.desktop-download-copy > p:not(.section-kicker):not(.desktop-download-notice) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.desktop-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.desktop-download-notice {
  display: flex;
  max-width: 700px;
  align-items: flex-start;
  gap: 9px;
  margin: 22px 0 0;
  color: #6a4d22;
  font-size: 11px;
  line-height: 1.75;
}

.desktop-download-notice svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.desktop-suite-links {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid #c6d1cd;
  border-bottom: 1px solid #c6d1cd;
}

.desktop-suite-links a {
  display: grid;
  min-width: 0;
  min-height: 68px;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-right: 1px solid #c6d1cd;
}

.desktop-suite-links a:last-child {
  border-right: 0;
}

.desktop-suite-links a:hover,
.desktop-suite-links a:focus-visible {
  outline: none;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.62);
}

.desktop-suite-links svg {
  width: 18px;
  height: 18px;
}

.desktop-suite-links span {
  display: grid;
  min-width: 0;
  gap: 3px;
  font-size: 12px;
  font-weight: 700;
}

.desktop-suite-links small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.desktop-release {
  padding: 30px;
  border: 1px solid #c6d1cd;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(19, 43, 36, 0.1);
}

.desktop-release-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.desktop-release-heading > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  border-radius: 4px;
  background: var(--blue);
}

.desktop-release-heading svg {
  width: 24px;
  height: 24px;
}

.desktop-release-heading div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.desktop-release-heading strong {
  font-size: 17px;
}

.desktop-release-heading small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.desktop-release dl {
  margin: 0;
}

.desktop-release dl > div {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.desktop-release dt {
  color: var(--muted);
  font-size: 12px;
}

.desktop-release dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.desktop-release-hash {
  padding-top: 20px;
}

.desktop-release-hash span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.desktop-release-hash code {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.7;
}

.access-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.access-grid > a {
  min-height: 126px;
  padding: 26px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.access-grid > a:hover {
  background: var(--white);
  border-color: #9eabb5;
  transform: translateY(-2px);
}

.access-grid > a > svg:first-child {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.access-grid > a > svg:last-child {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.access-grid strong,
.access-grid span {
  display: block;
}

.access-grid strong {
  font-size: 17px;
}

.access-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.final-cta {
  color: var(--white);
  background: var(--green);
}

.final-cta .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.cta-inner {
  align-items: center;
}

.cta-inner h2 {
  max-width: 760px;
}

.cta-inner p:not(.section-kicker) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.final-cta .button-primary {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
  flex: 0 0 auto;
}

.site-footer {
  padding: 60px 0 24px;
  color: var(--white);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 80px;
  align-items: center;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 16px;
}

.footer-brand span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-links button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--green-bright);
}

.footer-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.32);
  border-top: 1px solid #28313b;
  font-size: 10px;
}

.apply-dialog {
  width: min(820px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
}

.apply-dialog::backdrop {
  background: rgba(5, 8, 12, 0.72);
}

.dialog-shell {
  padding: 32px;
}

.dialog-header {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.dialog-header h2 {
  margin: 0;
  font-size: 30px;
}

.dialog-header p:not(.section-kicker) {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.dialog-header .icon-button {
  color: var(--muted);
  border-color: var(--line);
  flex: 0 0 auto;
}

.apply-dialog form {
  padding-top: 24px;
}

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

.form-grid label,
.consent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fbfcfc;
  border: 1px solid #cfd7d8;
  border-radius: 4px;
  outline: 0;
  font-size: 14px;
}

.form-grid textarea {
  min-height: 104px;
  resize: vertical;
  line-height: 1.6;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 88, 232, 0.1);
}

.form-wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.consent {
  margin-top: 20px;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.form-footer {
  min-height: 64px;
  margin-top: 22px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-footer p.success {
  color: var(--green);
}

.form-footer p.error {
  color: #c23e34;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
    font-size: 13px;
  }

  .text-link {
    display: none;
  }

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

  .hero-inner {
    gap: 40px;
  }

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

  .domain-item {
    min-height: 280px;
  }

  .platform-copy {
    gap: 56px;
  }

  .desktop-download-layout {
    gap: 48px;
  }

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

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

  .journey-track li:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .header-inner,
  .section-inner,
  .hero-inner,
  .platform-visual {
    width: min(calc(100% - 36px), var(--section-width));
  }

  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero {
    min-height: 600px;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 42px);
    grid-template-columns: 1fr;
    align-content: center;
    gap: 34px;
  }

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

  .hero-lead {
    max-width: 600px;
    font-size: 17px;
  }

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

  .hero-proof div {
    padding: 12px 12px 12px 16px;
  }

  .hero-proof strong {
    font-size: 22px;
  }

  .section {
    padding: 82px 0;
  }

  .section h2 {
    font-size: 34px;
  }

  .statement-grid,
  .platform-copy,
  .desktop-download-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading,
  .standard-intro,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .section-heading > p,
  .standard-intro > p {
    max-width: 650px;
  }

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

  .term-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid #303844;
  }

  .term-tabs button {
    white-space: nowrap;
  }

  .live-status {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #33404d;
  }

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

@media (max-width: 620px) {
  .header-inner,
  .section-inner,
  .hero-inner,
  .platform-visual {
    width: calc(100% - 28px);
  }

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

  .brand-copy strong {
    font-size: 15px;
  }

  .hero {
    height: min(760px, calc(100svh - 40px));
    min-height: 600px;
  }

  .hero-media img {
    object-position: 39% top;
  }

  .hero-inner {
    padding-bottom: 26px;
    align-content: end;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .section {
    padding: 68px 0;
  }

  .section h2 {
    font-size: 29px;
  }

  .statement {
    padding: 64px 0;
  }

  .statement-copy > p {
    font-size: 17px;
  }

  .domain-grid,
  .service-list,
  .term-list {
    grid-template-columns: 1fr;
  }

  .domain-item {
    min-height: 250px;
  }

  .service-list article,
  .service-list article:nth-child(odd),
  .service-list article:nth-child(even) {
    padding: 24px 0;
    grid-template-columns: 34px 38px minmax(0, 1fr);
    border-right: 0;
  }

  .term-panel {
    padding: 24px 18px;
  }

  .term-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .term-item,
  .term-item:nth-child(odd),
  .term-item:nth-child(even) {
    padding: 16px 0;
    border-right: 0;
  }

  .journey-track {
    grid-template-columns: repeat(8, 142px);
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .journey-track li,
  .journey-track li:nth-child(-n + 4) {
    border-bottom: 0;
    scroll-snap-align: start;
  }

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

  .platform-visual {
    margin-top: 48px;
  }

  .desktop-download-actions .button {
    width: 100%;
  }

  .desktop-suite-links {
    grid-template-columns: 1fr;
  }

  .desktop-suite-links a {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid #c6d1cd;
  }

  .desktop-suite-links a:last-child {
    border-bottom: 0;
  }

  .access-grid > a {
    min-height: 118px;
    padding: 22px 18px;
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .dialog-shell {
    padding: 22px 18px;
  }

  .dialog-header h2 {
    font-size: 25px;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
