:root {
  --ink: #071b2f;
  --muted: #607284;
  --line: #dbe7ef;
  --soft: #f4f9fc;
  --soft-2: #eaf4fa;
  --blue: #116da9;
  --blue-deep: #082d4d;
  --green: #63bd1c;
  --green-deep: #3f8f10;
  --white: #fff;
  --shadow: 0 22px 70px rgb(7 27 47 / 12%);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.usx-site {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue-deep);
  font-weight: 800;
  text-decoration: none;
}

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

.usx-site img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(255 255 255 / 92%);
  border-bottom: 1px solid rgb(219 231 239 / 78%);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 500px;
  height: auto;
}

.home-page .site-nav {
  min-height: 62px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: #244257;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--blue);
}

.button,
.nav-links .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0a4e82);
  box-shadow: 0 12px 28px rgb(17 109 169 / 22%);
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.green {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 14%, rgb(99 189 28 / 13%), transparent 32%),
    linear-gradient(180deg, #f8fcff 0%, #fff 78%);
}

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

.hero-inner {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.08fr);
  gap: 56px;
  align-items: center;
  padding: 64px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-lockup {
  margin: 0 0 18px;
}

.product-name {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.product-qualifier {
  margin: 0;
  color: #526a7c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: #425a6d;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
}

.proof-row div {
  min-height: auto;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 72%);
}

.proof-row strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.25;
}

.proof-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
}

.hero-globe-card {
  width: 100%;
  margin: 0 auto 26px;
  padding: 22px 24px 18px;
  border: 1px solid #d7e8f2;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 70%);
  box-shadow: 0 18px 58px rgb(7 27 47 / 9%);
  text-align: center;
}

.hero-globe-card img {
  display: block;
  width: 100%;
  max-width: 474px;
  margin: 0 auto 10px;
}

.hero-globe-card span {
  display: block;
  color: #315068;
  font-size: 15px;
  font-weight: 800;
}

.product-window {
  overflow: hidden;
  border: 1px solid #cadbe6;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #0d2a44;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #6f8496;
}

.window-bar span:nth-child(2) {
  background: #2f96dc;
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.product-window img {
  display: block;
  width: 100%;
}

.section {
  padding: 88px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  padding: 56px 0;
  color: var(--white);
  background: linear-gradient(135deg, #06192c, #0c4168);
}

.section-header {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
}

.dark .section-header p,
.dark p {
  color: rgb(255 255 255 / 78%);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgb(7 27 47 / 6%);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.card p,
.card li {
  color: var(--muted);
}

.card-action {
  display: flex;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 18px;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--blue);
  background: #e8f5fc;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: #40586b;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--green) 38%, #d8f4ca 42%);
}

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

.workflow article {
  position: relative;
  min-height: 238px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 38px rgb(7 27 47 / 6%);
}

.workflow article::after {
  content: "";
  position: absolute;
  top: 47px;
  right: -18px;
  width: 18px;
  border-top: 2px solid #c9dce8;
}

.workflow article:last-child::after {
  display: none;
}

.workflow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 900;
}

.workflow h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.workflow p {
  color: var(--muted);
}

.assurance-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgb(99 189 28 / 13%), transparent 34%),
    #fff;
  box-shadow: var(--shadow);
}

.assurance-panel h3 {
  margin-bottom: 22px;
  font-size: 26px;
}

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

.faq-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.faq-grid p {
  color: var(--muted);
}

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

.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgb(7 27 47 / 8%);
}

.screenshot-card img {
  display: block;
  width: 100%;
}

.screenshot-card figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 30px 34px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.cta-band > div:first-child {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
}

.cta-band p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band .hero-actions {
  justify-content: flex-end;
  margin: 0;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.page-hero {
  padding: 88px 0 64px;
  background: linear-gradient(180deg, #f7fbfe, #fff);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

.doc-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.doc-nav {
  position: sticky;
  top: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.doc-nav a {
  display: block;
  padding: 8px 0;
  color: #315068;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.doc-content {
  min-width: 0;
}

.doc-section {
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.doc-section h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.property-prefix-heading {
  margin: 0 0 16px;
  color: #315068;
  font-size: 15px;
  font-weight: 800;
}

#properties table.doc_table {
  table-layout: fixed;
}

#properties table.doc_table td:first-child,
#properties table.doc_table th:first-child {
  width: 34%;
}

#properties table.doc_table td:first-child code {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.doc-section img,
.documentation_instructions img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 34px rgb(7 27 47 / 8%);
}

.legacy-docs {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
  overflow-x: hidden;
}

.section .legacy-docs {
  padding: 0;
}

.legacy-docs .object_name {
  margin: 40px 0 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 28px;
  font-weight: 850;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.usx-site .object_name {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legacy-docs .top {
  margin-bottom: 14px;
  font-size: 14px;
}

.legacy-docs .documentation_instructions {
  overflow-x: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #3f5669;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legacy-docs table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.usx-site div.doc_table {
  max-width: 100%;
  overflow-x: auto;
}

.usx-site table.doc_table {
  width: 100%;
  border-collapse: collapse;
}

.doc-section .doc_table,
.table-reference-docs .doc_table {
  margin: 18px 0 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.doc-section table.doc_table,
.table-reference-docs table.doc_table {
  min-width: 760px;
}

.usx-site table.doc_table th {
  background: #f2f8fb;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-align: left;
}

.usx-site table.doc_table td,
.usx-site table.doc_table th {
  padding: 12px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.usx-site table.doc_table td:first-child {
  width: 30%;
  color: #173957;
  font-weight: 750;
}

.legacy-docs td,
.legacy-docs th {
  padding: 9px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.doc_header {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
}

.table-reference-section {
  padding: 48px 0 84px;
}

.table-reference-shell {
  width: min(100% - 32px, 1680px);
  margin: 0 auto;
}

.table-reference-docs {
  width: 100%;
  max-width: none;
  padding: 0;
  overflow: visible;
}

.table-reference-docs .object_name {
  margin-top: 34px;
  padding-top: 26px;
}

.table-reference-docs table.doc_table {
  min-width: 980px;
  table-layout: auto;
}

.table-reference-docs table.doc_table td:first-child {
  width: 28%;
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 6px;
  background: #f1faee;
  color: #315068;
}

@media (max-width: 900px) {
  .site-nav {
    min-height: auto;
    padding: 14px 0;
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }

  .brand img {
    width: clamp(300px, 56vw, 430px);
  }

  .nav-links {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-links .button {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero-inner,
  .split,
  .grid.two,
  .grid.three,
  .screenshot-grid,
  .doc-layout,
  .cta-band,
  .workflow,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .workflow article {
    min-height: auto;
  }

  .workflow article::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 41px;
    width: 0;
    height: 18px;
    border-top: 0;
    border-left: 2px solid #c9dce8;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 42px;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .doc-nav {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-inner,
  .section-inner,
  .site-nav,
  .footer-inner,
  .legacy-docs {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

  .brand img {
    width: min(340px, calc(100vw - 40px));
  }

  .home-page .site-nav {
    min-height: 58px;
  }

  .nav-links {
    gap: 14px 18px;
  }

  .nav-links .button {
    flex: 0 0 auto;
    width: auto;
    margin-inline: auto;
  }

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

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

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

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

  .card,
  .doc-section,
  .legacy-docs .documentation_instructions,
  .cta-band,
  .assurance-panel,
  .faq-grid article {
    padding: 20px;
  }

  .legacy-docs table {
    min-width: 0;
    table-layout: fixed;
  }

  .legacy-docs colgroup,
  .usx-site table.doc_table colgroup {
    display: none;
  }

  .legacy-docs td,
  .legacy-docs th,
  .usx-site table.doc_table td,
  .usx-site table.doc_table th {
    width: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .usx-site table.doc_table {
    min-width: 0;
    table-layout: fixed;
  }

  .table-reference-docs table.doc_table {
    min-width: 860px;
    table-layout: auto;
  }
}
