:root {
  --ink: #071a26;
  --ink-2: #0c2c3e;
  --paper: #f1f2ef;
  --paper-deep: #e4e7e6;
  --white: #fbfbf9;
  --line: #d1d6d7;
  --muted: #68737a;
  --acid: #32a8df;
  --acid-dark: #187faf;
  --green: #287da5;
  --orange: #e58a4c;
  --blue: #5c7cfa;
  --max: 1220px;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--acid);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #f6f5ef;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 26, 38, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand small {
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

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

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-picker select {
  height: 38px;
  min-width: 104px;
  padding: 0 29px 0 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  appearance: none;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font-size: 11px;
}

.language-picker select:focus-visible {
  color: #fff;
  border-color: var(--acid);
}

.language-picker select option {
  color: var(--ink);
  background: var(--white);
}

.language-picker svg {
  position: absolute;
  right: 10px;
  width: 13px;
  pointer-events: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

[dir="rtl"] .language-picker select {
  padding: 0 12px 0 29px;
}

[dir="rtl"] .language-picker svg {
  right: auto;
  left: 10px;
}

[dir="rtl"] .brand,
[dir="rtl"] code,
[dir="rtl"] .package-specs,
[dir="rtl"] .release-meta {
  direction: ltr;
}

[dir="rtl"] th,
[dir="rtl"] td {
  text-align: right;
}

[dir="rtl"] td:last-child {
  text-align: left;
}

[dir="rtl"] .client-search svg {
  margin-right: 0;
  margin-left: 10px;
}

.site-nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.site-nav > a:not(.nav-source)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--acid);
  transition: right 0.2s ease;
}

.site-nav > a:hover {
  color: #fff;
}

.site-nav > a:hover::after {
  right: 0;
}

.nav-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-source svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: #f7f6f1;
  background: var(--ink);
  padding: 174px 0 0;
}

.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -160px;
  top: 30px;
  border: 1px solid rgba(50, 168, 223, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(50, 168, 223, 0.026), 0 0 0 160px rgba(50, 168, 223, 0.016);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(410px, 0.78fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.eyebrow,
.section-index,
.panel-topline,
.package-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--acid);
}

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

.hero h1 {
  max-width: 740px;
  margin: 30px 0 28px;
  font-size: clamp(48px, 5.35vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.hero h1 em {
  color: var(--acid);
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  gap: 10px;
  color: var(--ink);
  background: var(--acid);
}

.button-primary:hover {
  background: #55bcea;
}

.button-primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.6;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
}

.release-meta {
  display: flex;
  gap: 34px;
  margin-top: 52px;
}

.release-meta > div {
  display: grid;
  gap: 6px;
}

.release-meta span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.release-meta strong {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
}

.release-meta i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 3px rgba(50, 168, 223, 0.14);
}

.release-panel {
  position: relative;
  padding: 26px 28px 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 22px 28px 0 rgba(0, 0, 0, 0.12);
}

.release-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--acid);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  color: #848984;
  font-size: 9px;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #45a970;
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 26px -28px 0;
  border-block: 1px solid var(--line);
}

.platform-tab {
  height: 45px;
  color: #7a807c;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.platform-tab:last-child {
  border-right: 0;
}

.platform-tab.is-active {
  color: var(--ink);
  background: var(--acid);
}

.package-icon {
  display: grid;
  place-items: center;
  height: 172px;
}

.package-icon svg {
  width: 104px;
  fill: rgba(7, 26, 38, 0.035);
  stroke: var(--ink);
  stroke-linecap: square;
  stroke-linejoin: bevel;
  stroke-width: 1.4;
}

.package-icon .package-accent {
  stroke: var(--acid-dark);
  stroke-width: 5;
}

.package-copy {
  text-align: center;
}

.package-kicker {
  color: #798079;
  font-size: 9px;
}

.package-copy h2 {
  margin: 7px 0 7px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

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

.package-specs {
  display: grid;
  gap: 9px;
  margin: 28px 0 20px;
  padding: 16px 0;
  border-block: 1px solid var(--line);
}

.package-specs > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 10px;
}

.package-specs code {
  max-width: 72%;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--acid);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.panel-download:hover {
  background: #55bcea;
}

.panel-download svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.panel-note {
  min-height: 32px;
  margin: 16px 0 0;
  color: #858984;
  font-size: 9px;
  line-height: 1.65;
  text-align: center;
}

.security-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 90px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.security-label {
  padding: 5px 8px;
  color: var(--acid);
  border: 1px solid rgba(50, 168, 223, 0.4);
  font-family: var(--mono);
  font-size: 9px;
}

.security-note p {
  margin: 0;
}

.security-note a {
  color: #fff;
  transition: color 0.2s ease;
}

.security-note a:hover {
  color: var(--acid);
}

.section-pad {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

.section-index {
  color: #767e78;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.quick-start {
  background: var(--paper);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  list-style: none;
}

.step-grid li {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.step-grid li:last-child {
  border-right: 0;
}

.step-no {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #a6aaa5;
  font-family: var(--mono);
  font-size: 10px;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 48px 0 34px;
  background: var(--ink);
}

.step-icon svg {
  width: 22px;
  fill: none;
  stroke: var(--acid);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
}

.step-grid h3 {
  margin: 0 0 13px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.step-grid p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.clients {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.clients-heading {
  margin-bottom: 44px;
}

.client-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  height: 38px;
  padding: 0 15px;
  color: #777d79;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.filter-button span {
  margin-left: 5px;
  color: #a3a7a3;
  font-family: var(--mono);
  font-size: 9px;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.client-search {
  display: flex;
  align-items: center;
  width: 210px;
  height: 38px;
  border-bottom: 1px solid var(--ink);
}

.client-search svg {
  width: 17px;
  margin-right: 10px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.4;
}

.client-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 11px;
}

.client-search input::placeholder {
  color: #9b9f9c;
}

.table-shell {
  border-top: 2px solid var(--ink);
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th {
  height: 50px;
  color: #888d89;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: left;
}

th:nth-child(1) { width: 28%; }
th:nth-child(2) { width: 23%; }
th:nth-child(3) { width: 24%; }
th:nth-child(4) { width: 17%; }
th:nth-child(5) { width: 8%; }

tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

tbody tr:hover {
  background: #f5f4ee;
}

td {
  height: 86px;
  color: #5e6661;
  font-size: 11px;
}

td:last-child {
  text-align: right;
}

.client-name {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-monogram {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.tone-lime { background: var(--acid); }
.tone-blue { color: #fff; background: #6c8fe5; }
.tone-violet { color: #fff; background: #7569a7; }
.tone-orange { background: #e9a76d; }
.tone-cyan { background: #8ed2c7; }
.tone-pink { background: #d6a1b4; }
.tone-gray { color: #fff; background: #7d827e; }

.client-name strong,
.client-name small {
  display: block;
}

.client-name strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
}

.client-name small {
  color: #939793;
  font-size: 9px;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.platform-list span {
  padding: 4px 7px;
  color: #737a75;
  border: 1px solid #deded7;
  font-family: var(--mono);
  font-size: 8px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-active { color: #357151; }
.status-active i { background: #4b9e70; box-shadow: 0 0 0 3px rgba(75, 158, 112, 0.1); }
.status-community { color: #8c6d25; }
.status-community i { background: #c39737; }
.status-archived { color: #8c8f8c; }
.status-archived i { background: #a4a7a4; }

.row-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.row-link:hover {
  color: var(--acid);
  border-color: var(--ink);
  background: var(--ink);
}

.row-link svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.empty-state {
  padding: 56px 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-align: center;
}

.table-footnote {
  display: flex;
  gap: 8px;
  margin: 18px 0 0;
  color: #8c918d;
  font-size: 9px;
  line-height: 1.7;
}

.table-footnote span {
  color: var(--green);
}

.principles {
  color: #f2f1ec;
  background: var(--ink);
}

.principles-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(80px, 12vw, 170px);
  align-items: center;
}

.section-index-light {
  color: rgba(255, 255, 255, 0.4);
}

.principles-copy h2 {
  margin: 25px 0 28px;
  color: var(--acid);
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.principles-copy p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.9;
}

.principles-copy > a {
  display: inline-flex;
  gap: 20px;
  margin-top: 38px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 11px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.principles-copy > a:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.principle-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.principle-list > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.principle-list > div > span {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
}

.principle-list h3 {
  margin: -4px 0 8px;
  font-size: 16px;
}

.principle-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  line-height: 1.7;
}

.site-footer {
  color: #d9dbd8;
  background: #04131c;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 78px 0 68px;
}

.footer-top > div:first-child > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.footer-links a {
  width: max-content;
  color: rgba(255, 255, 255, 0.67);
  font-size: 10px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 22px 0 28px;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 8px;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    padding-top: 140px;
  }

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

  .hero-copy {
    min-width: 0;
    max-width: 720px;
  }

  .release-panel {
    width: 100%;
    max-width: 520px;
    min-width: 0;
    margin-left: auto;
    overflow: hidden;
  }

  .security-note {
    margin-top: 80px;
  }

  .section-pad {
    padding: 96px 0;
  }

  .step-grid li {
    padding: 28px;
  }

  .table-shell {
    overflow-x: auto;
  }

  table {
    min-width: 880px;
  }

  .principles-layout {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}

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

  .nav-wrap {
    height: 66px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    gap: 6px;
    width: 40px;
    flex: 0 0 40px;
    height: 40px;
    padding: 0 8px;
    border: 0;
    background: transparent;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 60px 32px;
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a {
    color: #fff;
    font-size: 26px;
  }

  .site-nav .language-picker {
    margin-top: 4px;
  }

  .site-nav .language-picker select {
    min-width: 180px;
    height: 46px;
    color: #fff;
    font-size: 13px;
  }

  .site-nav .nav-source {
    margin-top: 12px;
    font-size: 14px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero::before {
    width: 360px;
    height: 360px;
    right: -210px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(38px, 11vw, 48px);
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .release-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .release-meta > div:last-child {
    grid-column: 1 / -1;
  }

  .release-panel {
    margin: 10px 0 0;
    padding-inline: 20px;
    box-shadow: 10px 14px 0 rgba(0, 0, 0, 0.12);
  }

  .platform-tabs {
    margin-inline: -20px;
  }

  .live-status {
    font-size: 0;
  }

  .live-status::after {
    content: "LIVE";
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .security-note {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0 30px;
  }

  .security-label {
    width: max-content;
  }

  .section-pad {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

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

  .step-grid li {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-grid li:last-child {
    border-bottom: 0;
  }

  .step-icon {
    margin-top: 35px;
  }

  .client-toolbar {
    display: grid;
  }

  .filter-group {
    flex-wrap: nowrap;
    max-width: calc(100vw - 32px);
    padding-bottom: 5px;
    overflow-x: auto;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .client-search {
    width: 100%;
  }

  .principles-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

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

  .footer-links {
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
