:root {
  --ink: #0a1833;
  --ink-soft: #31415f;
  --muted: #687791;
  --line: #dce4ee;
  --line-strong: #c8d4e3;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --surface-blue: #eef5fb;
  --blue: #0757c8;
  --blue-dark: #073b86;
  --cyan: #00a6c7;
  --green: #0d9b72;
  --amber: #d98508;
  --red: #c94e4e;
  --navy: #071b38;
  --shadow-sm: 0 6px 20px rgba(16, 38, 72, 0.08);
  --shadow-md: 0 18px 54px rgba(15, 41, 79, 0.13);
  --container: 1600px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body[data-lang="zh"] .en,
body[data-lang="en"] .zh {
  display: none !important;
}

body[data-lang="en"] {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
strong {
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(340px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(207, 218, 231, 0.82);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 158px;
  min-height: 42px;
}

.brand-wordmark {
  width: 158px;
  height: auto;
}

.primary-nav {
  display: flex;
  width: 600px;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.primary-nav a {
  position: relative;
  color: #263752;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -25px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--blue);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-download {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  color: var(--blue-dark);
  border: 1px solid #b9cce5;
  border-radius: 5px;
  background: #f8fbff;
  transition: border-color 160ms ease, background 160ms ease;
}

.header-download:hover,
.header-download:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  background: #edf5ff;
}

.header-download > span:last-child,
.header-download strong,
.header-download small {
  display: block;
}

.header-download strong {
  font-size: 12px;
  line-height: 1.2;
}

.header-download small {
  margin-top: 1px;
  color: #718198;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.2;
}

.header-download-icon {
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.trial-button {
  min-width: 84px;
  box-shadow: 0 8px 22px rgba(7, 87, 200, 0.22);
}

.lang-toggle {
  min-width: 44px;
  height: 38px;
  padding: 0 11px;
  color: var(--ink-soft);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  color: var(--blue);
  background: var(--surface-soft);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  color: #fff;
  border: 1px solid var(--blue);
  border-radius: 5px;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(7, 87, 200, 0.17);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: #064aaa;
  background: #064aaa;
  box-shadow: 0 10px 28px rgba(7, 87, 200, 0.24);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 13px;
}

.button-large {
  min-height: 50px;
  padding: 0 24px;
  font-size: 15px;
}

.button-secondary,
.button-quiet {
  color: var(--blue-dark);
  border-color: #b9cce5;
  background: #fff;
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-quiet:hover,
.button-quiet:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  background: #f7faff;
  box-shadow: none;
}

.button-light {
  color: var(--blue-dark);
  border-color: #fff;
  background: #fff;
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--blue);
  border-color: #fff;
  background: #edf6ff;
  box-shadow: none;
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
  box-shadow: none;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 760px;
  padding: 76px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #fff 0%, #fff 44%, rgba(238, 247, 252, 0.95) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0 0 0 50%;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(64, 122, 169, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 122, 169, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(620px, 1.2fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
  padding: 12px 0;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(13, 155, 114, 0.1);
}

.hero h1 {
  max-width: 600px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 54px;
  line-height: 1.15;
}

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

.hero-lead {
  max-width: 610px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

.hero-trial-banner {
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 6px 12px 6px 7px;
  color: #34506f;
  border: 1px solid #c9dcef;
  border-radius: 5px;
  background: #f2f8ff;
  font-size: 11px;
}

.hero-trial-banner strong {
  color: var(--blue-dark);
  font-size: 12px;
}

.hero-trial-banner > span:last-child {
  padding-left: 10px;
  border-left: 1px solid #c9dcef;
  white-space: nowrap;
}

.trial-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  color: #fff;
  border-radius: 3px;
  background: var(--green);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.download-cta {
  gap: 10px;
}

.download-cta-icon {
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero-meta > div {
  min-width: 0;
  padding: 17px 15px 0 0;
}

.hero-meta > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.hero-meta span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.workspace-shell {
  overflow: hidden;
  width: 100%;
  min-height: 590px;
  border: 1px solid #b9cce0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(23, 58, 96, 0.18);
}

.workspace-topbar {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  height: 52px;
  padding: 0 16px 0 14px;
  border-bottom: 1px solid #dde6ef;
  background: #fff;
}

.workspace-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.workspace-brand img {
  width: 27px;
  height: 27px;
  border-radius: 6px;
}

.workspace-search {
  display: flex;
  width: 180px;
  height: 29px;
  align-items: center;
  justify-self: center;
  padding: 0 10px;
  border: 1px solid #d9e3ed;
  border-radius: 4px;
  background: #f6f9fc;
}

.workspace-search::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border: 1.5px solid #9badc1;
  border-radius: 50%;
}

.workspace-search span {
  width: 70%;
  height: 4px;
  border-radius: 2px;
  background: #dce5ee;
}

.workspace-search i {
  width: 12%;
  height: 4px;
  margin-left: auto;
  border-radius: 2px;
  background: #e5ebf2;
}

.workspace-user {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #155cbd;
  font-size: 9px;
  font-weight: 800;
}

.workspace-body {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 538px;
}

.workspace-sidebar {
  padding: 19px 10px;
  border-right: 1px solid #dfe7ef;
  background: #f5f8fb;
}

.workspace-sidebar > span {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  margin-bottom: 4px;
  padding: 0 10px;
  border-radius: 4px;
  color: #54657c;
  font-size: 10px;
}

.workspace-sidebar > span.is-active {
  color: var(--blue);
  background: #e5f0ff;
}

.workspace-sidebar > span b {
  font-weight: 700;
}

.workspace-sidebar .workspace-section-label {
  min-height: 22px;
  margin: 0 0 9px;
  color: #98a5b5;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-icon {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.icon-grid {
  border: 1.5px solid currentColor;
  box-shadow: inset 5px 0 0 transparent;
}

.icon-grid::before,
.icon-grid::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.icon-grid::before {
  top: 5px;
  right: 0;
  left: 0;
  height: 1px;
}

.icon-grid::after {
  top: 0;
  bottom: 0;
  left: 5px;
  width: 1px;
}

.icon-box {
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.icon-box::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 2px;
  left: 2px;
  height: 1px;
  background: currentColor;
}

.icon-tag {
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 2px 5px 2px 2px;
  transform: rotate(-12deg);
}

.icon-order {
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.icon-order::before,
.icon-order::after {
  content: "";
  position: absolute;
  right: 2px;
  left: 2px;
  height: 1px;
  background: currentColor;
}

.icon-order::before {
  top: 3px;
}

.icon-order::after {
  top: 7px;
}

.icon-stock {
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  border-radius: 1px;
}

.icon-stock::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 8px;
  height: 4px;
  border: 1.5px solid currentColor;
  transform: skew(-14deg);
}

.workspace-content {
  min-width: 0;
  padding: 22px;
  background: #f7f9fc;
}

.workspace-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.workspace-heading small,
.workspace-heading strong {
  display: block;
}

.workspace-heading small {
  margin-bottom: 2px;
  color: #718198;
  font-size: 9px;
}

.workspace-heading strong {
  color: #15243d;
  font-size: 14px;
}

.workspace-heading button {
  height: 29px;
  padding: 0 11px;
  color: #fff;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  font-size: 9px;
  font-weight: 700;
}

.workspace-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 11px;
}

.workspace-stats > div {
  position: relative;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid #dfe6ee;
  border-radius: 5px;
  background: #fff;
}

.workspace-stats small,
.workspace-stats strong {
  display: block;
}

.workspace-stats small {
  margin-bottom: 3px;
  color: #75849a;
  font-size: 8px;
}

.workspace-stats strong {
  color: #10213d;
  font-size: 18px;
  line-height: 1.2;
}

.trend {
  position: absolute;
  right: 10px;
  bottom: 13px;
  font-size: 7px;
  font-weight: 700;
}

.trend.positive {
  color: var(--green);
}

.trend.neutral {
  color: #6e7d91;
}

.trend.warning {
  color: var(--amber);
}

.workspace-panels {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 11px;
  margin-bottom: 11px;
}

.operations-panel,
.task-panel,
.workspace-table {
  min-width: 0;
  border: 1px solid #dfe6ee;
  border-radius: 5px;
  background: #fff;
}

.operations-panel,
.task-panel {
  min-height: 158px;
  padding: 12px;
}

.panel-title,
.table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title strong,
.table-title strong {
  color: #1d2d45;
  font-size: 9px;
}

.panel-title > span,
.table-title > span {
  color: #7c8ba0;
  font-size: 7px;
}

.chart-area {
  position: relative;
  height: 108px;
  margin-top: 9px;
  padding: 0 8px 18px;
  background-image: linear-gradient(#eef2f7 1px, transparent 1px);
  background-size: 100% 25%;
}

.chart-bars {
  display: flex;
  height: 82px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.chart-bars i {
  width: 13px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(#58bdd1, #0875d8);
  opacity: 0.82;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: #96a3b4;
  font-size: 6px;
}

.task-panel ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.task-panel li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #edf1f5;
}

.task-panel li:last-child {
  border-bottom: 0;
}

.task-panel li > span,
.task-panel li b,
.task-panel li small {
  display: block;
}

.task-panel li b {
  color: #2d3d55;
  font-size: 7px;
}

.task-panel li small {
  color: #8a97a8;
  font-size: 6px;
}

.task-check {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 1px solid #c7d2de;
  border-radius: 50%;
}

.task-check.is-done {
  position: relative;
  border-color: var(--green);
  background: var(--green);
}

.task-check.is-done::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 4px;
  height: 2px;
  border-bottom: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
  transform: rotate(-45deg);
}

.workspace-table {
  overflow: hidden;
}

.table-title {
  padding: 10px 12px;
  border-bottom: 1px solid #e5ebf1;
}

.workspace-table-row {
  display: grid;
  grid-template-columns: 1.8fr 0.55fr 1fr 0.6fr;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid #eef2f6;
  color: #45546a;
  font-size: 7px;
}

.workspace-table-row:last-child {
  border-bottom: 0;
}

.workspace-table-head {
  min-height: 29px;
  color: #8a98aa;
  background: #fafbfd;
  font-weight: 700;
}

.workspace-table-row > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-thumb {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
}

.thumb-blue {
  background: linear-gradient(145deg, #d8e9ff, #6c9ce2);
}

.thumb-cyan {
  background: linear-gradient(145deg, #d4f3f1, #56aaa9);
}

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

.status-dot.success {
  background: var(--green);
}

.status-dot.pending {
  background: var(--amber);
}

.facts-band {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.facts-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.75fr 0.85fr 1fr;
}

.facts-grid > div {
  min-width: 0;
  min-height: 94px;
  padding: 22px 24px 18px;
  border-left: 1px solid var(--line);
}

.facts-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.facts-grid small,
.facts-grid strong {
  display: block;
}

.facts-grid small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
}

.facts-grid strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 108px 0;
}

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

.heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 90px;
  align-items: end;
}

.section-heading h2,
.workflow-copy h2,
.security-copy h2,
.onboarding-layout h2 {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.25;
}

.section-heading > p:last-child {
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-intro {
  background: #fff;
}

.capability-tabs {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  min-height: 530px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.tab-list {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #f7f9fc;
}

.tab-list button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  width: 100%;
  min-height: 100px;
  padding: 19px 14px;
  color: #506079;
  border: 0;
  border-bottom: 1px solid #e3e9f0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.tab-list button:last-child {
  border-bottom: 0;
}

.tab-list button.is-active {
  color: var(--blue-dark);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(30, 61, 95, 0.08);
}

.tab-list button > span:last-child,
.tab-list strong,
.tab-list small {
  display: block;
}

.tab-index {
  color: #8d9bad;
  font-size: 11px;
  font-weight: 800;
}

.tab-list button.is-active .tab-index {
  color: var(--blue);
}

.tab-list strong {
  margin-bottom: 4px;
  color: inherit;
  font-size: 15px;
}

.tab-list small {
  color: #8290a3;
  font-size: 11px;
  line-height: 1.45;
}

.tab-panels {
  min-width: 0;
}

.capability-panel {
  display: grid;
  min-height: 528px;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: center;
  padding: 38px 34px 38px 42px;
}

.capability-panel[hidden] {
  display: none;
}

.capability-copy h3 {
  margin: 17px 0 14px;
  font-size: 28px;
  line-height: 1.3;
}

.capability-copy > p {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.availability {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 750;
}

.availability.available {
  color: #087654;
  background: #e7f6f0;
}

.availability.mixed {
  color: #8f5a02;
  background: #fff4d9;
}

.availability.planned {
  color: #285b92;
  background: #eaf2fb;
}

.feature-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 20px;
  color: #2c3c54;
  font-size: 13px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid var(--green);
  border-left: 1.5px solid var(--green);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.text-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px) rotate(45deg);
}

.product-surface {
  overflow: hidden;
  min-width: 0;
  min-height: 390px;
  border: 1px solid #cfdbe8;
  border-radius: 6px;
  background: #f7f9fc;
  box-shadow: 0 14px 36px rgba(26, 57, 91, 0.11);
}

.surface-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #dfe6ee;
  background: #fff;
}

.surface-toolbar b,
.surface-toolbar small {
  display: block;
}

.surface-toolbar b {
  color: #1d2c43;
  font-size: 11px;
}

.surface-toolbar small {
  color: #8592a4;
  font-size: 8px;
}

.surface-action {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 3px;
  color: #fff;
  background: var(--blue);
  font-size: 8px;
  font-weight: 700;
}

.filter-row {
  display: flex;
  gap: 7px;
  padding: 10px 12px;
  border-bottom: 1px solid #e1e7ee;
}

.filter-row span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #d4dee8;
  border-radius: 3px;
  color: #536279;
  background: #fff;
  font-size: 8px;
}

.filter-row i {
  display: block;
  width: 130px;
  height: 27px;
  margin-left: auto;
  border: 1px solid #d4dee8;
  border-radius: 3px;
  background: #fff;
}

.surface-table {
  margin: 12px;
  overflow: hidden;
  border: 1px solid #dfe6ed;
  border-radius: 4px;
  background: #fff;
}

.surface-row {
  display: grid;
  grid-template-columns: 22px 1.7fr 0.5fr 1fr 0.65fr;
  min-height: 66px;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid #e9edf2;
  color: #46566d;
  font-size: 8px;
}

.surface-row:last-child {
  border-bottom: 0;
}

.surface-row > span:nth-child(2) {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  column-gap: 8px;
}

.surface-row > span:nth-child(2) .surface-thumb {
  grid-row: span 2;
}

.surface-row b,
.surface-row small {
  display: block;
}

.surface-row b {
  color: #263750;
  font-size: 8px;
}

.surface-row small {
  color: #8a97a8;
  font-size: 6px;
}

.surface-row input {
  width: 10px;
  height: 10px;
  margin: 0;
}

.surface-head {
  min-height: 34px;
  color: #8290a2;
  background: #f9fbfd;
  font-size: 7px;
  font-weight: 700;
}

.surface-head > span:nth-child(2) {
  display: block;
}

.surface-thumb {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 3px;
}

.surface-thumb.one {
  background: linear-gradient(145deg, #d9e8fa, #548ed2);
}

.surface-thumb.two {
  background: linear-gradient(145deg, #e5eee5, #75a27e);
}

.surface-thumb.three {
  background: linear-gradient(145deg, #f4eadb, #bc8c55);
}

.progress {
  display: inline-block;
  overflow: hidden;
  width: 46px;
  height: 4px;
  margin-right: 4px;
  border-radius: 3px;
  background: #e8edf2;
}

.progress b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.state {
  display: inline-flex;
  min-height: 21px;
  align-items: center;
  padding: 0 6px;
  border-radius: 3px;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.state.ready {
  color: #087654;
  background: #e4f5ee;
}

.state.review {
  color: #8c5909;
  background: #fff3d8;
}

.state.editing {
  color: #285f9a;
  background: #e9f2fc;
}

.pricing-form {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.pricing-form label {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 56px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #dfe5ec;
  border-radius: 4px;
  background: #fff;
}

.pricing-form label span {
  color: #758398;
  font-size: 8px;
}

.pricing-form label b {
  color: #243650;
  font-size: 10px;
}

.pricing-summary,
.purchase-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 14px;
}

.pricing-summary > span,
.purchase-summary > span {
  padding: 10px;
  border: 1px solid #dfe5ec;
  border-radius: 4px;
  background: #fff;
}

.pricing-summary small,
.pricing-summary strong,
.purchase-summary small,
.purchase-summary strong {
  display: block;
}

.pricing-summary small,
.purchase-summary small {
  color: #8190a3;
  font-size: 7px;
}

.pricing-summary strong,
.purchase-summary strong {
  color: #20324d;
  font-size: 15px;
}

.surface-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 16px;
  padding: 10px;
  color: #3a608b;
  border: 1px solid #cbdff2;
  border-radius: 4px;
  background: #edf6ff;
  font-size: 8px;
}

.surface-notice i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.order-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
}

.order-columns > div {
  padding: 12px;
  border: 1px solid #dfe5ec;
  border-radius: 4px;
  background: #fff;
}

.order-columns small,
.order-columns strong {
  display: block;
}

.order-columns small {
  color: #8190a3;
  font-size: 7px;
}

.order-columns strong {
  margin: 2px 0 8px;
  color: #20324d;
  font-size: 17px;
}

.order-bar {
  display: block;
  overflow: hidden;
  height: 4px;
  border-radius: 2px;
  background: #e8edf3;
}

.order-bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.order-list {
  margin: 0 16px 16px;
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 4px;
  background: #fff;
}

.order-list > div {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  min-height: 57px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid #e8edf2;
}

.order-list > div:last-child {
  border-bottom: 0;
}

.order-list > div > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-list b,
.order-list small {
  display: block;
  font-size: 8px;
}

.order-list b {
  color: #2a3b55;
}

.order-list small {
  color: #8592a4;
}

.market-badge {
  display: inline-grid;
  width: 25px;
  height: 21px;
  place-items: center;
  border-radius: 3px;
  color: var(--blue-dark);
  background: #e7f0fb;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.purchase-summary {
  padding-top: 16px;
}

.purchase-flow {
  position: relative;
  margin: 2px 16px 16px;
  padding: 6px 12px;
  border: 1px solid #dfe5ec;
  border-radius: 4px;
  background: #fff;
}

.purchase-flow::before {
  content: "";
  position: absolute;
  top: 35px;
  bottom: 35px;
  left: 18px;
  width: 1px;
  background: #dce4ec;
}

.purchase-flow > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
}

.purchase-flow i {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 2px solid #c7d2de;
  border-radius: 50%;
  background: #fff;
}

.purchase-flow .done i {
  border-color: var(--green);
  background: var(--green);
}

.purchase-flow .active i {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 87, 200, 0.1);
}

.purchase-flow b,
.purchase-flow small {
  display: block;
}

.purchase-flow b {
  color: #263750;
  font-size: 9px;
}

.purchase-flow small {
  color: #8a97a8;
  font-size: 7px;
}

.operations-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.role-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 30px;
  border-right: 1px solid var(--line-strong);
  background: #fff;
}

.role-card:first-child {
  border-left: 1px solid var(--line-strong);
}

.role-card.role-primary {
  color: #fff;
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.role-number {
  color: #8090a5;
  font-size: 12px;
  font-weight: 800;
}

.role-primary .role-number {
  color: #8dc8ff;
}

.role-label {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.role-primary .role-label {
  color: #74d6e6;
}

.role-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.35;
}

.role-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.role-primary p {
  color: #d8e4f3;
}

.role-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.role-card li {
  padding: 5px 9px;
  color: #53647b;
  border: 1px solid #d5dfe9;
  border-radius: 3px;
  background: #f8fafc;
  font-size: 11px;
  font-weight: 650;
}

.role-primary li {
  color: #e8f2fe;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.workflow-section {
  background: #fff;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(560px, 1.25fr);
  gap: 84px;
  align-items: center;
}

.workflow-copy > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.workflow-points {
  border-top: 1px solid var(--line);
}

.workflow-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-points > div > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.workflow-points p,
.workflow-points strong,
.workflow-points small {
  display: block;
  margin: 0;
}

.workflow-points strong {
  margin-bottom: 2px;
  font-size: 14px;
}

.workflow-points small {
  color: var(--muted);
  font-size: 12px;
}

.team-surface {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #f6f9fc;
  box-shadow: var(--shadow-md);
}

.team-surface-head {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.team-surface-head small,
.team-surface-head strong {
  display: block;
}

.team-surface-head small {
  color: var(--muted);
  font-size: 11px;
}

.team-surface-head strong {
  font-size: 16px;
}

.team-surface-head > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #49617d;
  border-radius: 3px;
  background: #edf3f9;
  font-size: 11px;
  font-weight: 650;
}

.team-store-row {
  display: flex;
  gap: 0;
  padding: 14px 18px 0;
}

.team-store-row > span {
  display: flex;
  min-width: 128px;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #718097;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 800;
}

.team-store-row > span.is-active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: #edf5ff;
}

.team-store-row small {
  color: inherit;
  font-size: 10px;
  font-weight: 600;
}

.team-table {
  margin: 16px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.team-row {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 0.55fr;
  min-height: 66px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #e8edf2;
  color: #43536a;
  font-size: 11px;
}

.team-row:last-child {
  border-bottom: 0;
}

.team-head {
  min-height: 38px;
  color: #8290a2;
  background: #f9fbfd;
  font-size: 10px;
  font-weight: 700;
}

.team-row > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-row em {
  position: relative;
  padding-left: 12px;
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.team-row em::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.team-row em.away {
  color: var(--amber);
}

.team-row em.away::before {
  background: var(--amber);
}

.avatar {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.avatar-one {
  background: #155cbd;
}

.avatar-two {
  background: #15917b;
}

.avatar-three {
  background: #b06d16;
}

.permission-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 18px 18px;
  padding: 14px;
  border: 1px solid #d3e3f2;
  border-radius: 5px;
  background: #edf6ff;
}

.permission-note > i {
  position: relative;
  width: 22px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid var(--blue);
  border-radius: 3px;
}

.permission-note > i::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.permission-note p,
.permission-note strong,
.permission-note small {
  display: block;
  margin: 0;
}

.permission-note strong {
  color: #244e7e;
  font-size: 12px;
}

.permission-note small {
  color: #58779a;
  font-size: 10px;
}

.security-home {
  color: #fff;
  background: var(--navy);
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 90px;
  align-items: center;
}

.security-copy .eyebrow {
  color: #67d4e5;
}

.security-copy > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: #cbd9ea;
  line-height: 1.85;
}

.security-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.text-link-light {
  color: #fff;
}

.security-control-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.security-control-grid > div {
  min-height: 205px;
  padding: 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.security-control-grid strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 15px;
}

.security-control-grid p {
  margin: 0;
  color: #b8c8dc;
  font-size: 12px;
  line-height: 1.7;
}

.control-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  color: #5ed1e6;
}

.control-icon.lock {
  margin-top: 4px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.control-icon.lock::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 5px;
  width: 14px;
  height: 13px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.control-icon.shield {
  border: 2px solid currentColor;
  border-radius: 13px 13px 16px 16px;
  transform: scaleX(0.86);
}

.control-icon.shield::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.control-icon.audit {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.control-icon.audit::before,
.control-icon.audit::after {
  content: "";
  position: absolute;
  left: 6px;
  width: 13px;
  height: 2px;
  background: currentColor;
}

.control-icon.audit::before {
  top: 8px;
}

.control-icon.audit::after {
  top: 15px;
}

.control-icon.delete {
  width: 22px;
  margin-left: 3px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 3px 3px;
}

.control-icon.delete::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -4px;
  width: 26px;
  height: 2px;
  background: currentColor;
}

.control-icon.delete::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 6px;
  width: 8px;
  height: 4px;
  border: 2px solid currentColor;
  border-bottom: 0;
}

.pricing-preview {
  background: #fff;
}

.pricing-rows {
  border-top: 1px solid var(--line-strong);
}

.pricing-rows article {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr 0.7fr 0.62fr;
  gap: 26px;
  align-items: center;
  min-height: 150px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line-strong);
}

.pricing-rows article.is-featured {
  color: #fff;
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.price-name {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

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

.is-featured .price-name span {
  color: #79d3e5;
}

.price-name h3 {
  margin: 0;
  font-size: 21px;
}

.pricing-rows article > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.pricing-rows article.is-featured > p {
  color: #d2dfed;
}

.pricing-rows article > strong {
  font-size: 13px;
}

.pricing-rows article .button {
  justify-self: end;
  white-space: nowrap;
}

.onboarding-section {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(580px, 1.3fr);
  gap: 100px;
}

.onboarding-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.onboarding-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-strong);
}

.onboarding-steps li > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.onboarding-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.onboarding-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-band {
  padding: 66px 0;
  color: #fff;
  background: var(--blue);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.cta-label {
  display: block;
  margin-bottom: 10px;
  color: #bfeafa;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.35;
}

.cta-layout > div:last-child {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer {
  color: #d5dfeb;
  background: #06162e;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 0.75fr 0.95fr 0.7fr;
  gap: 60px;
  padding-top: 70px;
  padding-bottom: 44px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 18px;
  padding: 5px 8px;
  border-radius: 4px;
  background: #fff;
}

.footer-brand p {
  max-width: 380px;
  margin-bottom: 14px;
  color: #a9b8ca;
  font-size: 13px;
}

.footer-operator {
  color: #c7d2df;
  font-size: 12px;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
}

.footer-column a {
  color: #a9b8ca;
  font-size: 12px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-disclaimer {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  max-width: 900px;
  margin: 0;
  color: #8999ad;
  font-size: 11px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  color: #8190a4;
  font-size: 11px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

/* Internal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #fff 0%, #f3f8fc 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 56%;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(64, 122, 169, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 122, 169, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, transparent, #000);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.2;
}

.page-hero .container > p:last-of-type {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

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

.legal-doc {
  max-width: 900px;
}

.legal-doc h2 {
  margin: 46px 0 14px;
  padding-top: 4px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.4;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p,
.legal-doc li {
  color: #394a62;
  font-size: 15px;
  line-height: 1.9;
}

.legal-doc a,
.policy-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.check-list {
  margin: 12px 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 23px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 2px;
  width: 8px;
  height: 4px;
  border-bottom: 1.5px solid var(--green);
  border-left: 1.5px solid var(--green);
  transform: rotate(-45deg);
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.policy-layout > *,
.policy-content {
  min-width: 0;
}

.policy-index {
  position: sticky;
  top: 94px;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.policy-index a {
  padding: 9px 3px;
  color: #5b6a7f;
  font-size: 13px;
}

.policy-index a:hover,
.policy-index a:focus-visible {
  color: var(--blue);
}

.policy-content section {
  scroll-margin-top: 96px;
  margin-bottom: 52px;
}

.policy-content h2 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.4;
}

.policy-content h3 {
  margin: 26px 0 10px;
  font-size: 18px;
}

.policy-content p,
.policy-content li {
  color: #3b4c63;
  font-size: 15px;
  line-height: 1.9;
}

.policy-content .check-list {
  margin-top: 14px;
}

.table-like {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 22px 0;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}

.table-like .table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.7fr;
  min-height: 66px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.table-like .table-row:last-child {
  border-bottom: 0;
}

.table-like .table-row > span {
  min-width: 0;
  padding: 13px 16px;
  color: #3c4c62;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.table-like .table-head {
  min-height: 46px;
  color: var(--ink);
  background: #f1f5f9;
  font-weight: 750;
}

.security-grid,
.feature-grid,
.pricing-grid,
.company-grid,
.contact-grid,
.download-grid {
  display: grid;
  gap: 18px;
}

.security-grid {
  grid-template-columns: repeat(3, 1fr);
}

.security-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.security-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.security-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.security-preview {
  color: #fff;
  background: var(--navy);
}

.security-preview .eyebrow {
  color: #67d4e5;
}

.security-preview h2 {
  font-size: 36px;
}

.security-preview p {
  color: #cbd8e9;
}

.security-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.security-points > span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #e8f0f9;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.muted {
  background: var(--surface-soft);
}

/* Shared content pages */
.content-section {
  padding: 92px 0;
}

.content-section.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.content-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.content-heading h2 {
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.3;
}

.content-heading p:last-child {
  color: var(--ink-soft);
  font-size: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
}

.feature-code {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 11px;
  font-size: 19px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.availability-table {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}

.availability-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.5fr 0.9fr;
  min-height: 72px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.availability-row:last-child {
  border-bottom: 0;
}

.availability-row > span {
  padding: 13px 18px;
  color: #3e4e64;
  font-size: 13px;
}

.availability-head {
  min-height: 50px;
  background: #eff4f8;
  font-weight: 750;
}

.status-label {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 750;
}

.status-label.live {
  color: #087654;
  background: #e5f5ef;
}

.status-label.review {
  color: #8d5a05;
  background: #fff3d7;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
}

.pricing-card.featured {
  color: #fff;
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: var(--shadow-md);
}

.pricing-card .plan-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.pricing-card.featured .plan-label {
  color: #75d1e4;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.pricing-card .price {
  min-height: 58px;
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: 750;
}

.pricing-card > p {
  color: var(--muted);
  font-size: 13px;
}

.pricing-card.featured > p {
  color: #cad8e8;
}

.pricing-card ul {
  flex: 1;
  margin: 20px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-card.featured ul {
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-card li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 19px;
  color: #3b4c62;
  font-size: 13px;
}

.pricing-card.featured li {
  color: #dbe6f2;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid var(--green);
  border-left: 1.5px solid var(--green);
  transform: rotate(-45deg);
}

.pricing-card .button {
  width: 100%;
}

.quote-factors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.quote-factors > div {
  min-height: 155px;
  padding: 24px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.quote-factors span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.quote-factors strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
}

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

.company-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.company-story {
  padding-right: 60px;
}

.company-story h2 {
  margin-bottom: 20px;
  font-size: 36px;
}

.company-story p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.company-facts {
  border-top: 2px solid var(--blue);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-facts small {
  color: var(--muted);
  font-size: 12px;
}

.company-facts strong {
  font-size: 13px;
  overflow-wrap: anywhere;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
}

.contact-card span {
  display: block;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.contact-card h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.contact-card p {
  min-height: 52px;
  color: var(--muted);
  font-size: 13px;
}

.contact-card a {
  display: inline-block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.download-grid {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: start;
}

.download-panel {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.download-panel-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.download-panel-top img {
  width: 66px;
  height: 66px;
  border-radius: 13px;
}

.download-panel-top h2 {
  margin-bottom: 2px;
  font-size: 26px;
}

.download-panel-top p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.download-meta > div {
  padding: 19px 22px;
  border-right: 1px solid var(--line);
}

.download-meta > div:last-child {
  border-right: 0;
}

.download-meta small,
.download-meta strong {
  display: block;
}

.download-meta small {
  color: var(--muted);
  font-size: 11px;
}

.download-meta strong {
  font-size: 13px;
}

.download-action {
  padding: 26px 30px 30px;
}

.download-action .button {
  width: 100%;
}

.download-action p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.download-notes {
  border-top: 2px solid var(--blue);
}

.download-notes > div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.download-notes strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

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

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}

.faq-item button::after {
  content: "+";
  color: var(--blue);
  font-size: 22px;
  font-weight: 400;
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-answer {
  display: none;
  max-width: 850px;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 174px 1fr minmax(310px, auto);
    padding-inline: 24px;
  }

  .primary-nav {
    width: 420px;
    gap: 0;
  }

  .header-actions .button-quiet {
    display: none;
  }

  .hero-home {
    padding-top: 56px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
    gap: 34px;
  }

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

  .workspace-shell {
    min-height: 540px;
  }

  .capability-panel {
    grid-template-columns: 0.8fr 1.2fr;
    padding: 30px;
  }

  .security-layout {
    gap: 50px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    background: var(--ink);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 20px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 0;
    border-bottom: 1px solid #edf1f5;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero-home {
    min-height: 0;
  }

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

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

  .workspace-shell {
    max-width: 760px;
    min-height: 570px;
  }

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

  .facts-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .facts-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .capability-tabs {
    grid-template-columns: 1fr;
  }

  .tab-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tab-list button {
    min-height: 90px;
    border-right: 1px solid #e3e9f0;
    border-bottom: 0;
  }

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

  .capability-panel {
    min-height: 500px;
  }

  .role-card {
    padding: 28px 22px;
  }

  .role-card h3 {
    font-size: 21px;
  }

  .workflow-layout,
  .security-layout,
  .onboarding-layout,
  .download-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .team-surface {
    max-width: 720px;
  }

  .pricing-rows article {
    grid-template-columns: 0.8fr 1.4fr 0.75fr;
  }

  .pricing-rows article .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-layout > div:last-child {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
  }

  .security-grid,
  .feature-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-factors {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .company-story {
    padding-right: 0;
  }
}

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

  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .brand,
  .brand-wordmark {
    width: 134px;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions .header-download {
    display: none;
  }

  .lang-toggle {
    min-width: 40px;
  }

  .hero-home {
    padding: 48px 0 42px;
    background: linear-gradient(#fff 0%, #f0f7fb 100%);
  }

  .hero-grid {
    inset: 46% 0 0;
  }

  .product-kicker {
    margin-bottom: 18px;
    font-size: 11px;
  }

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

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-trial-banner {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px 9px;
    padding: 8px;
  }

  .hero-trial-banner > span:last-child {
    padding-left: 0;
    border-left: 0;
  }

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

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

  .hero-meta > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-meta > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .workspace-shell {
    min-height: 0;
    border-radius: 6px;
  }

  .workspace-topbar {
    grid-template-columns: 1fr auto;
  }

  .workspace-search {
    display: none;
  }

  .workspace-body {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 440px;
  }

  .workspace-sidebar {
    padding: 15px 7px;
  }

  .workspace-sidebar > span {
    justify-content: center;
    padding: 0;
  }

  .workspace-sidebar > span b,
  .workspace-sidebar .workspace-section-label {
    display: none;
  }

  .workspace-content {
    padding: 13px;
  }

  .workspace-heading button {
    display: none;
  }

  .workspace-stats {
    gap: 6px;
  }

  .workspace-stats > div {
    padding: 9px;
  }

  .workspace-stats strong {
    font-size: 14px;
  }

  .trend {
    display: none;
  }

  .workspace-panels {
    grid-template-columns: 1fr;
  }

  .task-panel {
    display: none;
  }

  .workspace-table-row {
    grid-template-columns: 1.5fr 0.45fr 0.8fr;
  }

  .workspace-table-row > span:last-child {
    display: none;
  }

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

  .facts-grid > div {
    min-height: 76px;
    padding: 16px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .section,
  .content-section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .workflow-copy h2,
  .security-copy h2,
  .onboarding-layout h2,
  .content-heading h2,
  .company-story h2 {
    font-size: 30px;
  }

  .tab-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px;
  }

  .tab-list button {
    min-height: 78px;
    padding: 13px 8px;
    border-right: 0;
    border-bottom: 1px solid #e3e9f0;
  }

  .capability-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 18px;
  }

  .capability-copy h3 {
    font-size: 24px;
  }

  .product-surface {
    min-height: 350px;
  }

  .surface-row {
    grid-template-columns: 20px 1.5fr 0.45fr 0.65fr;
  }

  .surface-row > span:nth-child(4) {
    display: none;
  }

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

  .role-card {
    min-height: 350px;
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    border-left: 1px solid var(--line-strong);
  }

  .team-store-row {
    overflow-x: auto;
  }

  .team-row {
    grid-template-columns: 1.35fr 0.85fr 0.55fr;
  }

  .team-row > span:nth-child(3) {
    display: none;
  }

  .security-control-grid {
    grid-template-columns: 1fr;
  }

  .security-control-grid > div {
    min-height: 165px;
  }

  .pricing-rows article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 18px;
  }

  .pricing-rows article .button {
    justify-self: stretch;
  }

  .cta-layout > div:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band h2 {
    font-size: 25px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .page-hero {
    padding: 62px 0 56px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero .container > p:last-of-type {
    font-size: 15px;
  }

  .page-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .policy-index {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .table-like .table-row {
    min-width: 680px;
  }

  .two-column,
  .security-grid,
  .feature-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }

  .quote-factors {
    grid-template-columns: 1fr;
  }

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

  .availability-row {
    min-width: 760px;
  }

  .company-facts > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .download-meta {
    grid-template-columns: 1fr;
  }

  .download-meta > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .download-meta > div:last-child {
    border-bottom: 0;
  }
}

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

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