:root {
  color-scheme: light;
  --ink: #0b1220;
  --ink-soft: #344054;
  --muted: #667085;
  --faint: #98a2b3;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --page: #f7f8fa;
  --surface: #ffffff;
  --subtle: #f2f4f7;
  --blue: #3657f5;
  --blue-dark: #2440cf;
  --blue-soft: #eef2ff;
  --cyan: #0ea5c6;
  --green: #0f9f6e;
  --amber: #d97706;
  --red: #dc3545;
  --purple: #7c3aed;
  --container: 1440px;
  --shadow-pop: 0 20px 60px rgba(16, 24, 40, 0.14);
  --shadow-soft: 0 8px 30px rgba(16, 24, 40, 0.07);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, Pretendard, "Segoe UI", "Noto Sans KR", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p, dl, dd { margin: 0; }
button { color: inherit; }
::selection { background: #dbe3ff; color: #152670; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d0d5dd; border: 3px solid transparent; border-radius: 99px; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: #b9c0cb; border: 3px solid transparent; background-clip: content-box; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 9px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  height: 64px;
  border-bottom: 1px solid rgba(228, 231, 236, .9);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px) saturate(150%);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #7c3aed 48%, #0ea5c6);
}
.header-inner {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.environment-banner {
  min-height: 38px;
  border-bottom: 1px solid #c7d2fe;
  background: var(--blue-soft);
}
.environment-banner-inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-dark);
  font-size: 12px;
}
.environment-label {
  flex: 0 0 auto;
  padding: 3px 7px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  color: #fff;
  background: var(--blue);
  font-size: 9px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .11em;
}
.environment-banner p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.environment-banner a {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--blue-dark);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.environment-dismiss {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: var(--blue-dark);
  background: transparent;
  cursor: pointer;
  transition: color 120ms ease, background 120ms ease;
}
.environment-dismiss:hover { color: #152670; background: rgba(54,87,245,.11); }
.environment-dismiss:active { background: rgba(54,87,245,.18); }
.environment-dismiss span { font-size: 19px; font-weight: 400; line-height: 1; transform: translateY(-1px); }
.environment-banner[hidden] { display: none; }
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: -.02em;
}
.brand-frame {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(16, 24, 40, .06);
}
.brand-frame img { width: 25px; height: 25px; object-fit: contain; }
.brand-name { white-space: nowrap; font-size: 15px; }
.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.nav-link {
  position: relative;
  padding: 22px 9px 18px;
  color: #475467;
  font-size: 12.5px;
  font-weight: 520;
  white-space: nowrap;
  transition: color 140ms ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 160ms var(--ease);
}
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.search-trigger {
  height: 34px;
  min-width: 112px;
  padding: 0 8px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f9fafb;
  cursor: pointer;
}
.search-trigger:hover { border-color: var(--line-strong); background: #fff; }
.search-trigger kbd {
  margin-left: auto;
  min-width: 20px;
  padding: 1px 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--faint);
  background: #fff;
  font-size: 11px;
  font-family: inherit;
}
.search-symbol {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: inline-block;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}
.search-symbol::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 1.8px;
  right: -5px;
  bottom: -2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}
.locale-control { position: relative; }
.locale-button {
  width: 56px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.locale-globe {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1.4px solid var(--muted);
  border-radius: 50%;
}
.locale-globe::before, .locale-globe::after {
  content: "";
  position: absolute;
  inset: 2px 4px;
  border: 1px solid var(--muted);
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}
.locale-globe::after { inset: 6px 1px auto; height: 0; border: 0; border-top: 1px solid var(--muted); border-radius: 0; }
.locale-menu {
  position: absolute;
  top: 42px;
  right: 0;
  width: 158px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-pop);
}
.locale-menu[hidden] { display: none; }
.locale-menu button {
  width: 100%;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.locale-menu button:hover, .locale-menu button[aria-selected="true"] { color: var(--blue-dark); background: var(--blue-soft); }
.menu-button { display: none; }

main { overflow: hidden; }
.product-page {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 15%, rgba(54,87,245,.09), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.product-page[hidden] { display: none; }
.product-page-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 0;
}
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}
.product-breadcrumb a { color: var(--blue-dark); font-weight: 650; }
.product-page-hero {
  min-height: 400px;
  padding: 72px 0 62px;
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(360px, .75fr);
  grid-template-rows: auto auto;
  gap: 26px 80px;
  align-items: center;
}
.product-page-identity {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  gap: 30px;
}
.product-page-identity > img {
  width: 148px;
  height: 148px;
  padding: 10px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(34,52,112,.13);
}
.product-page h1 {
  margin-top: 11px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 650;
}
.product-page-summary {
  align-self: end;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.product-page-actions { align-self: start; display: flex; gap: 10px; flex-wrap: wrap; }
.product-page-guide {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}
.product-page-guide a {
  min-height: 122px;
  padding: 18px;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-content: start;
  gap: 4px 7px;
  border-right: 1px solid var(--line);
}
.product-page-guide a:hover { background: var(--blue-soft); box-shadow: inset 0 -2px var(--blue); }
.product-page-guide span { grid-row: 1 / 3; color: var(--blue); font: 10px ui-monospace, monospace; }
.product-page-guide strong { font-size: 13px; }
.product-page-guide small { color: var(--muted); font-size: 10px; line-height: 1.45; }
.product-context .hero,
.product-context .workspace-section,
.product-context .editorial-section,
.product-context .news-section,
.product-context .partner-section,
.product-context .plan-section,
.product-context .contact-section { display: none; }

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 83% 28%, rgba(54, 87, 245, .09), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fafbff 100%);
}
.hero-grid {
  width: min(var(--container), calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
  align-items: center;
  gap: 60px;
  padding: 82px 0 68px;
}
.eyebrow {
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 760;
}
.hero h1 {
  max-width: 850px;
  margin-top: 18px;
  font-size: clamp(48px, 5.3vw, 82px);
  line-height: .99;
  letter-spacing: -.065em;
  font-weight: 650;
}
.hero-summary {
  max-width: 660px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -.015em;
}
.hero-actions { margin-top: 34px; display: flex; gap: 10px; flex-wrap: wrap; }
.button {
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 650;
  transition: transform 120ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button-primary { color: #fff; border-color: var(--blue); background: var(--blue); box-shadow: 0 8px 20px rgba(54, 87, 245, .2); }
.button-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.button-secondary { border-color: var(--line-strong); background: #fff; }
.button-secondary:hover { border-color: #aeb7c4; background: #f9fafb; }
.hero-facts {
  max-width: 620px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.hero-facts div { padding: 20px 20px 0 0; }
.hero-facts div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-facts dt { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.hero-facts dd { margin-top: 3px; font-size: 19px; font-weight: 650; }
.hero-visual { min-height: 500px; display: flex; align-items: center; }
.architecture-panel {
  width: 100%;
  overflow: hidden;
  border: 1px solid #24314b;
  border-radius: 18px;
  color: #f8fafc;
  background: #101828;
  box-shadow: 0 28px 70px rgba(16, 24, 40, .2), 0 2px 8px rgba(16, 24, 40, .12);
}
.architecture-head {
  min-height: 64px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: #111c31;
}
.architecture-head > div { display: grid; gap: 2px; }
.architecture-head > div > span,
.architecture-status,
.architecture-foot dt {
  color: #8da0bd;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.architecture-head strong { font-size: 14px; font-weight: 600; letter-spacing: -.01em; }
.architecture-status { display: inline-flex; align-items: center; gap: 7px; }
.architecture-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc97;
  box-shadow: 0 0 0 4px rgba(61, 220, 151, .1);
}
.architecture-canvas {
  position: relative;
  height: 342px;
  overflow: hidden;
  background-color: #0d1628;
  background-image:
    linear-gradient(rgba(148,163,184,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 55%, rgba(54,87,245,.18), transparent 38%);
  background-size: 32px 32px, 32px 32px, auto;
}
.architecture-links { position: absolute; inset: 0; pointer-events: none; }
.architecture-links span {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 58%;
  height: 1px;
  background: linear-gradient(90deg, rgba(79,95,255,.85), rgba(105,202,255,.18));
  transform-origin: 0 50%;
}
.architecture-links span::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #68c8ff;
  box-shadow: 0 0 0 3px rgba(104,200,255,.12);
}
.architecture-links .link-identity { width: 97px; transform: rotate(-90deg); }
.architecture-links .link-workplace { width: 205px; transform: rotate(166deg); }
.architecture-links .link-operations { width: 205px; transform: rotate(14deg); }
.architecture-links .link-finance { width: 190px; transform: rotate(146deg); }
.architecture-links .link-security { width: 190px; transform: rotate(34deg); }
.architecture-core {
  position: absolute;
  z-index: 3;
  top: 58%;
  left: 50%;
  width: 210px;
  min-height: 108px;
  padding: 14px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(137,157,255,.55);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(44,58,99,.97), rgba(25,37,68,.98));
  box-shadow: 0 18px 45px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.04);
  transform: translate(-50%, -50%);
}
.architecture-logo {
  width: 44px;
  height: 44px;
  padding: 6px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
  background: rgba(255,255,255,.08);
}
.architecture-logo img { width: 32px; height: 32px; object-fit: contain; }
.architecture-core-copy small { display: block; color: #aebbd0; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.architecture-core-copy strong { display: block; margin-top: 4px; font-size: 16px; line-height: 1.15; letter-spacing: -.025em; }
.architecture-protocols { grid-column: 1 / -1; display: flex; gap: 5px; }
.architecture-protocols span {
  padding: 3px 6px;
  border: 1px solid rgba(150,166,255,.25);
  border-radius: 4px;
  color: #cbd4ff;
  background: rgba(79,95,255,.08);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 8px;
  letter-spacing: .08em;
}
.domain-tile {
  position: absolute;
  z-index: 2;
  width: 158px;
  min-height: 64px;
  padding: 10px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 10px;
  background: rgba(23, 34, 56, .94);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
}
.domain-tile img { width: 32px; height: 32px; padding: 3px; object-fit: contain; border-radius: 8px; background: #fff; }
.domain-tile div { min-width: 0; }
.domain-tile small { display: block; overflow: hidden; color: #95a4ba; font-size: 8px; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; letter-spacing: .05em; }
.domain-tile strong { display: block; margin-top: 3px; font-size: 12px; font-weight: 600; }
.domain-tile > span { align-self: start; color: #60718a; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 8px; }
.domain-identity { top: 18px; left: 50%; transform: translateX(-50%); }
.domain-workplace { top: 84px; left: 18px; }
.domain-operations { top: 84px; right: 18px; }
.domain-finance { bottom: 12px; left: 54px; }
.domain-security { right: 54px; bottom: 12px; }
.architecture-foot {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.09);
  background: #111c31;
}
.architecture-foot div { padding: 12px 16px; }
.architecture-foot div + div { border-left: 1px solid rgba(255,255,255,.09); }
.architecture-foot dd { margin-top: 2px; color: #e7edf7; font-size: 12px; font-weight: 600; }
.portfolio-panel {
  width: 100%;
  overflow: hidden;
  border: 1px solid #dbe2ee;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  box-shadow: 0 30px 80px rgba(36,55,100,.13), 0 2px 8px rgba(16,24,40,.05);
}
.portfolio-head {
  min-height: 96px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(115deg, #fff 0%, #f7f9ff 62%, #eef3ff 100%);
}
.portfolio-head > div:first-child { display: grid; gap: 5px; }
.portfolio-head > div:first-child > span,
.portfolio-domain-label,
.portfolio-contracts dt {
  color: #69758a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.portfolio-head strong { font-size: 20px; font-weight: 620; line-height: 1.18; letter-spacing: -.035em; }
.portfolio-count {
  min-width: 70px;
  padding-left: 18px;
  display: grid;
  justify-items: end;
  border-left: 1px solid #dbe2ee;
}
.portfolio-count b { font-size: 26px; font-weight: 650; line-height: 1; letter-spacing: -.05em; }
.portfolio-count span { margin-top: 4px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.portfolio-brand {
  margin: 18px 18px 0;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) auto;
  gap: 13px;
  align-items: center;
  border: 1px solid #dbe4ff;
  border-radius: 12px;
  background:
    linear-gradient(100deg, rgba(238,242,255,.94), rgba(248,250,255,.94)),
    #f7f9ff;
  box-shadow: inset 3px 0 0 var(--blue);
}
.portfolio-brand { color: inherit; text-decoration: none; }
.portfolio-brand:hover { border-color: #9fb0ff; box-shadow: inset 3px 0 0 var(--blue), 0 10px 28px rgba(46, 75, 180, .12); }
.workspace-hub-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid #c9d4ff;
  border-radius: 14px;
  background: linear-gradient(135deg, #f9fbff, #eef2ff);
  color: #111827;
  text-decoration: none;
}
.workspace-hub-card:hover { border-color: #8098ff; box-shadow: 0 14px 34px rgba(57, 87, 255, .12); }
.workspace-hub-mark { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 13px; background: #fff; box-shadow: 0 5px 16px rgba(57, 87, 255, .12); }
.workspace-hub-mark img { width: 38px; height: 38px; object-fit: contain; }
.workspace-hub-card span:nth-child(2) { display: grid; gap: 2px; }
.workspace-hub-card small { color: #6b7897; font-size: 11px; }
.workspace-hub-card strong { font-size: 16px; }
.workspace-hub-card em { color: #3957ff; font-size: 11px; font-style: normal; font-weight: 700; }
.workspace-hub-card > b { color: #3957ff; font-size: 22px; }
.portfolio-brand-mark {
  width: 48px;
  height: 48px;
  padding: 6px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(54,87,245,.15);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(54,87,245,.1);
}
.portfolio-brand-mark img { width: 35px; height: 35px; object-fit: contain; }
.portfolio-brand-copy { min-width: 0; }
.portfolio-brand-copy small { display: block; color: #687694; font-size: 9px; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; }
.portfolio-brand-copy strong { display: block; margin-top: 2px; font-size: 16px; font-weight: 650; letter-spacing: -.025em; }
.portfolio-brand-copy p { margin-top: 2px; overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.portfolio-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #344054;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.portfolio-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(15,159,110,.09); }
.portfolio-domain-label { padding: 18px 18px 8px; }
.portfolio-domains {
  margin: 0 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.portfolio-domain {
  position: relative;
  min-width: 0;
  min-height: 102px;
  padding: 14px 11px 12px;
  background: #fff;
}
.portfolio-domain + .portfolio-domain { border-left: 1px solid var(--line); }
.portfolio-domain::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: var(--domain-accent); }
.portfolio-domain img {
  width: 33px;
  height: 33px;
  padding: 3px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}
.portfolio-domain small { min-height: 21px; display: block; margin-top: 10px; overflow: hidden; color: var(--muted); font-size: 8px; line-height: 1.3; text-transform: uppercase; letter-spacing: .04em; }
.portfolio-domain strong { display: block; margin-top: 2px; overflow: hidden; font-size: 11px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.domain-accent-identity { --domain-accent: #0891b2; }
.domain-accent-workplace { --domain-accent: #6366f1; }
.domain-accent-operations { --domain-accent: #2878ff; }
.domain-accent-finance { --domain-accent: #7c3aed; }
.domain-accent-security { --domain-accent: #059669; }
.portfolio-contracts {
  margin: 16px 18px 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.portfolio-contracts div { padding: 11px 12px; }
.portfolio-contracts div + div { border-left: 1px solid var(--line); }
.portfolio-contracts dd { margin-top: 3px; color: #263247; font-size: 11px; font-weight: 650; }
.trust-strip {
  width: min(var(--container), calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.trust-strip span { position: relative; padding-left: 20px; }
.trust-strip span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid #8da0ff;
  border-radius: 50%;
  background: #e8ecff;
  transform: translateY(-50%);
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}
.section + .section { border-top: 1px solid var(--line); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading h2, .partner-intro h2, .contact-copy h2 {
  max-width: 850px;
  margin-top: 13px;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 630;
}
.section-heading > p, .section-note, .partner-intro > p:not(.eyebrow), .contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.7; }
.text-link { color: var(--blue-dark); font-weight: 650; justify-self: end; }
.text-link:hover { text-decoration: underline; }

.product-toolbar {
  min-height: 54px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-search {
  width: 260px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.product-search input {
  width: 100%;
  height: 40px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}
.filter-row { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-chip {
  height: 32px;
  padding: 0 11px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}
.filter-chip:hover { background: var(--subtle); }
.filter-chip.is-active { color: var(--blue-dark); background: var(--blue-soft); font-weight: 650; }
.product-count { margin-left: auto; color: var(--muted); font-size: 12px; white-space: nowrap; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.product-card {
  position: relative;
  min-height: 224px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}
.product-card:hover { z-index: 2; background: #fbfcff; box-shadow: inset 0 0 0 1px var(--accent, var(--blue)); }
.product-card[hidden] { display: none; }
.product-card-head { display: flex; align-items: center; gap: 12px; }
.product-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(16,24,40,.06);
}
.product-mark img { width: 42px; height: 42px; object-fit: contain; }
.product-card h3 { font-size: 16px; letter-spacing: -.02em; }
.product-card .product-category { margin-top: 2px; color: var(--muted); font-size: 11px; }
.product-card > p { margin-top: 20px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.product-card > a { margin-top: auto; padding-top: 18px; color: var(--blue-dark); font-size: 12px; font-weight: 700; }
.product-card > a::after { content: "  →"; }
.empty-state { padding: 40px; border: 1px solid var(--line); text-align: center; background: #fff; }
.empty-state p { margin-top: 4px; color: var(--muted); }

.document-section { width: 100%; padding-right: max(20px, calc((100% - var(--container)) / 2)); padding-left: max(20px, calc((100% - var(--container)) / 2)); background: #fff; }
.document-heading { width: min(var(--container), 100%); }
.docs-search-panel {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 210px minmax(300px, 1fr) 360px;
  align-items: center;
  gap: 24px;
  color: #fff;
  background: #121b33;
  border-radius: 12px;
}
.docs-search-panel > label { font-size: 16px; font-weight: 650; }
.docs-search-field {
  height: 46px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #8fa1cc;
  background: rgba(255,255,255,.08);
}
.docs-search-field:focus-within { border-color: #8da0ff; box-shadow: 0 0 0 3px rgba(141,160,255,.15); }
.docs-search-field input { min-width: 0; flex: 1; border: 0; outline: 0; color: #fff; background: transparent; }
.docs-search-field input::placeholder { color: #aab5cf; }
.docs-search-field kbd { padding: 2px 7px; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; color: #b7c2db; font-family: inherit; font-size: 10px; }
.docs-search-panel > p { color: #aab5cf; font-size: 12px; }
.docs-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 260px;
  gap: 36px;
  padding-top: 40px;
}
.sidebar-label { margin-bottom: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 760; }
.docs-sidebar { position: sticky; top: 92px; height: fit-content; }
.docs-sidebar a { height: 38px; padding: 0 10px; display: flex; align-items: center; border-left: 2px solid transparent; color: var(--muted); font-size: 12px; }
.docs-sidebar a:hover { color: var(--ink); background: var(--subtle); }
.docs-sidebar a.is-current { color: var(--blue-dark); border-left-color: var(--blue); background: var(--blue-soft); font-weight: 650; }
.docs-content { min-width: 0; }
.doc-group { padding: 0 0 34px; }
.doc-group + .doc-group { padding-top: 34px; border-top: 1px solid var(--line); }
.doc-group[hidden] { display: none; }
.doc-group-head { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.doc-index { color: var(--blue); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-weight: 700; }
.doc-group h3 { font-size: 19px; letter-spacing: -.025em; }
.doc-group-head p { margin-top: 4px; color: var(--muted); font-size: 12px; }
.doc-links { margin-top: 17px; margin-left: 56px; border-top: 1px solid var(--line); }
.doc-links a { min-height: 43px; padding: 0 8px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.doc-links a:hover { padding-left: 12px; color: var(--blue-dark); background: #fafbff; }
.doc-links small { color: var(--faint); font-size: 10px; }
.aside-panel { padding: 18px; border: 1px solid var(--line); border-radius: 10px; }
.aside-panel + .aside-panel { margin-top: 14px; }
.aside-panel > a { padding: 10px 0; display: grid; grid-template-columns: 25px 1fr; gap: 8px; border-top: 1px solid var(--line); }
.aside-panel > a span { color: var(--faint); font: 10px ui-monospace, monospace; }
.aside-panel > a b { font-size: 11px; font-weight: 600; }
.accent-panel { color: #fff; border-color: #26375f; background: #18233f; }
.accent-panel .sidebar-label { color: #9eabd0; }
.accent-panel h3 { font-size: 18px; line-height: 1.35; }
.accent-panel a { margin-top: 18px; padding: 0; display: block; border: 0; color: #b9c5ff; font-size: 11px; font-weight: 650; }
.docs-empty { margin: 28px 0 0 246px; padding: 28px; border: 1px solid var(--line); text-align: center; color: var(--muted); }

.editorial-section { padding-bottom: 120px; }
.editorial-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px; }
.feature-story, .compact-story { border-top: 1px solid var(--ink); }
.feature-story { display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; padding-top: 18px; }
.compact-story { padding-top: 18px; }
.story-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #e8edff;
}
.story-art > span { position: absolute; z-index: 2; top: 18px; left: 18px; font: 11px ui-monospace, monospace; }
.story-art i, .story-art b { position: absolute; display: block; }
.story-art-primary { background: linear-gradient(135deg, #dbe3ff, #eff2ff 60%, #c9ddff); }
.story-art-primary i { width: 54%; height: 72%; right: 9%; bottom: -10%; border: 1px solid #6379e7; border-radius: 46% 46% 12% 12%; transform: rotate(-13deg); background: rgba(255,255,255,.42); }
.story-art-primary b { width: 38%; height: 44%; left: 12%; bottom: 15%; border: 1px solid #3657f5; border-radius: 50%; }
.story-art-security { min-height: 180px; background: linear-gradient(145deg, #e3f7f1, #d6f0e8); }
.story-art-security i { inset: 45px 32px; border: 1px solid #0f9f6e; border-radius: 50% 50% 45% 45%; }
.story-art-data { min-height: 180px; background: linear-gradient(145deg, #f4eafe, #e9ddff); }
.story-art-data i { right: 28px; bottom: 0; width: 64%; height: 72%; border: 1px solid #7c3aed; border-bottom: 0; border-radius: 50% 50% 0 0; }
.story-meta { margin-top: 20px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.story-copy h3, .compact-story h3 { margin-top: 10px; font-size: 22px; line-height: 1.22; letter-spacing: -.03em; }
.story-copy > p:not(.story-meta) { margin-top: 14px; color: var(--muted); line-height: 1.7; }
.story-copy a, .compact-story a { display: inline-block; margin-top: 22px; color: var(--blue-dark); font-size: 12px; font-weight: 700; }
.compact-story h3 { font-size: 18px; }

.news-section { width: 100%; padding-right: max(20px, calc((100% - var(--container)) / 2)); padding-left: max(20px, calc((100% - var(--container)) / 2)); background: #111a2e; color: #fff; }
.news-section .eyebrow { color: #9eafff; }
.news-section .section-note { color: #a8b3cc; }
.news-list { border-top: 1px solid #35405a; }
.news-list article {
  min-height: 82px;
  display: grid;
  grid-template-columns: 120px 100px 1fr 70px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #35405a;
}
.news-list time { color: #8f9ab2; font: 11px ui-monospace, monospace; }
.news-tag { width: fit-content; padding: 3px 7px; border: 1px solid #53617f; border-radius: 5px; color: #c4cce0; font-size: 9px; text-transform: uppercase; }
.news-list h3 { font-size: 14px; font-weight: 540; }
.news-list a { justify-self: end; color: #9eafff; font-size: 11px; }

.partner-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.partner-intro > p:not(.eyebrow) { margin-top: 20px; }
.partner-intro .button { margin-top: 28px; }
.partner-paths { border-top: 1px solid var(--line-strong); }
.partner-paths article { padding: 25px 0; display: grid; grid-template-columns: 38px 190px 1fr; gap: 18px; border-bottom: 1px solid var(--line); align-items: baseline; }
.partner-paths span { color: var(--blue); font: 11px ui-monospace, monospace; }
.partner-paths h3 { font-size: 15px; }
.partner-paths p { color: var(--muted); font-size: 12px; }

.plan-section { width: 100%; padding-right: max(20px, calc((100% - var(--container)) / 2)); padding-left: max(20px, calc((100% - var(--container)) / 2)); background: #fff; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.plan-grid article { min-height: 350px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-grid article.plan-featured { color: #fff; border-color: #26375f; background: #18233f; box-shadow: 0 18px 46px rgba(24,35,63,.15); transform: translateY(-10px); }
.plan-label { color: var(--blue-dark); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; font-weight: 760; }
.plan-featured .plan-label { color: #aab7ff; }
.plan-grid h3 { max-width: 310px; margin-top: 14px; font-size: 24px; line-height: 1.22; letter-spacing: -.035em; }
.plan-grid ul { margin: 28px 0; padding: 0; list-style: none; color: var(--muted); }
.plan-grid li { position: relative; padding: 8px 0 8px 18px; border-bottom: 1px solid var(--line); font-size: 12px; }
.plan-grid li::before { content: ""; position: absolute; top: 15px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.plan-featured ul { color: #bdc6db; }
.plan-featured li { border-color: #35405a; }
.plan-featured li::before { background: #8da0ff; }
.plan-grid .button { margin-top: auto; align-self: flex-start; }

.contact-section { padding-top: 100px; padding-bottom: 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-copy > p:not(.eyebrow) { margin-top: 20px; }
.contact-grid { border-top: 1px solid var(--line-strong); }
.contact-grid a { min-height: 82px; padding: 17px 0; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--line); }
.contact-grid a:hover strong { color: var(--blue-dark); }
.contact-grid span { color: var(--muted); font-size: 11px; }
.contact-grid strong { margin-top: 3px; font-size: 15px; transition: color 140ms ease; }

.site-footer { color: #d2d8e6; background: #0c1426; }
.footer-main { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; padding: 64px 0; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.footer-brand { display: flex; gap: 13px; align-items: flex-start; }
.footer-brand .brand-frame { background: #fff; }
.footer-brand strong { color: #fff; font-size: 15px; }
.footer-brand p { margin-top: 5px; color: #8995ad; font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links b { margin-bottom: 5px; color: #fff; font-size: 11px; }
.footer-links a { color: #8995ad; font-size: 11px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { width: min(var(--container), calc(100% - 40px)); min-height: 56px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #273149; color: #6f7b94; font-size: 10px; }

.search-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: 75vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-pop);
}
.search-dialog::backdrop { background: rgba(10,17,32,.38); backdrop-filter: blur(5px); }
.search-dialog-shell { margin: 0; }
.global-search-field { height: 62px; padding: 0 18px; display: flex; align-items: center; gap: 13px; border-bottom: 1px solid var(--line); color: var(--muted); }
.global-search-field input { min-width: 0; flex: 1; border: 0; outline: 0; font-size: 16px; }
.global-search-field button { padding: 3px 7px; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); background: var(--subtle); cursor: pointer; font-size: 10px; }
.search-results { max-height: 450px; padding: 8px; overflow: auto; }
.search-result { width: 100%; min-height: 54px; padding: 9px 11px; display: grid; grid-template-columns: 34px 1fr auto; gap: 11px; align-items: center; border: 0; border-radius: 8px; text-align: left; background: #fff; cursor: pointer; }
.search-result:hover, .search-result.is-selected { background: var(--blue-soft); }
.search-result-mark { width: 36px; height: 36px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.search-result-mark img { width: 32px; height: 32px; object-fit: contain; }
.search-result b { display: block; font-size: 12px; }
.search-result small { color: var(--muted); font-size: 10px; }
.search-result > span:last-child { color: var(--faint); font-size: 10px; }
.search-help { padding: 9px 18px; border-top: 1px solid var(--line); color: var(--faint); font-size: 10px; }
.back-top {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top span { width: 9px; height: 9px; border-top: 1.5px solid var(--ink); border-left: 1.5px solid var(--ink); transform: translateY(3px) rotate(45deg); }

:focus-visible { outline: 3px solid rgba(54,87,245,.25); outline-offset: 2px; }

@media (max-width: 1180px) {
  .header-inner { gap: 14px; }
  .primary-nav { justify-content: flex-start; overflow: hidden; }
  .nav-link { padding-right: 7px; padding-left: 7px; }
  .search-trigger span:not(.search-symbol) { display: none; }
  .search-trigger { min-width: 40px; width: 40px; }
  .search-trigger kbd { display: none; }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 24px; }
  .architecture-core { top: 58%; width: 200px; min-height: 108px; padding: 14px; }
  .architecture-links span { top: 58%; }
  .domain-workplace, .domain-operations { top: 84px; }
  .domain-finance, .domain-security { bottom: 12px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .docs-search-panel { grid-template-columns: 170px 1fr; }
  .docs-search-panel > p { display: none; }
  .docs-layout { grid-template-columns: 180px minmax(0, 1fr); }
  .docs-aside { display: none; }
  .editorial-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-header { height: 60px; }
  .header-inner { width: min(100% - 28px, var(--container)); }
  .menu-button {
    order: 3;
    width: 38px;
    height: 38px;
    margin-left: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }
  .menu-button span { width: 16px; height: 1.5px; background: var(--ink); transition: transform 150ms ease, opacity 150ms ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: 60px 0 auto;
    height: calc(100vh - 60px);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: auto;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .primary-nav.is-open { display: flex; }
  .nav-link { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav-link::after { display: none; }
  .header-actions { margin-left: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 72px 0 40px; }
  .product-page-hero { grid-template-columns: 1fr; padding: 52px 0; }
  .product-page-identity { grid-row: auto; }
  .product-page-guide { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(46px, 10vw, 70px); }
  .hero-visual { width: min(620px, 100%); margin: 15px auto 0; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 18px 0; }
  .section { padding: 80px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > p { max-width: 700px; }
  .text-link { justify-self: start; }
  .product-toolbar { flex-wrap: wrap; padding: 10px 0; }
  .product-search { width: 100%; }
  .product-count { margin-left: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-search-panel { grid-template-columns: 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; display: flex; overflow-x: auto; }
  .docs-sidebar .sidebar-label { display: none; }
  .docs-sidebar a { flex: 0 0 auto; border-left: 0; border-bottom: 2px solid transparent; }
  .docs-sidebar a.is-current { border-bottom-color: var(--blue); }
  .docs-empty { margin-left: 0; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .feature-story { grid-column: 1 / -1; }
  .partner-section, .contact-section { grid-template-columns: 1fr; gap: 54px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-grid article.plan-featured { transform: none; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 620px) {
  .brand-name { font-size: 13px; }
  .search-trigger { display: none; }
  .hero-grid, .trust-strip, .section, .footer-main, .footer-bottom { width: min(100% - 28px, var(--container)); }
  .hero h1 { font-size: 44px; }
  .product-page-inner { width: min(100% - 28px, var(--container)); }
  .product-page-identity { align-items: flex-start; gap: 16px; }
  .product-page-identity > img { width: 88px; height: 88px; border-radius: 22px; }
  .product-page h1 { font-size: 38px; }
  .product-page-summary { font-size: 15px; }
  .product-page-guide { grid-template-columns: 1fr; }
  .hero-summary { font-size: 16px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div, .hero-facts div + div { padding: 12px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .environment-banner-inner { width: min(100% - 28px, var(--container)); gap: 8px; }
  .environment-banner a { display: none; }
  .environment-banner p { font-size: 11px; }
  .hero-visual { min-height: auto; margin: 12px auto 0; }
  .portfolio-head { min-height: 82px; padding: 16px; }
  .portfolio-head strong { font-size: 17px; }
  .portfolio-count { display: none; }
  .portfolio-brand { margin: 12px 12px 0; padding: 14px; grid-template-columns: 42px minmax(0,1fr); }
  .portfolio-brand-mark { width: 42px; height: 42px; }
  .portfolio-brand-mark img { width: 30px; height: 30px; }
  .portfolio-live { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid #dbe4ff; }
  .portfolio-domain-label { padding: 14px 12px 7px; }
  .portfolio-domains { margin: 0 12px; grid-template-columns: 1fr 1fr; }
  .portfolio-domain { min-height: 86px; }
  .portfolio-domain + .portfolio-domain { border-left: 0; }
  .portfolio-domain:nth-child(even) { border-left: 1px solid var(--line); }
  .portfolio-domain:nth-child(n+3) { border-top: 1px solid var(--line); }
  .portfolio-domain:last-child { grid-column: 1 / -1; }
  .portfolio-contracts { margin: 14px 12px 12px; grid-template-columns: 1fr; }
  .portfolio-contracts div { padding: 9px 8px; display: flex; align-items: center; justify-content: space-between; }
  .portfolio-contracts div + div { border-left: 0; border-top: 1px solid var(--line); }
  .portfolio-contracts dd { margin-top: 0; }
  .architecture-head { min-height: 58px; padding: 11px 13px; }
  .architecture-status { display: none; }
  .architecture-canvas {
    height: auto;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .architecture-links { display: none; }
  .architecture-core {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-height: 112px;
    grid-column: 1 / -1;
    transform: none;
  }
  .domain-tile {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 60px;
    grid-template-columns: 30px 1fr;
    transform: none;
  }
  .domain-tile img { width: 28px; height: 28px; }
  .domain-tile > span { display: none; }
  .domain-identity { grid-column: 1 / -1; }
  .architecture-foot { grid-template-columns: 1fr; }
  .architecture-foot div { padding: 9px 13px; display: flex; align-items: center; justify-content: space-between; }
  .architecture-foot div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .architecture-foot dd { margin-top: 0; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .section-heading h2, .partner-intro h2, .contact-copy h2 { font-size: 35px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 200px; }
  .document-section, .news-section, .plan-section { padding-right: 14px; padding-left: 14px; }
  .docs-search-panel { padding: 22px 18px; }
  .doc-links { margin-left: 0; }
  .editorial-grid { grid-template-columns: 1fr; }
  .feature-story { grid-template-columns: 1fr; }
  .news-list article { padding: 18px 0; grid-template-columns: 95px 1fr; gap: 8px 12px; }
  .news-list h3 { grid-column: 1 / -1; }
  .news-list a { grid-column: 2; justify-self: start; }
  .partner-paths article { grid-template-columns: 30px 1fr; }
  .partner-paths p { grid-column: 2; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 14px 0; gap: 10px; flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Independent company, account and operator pages */
.account-link { height: 34px; padding: 0 11px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink-soft); font-size: 11px; font-weight: 650; white-space: nowrap; }
.account-link:hover { border-color: var(--line-strong); color: var(--blue-dark); }
.standalone-page { min-height: calc(100vh - 64px); overflow: visible; }
.home-page .editorial-section, .home-page .news-section, .home-page .partner-section, .home-page .plan-section, .home-page .contact-section { display: none; }
.page-hero { border-bottom: 1px solid var(--line); background: linear-gradient(180deg,#fff 0%,#f7f9ff 100%); }
.page-hero > div { width: min(var(--container), calc(100% - 40px)); min-height: 330px; margin: 0 auto; padding: 86px 0 62px; display: flex; flex-direction: column; justify-content: flex-end; }
.page-hero h1 { max-width: 980px; margin-top: 13px; font-size: clamp(42px,5vw,68px); line-height: 1.02; letter-spacing: -.055em; font-weight: 640; }
.page-hero p:last-child { max-width: 760px; margin-top: 22px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.page-section { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; padding: 64px 0 96px; }
.content-toolbar { min-height: 48px; padding: 0 4px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-strong); color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.publication-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-left: 1px solid var(--line); }
.publication-card { min-height: 340px; padding: 24px; display: grid; grid-template-columns: 150px minmax(0,1fr); gap: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.publication-card.featured { grid-column: 1 / -1; min-height: 390px; grid-template-columns: minmax(340px,.8fr) minmax(0,1.2fr); }
.publication-art { min-height: 170px; padding: 16px; background: linear-gradient(145deg,#18233f,#3657f5); color: #fff; }
.publication-card:nth-child(2) .publication-art { background: linear-gradient(145deg,#e2f5ef,#0f9f6e); }
.publication-card:nth-child(3) .publication-art { background: linear-gradient(145deg,#f3e8ff,#7c3aed); }
.publication-art span { font: 11px ui-monospace,Consolas,monospace; }
.record-meta { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.publication-card h2 { margin-top: 9px; font-size: 24px; line-height: 1.25; letter-spacing: -.035em; }
.publication-card p:not(.record-meta) { margin-top: 14px; color: var(--muted); line-height: 1.7; }
.publication-card .text-link { display: inline-block; margin-top: 24px; }
.dense-list { border-top: 1px solid var(--line-strong); }
.dense-list article { min-height: 84px; display: grid; grid-template-columns: 130px 130px minmax(0,1fr); gap: 18px; align-items: center; border-bottom: 1px solid var(--line); }
.dense-list time { color: var(--muted); font: 11px ui-monospace,Consolas,monospace; }
.dense-list h2 { font-size: 14px; font-weight: 560; }
.dense-list .news-copy p { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.dense-list a { justify-self: end; color: var(--blue-dark); font-size: 11px; font-weight: 650; }
.record-badge { width: fit-content; padding: 3px 7px; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--subtle); color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .04em; }
.record-badge.success { border-color: #a6e5cb; background: #ecfdf3; color: #067647; }
.split-page { display: grid; grid-template-columns: minmax(320px,.8fr) minmax(520px,1.2fr); gap: 72px; align-items: start; }
.contact-directory { border-top: 1px solid var(--line-strong); }
.contact-directory article { min-height: 88px; padding: 18px 2px; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--line); }
.contact-directory span { color: var(--muted); font-size: 11px; }
.contact-directory strong { margin-top: 4px; font-size: 14px; }
.enterprise-form { padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow-soft); }
.enterprise-form.compact { padding: 22px; box-shadow: none; }
.form-heading { margin-bottom: 24px; }
.form-heading h2, .enterprise-form > h3 { font-size: 19px; letter-spacing: -.025em; }
.form-heading p { margin-top: 5px; color: var(--muted); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.field { margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.field[hidden] { display: none; }
.field > span { color: var(--ink-soft); font-size: 11px; font-weight: 600; }
.field-help { min-height: 16px; display: block; color: #7b8496; font-size: 10px; line-height: 1.5; }
.field-help.checking { color: #3c51c8; }
.field-help.success { color: #087647; }
.field-help.error { color: #b42318; }
.field input, .field select, .field textarea { width: 100%; min-height: 38px; padding: 8px 10px; border: 1px solid var(--line-strong); border-radius: 8px; outline: 0; background: #fff; color: var(--ink); font: inherit; font-size: 13px; }
.field textarea { resize: vertical; line-height: 1.5; }
.field select { padding-right: 34px; appearance: none; background-image: url('/assets/icons/chevron.svg'); background-repeat: no-repeat; background-position: right 10px center; background-size: 14px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(54,87,245,.12); }
.form-status { margin-top: 14px; padding: 9px 11px; border: 1px solid #a6e5cb; border-radius: 7px; background: #ecfdf3; color: #067647; font-size: 11px; }
.form-status.error { border-color: #fecdca; background: #fef3f2; color: #b42318; }
.license-note { margin-top: 28px; padding: 20px 22px; display: grid; grid-template-columns: 230px 1fr; gap: 30px; border: 1px solid var(--line); background: var(--subtle); }
.license-note p { color: var(--muted); font-size: 12px; }
.account-surface.auth-entry-surface { min-height: 100vh; display: flex; flex-direction: column; background: radial-gradient(circle at 28% 46%,rgba(99,102,241,.08),transparent 27%),linear-gradient(135deg,#fff 0%,#fafbff 56%,#f4f6ff 100%); }
.account-surface.auth-entry-surface .site-header { display: none; }
.auth-entry-route .site-header { display: none; }
.account-surface.auth-entry-surface .standalone-page { flex: 1; display: flex; align-items: center; justify-content: center; }
.account-surface:not(.auth-entry-surface) .auth-policy-footer { display: none; }
.auth-layout { width: min(900px,calc(100% - 40px)); min-height: calc(100vh - 86px); margin: 0 auto; padding: 42px 0 30px; position: relative; display: grid; grid-template-columns: 260px 400px; align-items: center; justify-content: center; gap: 88px; }
.auth-locale-control { position: absolute; top: 42px; right: 0; }
.auth-locale-control .locale-menu { right: 0; left: auto; }
.auth-brand-panel { display: flex; flex-direction: column; align-items: center; text-align: center; }
.auth-brand-panel > img { width: 132px; height: 132px; object-fit: contain; filter: drop-shadow(0 16px 28px rgba(31,73,208,.16)); }
.auth-brand-name { margin-top: 22px; display: block; color: #111827; font-size: 22px; font-weight: 760; letter-spacing: -.035em; white-space: nowrap; }
.auth-brand-panel h1, .auth-brand-panel > p, .auth-brand-panel dl { display: none; }
.auth-card { width: 400px; padding: 20px 0 20px 52px; border: 0; border-left: 1px solid rgba(99,102,241,.2); border-radius: 0; background: transparent; box-shadow: none; }
.auth-card h2 { margin: 6px 0 26px; font-size: 26px; letter-spacing: -.035em; }
.auth-card .button { width: 100%; margin-top: 8px; }
.auth-register-layout { width: min(1040px,calc(100% - 40px)); grid-template-columns: 260px minmax(520px,620px); gap: 82px; }
.auth-card.auth-card-wide { width: 100%; }
.auth-secondary-actions { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 11px; }
.auth-secondary-actions a { color: #4f46e5; font-weight: 700; }
.auth-divider { margin: 22px 0 14px; display: flex; align-items: center; gap: 12px; color: var(--faint); font-size: 11px; }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.google-auth-button { width: 100%; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--line-strong); border-radius: 8px; background: #fff; color: var(--ink); font-size: 13px; font-weight: 650; text-decoration: none; cursor: pointer; }
.google-auth-button:hover { border-color: #9badff; box-shadow: 0 4px 18px rgba(54,87,245,.1); }
.google-auth-button[aria-disabled="true"], .google-auth-button:disabled { opacity: .55; cursor: not-allowed; box-shadow: none; }
.google-auth-mark { width: 24px; height: 24px; display: inline-grid; place-items: center; border: 1px solid #dadce0; border-radius: 50%; color: #4285f4; background: #fff; font-size: 14px; font-weight: 800; }
.auth-policy-footer { min-height: 68px; padding: 12px 28px 20px; display: flex; align-items: center; justify-content: center; gap: 28px; border-top: 0; color: var(--muted); background: transparent; font-size: 11px; }
.auth-policy-footer nav { display: flex; align-items: center; gap: 20px; }
.auth-policy-footer a { color: #6366F1; }
.auth-policy-footer a:hover { color: #4338ca; }
.policy-surface { min-height: 100vh; display: flex; flex-direction: column; background: #f4f6fa; }
.policy-header { min-height: 72px; padding: 0 max(24px,calc((100% - 1180px)/2)); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #dfe4ee; background: rgba(255,255,255,.96); }
.policy-main { width: min(1180px,calc(100% - 36px)); flex: 1; margin: 0 auto; padding: 34px 0 70px; }
.policy-back { display: inline-flex; margin-bottom: 18px; color: #334ac7; font-size: 12px; font-weight: 700; }
.policy-suite-tabs { min-height: 48px; margin-bottom: 14px; padding: 4px; display: inline-flex; align-items: center; gap: 4px; border: 1px solid #dce2ed; border-radius: 10px; background: #fff; }
.policy-suite-tabs a { min-height: 38px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; color: #667085; font-size: 12px; font-weight: 680; text-decoration: none; }
.policy-suite-tabs a:hover { color: #253bb8; background: #f5f7ff; }
.policy-suite-tabs a.is-current { color: #fff; background: #334ee9; box-shadow: 0 5px 14px rgba(51,78,233,.2); }
.policy-document { overflow: hidden; border: 1px solid #dce2ed; border-radius: 14px; background: #fff; box-shadow: 0 16px 46px rgba(29,43,80,.07); }
.policy-hero { padding: 40px 44px 34px; display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; border-bottom: 1px solid #e2e6ee; background: linear-gradient(122deg,#fff 0%,#fff 66%,#f2f5ff 100%); }
.policy-hero > div { max-width: 820px; }
.policy-hero .eyebrow { color: #3753dd; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.policy-hero h1 { margin: 10px 0 14px; font-size: clamp(34px,4vw,48px); line-height: 1.08; letter-spacing: -.045em; }
.policy-hero > div > p:last-child { max-width: 780px; color: #536078; font-size: 14px; line-height: 1.75; }
.policy-active-badge { flex: 0 0 auto; min-height: 28px; padding: 0 11px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid #a8e5c4; border-radius: 999px; color: #087647; background: #ecfdf3; font-size: 10px; font-weight: 750; }
.policy-active-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #12a568; }
.policy-meta-grid { margin: 0; display: grid; grid-template-columns: .7fr 1.8fr 1.25fr 1.25fr .65fr .9fr; border-bottom: 1px solid #e2e6ee; background: #fbfcfe; }
.policy-meta-grid > div { min-width: 0; min-height: 92px; padding: 18px 20px; border-right: 1px solid #e2e6ee; }
.policy-meta-grid > div:last-child { border-right: 0; }
.policy-meta-grid dt { margin-bottom: 7px; color: #7b8598; font-size: 9px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.policy-meta-grid dd { overflow-wrap: anywhere; color: #182239; font-size: 11px; font-weight: 650; line-height: 1.55; }
.policy-content-layout { min-height: 610px; display: grid; grid-template-columns: 242px minmax(0,1fr); }
.policy-section-tabs { padding: 24px 14px; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid #e2e6ee; background: #f8f9fc; }
.policy-section-tabs button { width: 100%; min-height: 48px; padding: 0 12px; display: grid; grid-template-columns: 28px minmax(0,1fr); align-items: center; gap: 6px; border: 0; border-radius: 7px; color: #5d687d; background: transparent; cursor: pointer; text-align: left; font-size: 11px; font-weight: 680; }
.policy-section-tabs button span { color: #9aa3b3; font-size: 9px; font-variant-numeric: tabular-nums; }
.policy-section-tabs button:hover { color: #253dc2; background: #eef1ff; }
.policy-section-tabs button.is-current { color: #243cc8; background: #e9edff; box-shadow: inset 3px 0 #4057e8; }
.policy-section-tabs button.is-current span { color: #4057e8; }
.policy-tab-panel { min-width: 0; padding: 38px 42px 46px; outline: none; }
.policy-tab-panel:focus-visible { box-shadow: inset 0 0 0 3px rgba(64,87,232,.24); }
.policy-tab-heading { margin-bottom: 26px; }
.policy-tab-heading .eyebrow { color: #4057e8; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.policy-tab-heading h2 { margin-top: 7px; font-size: 25px; letter-spacing: -.025em; }
.policy-tab-heading > p:last-child { max-width: 780px; margin-top: 12px; color: #59667c; font-size: 13px; line-height: 1.75; }
.policy-principle-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid #dfe4ed; border-left: 1px solid #dfe4ed; }
.policy-principle-grid article { min-height: 164px; padding: 24px; border-right: 1px solid #dfe4ed; border-bottom: 1px solid #dfe4ed; }
.policy-principle-grid article > span { color: #4057e8; font-size: 10px; font-weight: 800; }
.policy-principle-grid h3 { margin-top: 20px; font-size: 15px; }
.policy-principle-grid p { margin-top: 8px; color: #5b6679; font-size: 12px; line-height: 1.72; }
.policy-status-list { border-top: 1px solid #dfe4ed; }
.policy-status-row { min-height: 122px; padding: 22px 0; display: grid; grid-template-columns: 126px minmax(0,1fr); gap: 24px; border-bottom: 1px solid #dfe4ed; }
.policy-status-badge { width: fit-content; min-height: 26px; padding: 0 10px; display: inline-flex; align-items: center; border-radius: 999px; align-self: start; color: #176b46; background: #e9f9f0; font-size: 9px; font-weight: 780; }
.policy-status-row.partial .policy-status-badge { color: #975b06; background: #fff4dc; }
.policy-status-row.notConnected .policy-status-badge { color: #aa2e30; background: #fff0f0; }
.policy-status-row h3 { font-size: 14px; }
.policy-status-row p { margin-top: 8px; color: #566278; font-size: 12px; line-height: 1.7; }
.policy-status-row small { display: block; margin-top: 10px; color: #8690a2; font-size: 10px; line-height: 1.55; }
.policy-rule-list { border-top: 1px solid #dfe4ed; }
.policy-rule-list section { min-height: 116px; padding: 22px 0; display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 20px; border-bottom: 1px solid #dfe4ed; }
.policy-rule-list section > span { color: #4057e8; font-size: 11px; font-weight: 800; }
.policy-rule-list h3 { font-size: 14px; }
.policy-rule-list p { margin-top: 8px; color: #566278; font-size: 12px; line-height: 1.72; }
.policy-process-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; border: 1px solid #dfe4ed; background: #dfe4ed; list-style: none; counter-reset: policy-step; }
.policy-process-list li { min-height: 138px; padding: 22px; position: relative; background: #fff; counter-increment: policy-step; }
.policy-process-list li::before { content: counter(policy-step,decimal-leading-zero); display: block; margin-bottom: 16px; color: #4057e8; font-size: 10px; font-weight: 800; }
.policy-process-list h3 { font-size: 13px; }
.policy-process-list p { margin-top: 7px; color: #5b6679; font-size: 11px; line-height: 1.7; }
.policy-request-panel { margin-top: 24px; padding: 22px 24px; border-left: 3px solid #4057e8; background: #f2f4ff; }
.policy-request-panel h3, .policy-history h3 { font-size: 13px; }
.policy-request-panel p { margin-top: 8px; color: #4f5d76; font-size: 11px; line-height: 1.72; }
.policy-history { margin-top: 28px; }
.policy-history-table { margin-top: 12px; border-top: 1px solid #dfe4ed; }
.policy-history-table > div { min-height: 46px; padding: 10px 8px; display: grid; grid-template-columns: 120px 70px minmax(0,1fr); gap: 14px; align-items: center; border-bottom: 1px solid #dfe4ed; }
.policy-history-table b { color: #7d8799; font-size: 9px; text-transform: uppercase; }
.policy-history-table time, .policy-history-table span, .policy-history-table p { color: #4f5a6f; font-size: 10px; line-height: 1.55; }
.account-grid { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 36px; }
.account-nav { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.account-nav a { min-height: 42px; padding: 0 10px; display: flex; align-items: center; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.account-nav a.is-current { border-left: 2px solid var(--blue); background: var(--blue-soft); color: var(--blue-dark); font-weight: 650; }
.settings-panel { padding: 24px; border: 1px solid var(--line); background: #fff; }
.settings-panel + .settings-panel { margin-top: 18px; }
.settings-panel h2, .settings-panel h3 { margin-bottom: 18px; font-size: 16px; }
.settings-panel > p { margin-bottom: 20px; color: var(--muted); }
.record-details { border-top: 1px solid var(--line); }
.record-details div { min-height: 48px; display: grid; grid-template-columns: 190px minmax(0,1fr); align-items: center; border-bottom: 1px solid var(--line); }
.record-details dt { color: var(--muted); font-size: 11px; }
.record-details dd { font-size: 12px; font-weight: 600; }
.security-row { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.security-row b, .security-row small { display: block; }
.security-row b { font-size: 12px; }
.security-row small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.contract-table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); }
.contract-table { width: 100%; min-width: 900px; border-collapse: collapse; background: #fff; font-size: 11px; }
.contract-table th { height: 38px; padding: 0 10px; border-bottom: 1px solid var(--line-strong); background: var(--subtle); color: var(--muted); text-align: left; white-space: nowrap; }
.contract-table td { min-height: 48px; padding: 10px; border-bottom: 1px solid var(--line); vertical-align: middle; white-space: nowrap; }
.contract-table tbody tr:last-child td { border-bottom: 0; }
.contract-table td strong, .contract-table td small { display: block; }
.contract-table td small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.contract-table code { color: #3346bd; font-size: 10px; }
.account-subheading { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.account-password-form { max-width: 640px; }
.account-password-form .button { min-width: 180px; }
.account-provider-note { padding: 12px 14px; border-left: 3px solid #6366f1; background: #f3f4ff; color: var(--ink-soft); font-size: 11px; }
.admin-shell { min-height: calc(100vh - 64px); display: grid; grid-template-columns: 228px minmax(0,1fr); }
.admin-sidebar { padding: 28px 18px; display: flex; flex-direction: column; color: #d7deed; background: #111a2e; }
.admin-sidebar h1 { margin-top: 7px; color: #fff; font-size: 22px; }
.admin-sidebar small { color: #8995ad; }
.admin-sidebar nav { margin-top: 34px; display: flex; flex-direction: column; gap: 2px; }
.admin-sidebar button { height: 38px; padding: 0 10px; border: 0; border-left: 2px solid transparent; text-align: left; color: #9da8bf; background: transparent; cursor: pointer; font-size: 12px; }
.admin-sidebar button:hover, .admin-sidebar button.is-current { border-left-color: #8da0ff; background: #1a2743; color: #fff; }
.admin-sidebar > a { margin-top: auto; color: #9eafff; font-size: 11px; }
.admin-workspace { min-width: 0; padding: 28px; }
.admin-topbar { min-height: 58px; margin-bottom: 22px; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar h2 { margin-top: 3px; font-size: 21px; }
.metric-strip { margin-bottom: 22px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.metric-strip article { min-height: 104px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.metric-strip span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.metric-strip strong { display: block; margin-top: 14px; font-size: 28px; font-weight: 620; }
.admin-grid { display: grid; grid-template-columns: 320px minmax(0,1fr); gap: 22px; align-items: start; }
.form-actions { display: flex; gap: 8px; align-items: center; }
.form-actions .button { flex: 1; }
.operator-table-wrap { overflow: auto; border: 1px solid var(--line); background: #fff; }
.operator-table-block { min-width: 0; }
.operator-table-meta { min-height: 36px; padding: 0 2px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; }
.operator-table-meta strong { color: var(--ink); }
.operator-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.operator-table th { height: 38px; padding: 0 10px; position: sticky; top: 0; border-bottom: 1px solid var(--line-strong); background: var(--subtle); color: var(--muted); text-align: left; font-weight: 650; white-space: nowrap; }
.operator-table td { height: 42px; padding: 7px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.operator-table tbody tr:hover { background: #fafbff; }
.operator-table .operator-check-cell { width: 42px; padding: 0; text-align: center; }
.operator-check-cell input { width: 15px; height: 15px; margin: 0; accent-color: #3d58f4; cursor: pointer; }
.row-actions { display: flex; gap: 5px; }
.row-actions button { min-height: 28px; padding: 0 8px; border: 1px solid var(--line); border-radius: 6px; background: #fff; cursor: pointer; font-size: 10px; }
.row-actions button.danger { color: var(--red); }
.operator-pagination { min-height: 44px; display: flex; align-items: center; justify-content: flex-end; gap: 7px; color: var(--muted); font-size: 10px; }
.operator-pagination > div { display: flex; align-items: center; gap: 4px; }
.operator-pagination button { min-width: 30px; height: 30px; padding: 0 8px; border: 1px solid var(--line); border-radius: 6px; background: #fff; color: var(--ink-soft); font-size: 10px; cursor: pointer; }
.operator-pagination button:hover:not(:disabled), .operator-pagination button.is-current { border-color: #6675f6; background: #eef1ff; color: #263fcf; }
.operator-pagination button:disabled { opacity: .42; cursor: default; }
.operator-pagination > span { margin-left: 5px; }
.tab-strip { height: 42px; display: flex; gap: 18px; align-items: flex-end; border-bottom: 1px solid var(--line); }
.tab-strip button { height: 41px; padding: 0 2px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); font-size: 11px; font-weight: 650; }
.tab-strip button.is-current { border-bottom-color: var(--blue); color: var(--blue-dark); }
.subtable-title { margin: 28px 0 10px; font-size: 14px; }
.admin-operations-shell { min-height: calc(100vh - 64px); background: #f4f6fb; }
.admin-brand-block { min-height: 96px; }
.admin-brand-block .eyebrow { color: #7f93ff; }
.admin-workspace { overflow: hidden; }
.admin-kpi-grid { margin-bottom: 22px; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; }
.admin-kpi-grid article { min-height: 120px; padding: 20px; border: 1px solid #dfe4ef; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(22,34,66,.035); }
.admin-kpi-grid span, .admin-kpi-grid small { display: block; color: var(--muted); font-size: 10px; }
.admin-kpi-grid strong { display: block; margin: 17px 0 8px; color: #111827; font-size: 30px; line-height: 1; }
.admin-dashboard-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; align-items: start; }
.admin-card { min-width: 0; padding: 22px; border: 1px solid #dfe4ef; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(22,34,66,.035); }
.admin-card.span-2 { grid-column: 1 / -1; }
.admin-card > h3 { margin: 0 0 18px; font-size: 15px; }
.admin-section-heading { margin-bottom: 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.admin-section-heading h3 { margin-top: 4px; font-size: 17px; }
.admin-section-heading > span { color: var(--muted); font-size: 10px; }
.admin-source-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); }
.admin-source-list div { min-width: 0; padding: 16px 14px 0 0; }
.admin-source-list dt { color: var(--muted); font-size: 10px; }
.admin-source-list dd { margin-top: 7px; overflow-wrap: anywhere; font-size: 11px; font-weight: 650; }
.admin-bars { display: grid; gap: 10px; }
.admin-bar-row { display: grid; grid-template-columns: minmax(80px,150px) minmax(100px,1fr) 54px; gap: 10px; align-items: center; font-size: 10px; }
.admin-bar-row > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-bar-row > div { height: 7px; overflow: hidden; border-radius: 999px; background: #edf0f7; }
.admin-bar-row i { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg,#3858f5,#7b70ff); }
.admin-bar-row strong { text-align: right; font-size: 10px; }
.admin-empty-copy { color: var(--muted); font-size: 11px; }
.admin-editor-layout { display: grid; grid-template-columns: minmax(340px,.8fr) minmax(0,1.5fr); gap: 18px; align-items: start; }
.admin-editor-form { display: grid; gap: 15px; }
.admin-content-list { overflow: hidden; }
.admin-content-list-page { width: 100%; }
.admin-content-list-page > .admin-section-heading { min-height: 54px; align-items: center; }
.admin-content-list-page > .admin-section-heading h3 { margin: 0 0 4px; }
.admin-content-list-page > .admin-section-heading .button { flex: 0 0 auto; }
.admin-editor-page { width: min(980px,100%); margin: 0 auto; }
.admin-editor-page-header { min-height: 48px; margin-bottom: 12px; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 11px; font-weight: 650; }
.admin-content-editor { width: 100%; padding: 30px; }
.admin-content-editor .rich-editor { min-height: 420px; }
.admin-content-editor-actions { justify-content: flex-end; }
.admin-content-editor-actions .button { flex: 0 0 auto; min-width: 132px; }
.rich-toolbar { padding: 8px; display: flex; flex-wrap: wrap; gap: 6px; border: 1px solid var(--line-strong); border-bottom: 0; border-radius: 8px 8px 0 0; background: #f7f8fc; }
.rich-toolbar button, .rich-toolbar select { min-height: 30px; padding: 0 9px; border: 1px solid #d8deea; border-radius: 5px; background: #fff; color: #24304a; font-size: 10px; cursor: pointer; }
.rich-toolbar button:hover { border-color: #8290ff; color: #3149df; }
.rich-color { min-height: 30px; padding: 0 7px; display: inline-flex; align-items: center; gap: 6px; border: 1px solid #d8deea; border-radius: 5px; background: #fff; color: #56617a; font-size: 9px; }
.rich-color input { width: 22px; height: 22px; padding: 1px; border: 0; background: transparent; }
.rich-editor { min-height: 300px; padding: 18px; overflow-wrap: anywhere; border: 1px solid var(--line-strong); border-radius: 0 0 8px 8px; background: #fff; color: #172033; line-height: 1.7; outline: none; }
.rich-editor:focus { border-color: #6675f6; box-shadow: 0 0 0 3px rgba(99,102,241,.11); }
.rich-editor img { max-width: 100%; height: auto; display: block; margin: 16px auto; }
.rich-editor blockquote { margin: 16px 0; padding-left: 16px; border-left: 3px solid #6675f6; color: #526078; }
.admin-boundary-note { padding: 12px 14px; border-left: 3px solid #e8a100; background: #fff8e8; color: #72521b; font-size: 10px; line-height: 1.6; }
.admin-check { display: flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 650; }
.admin-check input { width: 16px; height: 16px; accent-color: #3d58f4; }
.admin-toast { position: fixed; right: 24px; bottom: 24px; z-index: 80; min-width: 220px; max-width: 420px; padding: 12px 16px; border-radius: 8px; background: #167a4d; color: #fff; box-shadow: 0 12px 38px rgba(0,0,0,.18); font-size: 11px; pointer-events: none; }
.admin-toast:empty { display: none; }
.admin-toast.error { background: #ad2d38; }
.admin-detail-panel { width: min(440px,calc(100vw - 32px)); max-height: calc(100vh - 108px); position: fixed; top: 84px; right: 24px; z-index: 70; overflow: hidden; border: 1px solid #d8deea; border-radius: 14px; background: #fff; box-shadow: 0 22px 70px rgba(17,26,46,.22); }
.admin-detail-panel > header { min-height: 78px; padding: 18px 20px; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.admin-detail-panel > header span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.admin-detail-panel > header h3 { max-width: 310px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 17px; }
.admin-detail-panel > header button { min-height: 30px; padding: 0 10px; border: 1px solid var(--line); border-radius: 6px; background: #fff; color: var(--muted); cursor: pointer; font-size: 10px; }
.admin-detail-tabs { height: 44px; padding: 0 20px; display: flex; align-items: flex-end; gap: 20px; border-bottom: 1px solid var(--line); }
.admin-detail-tabs button { height: 43px; padding: 0 1px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); cursor: pointer; font-size: 11px; font-weight: 650; }
.admin-detail-tabs button.is-current { border-bottom-color: #3d58f4; color: #263fcf; }
.admin-detail-body { max-height: calc(100vh - 232px); padding: 8px 20px 22px; overflow: auto; }
.admin-detail-list { margin: 0; }
.admin-detail-list div { min-height: 50px; padding: 10px 0; display: grid; grid-template-columns: 120px minmax(0,1fr); gap: 14px; align-items: start; border-bottom: 1px solid var(--line); }
.admin-detail-list dt { color: var(--muted); font-size: 10px; }
.admin-detail-list dd { overflow-wrap: anywhere; color: var(--ink); font-size: 11px; line-height: 1.55; }
.admin-detail-history { margin: 0; padding: 4px 0 0; list-style: none; }
.admin-detail-history li { padding: 14px 0; display: grid; gap: 4px; border-bottom: 1px solid var(--line); }
.admin-detail-history time, .admin-detail-history span { color: var(--muted); font-size: 10px; }
.admin-detail-history strong { font-size: 11px; }
.publication-rich-body { margin-top: 18px; color: var(--ink-soft); line-height: 1.75; }
.publication-rich-body:empty { display: none; }
.publication-rich-body h2, .publication-rich-body h3 { margin: 18px 0 8px; color: var(--ink); }
.publication-rich-body img { max-width: 100%; height: auto; display: block; margin: 18px auto; border-radius: 8px; }
.publication-rich-body blockquote { margin: 16px 0; padding-left: 16px; border-left: 3px solid #6675f6; color: #526078; }
.plan-price { margin: 16px 0; display: block; color: #263fcf; font-size: 20px; }

@media (max-width: 960px) {
  .split-page, .auth-layout, .admin-grid { grid-template-columns: 1fr; }
  .auth-layout { width: min(400px,calc(100% - 32px)); gap: 26px; }
  .auth-card { width: 100%; padding: 28px 0 0; border-left: 0; border-top: 1px solid rgba(99,102,241,.2); }
  .auth-register-layout { width: min(620px,calc(100% - 32px)); }
  .auth-locale-control { position: relative; top: auto; right: auto; justify-self: end; margin-bottom: -12px; }
  .publication-card.featured { grid-template-columns: 240px 1fr; }
  .admin-shell { grid-template-columns: 190px minmax(0,1fr); }
  .metric-strip { grid-template-columns: repeat(2,1fr); }
  .admin-kpi-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-editor-layout { grid-template-columns: 1fr; }
  .policy-meta-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .policy-meta-grid > div:nth-child(3n) { border-right: 0; }
  .policy-meta-grid > div:nth-child(-n+3) { border-bottom: 1px solid #e2e6ee; }
  .policy-content-layout { grid-template-columns: 210px minmax(0,1fr); }
  .policy-tab-panel { padding: 34px 30px 42px; }
}
@media (max-width: 700px) {
  .page-hero > div, .page-section, .auth-layout { width: min(100% - 28px,var(--container)); }
  .publication-grid, .publication-card, .publication-card.featured, .form-grid, .account-grid { grid-template-columns: 1fr; }
  .dense-list article { padding: 16px 0; grid-template-columns: 110px 1fr; }
  .dense-list h2 { grid-column: 1 / -1; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .admin-sidebar nav { flex-direction: row; overflow-x: auto; }
  .admin-sidebar button { flex: 0 0 auto; }
  .metric-strip { grid-template-columns: 1fr 1fr; }
  .admin-kpi-grid, .admin-dashboard-grid, .admin-source-list { grid-template-columns: 1fr; }
  .admin-card.span-2 { grid-column: auto; }
  .admin-workspace { padding: 18px 14px; }
  .admin-bar-row { grid-template-columns: 90px minmax(80px,1fr) 42px; }
  .operator-pagination { flex-wrap: wrap; justify-content: flex-start; padding-top: 8px; }
  .admin-detail-panel { top: 16px; right: 16px; max-height: calc(100vh - 32px); }
  .admin-detail-body { max-height: calc(100vh - 172px); }
  .license-note { grid-template-columns: 1fr; gap: 6px; }
  .auth-layout { min-height: auto; padding: 32px 0 24px; }
  .auth-brand-panel > img { width: 108px; height: 108px; }
  .auth-card { padding: 24px 0 0; }
  .auth-policy-footer { flex-direction: column; gap: 10px; text-align: center; }
  .auth-policy-footer nav { flex-wrap: wrap; justify-content: center; gap: 10px 16px; }
  .policy-header { padding: 0 18px; }
  .policy-main { padding-top: 28px; }
  .policy-suite-tabs { width: 100%; display: grid; grid-template-columns: repeat(3,1fr); }
  .policy-suite-tabs a { padding: 0 8px; text-align: center; }
  .policy-hero { padding: 30px 24px; display: block; }
  .policy-hero h1 { font-size: 34px; }
  .policy-active-badge { margin-top: 20px; }
  .policy-meta-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .policy-meta-grid > div, .policy-meta-grid > div:nth-child(3n) { border-right: 1px solid #e2e6ee; border-bottom: 1px solid #e2e6ee; }
  .policy-meta-grid > div:nth-child(2n) { border-right: 0; }
  .policy-meta-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .policy-content-layout { min-height: auto; grid-template-columns: 1fr; }
  .policy-section-tabs { padding: 8px; flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid #e2e6ee; }
  .policy-section-tabs button { min-width: 172px; flex: 0 0 auto; }
  .policy-section-tabs button.is-current { box-shadow: inset 0 -3px #4057e8; }
  .policy-tab-panel { padding: 30px 22px 38px; }
  .policy-principle-grid, .policy-process-list { grid-template-columns: 1fr; }
  .policy-status-row { grid-template-columns: 1fr; gap: 10px; }
  .policy-history-table > div { grid-template-columns: 88px 54px minmax(0,1fr); gap: 8px; }
}
