:root {
  --ink: #0e1626;
  --ink-soft: #334155;
  --muted: #667085;
  --brand: #315eea;
  --brand-dark: #2148bd;
  --security: #c8ff4d;
  --label-dot: #6387ff;
  --security-soft: #f3ffd8;
  --blue-soft: #edf2ff;
  --line: #d8e1ee;
  --surface: #ffffff;
  --surface-alt: #f7f9fc;
  --surface-raised: #ffffff;
  --dark-panel: #101722;
  --warning: #a16207;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(42, 67, 110, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface-alt);
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 225, 238, 0.88);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 14px 32px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 820;
  gap: 10px;
}

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

.footer-brand-logo {
  display: block;
  height: 32px;
  object-fit: contain;
  width: auto;
}

.brand-mark {
  align-items: center;
  background: var(--brand);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  position: relative;
  width: 34px;
}

.brand-mark::after {
  background: var(--security);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 7px;
  position: absolute;
  right: 7px;
  top: 8px;
}

.site-nav {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 14px;
  gap: 24px;
  justify-content: center;
}

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

.header-actions {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  justify-self: end;
}

.header-dropdown {
  position: relative;
}

.language-button,
.header-download-toggle {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  white-space: nowrap;
}

.language-button:focus-visible,
.header-download-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(49, 94, 234, 0.16);
  outline: 0;
}

.language-button {
  background: transparent;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 760;
  padding: 6px 1px;
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--brand);
}

.dropdown-chevron {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 7px;
  margin-top: -3px;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  width: 7px;
}

.header-dropdown.is-open .dropdown-chevron {
  transform: rotate(225deg);
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(216, 225, 238, 0.95);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(42, 67, 110, 0.16);
  display: none;
  min-width: 220px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 40;
}

.header-dropdown.is-open .dropdown-menu {
  display: grid;
}

.language-menu {
  gap: 4px;
  max-height: min(520px, calc(100vh - 96px));
  min-width: 320px;
  overflow: auto;
  padding: 14px;
}

.language-search {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #8b95a6;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
  margin: -2px 0 8px;
  padding: 4px 4px 12px;
}

.language-search span {
  border: 2px solid currentColor;
  border-radius: 999px;
  height: 15px;
  position: relative;
  width: 15px;
}

.language-search span::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2px;
  position: absolute;
  right: -6px;
  top: 11px;
  transform: rotate(45deg);
  width: 7px;
}

.language-search input {
  border: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  outline: 0;
  width: 100%;
}

.language-search input::placeholder {
  color: #8b95a6;
}

.language-option,
.download-menu a {
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  padding: 9px 10px;
  text-align: left;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active,
.download-menu a:hover,
.download-menu a:focus-visible {
  background: var(--blue-soft);
  color: var(--brand);
}

.download-menu {
  gap: 4px;
  min-width: 206px;
}

.header-cta,
.button {
  align-items: center;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 760;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
}

.header-cta,
.button-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 14px 34px rgba(49, 94, 234, 0.22);
}

.header-cta {
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(49, 94, 234, 0.18);
  font-size: 13px;
  min-height: 34px;
  padding: 7px 12px;
}

.button-secondary {
  background: var(--dark-panel);
  color: white;
}

.button-ghost {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.hero-section .button-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 225, 238, 0.9);
  color: var(--ink);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 38px;
  width: 38px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 22px;
}

.section {
  padding: 92px 28px;
  scroll-margin-top: 78px;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.hero-section {
  background:
    radial-gradient(circle at 50% 18%, rgba(49, 94, 234, 0.16), transparent 34%),
    linear-gradient(118deg, rgba(49, 94, 234, 0.08), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: var(--ink);
  min-height: 820px;
  padding-bottom: 72px;
  padding-top: 112px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  background-image:
    linear-gradient(rgba(49, 94, 234, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 94, 234, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

.hero-section .section-inner {
  position: relative;
  z-index: 1;
}

.hero-grid {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.hero-copy {
  max-width: 860px;
  text-align: center;
}

.eyebrow {
  align-items: center;
  background: var(--blue-soft);
  border: 1px solid #dbe5ff;
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 14px;
  font-weight: 820;
  gap: 8px;
  letter-spacing: 0;
  margin: 0 0 14px;
  padding: 6px 10px;
}

.eyebrow::before {
  background: var(--label-dot);
  border-radius: 999px;
  content: "";
  height: 7px;
  width: 7px;
}

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

h1 {
  font-size: 58px;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 24px;
}

h2 {
  font-size: 38px;
  letter-spacing: 0;
  line-height: 1.18;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hero-subtitle,
.section-lead,
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}

.hero-section .eyebrow,
.section-heading .eyebrow,
.local-security-copy .eyebrow,
.masking-copy .eyebrow {
  color: var(--brand);
}

.hero-section h1 {
  color: var(--ink);
  font-size: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.hero-section h1 span {
  color: var(--brand);
  display: block;
}

.hero-section .hero-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.hero-downloads {
  gap: 10px;
}

.hero-downloads .button {
  font-size: 14px;
  min-width: 150px;
  padding-left: 18px;
  padding-right: 18px;
}

.trust-list span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 720;
  padding: 8px 12px;
}

.hero-pipeline {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 225, 238, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(49, 94, 234, 0.12);
  display: grid;
  gap: 6px;
  margin-top: 30px;
  max-width: 610px;
  padding: 16px 18px;
}

.hero-pipeline span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-pipeline strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
}

.hero-visual {
  max-width: 1040px;
  width: 100%;
}

.hero-video-shell {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    #101722;
  border: 1px solid rgba(216, 225, 238, 0.9);
  border-radius: 26px;
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.16),
    0 16px 46px rgba(49, 94, 234, 0.12);
  overflow: hidden;
  position: relative;
  transform: none;
}

.hero-demo-video {
  aspect-ratio: 16 / 9;
  background: #101722;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.hero-video-badge {
  background: rgba(16, 23, 34, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 820;
  left: 18px;
  line-height: 1;
  padding: 10px 12px;
  position: absolute;
  top: 18px;
}

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

.global-section,
.pricing-section {
  background: var(--surface-alt);
}

.capabilities-section,
.use-cases-section,
.pricing-section {
  overflow: hidden;
  position: relative;
}

.capabilities-section::before,
.use-cases-section::before,
.pricing-section::before {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.capabilities-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.capabilities-section::before {
  background-image:
    linear-gradient(rgba(49, 94, 234, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 94, 234, 0.055) 1px, transparent 1px);
  background-position: center top;
  background-size: 42px 42px;
  opacity: 0.72;
}

.use-cases-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 58%, #ffffff 100%);
}

.use-cases-section::before {
  background-image:
    linear-gradient(rgba(49, 94, 234, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 94, 234, 0.06) 1px, transparent 1px);
  background-position: center;
  background-size: 52px 52px;
  opacity: 0.48;
}

.pricing-section::before {
  background:
    linear-gradient(120deg, rgba(49, 94, 234, 0.06) 0 1px, transparent 1px 90px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(237, 242, 255, 0.42));
  opacity: 0.88;
}

.global-section {
  padding-top: 66px;
}

.processing-scope-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.processing-scope-layout {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.scope-materials {
  display: grid;
  gap: 16px;
}

.scope-material-card,
.entity-scope-panel {
  background: white;
  border: 1px solid rgba(216, 225, 238, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(42, 67, 110, 0.08);
}

.scope-material-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.scope-card-heading {
  align-items: center;
  display: flex;
  gap: 12px;
}

.scope-card-heading h3 {
  font-size: 20px;
  margin-bottom: 0;
}

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

.scope-material-grid span {
  align-items: center;
  background: #f7f9fc;
  border: 1px solid #e6edf7;
  border-radius: var(--radius);
  color: var(--ink-soft);
  display: flex;
  font-size: 14px;
  font-weight: 760;
  gap: 10px;
  min-height: 48px;
  padding: 10px;
}

.material-icon {
  align-items: center;
  background: linear-gradient(145deg, #7f8c9a, #606a75);
  border: 0;
  border-radius: 7px 12px 7px 7px;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.16);
  color: white;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 38px;
}

.material-icon::before {
  content: "";
  display: block;
  position: absolute;
}

.material-icon::after {
  content: "";
  position: absolute;
}

.material-icon::before {
  border-bottom: 11px solid rgba(255, 255, 255, 0.9);
  border-left: 11px solid transparent;
  right: 0;
  top: 0;
}

.material-icon-pdf-text {
  background: linear-gradient(145deg, #ff4d4f, #d9363e);
}

.material-icon-pdf-text::after,
.material-icon-pdf-scan::after {
  content: "P";
  font-size: 22px;
  font-weight: 900;
  inset: auto auto 4px 12px;
  line-height: 1;
}

.material-icon-doc {
  background: linear-gradient(145deg, #2f80ed, #1f5fbf);
}

.material-icon-doc::after {
  content: "W";
  font-size: 22px;
  font-weight: 900;
  inset: auto auto 4px 10px;
  line-height: 1;
}

.material-icon-txt {
  background: linear-gradient(145deg, #64748b, #475569);
}

.material-icon-txt::before {
  border-bottom: 11px solid rgba(255, 255, 255, 0.9);
  border-left: 11px solid transparent;
  height: 0;
  left: auto;
  right: 0;
  top: 0;
  width: 0;
}

.material-icon-txt::after {
  background: white;
  box-shadow: 0 7px 0 white, 0 14px 0 white;
  content: "";
  height: 2px;
  left: 10px;
  right: 10px;
  top: 12px;
}

.material-icon-scan {
  background: linear-gradient(145deg, #f59e0b, #d97706);
}

.material-icon-scan::before {
  border: 5px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  height: 21px;
  left: 6px;
  right: auto;
  top: 7px;
  width: 21px;
}

.material-icon-scan::after {
  content: "P";
  font-size: 20px;
  font-weight: 900;
  inset: auto auto 4px 12px;
  line-height: 1;
}

.material-icon-pdf-scan {
  background: linear-gradient(145deg, #ffb43b, #e28a08);
}

.material-icon-pdf-scan::before {
  border: 5px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  height: 21px;
  left: 6px;
  right: auto;
  top: 7px;
  width: 21px;
}

.material-icon-image {
  background: linear-gradient(145deg, #12a150, #07843f);
}

.material-icon-image::before {
  background:
    radial-gradient(circle at 34% 28%, white 0 4px, transparent 5px),
    linear-gradient(135deg, transparent 43%, white 44% 61%, transparent 62%);
  border: 0;
  inset: 10px 8px 8px;
}

.material-icon-image::after {
  content: "";
}

.entity-scope-panel {
  padding: 24px;
}

.entity-panel-heading {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 18px;
}

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

.entity-hover-board {
  background: #f7f9fc;
  border: 1px solid #e6edf7;
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(205px, 0.4fr) minmax(0, 0.6fr);
  padding: 14px;
}

.entity-tab-list {
  display: grid;
  gap: 10px;
}

.entity-tab {
  background: white;
  border: 1px solid #e6edf7;
  border-radius: var(--radius);
  color: var(--ink-soft);
  cursor: pointer;
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.entity-tab strong {
  color: var(--ink);
  font-size: 15px;
}

.entity-tab span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.entity-tab.is-active,
.entity-tab:hover,
.entity-tab:focus-visible {
  background: linear-gradient(145deg, #315eea, #244fd2);
  border-color: rgba(49, 94, 234, 0.2);
  box-shadow: 0 18px 36px rgba(49, 94, 234, 0.18);
  color: white;
  outline: 0;
  transform: translateY(-1px);
}

.entity-tab.is-active strong,
.entity-tab.is-active span,
.entity-tab:hover strong,
.entity-tab:hover span,
.entity-tab:focus-visible strong,
.entity-tab:focus-visible span {
  color: white;
}

.entity-detail-stack {
  background: white;
  border: 1px solid #e6edf7;
  border-radius: var(--radius);
  min-height: 372px;
  overflow: hidden;
  padding: 26px 28px 30px;
  position: relative;
}

.entity-detail-panel {
  inset: 26px 28px 30px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.entity-detail-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.entity-detail-panel h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.entity-detail-panel p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.entity-tag-cloud {
  column-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 4px;
  row-gap: 12px;
}

.entity-tag-cloud span {
  background: #f5f7fb;
  border: 1px solid #e8eef7;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  padding: 10px 12px;
}

.global-rule-layout,
.local-security-layout,
.masking-layout {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.global-selling-points,
.use-case-grid {
  display: grid;
  gap: 14px;
}

.status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 820;
  justify-self: start;
  padding: 4px 9px;
}

.supported {
  background: #eaf0ff;
  color: #244fd2;
}

.soon {
  background: #edf5ff;
  color: #2865ac;
}

.planned {
  background: #f0f2f5;
  color: #5e6673;
}

.custom {
  background: var(--security-soft);
  color: #455f00;
}

.info-card,
.rule-matrix,
.world-map-card,
.pricing-card,
.enterprise-pricing {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(42, 67, 110, 0.07);
}

.global-rule-layout {
  align-items: stretch;
  margin-bottom: 22px;
}

.global-showcase {
  margin-bottom: 0;
}

.global-network-layout {
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr);
}

.world-map-card {
  background:
    radial-gradient(circle at 48% 43%, rgba(99, 135, 255, 0.28), transparent 24%),
    radial-gradient(circle at 70% 68%, rgba(200, 255, 77, 0.14), transparent 26%),
    linear-gradient(145deg, #0b111a, #111b2d 58%, #172033);
  color: white;
  min-height: 500px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.global-map-card {
  min-height: 640px;
  padding: 0;
}

.global-map-visual {
  height: calc(100% - 24px);
  inset: 12px;
  position: absolute;
  width: calc(100% - 24px);
  z-index: 1;
}

.continent-layer path {
  fill: rgba(99, 135, 255, 0.16);
  stroke: rgba(219, 229, 255, 0.34);
  stroke-width: 1.2;
}

.route-layer path {
  animation: routePulse 5s ease-in-out infinite;
  fill: none;
  stroke: rgba(200, 255, 77, 0.62);
  stroke-dasharray: 8 12;
  stroke-linecap: round;
  stroke-width: 2.4;
}

.route-layer path:nth-child(even) {
  animation-delay: 1s;
  stroke: rgba(99, 135, 255, 0.72);
}

.city-layer circle {
  fill: #8fb0ff;
  filter: drop-shadow(0 0 9px rgba(99, 135, 255, 0.9));
}

.city-layer circle:first-child {
  fill: var(--security);
  filter: drop-shadow(0 0 14px rgba(200, 255, 77, 0.9));
}

@keyframes routePulse {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.5;
  }

  50% {
    stroke-dashoffset: -36;
    opacity: 1;
  }
}

.rule-engine-marker {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 242, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 8px;
  left: 62.5%;
  padding: 20px 24px;
  position: absolute;
  text-align: center;
  top: 44%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.rule-engine-marker span,
.global-copy-panel span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.rule-engine-marker strong {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.15;
}

.map-label {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(219, 229, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 780;
  padding: 7px 11px;
  position: absolute;
  z-index: 3;
}

.label-na {
  left: 15%;
  top: 28%;
}

.label-eu {
  left: 45%;
  top: 21%;
}

.label-apac {
  right: 9%;
  top: 35%;
}

.label-mea {
  left: 54%;
  top: 60%;
}

.label-latam {
  left: 21%;
  bottom: 23%;
}

.global-copy-panel {
  background: rgba(10, 13, 18, 0.72);
  border: 1px solid rgba(219, 229, 255, 0.2);
  border-radius: var(--radius);
  bottom: 28px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  color: white;
  display: grid;
  gap: 12px;
  max-width: 430px;
  padding: 22px;
  position: absolute;
  right: 28px;
  z-index: 4;
}

.global-copy-panel h3 {
  color: white;
  font-size: 25px;
  margin-bottom: 0;
}

.global-copy-panel p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  margin-bottom: 0;
}

.global-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.global-signal-row strong {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(219, 229, 255, 0.18);
  border-radius: 999px;
  color: white;
  font-size: 13px;
  padding: 7px 10px;
}

.map-grid {
  background-image:
    linear-gradient(rgba(237, 242, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 242, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  inset: 0;
  opacity: 0.5;
  position: absolute;
}

.world-map-card::before,
.world-map-card::after {
  border: 1px solid rgba(99, 135, 255, 0.22);
  border-radius: 50%;
  content: "";
  inset: 12%;
  position: absolute;
}

.world-map-card::after {
  inset: 26% 8%;
}

.global-orbit {
  isolation: isolate;
}

.global-orbit::before {
  transform: rotate(-15deg);
}

.global-orbit::after {
  transform: rotate(18deg);
}

.orbit-ring {
  border: 1px solid rgba(99, 135, 255, 0.24);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--rotation));
  z-index: 1;
}

.orbit-ring::after {
  background: var(--label-dot);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(99, 135, 255, 0.82);
  content: "";
  height: 9px;
  left: 18%;
  position: absolute;
  top: 12%;
  width: 9px;
}

.orbit-ring-one {
  --rotation: -18deg;
  height: 330px;
  width: 520px;
}

.orbit-ring-two {
  --rotation: 28deg;
  height: 260px;
  width: 640px;
}

.orbit-ring-three {
  --rotation: 68deg;
  border-color: rgba(200, 255, 77, 0.22);
  height: 390px;
  width: 390px;
}

.orbit-ring-three::after {
  background: #8fb0ff;
}

.core-node {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 242, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  justify-items: center;
  left: 50%;
  min-height: 176px;
  padding: 28px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  z-index: 3;
}

.core-node span,
.global-caption span,
.matrix-kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.core-node strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.16;
}

.core-node em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 760;
}

.signal-node {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(219, 229, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 780;
  padding: 9px 13px;
  position: absolute;
  z-index: 2;
}

.signal-language {
  left: 12%;
  top: 18%;
}

.signal-border {
  right: 10%;
  top: 19%;
}

.signal-ai {
  left: 8%;
  top: 52%;
}

.signal-legal {
  right: 9%;
  top: 55%;
}

.signal-enterprise {
  bottom: 18%;
  left: 17%;
}

.signal-export {
  bottom: 16%;
  right: 17%;
}

.global-caption {
  background: rgba(10, 13, 18, 0.58);
  border: 1px solid rgba(219, 229, 255, 0.2);
  border-radius: var(--radius);
  bottom: 22px;
  display: grid;
  gap: 4px;
  left: 24px;
  padding: 14px 16px;
  position: absolute;
  right: 24px;
  z-index: 3;
}

.global-caption strong {
  color: white;
  font-size: 18px;
}

.rule-matrix {
  align-self: stretch;
  display: grid;
  gap: 20px;
  padding: 30px;
}

.rule-matrix h3 {
  font-size: 30px;
  margin-bottom: 0;
}

.rule-matrix > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 0;
}

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

.matrix-grid div {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 5px;
  padding: 16px;
}

.matrix-grid span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
}

.matrix-grid strong {
  color: var(--ink);
  font-size: 17px;
}

.matrix-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  margin-bottom: 0;
}

.matrix-note {
  background: var(--blue-soft);
  border: 1px solid #dbe5ff;
  border-radius: var(--radius);
  display: grid;
  gap: 5px;
  padding: 16px;
}

.matrix-note strong {
  color: var(--brand);
  font-size: 17px;
}

.matrix-note span {
  color: var(--ink-soft);
  font-size: 14px;
}

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

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

.local-security-section {
  background:
    radial-gradient(circle at 78% 24%, rgba(49, 94, 234, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding-bottom: 76px;
  padding-top: 76px;
}

.local-security-layout {
  display: block;
}

.local-security-copy {
  margin: 0 auto 36px;
  max-width: 760px;
  text-align: center;
}

.local-security-copy h2 {
  color: var(--ink);
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 16px;
  max-width: 760px;
}

.local-security-copy .section-lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}

.ai-preflight-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  margin: 0 auto;
  max-width: 1080px;
}

.preflight-loop-card,
.preflight-value-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(32, 47, 75, 0.07);
}

.preflight-loop-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
    radial-gradient(circle at 92% 12%, rgba(49, 94, 234, 0.12), transparent 28%);
  padding: 34px 30px 26px;
  position: relative;
}

.preflight-badge {
  align-items: center;
  background: #eef3fb;
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 14px;
  font-weight: 820;
  left: 28px;
  line-height: 1;
  padding: 10px 16px;
  position: absolute;
  top: -17px;
}

.preflight-loop-card h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.24;
  margin-bottom: 16px;
}

.preflight-steps {
  display: grid;
  gap: 22px;
}

.preflight-step {
  align-items: center;
  background: white;
  border: 1px solid rgba(207, 216, 229, 0.82);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: 48px 1fr;
  min-height: 68px;
  padding: 10px 14px;
  position: relative;
}

.preflight-step > span {
  align-items: center;
  align-self: center;
  background: var(--blue-soft);
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  height: 30px;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  width: 48px;
}

.preflight-step > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.preflight-step:not(:last-child)::after {
  align-items: center;
  background: white;
  border: 1px solid #d6e4ff;
  border-radius: 50%;
  bottom: -18px;
  color: var(--brand);
  content: "↓";
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  left: 50%;
  line-height: 1;
  position: absolute;
  transform: translateX(-50%);
  width: 20px;
  z-index: 1;
}

.preflight-step h4 {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  margin: 0 0 2px;
}

.preflight-step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.preflight-value-grid {
  display: grid;
  gap: 14px;
}

.preflight-value-card {
  align-items: flex-start;
  column-gap: 14px;
  display: grid;
  grid-template-columns: 40px 1fr;
  min-height: 104px;
  padding: 20px 22px;
  row-gap: 2px;
}

.preflight-value-card h3 {
  color: var(--ink);
  font-size: 18px;
  grid-column: 2;
  line-height: 1.28;
  margin-bottom: 0;
}

.preflight-value-card p {
  color: var(--muted);
  font-size: 14px;
  grid-column: 2;
  margin: 0;
}

.preflight-icon {
  align-items: center;
  background: var(--blue-soft);
  border-radius: 12px;
  color: var(--brand);
  display: inline-flex;
  grid-row: 1 / span 2;
  height: 34px;
  justify-content: center;
  margin: 0;
  position: relative;
  width: 38px;
}

.preflight-icon::before,
.preflight-icon::after {
  content: "";
  position: absolute;
}

.preflight-icon-files::before {
  border: 2px solid currentColor;
  border-radius: 4px;
  height: 20px;
  width: 15px;
}

.preflight-icon-files::after {
  border-top: 2px solid currentColor;
  box-shadow: 0 6px 0 currentColor;
  height: 0;
  width: 9px;
}

.preflight-icon-context::before {
  border: 2px dashed currentColor;
  border-radius: 8px;
  height: 21px;
  width: 25px;
}

.preflight-icon-context::after {
  background: currentColor;
  border-radius: 999px;
  box-shadow: -8px 0 0 currentColor, 8px 0 0 currentColor;
  height: 4px;
  width: 4px;
}

.preflight-icon-local::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 22px;
  width: 22px;
}

.preflight-icon-local::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 10px;
  transform: rotate(35deg);
  width: 5px;
}

.local-feature {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 54px 1fr;
  padding: 30px 0;
}

.local-feature:first-child {
  border-top: 0;
  padding-top: 8px;
}

.local-feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.local-feature p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 0;
  max-width: 820px;
}

.info-card {
  padding: 24px;
}

.info-card p,
.use-case-grid p,
.site-footer p {
  color: var(--muted);
}

.card-icon,
.line-icon {
  align-items: center;
  background: var(--blue-soft);
  border-radius: var(--radius);
  color: var(--brand);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  height: 36px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.masking-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
}

.masking-copy {
  max-width: 780px;
  padding-right: 0;
}

.masking-copy h2 {
  font-size: 38px;
  max-width: 680px;
}

.masking-copy .section-lead {
  font-size: 17px;
}

.mode-viewer {
  --mode-panel-offset: 18px;
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
}

.mode-viewer[data-mode-direction="prev"] {
  --mode-panel-offset: -18px;
}

.mode-viewer-controls {
  display: grid;
  gap: 12px;
}

.mode-viewer-control {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 225, 238, 0.96);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 8px;
  padding: 18px;
  text-align: left;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.mode-viewer-control:hover,
.mode-viewer-control:focus-visible,
.mode-viewer-control.is-active {
  border-color: rgba(49, 94, 234, 0.55);
  box-shadow: 0 18px 48px rgba(49, 94, 234, 0.12);
  outline: 0;
  transform: translateY(-1px);
}

.mode-viewer-control strong {
  font-size: 19px;
  line-height: 1.25;
}

.mode-viewer-control em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.mode-viewer-stage {
  background: #eef3f8;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(42, 67, 110, 0.14);
  display: grid;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.mode-viewer-panel {
  grid-area: 1 / 1;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(var(--mode-panel-offset));
  transition:
    opacity 0.22s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.mode-viewer-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 1;
}

.mode-viewer-panel img {
  aspect-ratio: 1718 / 901;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .mode-viewer-panel {
    transform: none;
    transition: opacity 0.01s linear;
  }

  .mode-viewer-panel.is-active {
    transform: none;
  }
}

.mode-viewer-panel figcaption {
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #d8e1ee;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
  padding: 12px 16px;
}

.mode-viewer-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 225, 238, 0.95);
  border-radius: 999px;
  color: var(--brand);
  cursor: pointer;
  display: flex;
  font-size: 32px;
  font-weight: 600;
  height: 46px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  z-index: 2;
}

.mode-viewer-arrow:hover,
.mode-viewer-arrow:focus-visible {
  background: white;
  box-shadow: 0 12px 32px rgba(42, 67, 110, 0.16);
  outline: 0;
}

.mode-viewer-prev {
  left: 14px;
}

.mode-viewer-next {
  right: 14px;
}

.use-case-showcase {
  display: block;
}

.use-case-intro {
  margin: 0 auto 36px;
  max-width: 760px;
  text-align: center;
}

.use-case-intro h2 {
  color: var(--ink);
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 16px;
}

.use-case-intro p {
  color: var(--muted);
  font-size: 17px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  max-width: 760px;
}

.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.use-case-grid article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 225, 238, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(42, 67, 110, 0.08);
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto 1fr;
  min-height: 392px;
  padding: 18px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.use-case-grid article:hover {
  border-color: rgba(49, 94, 234, 0.28);
  box-shadow: 0 22px 54px rgba(49, 94, 234, 0.13);
  transform: translateY(-2px);
}

.use-case-card-heading {
  display: block;
}

.use-case-card-heading h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
  margin-bottom: 0;
}

.scenario-visual {
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 255, 77, 0.2), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(49, 94, 234, 0.11), transparent 25%),
    radial-gradient(circle, rgba(49, 94, 234, 0.12) 1px, transparent 1.5px),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 72%);
  background-size: auto, auto, 9px 9px, auto;
  border: 1px solid #dfe7f3;
  border-radius: var(--radius);
  box-shadow: inset 0 -28px 42px rgba(237, 242, 255, 0.65);
  height: 178px;
  overflow: hidden;
  position: relative;
}

.scenario-visual-legal {
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 255, 77, 0.22), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(49, 94, 234, 0.12), transparent 25%),
    radial-gradient(circle, rgba(49, 94, 234, 0.12) 1px, transparent 1.5px),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 72%);
  background-size: auto, auto, 9px 9px, auto;
}

.scenario-visual-finance {
  background:
    radial-gradient(circle at 18% 18%, rgba(49, 94, 234, 0.14), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(200, 255, 77, 0.18), transparent 25%),
    radial-gradient(circle, rgba(49, 94, 234, 0.12) 1px, transparent 1.5px),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 72%);
  background-size: auto, auto, 9px 9px, auto;
}

.scenario-visual::before,
.scenario-visual::after,
.scenario-visual span,
.scenario-visual div {
  position: absolute;
}

.scenario-visual::before,
.scenario-visual::after {
  content: "";
}

.legal-contract,
.legal-clause-card,
.finance-search-bar,
.audit-ledger,
.finance-chart,
.payroll-sheet,
.invoice-tag,
.medical-report,
.health-id-card,
.service-kiosk,
.public-form,
.policy-card,
.claim-file {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 225, 238, 0.94);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(42, 67, 110, 0.14);
}

.scenario-visual::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(237, 242, 255, 0.34));
  border: 1px solid rgba(216, 225, 238, 0.55);
  border-radius: 18px;
  content: "";
  inset: 18px 22px 42px;
  position: absolute;
}

.scenario-visual::after {
  background: linear-gradient(90deg, transparent, rgba(49, 94, 234, 0.16), transparent);
  bottom: 66px;
  content: "";
  height: 1px;
  left: 32px;
  position: absolute;
  right: 32px;
}

.legal-route {
  border: 2px dashed rgba(49, 94, 234, 0.28);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  height: 58px;
  left: 48px;
  top: 36px;
  width: 216px;
  z-index: 1;
}

.legal-node {
  background: white;
  border: 1px solid #d8e1ee;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(42, 67, 110, 0.12);
  height: 42px;
  top: 34px;
  width: 42px;
  z-index: 2;
}

.legal-node::before {
  background: #315eea;
  border-radius: 5px;
  content: "";
  height: 16px;
  left: 13px;
  position: absolute;
  top: 12px;
  width: 16px;
}

.legal-node-client {
  left: 30px;
}

.legal-node-court {
  right: 30px;
}

.legal-node-court::before {
  background: #0f766e;
  clip-path: polygon(50% 0, 92% 34%, 78% 34%, 78% 100%, 22% 100%, 22% 34%, 8% 34%);
}

.legal-contract {
  height: 116px;
  left: 88px;
  top: 26px;
  transform: rotate(-2deg);
  width: 118px;
  z-index: 4;
}

.legal-contract::before {
  background: linear-gradient(90deg, #315eea, #83a1ff);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 18px;
  position: absolute;
  top: 17px;
  width: 58px;
}

.legal-contract span {
  border-radius: 999px;
  height: 6px;
  left: 18px;
}

.legal-contract span:nth-child(1) {
  background: rgba(49, 94, 234, 0.12);
  top: 40px;
  width: 78px;
}

.legal-contract span:nth-child(2) {
  background: #dfe6f1;
  top: 58px;
  width: 82px;
}

.legal-contract span:nth-child(3) {
  background: #7a869a;
  top: 76px;
  width: 64px;
}

.legal-contract span:nth-child(4) {
  background: rgba(49, 94, 234, 0.12);
  top: 94px;
  width: 46px;
}

.legal-clause-card {
  height: 74px;
  left: 42px;
  top: 66px;
  transform: rotate(-6deg);
  width: 92px;
  z-index: 3;
}

.legal-clause-card::before {
  background: #e8eef8;
  border-radius: 999px;
  box-shadow: 0 16px 0 #dfe6f1, 0 32px 0 #e8eef8;
  content: "";
  height: 6px;
  left: 14px;
  position: absolute;
  top: 17px;
  width: 56px;
}

.legal-seal {
  background: rgba(248, 113, 113, 0.12);
  border: 3px solid #ef6f6f;
  border-radius: 50%;
  height: 42px;
  left: 178px;
  top: 90px;
  transform: rotate(-12deg);
  width: 42px;
  z-index: 5;
}

.legal-seal::before {
  border: 2px solid rgba(239, 111, 111, 0.55);
  border-radius: 50%;
  content: "";
  inset: 8px;
  position: absolute;
}

.finance-search-bar {
  background: #ffffff;
  border-radius: 999px;
  height: 38px;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  width: 168px;
  z-index: 5;
}

.finance-search-bar::before {
  border: 2px solid #64748b;
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 18px;
  position: absolute;
  top: 12px;
  width: 10px;
}

.finance-search-bar::after {
  background: #dfe6f1;
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 42px;
  position: absolute;
  top: 16px;
  width: 90px;
}

.audit-ledger {
  display: grid;
  gap: 7px;
  height: 96px;
  left: 50%;
  padding: 16px;
  top: 60px;
  transform: translateX(-50%);
  width: 128px;
  z-index: 4;
}

.audit-ledger::before {
  background: linear-gradient(90deg, #315eea, #83a1ff);
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 16px;
  position: absolute;
  top: 14px;
  width: 58px;
}

.audit-ledger span {
  background: rgba(49, 94, 234, 0.13);
  border-radius: 999px;
  height: 7px;
  position: static;
}

.audit-ledger span:nth-child(1) {
  margin-top: 20px;
  width: 82px;
}

.audit-ledger span:nth-child(2) {
  background: #7a869a;
  width: 78px;
}

.audit-ledger span:nth-child(3) {
  width: 96px;
}

.audit-ledger span:nth-child(4) {
  background: #2f80ed;
  width: 48px;
}

.audit-ledger span:nth-child(5) {
  background: #dfe6f1;
  width: 72px;
}

.finance-chart {
  height: 76px;
  left: 64px;
  top: 70px;
  transform: rotate(-6deg);
  width: 92px;
  z-index: 2;
}

.finance-chart::before {
  background: linear-gradient(135deg, transparent 44%, #315eea 45% 51%, transparent 52%);
  content: "";
  inset: 18px 14px 24px;
  position: absolute;
}

.finance-chart span {
  background: rgba(49, 94, 234, 0.16);
  border-radius: 6px 6px 0 0;
  bottom: 16px;
  width: 13px;
}

.finance-chart span:nth-child(1) {
  height: 22px;
  left: 22px;
}

.finance-chart span:nth-child(2) {
  height: 36px;
  left: 48px;
}

.finance-chart span:nth-child(3) {
  background: #2f80ed;
  height: 52px;
  left: 74px;
}

.finance-ring-chart {
  background: conic-gradient(#315eea 0 68%, #dfe6f1 68% 100%);
  border: 8px solid white;
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(42, 67, 110, 0.12);
  height: 58px;
  right: 68px;
  top: 82px;
  width: 58px;
  z-index: 3;
}

.finance-ring-chart::before {
  background: white;
  border-radius: 50%;
  content: "";
  inset: 11px;
  position: absolute;
}

.finance-account-chip {
  background: #e8eef8;
  border: 1px solid #d8e1ee;
  border-radius: 999px;
  height: 16px;
  left: 50%;
  top: 118px;
  transform: translateX(-50%);
  width: 92px;
  z-index: 6;
}

.payroll-sheet {
  height: 106px;
  left: 44px;
  top: 32px;
  width: 146px;
  z-index: 2;
}

.payroll-sheet::before {
  background: linear-gradient(90deg, #315eea, #83a1ff);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 18px;
  position: absolute;
  top: 17px;
  width: 62px;
}

.payroll-sheet span {
  background: rgba(49, 94, 234, 0.12);
  border-radius: 6px;
  height: 16px;
  width: 34px;
}

.payroll-sheet span:nth-child(1),
.payroll-sheet span:nth-child(2),
.payroll-sheet span:nth-child(3) {
  top: 42px;
}

.payroll-sheet span:nth-child(4),
.payroll-sheet span:nth-child(5),
.payroll-sheet span:nth-child(6) {
  top: 66px;
}

.payroll-sheet span:nth-child(1),
.payroll-sheet span:nth-child(4) {
  left: 18px;
}

.payroll-sheet span:nth-child(2),
.payroll-sheet span:nth-child(5) {
  left: 58px;
}

.payroll-sheet span:nth-child(3),
.payroll-sheet span:nth-child(6) {
  left: 98px;
}

.invoice-tag {
  background: linear-gradient(145deg, #f59e0b, #f97316);
  border: 5px solid white;
  border-radius: 16px;
  height: 58px;
  right: 34px;
  top: 32px;
  width: 76px;
  z-index: 3;
}

.invoice-tag::before,
.invoice-tag::after {
  background: white;
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 14px;
  position: absolute;
}

.invoice-tag::before {
  top: 16px;
  width: 42px;
}

.invoice-tag::after {
  top: 32px;
  width: 28px;
}

.office-avatar {
  border: 5px solid white;
  border-radius: 50%;
  box-shadow: 0 14px 24px rgba(42, 67, 110, 0.14);
  height: 48px;
  top: 94px;
  width: 48px;
  z-index: 4;
}

.office-avatar::before {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 13px;
  position: absolute;
  top: 9px;
  width: 13px;
}

.office-avatar::after {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px 999px 0 0;
  content: "";
  height: 12px;
  left: 9px;
  position: absolute;
  top: 26px;
  width: 22px;
}

.office-avatar-one {
  background: linear-gradient(145deg, #7c3aed, #315eea);
  right: 84px;
}

.office-avatar-two {
  background: linear-gradient(145deg, #22c7b8, #2f80ed);
  right: 44px;
  transform: scale(0.88);
}

.office-sync-line {
  border-bottom: 2px dashed rgba(49, 94, 234, 0.34);
  height: 1px;
  left: 168px;
  top: 94px;
  width: 82px;
  z-index: 1;
}

.medical-report {
  height: 112px;
  left: 38px;
  top: 30px;
  width: 126px;
  z-index: 2;
}

.medical-report::before {
  background: #ef6f6f;
  border-radius: 6px;
  content: "";
  height: 24px;
  left: 18px;
  position: absolute;
  top: 17px;
  width: 24px;
}

.medical-report::after {
  background: rgba(49, 94, 234, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 0 rgba(49, 94, 234, 0.12), 0 54px 0 #dfe6f1;
  content: "";
  height: 6px;
  left: 52px;
  position: absolute;
  top: 22px;
  width: 54px;
}

.medical-report span {
  border-radius: 999px;
  height: 6px;
  left: 22px;
}

.medical-report span:nth-child(1) {
  background: #7a869a;
  top: 58px;
  width: 76px;
}

.medical-report span:nth-child(2) {
  background: #dfe6f1;
  top: 74px;
  width: 86px;
}

.medical-report span:nth-child(3) {
  background: #2f80ed;
  top: 90px;
  width: 42px;
}

.medical-report span:nth-child(4) {
  background: #e8eef8;
  top: 100px;
  width: 68px;
}

.health-id-card {
  height: 72px;
  right: 34px;
  top: 36px;
  transform: rotate(4deg);
  width: 92px;
  z-index: 1;
}

.health-id-card::before {
  background: #315eea;
  border-radius: 50%;
  content: "";
  height: 24px;
  left: 14px;
  position: absolute;
  top: 14px;
  width: 24px;
}

.health-id-card::after {
  background: rgba(49, 94, 234, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 0 rgba(49, 94, 234, 0.12);
  content: "";
  height: 6px;
  left: 48px;
  position: absolute;
  top: 18px;
  width: 28px;
}

.health-wave {
  border-bottom: 3px solid #ef6f6f;
  border-radius: 50%;
  height: 32px;
  left: 94px;
  top: 76px;
  width: 126px;
  z-index: 4;
}

.health-sample {
  background: linear-gradient(180deg, #ffffff 0 38%, #2f80ed 38% 100%);
  border: 4px solid white;
  border-radius: 16px;
  box-shadow: 0 14px 24px rgba(42, 67, 110, 0.14);
  height: 54px;
  right: 66px;
  top: 90px;
  width: 34px;
  z-index: 5;
}

.service-kiosk {
  background: linear-gradient(180deg, #ffffff, #edf3fb);
  height: 88px;
  right: 34px;
  top: 58px;
  transform: rotate(3deg);
  width: 126px;
  z-index: 4;
}

.service-kiosk::before {
  background: #315eea;
  border-radius: 10px 10px 0 0;
  content: "";
  height: 21px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.service-kiosk span {
  background: white;
  border: 1px solid rgba(216, 225, 238, 0.9);
  border-radius: 7px;
  height: 19px;
  top: 35px;
  width: 35px;
}

.service-kiosk span:nth-child(1) {
  left: 15px;
}

.service-kiosk span:nth-child(2) {
  left: 70px;
}

.service-kiosk span:nth-child(3) {
  background: #7a869a;
  left: 15px;
  top: 64px;
  width: 82px;
}

.public-form {
  height: 84px;
  left: 40px;
  top: 30px;
  transform: rotate(-6deg);
  width: 92px;
  z-index: 2;
}

.public-form::before {
  background: rgba(49, 94, 234, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 0 #dfe6f1, 0 32px 0 #7a869a;
  content: "";
  height: 6px;
  left: 16px;
  position: absolute;
  top: 18px;
  width: 52px;
}

.public-flow-line {
  border-right: 2px dashed rgba(49, 94, 234, 0.34);
  border-top: 2px dashed rgba(49, 94, 234, 0.34);
  border-radius: 0 34px 0 0;
  height: 54px;
  left: 118px;
  top: 70px;
  transform: rotate(8deg);
  width: 142px;
  z-index: 1;
}

.public-flow-line::before,
.public-flow-line::after {
  background: #315eea;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(42, 67, 110, 0.12);
  content: "";
  height: 13px;
  position: absolute;
  width: 13px;
}

.public-flow-line::before {
  left: -6px;
  top: -7px;
}

.public-flow-line::after {
  background: #22c7b8;
  bottom: -7px;
  right: -7px;
}

.public-queue {
  background: #ffffff;
  border: 1px solid #d8e1ee;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(42, 67, 110, 0.12);
  height: 32px;
  right: 40px;
  top: 28px;
  width: 82px;
  z-index: 3;
}

.public-queue::before {
  background: #315eea;
  border-radius: 50%;
  box-shadow: 24px 0 0 #7c3aed, 48px 0 0 #22c7b8;
  content: "";
  height: 12px;
  left: 12px;
  position: absolute;
  top: 9px;
  width: 12px;
}

.scenario-visual-insurance {
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 128, 237, 0.13), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(200, 255, 77, 0.16), transparent 25%),
    radial-gradient(circle, rgba(49, 94, 234, 0.12) 1px, transparent 1.5px),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 72%);
  background-size: auto, auto, 9px 9px, auto;
}

.policy-card {
  height: 66px;
  left: 50%;
  top: 24px;
  transform: translateX(-50%) rotate(-2deg);
  width: 104px;
  z-index: 2;
}

.policy-card::before {
  background: linear-gradient(90deg, #315eea, #83a1ff);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 16px;
  position: absolute;
  top: 17px;
  width: 52px;
}

.policy-card::after {
  background: #dfe6f1;
  border-radius: 999px;
  box-shadow: 0 16px 0 #7a869a;
  content: "";
  height: 6px;
  left: 16px;
  position: absolute;
  top: 40px;
  width: 66px;
}

.claim-file {
  height: 104px;
  left: 50%;
  top: 50px;
  transform: translateX(-50%) rotate(2deg);
  width: 116px;
  z-index: 4;
}

.claim-file::before {
  background: linear-gradient(90deg, #315eea, #83a1ff);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 18px;
  position: absolute;
  top: 17px;
  width: 56px;
}

.claim-file span {
  background: rgba(49, 94, 234, 0.12);
  border-radius: 999px;
  height: 6px;
  left: 18px;
}

.claim-file span:nth-child(1) {
  top: 42px;
  width: 78px;
}

.claim-file span:nth-child(2) {
  background: #7a869a;
  top: 58px;
  width: 58px;
}

.claim-file span:nth-child(3) {
  top: 74px;
  width: 72px;
}

.claim-file span:nth-child(4) {
  background: #2f80ed;
  top: 90px;
  width: 42px;
}

.claim-file span:nth-child(5) {
  background: #e8eef8;
  height: 16px;
  left: 84px;
  top: 82px;
  width: 16px;
}

.claim-route {
  border: 2px dashed rgba(49, 94, 234, 0.38);
  border-radius: 50%;
  height: 104px;
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
  width: 212px;
  z-index: 1;
}

.claim-route::before,
.claim-route::after {
  background: #315eea;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(42, 67, 110, 0.12);
  content: "";
  height: 14px;
  position: absolute;
  width: 14px;
}

.claim-route::before {
  left: 18px;
  top: 70px;
}

.claim-route::after {
  right: 20px;
  top: 14px;
}

.claim-vehicle {
  background: #ffffff;
  border: 1px solid #d8e1ee;
  border-radius: 18px;
  box-shadow: 0 12px 22px rgba(42, 67, 110, 0.12);
  height: 34px;
  left: 52px;
  top: 98px;
  width: 72px;
  z-index: 5;
}

.claim-vehicle::before {
  background: #2f80ed;
  border-radius: 12px 12px 4px 4px;
  content: "";
  height: 16px;
  left: 14px;
  position: absolute;
  top: 6px;
  width: 42px;
}

.claim-vehicle::after {
  background: #64748b;
  border-radius: 50%;
  box-shadow: 38px 0 0 #64748b;
  content: "";
  height: 8px;
  left: 14px;
  position: absolute;
  top: 23px;
  width: 8px;
}

.use-case-grid article p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  margin-bottom: 0;
}

.security-trust-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 56%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.security-trust-section::before {
  background-image:
    linear-gradient(rgba(49, 94, 234, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 94, 234, 0.052) 1px, transparent 1px);
  background-position: center;
  background-size: 48px 48px;
  content: "";
  inset: 0;
  opacity: 0.56;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.security-trust-heading {
  margin: 0 auto 42px;
  max-width: 800px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.security-trust-heading h2 {
  color: var(--ink);
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 16px;
}

.security-trust-heading p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 760px;
}

.security-principle-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.security-principle-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(216, 225, 238, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(42, 67, 110, 0.08);
  display: grid;
  gap: 12px;
  min-height: 252px;
  padding: 24px;
}

.security-principle-card h3 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.22;
  margin-bottom: 0;
}

.security-principle-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  margin-bottom: 0;
}

.security-card-icon {
  border-radius: 11px;
  box-shadow: 0 9px 18px rgba(42, 67, 110, 0.11);
  display: block;
  height: 48px;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  width: 48px;
}

.security-card-icon::before,
.security-card-icon::after {
  content: "";
  position: absolute;
}

.security-icon-desktop {
  background: linear-gradient(145deg, #60a5fa 0%, #2563eb 100%);
}

.security-icon-desktop::before {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  box-shadow: inset 0 -3px 0 rgba(37, 99, 235, 0.16);
  height: 21px;
  left: 9px;
  top: 10px;
  width: 30px;
}

.security-icon-desktop::after {
  background:
    linear-gradient(90deg, transparent 0 9px, rgba(255, 255, 255, 0.94) 9px 21px, transparent 21px),
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94));
  background-position: 0 0, 0 11px;
  background-repeat: no-repeat;
  background-size: 30px 11px, 30px 4px;
  height: 15px;
  left: 9px;
  top: 31px;
  width: 30px;
}

.security-icon-law-standard {
  background:
    linear-gradient(#ffffff 0 4px, transparent 4px),
    linear-gradient(#ffffff 0 4px, transparent 4px),
    linear-gradient(#ffffff 0 4px, transparent 4px),
    linear-gradient(145deg, #fbbf24 0%, #f59e0b 100%);
  background-position: 19px 13px, 19px 23px, 19px 33px, 0 0;
  background-repeat: no-repeat;
  background-size: 20px 4px, 20px 4px, 15px 4px, auto;
}

.security-icon-law-standard::before {
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 3px;
  height: 4px;
  left: 10px;
  top: 11px;
  width: 4px;
}

.security-icon-law-standard::after {
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  border-left: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 10px 0 -1px transparent,
    0 20px 0 -1px transparent;
  height: 6px;
  left: 11px;
  top: 21px;
  transform: rotate(-45deg);
  width: 8px;
}

.security-icon-review-export {
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
}

.security-icon-review-export::before {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 5px;
  height: 31px;
  left: 11px;
  top: 8px;
  width: 26px;
}

.security-icon-review-export::after {
  border-bottom: 4px solid #16a34a;
  border-left: 4px solid #16a34a;
  height: 9px;
  left: 17px;
  top: 19px;
  transform: rotate(-45deg);
  width: 18px;
}

.pricing-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  text-align: center;
}

.pricing-heading .eyebrow,
.pricing-heading h2 {
  grid-column: auto;
}

.pricing-heading p {
  grid-column: auto;
  grid-row: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  margin: 0 auto;
  max-width: 1020px;
}

.pricing-grid-single {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.pricing-card {
  min-height: 0;
  padding: 0;
  position: relative;
}

.pricing-card-inner {
  display: grid;
  gap: 16px;
  grid-template-rows: auto auto auto 1fr;
  min-height: 360px;
  padding: 28px;
}

.plan-kicker {
  color: var(--brand);
  display: inline-block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
}

.plan-summary {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
  max-width: 440px;
}

.pricing-card-featured {
  border-color: var(--brand);
  box-shadow: 0 28px 80px rgba(49, 94, 234, 0.2);
}

.pricing-card-featured .pricing-card-inner {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  min-height: 384px;
  padding: 32px;
}

.pricing-badge {
  background: var(--brand);
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 850;
  left: 50%;
  padding: 7px 15px;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.pricing-price-block {
  align-content: start;
  display: grid;
  gap: 8px;
  justify-items: start;
}

.price-line {
  align-items: baseline;
  display: flex;
  gap: 8px;
  margin: 0;
}

.price-line strong {
  align-items: baseline;
  color: #0a0d12;
  display: inline-flex;
  gap: 3px;
  letter-spacing: 0;
  line-height: 1;
}

.price-currency {
  color: var(--brand);
  font-size: 24px;
  font-weight: 900;
}

.price-number {
  color: var(--brand);
  font-size: 50px;
  font-weight: 900;
  line-height: 0.92;
}

.price-unit {
  color: var(--brand);
  font-size: 20px;
  font-weight: 850;
}

.price-note {
  color: #52637a;
  font-size: 15px;
  font-weight: 720;
  margin: 0;
}

.billing-toggle {
  align-items: center;
  color: #98a2b3;
  display: flex;
  font-size: 15px;
  font-weight: 780;
  gap: 10px;
  margin-top: 0;
}

.billing-toggle span:first-child {
  color: var(--ink);
}

.toggle-track {
  align-items: center;
  background: #e5e7eb;
  border-radius: 999px;
  display: inline-flex;
  height: 24px;
  padding: 3px;
  width: 48px;
}

.toggle-track span {
  background: white;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(16, 24, 40, 0.18);
  height: 18px;
  width: 18px;
}

.pricing-button {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 15px;
  font-weight: 820;
  justify-content: center;
  min-height: 48px;
  padding: 11px 16px;
  width: 100%;
}

.pricing-button-light {
  background: white;
  border: 1px solid #d6dce6;
  color: var(--ink);
}

.pricing-button-dark {
  background: #0a0d12;
  color: white;
}

.pricing-card ul {
  color: #7a8494;
  font-size: 14px;
  line-height: 1.75;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-card li::before {
  color: var(--brand);
  content: "✓";
  font-weight: 850;
  margin-right: 10px;
}

.enterprise-pricing {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1.28fr) minmax(176px, 210px);
  margin: 18px auto 0;
  max-width: 980px;
  padding: 22px 26px;
}

.enterprise-topline {
  margin-bottom: 10px;
}

.enterprise-summary {
  min-width: 0;
}

.enterprise-summary h3 {
  font-size: 22px;
  line-height: 1.2;
}

.enterprise-pricing p {
  color: #98a2b3;
  font-size: 14px;
  margin-bottom: 0;
}

.enterprise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 0;
}

.enterprise-tags span {
  background: #f0f2f5;
  border-radius: 999px;
  color: #5b6472;
  font-size: 13px;
  font-weight: 780;
  padding: 7px 10px;
}

.enterprise-actions {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.enterprise-actions span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 820;
  text-align: center;
}

.enterprise-button {
  min-height: 48px;
}

.online-experience {
  background: #f3f6fb;
  display: none;
  min-height: calc(100vh - 63px);
  padding: 18px;
}

.online-experience[hidden] {
  display: none !important;
}

body.is-online-experience {
  background: #f3f6fb;
}

body.is-online-experience main > .section,
body.is-online-experience .site-footer {
  display: none;
}

body.is-online-experience .online-experience {
  display: block;
}

body.is-online-experience .site-header {
  grid-template-columns: auto 1fr auto;
}

body.is-online-experience .site-nav,
body.is-online-experience .language-dropdown,
body.is-online-experience .nav-toggle {
  display: none;
}

body.is-online-experience .header-actions {
  display: inline-flex;
}

.online-shell {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 1500px;
}

.online-text-button,
.online-panel-actions button,
.online-file-button {
  align-items: center;
  background: white;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 760;
  gap: 6px;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  white-space: nowrap;
}

.online-text-button:hover,
.online-text-button:focus-visible,
.online-panel-actions button:hover,
.online-panel-actions button:focus-visible,
.online-file-button:hover,
.online-file-button:focus-within {
  border-color: rgba(49, 94, 234, 0.35);
  color: var(--brand);
  outline: 0;
}

.online-file-button {
  color: var(--brand);
  overflow: hidden;
  position: relative;
}

.online-file-button input {
  cursor: pointer;
  font-size: 80px;
  inset: 0;
  opacity: 0;
  position: absolute;
}

.online-workspace {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.workflow-steps {
  background: white;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 8px;
}

.workflow-step {
  align-items: center;
  background: #f8fbff;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink-soft);
  cursor: pointer;
  display: grid;
  gap: 2px 10px;
  grid-template-columns: 30px 1fr;
  justify-items: start;
  align-content: center;
  min-height: 54px;
  padding: 9px 12px;
  text-align: left;
}

.workflow-step span {
  align-items: center;
  background: white;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  grid-row: 1 / span 2;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.workflow-step strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.workflow-step em {
  color: #8a94a6;
  font-size: 12px;
  font-style: normal;
  line-height: 1.25;
}

.workflow-step.is-active {
  background: #edf3ff;
  border-color: #bfd0ff;
  color: var(--brand);
}

.workflow-step.is-active span {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.workflow-step.is-locked {
  cursor: not-allowed;
  opacity: 0.62;
}

.online-stage {
  display: grid;
  gap: 12px;
}

.online-stage.is-collapsed .online-panel-grid {
  display: none;
}

.online-panel-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.online-panel {
  background: white;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(42, 67, 110, 0.07);
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  height: 540px;
  min-height: 540px;
  min-width: 0;
  overflow: hidden;
}

.result-panel,
.restore-result-panel {
  grid-template-rows: auto minmax(0, 1fr);
}

.restore-input-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.source-panel {
  overflow: visible;
  position: relative;
  z-index: 3;
}

.result-panel {
  position: relative;
  z-index: 1;
}

.online-panel-header {
  align-items: center;
  border-bottom: 1px solid #e7edf5;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 64px;
  padding: 14px 18px;
}

.online-panel-title {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.online-panel-title h2 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 0;
}

.online-panel-actions {
  display: inline-flex;
  gap: 8px;
}

.online-toolbar {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
}

.elements-picker {
  position: relative;
}

.elements-toggle {
  align-items: center;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(49, 94, 234, 0.18);
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
}

.elements-toggle::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 8px;
  transform: rotate(-45deg);
  transition: transform 180ms ease;
  width: 8px;
}

.elements-picker.is-open .elements-toggle::after {
  transform: rotate(135deg);
}

.elements-popover {
  background: white;
  border: 1px solid #d7e1ef;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(42, 67, 110, 0.14);
  display: none;
  padding: 16px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(520px, calc(100vw - 44px));
  z-index: 45;
}

.elements-picker.is-open .elements-popover {
  display: grid;
  gap: 14px;
}

.elements-popover-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.elements-popover-head h3 {
  font-size: 17px;
  margin-bottom: 0;
}

.elements-popover-head div {
  display: inline-flex;
  gap: 10px;
}

.elements-popover-head button {
  background: transparent;
  border: 0;
  color: var(--brand);
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
  padding: 3px 0;
}

.elements-popover-head button:last-child {
  color: #687386;
}

.elements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.elements-grid label {
  align-items: center;
  background: #f2f6ff;
  border: 1px solid #c8d6ff;
  border-radius: 8px;
  color: #244fd2;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 760;
  gap: 8px;
  min-height: 38px;
  padding: 7px 10px;
}

.elements-grid input {
  accent-color: var(--brand);
  height: 16px;
  width: 16px;
}

.mask-mode-row {
  align-items: center;
  background: #f8fbff;
  border-bottom: 1px solid #e7edf5;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 18px;
}

.mask-mode-row > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.mask-mode-row label {
  align-items: center;
  background: white;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 780;
  gap: 6px;
  min-height: 30px;
  padding: 5px 10px;
}

.mask-mode-row input {
  accent-color: var(--brand);
}

.online-icon {
  border-radius: 10px;
  display: inline-block;
  flex: 0 0 auto;
  height: 30px;
  position: relative;
  width: 30px;
}

.online-icon::before,
.online-icon::after,
.online-empty-mark::before,
.online-empty-mark::after {
  content: "";
  position: absolute;
}

.online-icon-doc {
  background: #edf3ff;
  color: var(--brand);
}

.online-icon-doc::before {
  border: 2px solid currentColor;
  border-radius: 4px;
  height: 16px;
  left: 9px;
  top: 6px;
  width: 12px;
}

.online-icon-doc::after {
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
  height: 2px;
  left: 12px;
  top: 12px;
  width: 7px;
}

.online-icon-shield {
  background: #ecfdf5;
  color: #10a36f;
}

.online-icon-shield::before {
  border: 2px solid currentColor;
  border-radius: 8px 8px 10px 10px;
  height: 16px;
  left: 8px;
  top: 6px;
  width: 14px;
}

.online-icon-shield::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 7px;
  left: 13px;
  top: 10px;
  transform: rotate(45deg);
  width: 4px;
}

.online-icon-restore,
.online-icon-return {
  background: #f2f6ff;
  color: var(--brand);
}

.online-icon-restore::before,
.online-icon-return::before {
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 999px;
  height: 15px;
  left: 7px;
  top: 7px;
  width: 15px;
}

.online-icon-restore::after,
.online-icon-return::after {
  border-left: 6px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  height: 0;
  right: 6px;
  top: 10px;
  width: 0;
}

.online-file-note {
  background: #f8fbff;
  border-bottom: 1px solid #e7edf5;
  color: #8793a5;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
}

.online-file-note[hidden] {
  display: block;
  visibility: hidden;
}

.online-file-note.is-error {
  background: #fff7ed;
  color: #b45309;
}

.online-editor {
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  height: 100%;
  line-height: 1.75;
  min-height: 0;
  outline: 0;
  overflow: auto;
  padding: 22px;
  resize: none;
  width: 100%;
}

.online-editor::placeholder {
  color: #a4adbb;
  font-weight: 700;
}

.online-primary-action {
  align-items: center;
  align-self: end;
  background: var(--brand);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(49, 94, 234, 0.24);
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 850;
  height: 52px;
  justify-content: center;
  margin: 0 18px 18px;
  min-height: 52px;
  padding: 12px 18px;
}

.online-primary-action:hover,
.online-primary-action:focus-visible {
  background: var(--brand-dark);
  outline: 0;
}

.online-primary-action:disabled {
  background: #edf1f7;
  box-shadow: none;
  color: #9aa6b7;
  cursor: not-allowed;
}

.online-output {
  color: var(--ink);
  font-size: 16px;
  height: 100%;
  line-height: 1.8;
  min-height: 0;
  overflow: auto;
  padding: 28px;
  white-space: pre-wrap;
  word-break: break-word;
}

.online-output.is-empty {
  align-content: center;
  color: #9aa6b7;
  display: grid;
  justify-items: center;
  text-align: center;
}

.online-output p {
  margin-bottom: 0;
}

.online-empty-mark {
  color: #eef2f7;
  display: block;
  height: 50px;
  margin-bottom: 14px;
  position: relative;
  width: 58px;
}

.online-empty-mark::before {
  border: 6px solid currentColor;
  border-radius: 8px;
  height: 18px;
  left: 6px;
  top: 4px;
  width: 42px;
}

.online-empty-mark::after {
  border: 6px solid currentColor;
  border-radius: 8px;
  bottom: 2px;
  box-shadow: 27px 0 0 -1px white, 27px 0 0 0 currentColor;
  height: 16px;
  left: 6px;
  width: 18px;
}

.online-empty-mark-restore::before {
  border-color: currentColor;
  border-left-color: transparent;
  border-radius: 999px;
  height: 34px;
  left: 8px;
  top: 8px;
  width: 34px;
}

.online-empty-mark-restore::after {
  border-bottom: 8px solid transparent;
  border-left: 10px solid currentColor;
  border-top: 8px solid transparent;
  box-shadow: none;
  height: 0;
  left: 38px;
  top: 18px;
  width: 0;
}

.online-token {
  background: #edf3ff;
  border: 1px solid #cfe0ff;
  border-radius: 5px;
  color: var(--brand);
  display: inline;
  font-weight: 850;
  padding: 1px 4px;
}

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

.site-footer {
  background: #1f232b;
  color: white;
  padding: 54px 28px 24px;
}

.footer-inner {
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(240px, 1.35fr) minmax(160px, 0.8fr) minmax(120px, 0.7fr) minmax(150px, auto);
  margin: 0 auto;
  max-width: var(--max);
  padding-bottom: 48px;
}

.site-footer a,
.site-footer p {
  color: rgba(198, 205, 218, 0.72);
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

.site-footer h3 {
  color: rgba(244, 247, 252, 0.92);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 22px;
}

.footer-inner a,
.footer-inner p,
.footer-inner h3 {
  font-weight: 400;
}

.footer-brand {
  align-content: start;
  display: grid;
  gap: 18px;
}

.footer-brand .brand {
  display: inline-flex;
  margin: 0;
}

.footer-brand p {
  max-width: 290px;
}

.footer-brand-logo {
  height: 36px;
  width: auto;
}

.footer-downloads,
.footer-nav,
.footer-contact {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-downloads a,
.footer-nav a,
.footer-contact a {
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-downloads a:hover,
.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: white;
}

.footer-contact img {
  border-radius: 4px;
  height: 128px;
  object-fit: cover;
  width: 128px;
}

.footer-contact p {
  max-width: 150px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max);
  padding-top: 22px;
  text-align: center;
}

.footer-bottom a {
  color: rgba(198, 205, 218, 0.72);
  text-decoration: none;
}

.footer-bottom a,
.footer-bottom p {
  font-weight: 400;
}

.toast {
  background: var(--ink);
  border-radius: var(--radius);
  bottom: 22px;
  box-shadow: var(--shadow);
  color: white;
  left: 50%;
  opacity: 0;
  padding: 12px 16px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 30;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.download-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease, visibility 180ms ease;
  visibility: hidden;
  z-index: 60;
}

.download-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.download-modal-backdrop {
  background: rgba(8, 15, 28, 0.44);
  border: 0;
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.download-dialog {
  background: #f8fbff;
  border: 1px solid rgba(216, 225, 238, 0.96);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.2);
  color: var(--ink);
  max-height: min(94vh, 640px);
  max-width: 680px;
  overflow: auto;
  padding: 28px;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
  width: min(100%, 680px);
}

.download-modal.is-open .download-dialog {
  transform: translateY(0) scale(1);
}

.download-close {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 30px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 18px;
  width: 30px;
}

.download-dialog-header {
  align-items: flex-start;
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
  padding-right: 42px;
}

.download-dialog-header h2 {
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.download-dialog-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
}

.download-download-panel {
  border-radius: 14px;
  min-width: 0;
}

.download-download-panel {
  align-content: start;
  background:
    radial-gradient(circle at 90% 0%, rgba(37, 99, 235, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dfe8f4;
  box-shadow: 0 14px 38px rgba(42, 67, 110, 0.07);
  display: grid;
  gap: 0;
  grid-template-rows: 1fr auto;
  padding: 20px 28px 22px;
}

.download-platform-row {
  align-content: start;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

.download-platform {
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(42, 67, 110, 0.08);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  gap: 7px;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.download-endpoint-item {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 18px 0;
}

.download-endpoint-item + .download-endpoint-item,
.download-mac-group .download-endpoint-item + .download-endpoint-item {
  border-top: 1px solid #dfe8f4;
}

.download-endpoint-meta {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 14px;
  min-width: 0;
}

.download-endpoint-meta > span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.download-endpoint-meta strong {
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

.download-endpoint-package {
  color: #93a0b3;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.download-endpoint-cta {
  font-size: 15px;
  min-height: 42px;
  min-width: 86px;
  padding-left: 18px;
  padding-right: 18px;
}

.download-windows-button {
  background: #2563eb;
  border: 1px solid #d7e1ef;
  border-radius: 10px;
  color: white;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
  justify-self: start;
  min-width: 86px;
  width: fit-content;
}

.download-windows-button:hover,
.download-windows-button:focus-visible {
  border-color: #1d4ed8;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
  outline: 0;
  transform: translateY(-1px);
}

.download-mac-group {
  display: grid;
}

.download-mac-group .download-endpoint-item:first-child {
  border-top: 1px solid #dfe8f4;
}

.download-mac-button {
  background: #2563eb;
  border: 1px solid #d7e1ef;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
  color: white;
  min-width: 86px;
  position: relative;
  width: fit-content;
}

.download-mac-button:hover,
.download-mac-button:focus-visible {
  border-color: #1d4ed8;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
  outline: 0;
  transform: translateY(-1px);
}

.download-platform-icon {
  color: #1f2937;
  display: inline-block;
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.download-button-icon {
  display: inline-block;
  flex: 0 0 auto;
  height: 15px;
  width: 15px;
}

.download-warning {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  align-self: end;
  border-top: 1px solid #dfe8f4;
  padding-top: 16px;
  margin-bottom: 0;
}

body.is-modal-open {
  overflow: hidden;
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
    grid-column: 1 / -1;
    justify-items: start;
    padding: 18px;
  }

  body.is-online-experience .site-header {
    grid-template-columns: auto 1fr auto;
  }

  body.is-online-experience .header-actions {
    display: inline-flex;
  }

  body.is-online-experience .header-cta {
    width: auto;
  }

  .online-panel-grid {
    grid-template-columns: 1fr;
  }

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

  .global-rule-layout,
  .processing-scope-layout,
  .local-security-layout,
  .masking-layout,
  .use-case-showcase,
  .pricing-grid,
  .enterprise-pricing {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .global-network-layout {
    gap: 22px;
  }

  .entity-panel-heading {
    align-items: start;
    flex-direction: column;
  }

  .entity-hover-board {
    grid-template-columns: 1fr;
  }

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

  .local-security-copy {
    margin-bottom: 38px;
    padding-right: 0;
  }

  .local-security-copy h2,
  .use-case-intro h2 {
    font-size: 32px;
  }

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

  .preflight-loop-card,
  .preflight-value-card {
    min-height: auto;
  }

  .masking-copy {
    padding-right: 0;
  }

  .masking-copy h2 {
    font-size: 38px;
  }

  .mode-viewer {
    grid-template-columns: 1fr;
  }

  .mode-viewer-controls {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .mode-viewer-control {
    flex: 0 0 min(320px, 86vw);
    scroll-snap-align: start;
  }

  h1 {
    font-size: 44px;
  }

  .hero-section h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 32px;
  }

  .global-selling-points,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .use-case-intro {
    position: static;
  }

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

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

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

  .price-line strong {
    font-size: 48px;
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 18px;
  }

  .section {
    padding: 68px 18px;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 54px;
    padding-top: 72px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-section h1 {
    font-size: 46px;
    max-width: 100%;
  }

  h2 {
    font-size: 27px;
  }

  .hero-subtitle,
  .section-lead,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  body.is-online-experience .header-actions {
    justify-self: end;
  }

  body.is-online-experience .header-cta {
    min-width: 0;
    width: auto;
  }

  .online-experience {
    padding: 12px;
  }

  .online-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .online-panel-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .online-panel-actions button {
    flex: 1;
  }

  .online-toolbar {
    justify-content: stretch;
    width: 100%;
  }

  .online-file-button,
  .elements-picker,
  .elements-toggle {
    flex: 1;
  }

  .elements-toggle {
    width: 100%;
  }

  .elements-popover {
    left: 0;
    right: auto;
    width: calc(100vw - 48px);
  }

  .elements-popover-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .elements-grid label {
    flex: 1 1 142px;
    font-size: 15px;
    min-height: 48px;
  }

  .online-editor,
  .online-output {
    padding: 18px;
  }

  .online-primary-action {
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-actions {
    justify-content: stretch;
    width: 100%;
  }

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

  .download-modal {
    padding: 14px;
  }

  .download-dialog {
    border-radius: 18px;
    padding: 22px;
  }

.download-dialog-header {
    padding-right: 36px;
  }

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

  .download-download-panel {
    padding: 18px;
  }

  .download-endpoint-item {
    gap: 14px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .global-selling-points,
  .use-case-grid,
  .security-principle-grid {
    grid-template-columns: 1fr;
  }

  .scope-material-grid {
    grid-template-columns: 1fr;
  }

  .entity-tab-list {
    grid-template-columns: 1fr;
  }

  .entity-detail-stack {
    min-height: 360px;
  }

  .rule-matrix,
  .scope-material-card,
  .entity-scope-panel,
    .preflight-loop-card,
    .preflight-value-card,
    .security-principle-card,
    .pricing-card-inner,
    .enterprise-pricing {
    padding: 24px;
  }

  .preflight-loop-card {
    padding-top: 44px;
  }

  .local-security-copy h2,
  .use-case-intro h2 {
    font-size: 27px;
  }

  .masking-copy h2 {
    font-size: 27px;
  }

  .preflight-badge {
    font-size: 15px;
    left: 22px;
    padding: 11px 16px;
    top: -18px;
  }

  .preflight-step {
    padding: 10px 12px;
  }

  .preflight-step h4,
  .preflight-value-card h3 {
    font-size: 15px;
  }

  .preflight-step p,
  .preflight-value-card p {
    font-size: 13px;
  }

  .use-case-grid article {
    min-height: 372px;
    padding: 24px;
  }

  .security-trust-heading {
    margin-bottom: 38px;
  }

  .security-trust-heading h2 {
    font-size: 29px;
  }

  .security-principle-card {
    min-height: auto;
  }

  .scenario-visual {
    height: 164px;
  }

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

  .price-line strong {
    font-size: 40px;
  }

  .billing-toggle {
    font-size: 16px;
  }

  .enterprise-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .enterprise-actions span {
    text-align: left;
  }

  .world-map-card {
    min-height: 520px;
  }

  .global-map-card {
    min-height: 700px;
  }

  .global-map-visual {
    height: 390px;
    inset: 18px 10px auto;
    width: calc(100% - 20px);
  }

  .rule-engine-marker {
    left: 63%;
    padding: 14px 16px;
    top: 238px;
    width: 158px;
  }

  .rule-engine-marker strong {
    font-size: 19px;
  }

  .map-label {
    font-size: 11px;
    padding: 6px 8px;
  }

  .label-na {
    left: 8%;
    top: 148px;
  }

  .label-eu {
    left: 39%;
    top: 106px;
  }

  .label-apac {
    right: 5%;
    top: 144px;
  }

  .label-mea {
    left: 50%;
    top: 308px;
  }

  .label-latam {
    bottom: auto;
    left: 12%;
    top: 322px;
  }

  .global-copy-panel {
    bottom: 18px;
    left: 18px;
    max-width: none;
    padding: 18px;
    right: 18px;
  }

  .global-copy-panel h3 {
    font-size: 22px;
  }

  .orbit-ring-one {
    height: 260px;
    width: 340px;
  }

  .orbit-ring-two {
    height: 210px;
    width: 410px;
  }

  .orbit-ring-three {
    height: 310px;
    width: 310px;
  }

  .core-node {
    min-height: 150px;
    padding: 22px;
    top: 42%;
    width: 210px;
  }

  .core-node strong {
    font-size: 23px;
  }

  .signal-node {
    font-size: 12px;
    padding: 7px 10px;
  }

  .signal-language {
    left: 8%;
    top: 14%;
  }

  .signal-border {
    right: 7%;
    top: 15%;
  }

  .signal-ai {
    left: 6%;
    top: 61%;
  }

  .signal-legal {
    right: 6%;
    top: 61%;
  }

  .signal-enterprise {
    bottom: 23%;
    left: 8%;
  }

  .signal-export {
    bottom: 22%;
    right: 8%;
  }

  .global-caption {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

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

  .local-feature {
    gap: 16px;
    grid-template-columns: 44px 1fr;
  }

  .mode-viewer-arrow {
    height: 40px;
    width: 40px;
  }

}
[data-internal-workbench-link][hidden] {
  display: none !important;
}
