:root {
  --primary: #455dd3;
  --primary-pressed: #3b4fba;
  --blue: #0075de;
  --blue-active: #005bab;
  --ink: #1a1a1a;
  --body: #5d5b54;
  --muted: #787671;
  --line: #e5e3df;
  --line-soft: #ede9e4;
  --canvas: #ffffff;
  --soft: #f6f5f4;
  --soft-2: #fafaf9;
  --dark: #191918;
  --dark-card: #252523;
  --green: #1aae39;
  --red: #e03131;
  --amber: #dd5b00;
  --violet: #7b3ff2;
  --peach: #ffe8d4;
  --rose: #fde0ec;
  --mint: #d9f3e1;
  --lavender: #e6e0f5;
  --sky: #dcecfa;
  --yellow: #fef7d6;
  --radius-card: 12px;
  --radius-sm: 8px;
  --radius-pill: 9999px;
  --shadow: 0 16px 44px rgba(25, 25, 24, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: "NotionInter", Inter, -apple-system, system-ui, "Segoe UI", Helvetica, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  color: rgba(0, 0, 0, 0.95);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
}

.site-header.on-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line-soft);
}

.site-header.on-dark {
  color: white;
  background: rgba(25, 25, 24, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
}

.brand-mark {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex: 0 0 32px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  font-weight: 400;
}

.nav-menu {
  position: relative;
}

.nav-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 12px;
}

.nav-menu > a {
  display: inline-flex;
  align-items: center;
  height: 40px;
}

.nav-menu-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 30;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(25, 25, 24, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu:hover .nav-menu-list,
.nav-menu:focus-within .nav-menu-list {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu-list a {
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.nav-menu-list a:hover {
  background: var(--soft);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: white;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.nav-cta:hover {
  background: var(--primary-pressed);
}

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

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #1f2a44;
  box-shadow: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.menu-toggle i,
.menu-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
  pointer-events: none;
}

.menu-toggle:hover {
  border-color: transparent;
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(69, 93, 211, 0.22);
  outline-offset: 2px;
}

.site-header.menu-open .menu-toggle {
  border-color: transparent;
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}

.language-link {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: currentColor;
  font-size: 13px;
  font-weight: 600;
}

.site-header.is-scrolled .language-link {
  border-color: var(--line);
}

.site-header.on-dark .language-link {
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-cta svg,
.button svg,
.capability-list svg,
.role-grid svg,
i[data-lucide] {
  width: 18px;
  height: 18px;
}

i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

i[data-lucide] svg {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
  background: var(--dark);
  padding: 128px 0 72px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 64px 0 auto;
  height: 520px;
  background:
    radial-gradient(circle at 50% 18%, rgba(69, 93, 211, 0.36), transparent 28%),
    radial-gradient(circle at 24% 34%, rgba(255, 100, 200, 0.18), transparent 24%),
    radial-gradient(circle at 76% 38%, rgba(42, 157, 153, 0.18), transparent 25%);
  opacity: 0.9;
}

.hero::after {
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.04) 44%, rgba(246, 245, 244, 0.95) 100%);
}

.hero-inner {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 48px;
  text-align: center;
}

.hero-content {
  max-width: 1120px;
  display: grid;
  justify-items: center;
}

.hero-visual {
  position: relative;
  width: min(1080px, 100%);
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 22px 9% -22px;
  z-index: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(34px);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.hero-kicker {
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(214, 182, 246, 0.34);
  border-radius: var(--radius-pill);
  color: #d6b6f6;
  background: rgba(123, 63, 242, 0.16);
  font-size: 13px;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero .eyebrow,
.access-section .eyebrow {
  color: #d6b6f6;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
}

.hero-title-two-line,
.hero-title-single-line {
  max-width: none;
}

.hero-title-two-line span {
  display: block;
  white-space: nowrap;
}

.hero-title-single-line {
  white-space: nowrap;
}

.headline-nowrap {
  max-width: none;
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: 54px;
  line-height: 1.04;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 27px;
}

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

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.button-primary {
  background: var(--primary);
  color: white;
}

.button-primary:hover {
  background: var(--primary-pressed);
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.button-dark {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 16px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-metrics dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.intro-band {
  padding: 96px 0;
  background: var(--soft-2);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.intro-grid p {
  margin: 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.5;
}

.intro-grid p:last-child {
  color: var(--ink);
  font-weight: 600;
}

.section {
  padding: 88px 0;
}

.section-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.section-cta p {
  margin: 0;
  display: grid;
  gap: 4px;
  color: var(--body);
}

.section-cta strong {
  color: var(--ink);
  font-size: 20px;
}

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

.section-cta-light .button-dark {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.section-head {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head.compact {
  display: block;
  max-width: 780px;
}

.title-center {
  display: block;
  max-width: 960px;
  text-align: center;
}

.title-center h2 {
  margin-inline: auto;
}

.title-center p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.5;
}

.title-sm h2 {
  font-size: clamp(36px, 3.1vw, 44px);
}

.title-sm h2.nowrap-title {
  white-space: nowrap;
  font-size: clamp(28px, 2.8vw, 40px);
}

#fit-title {
  font-size: 54px;
  white-space: nowrap;
}

.product-section,
.scenario-section,
.report-section,
.why-section,
.fit-section {
  background: var(--soft);
}

.why-section {
  position: relative;
  background:
    linear-gradient(180deg, #fafaf9 0%, #f6f5f4 100%);
  border-bottom: 1px solid var(--line-soft);
}

.anchor-offset {
  display: block;
  position: relative;
  top: -88px;
  height: 0;
  visibility: hidden;
}

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

.risk-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.risk-grid span {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 700;
}

.risk-grid h3 {
  margin: 30px 0 0;
  font-size: 24px;
}

.cockpit {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.dashboard-shell {
  padding: 24px;
  border-radius: var(--radius-card);
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dashboard-topbar,
.report-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.kpi-grid article {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--soft-2);
  border: 1px solid var(--line-soft);
}

.kpi-grid span,
.ledger-table span {
  color: var(--muted);
  font-size: 12px;
}

.kpi-grid strong {
  display: block;
  margin: 8px 0 2px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 24px;
}

.kpi-grid em,
.ledger-table em {
  color: var(--muted);
  font-style: normal;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

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

.negative {
  color: var(--red) !important;
}

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

.chart-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.flow-chart {
  min-height: 260px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(rgba(10,21,48,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,21,48,0.08) 1px, transparent 1px),
    var(--soft-2);
  background-size: 100% 25%, 12.5% 100%, auto;
}

.flow-chart span {
  flex: 1;
  min-width: 10px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #d6b6f6, var(--primary));
}

.ledger-table {
  display: grid;
  gap: 10px;
}

.ledger-table div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--soft-2);
  border: 1px solid var(--line-soft);
}

.ledger-table b {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}

.console-table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.console-table > div {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.9fr 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: var(--radius-sm);
  background: var(--soft-2);
  border: 1px solid var(--line-soft);
}

.console-table .console-table-head {
  background: white;
  border-color: var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.console-table b,
.console-table strong {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.console-table em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

.console-table span {
  color: var(--body);
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list article,
.role-grid article,
.answer-grid article,
.workflow-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.capability-list article:nth-child(1),
.workflow-grid article:nth-child(1),
.role-grid article:nth-child(1) {
  background: var(--peach);
}

.capability-list article:nth-child(2),
.workflow-grid article:nth-child(2),
.role-grid article:nth-child(2) {
  background: var(--mint);
}

.capability-list article:nth-child(3),
.workflow-grid article:nth-child(3),
.role-grid article:nth-child(3) {
  background: var(--lavender);
}

.capability-list article:nth-child(4) {
  background: var(--sky);
}

.capability-list article {
  min-height: 150px;
}

.capability-list svg,
.role-grid svg,
.workflow-grid svg {
  margin-bottom: 18px;
  color: var(--primary);
}

.capability-list p,
.answer-grid p,
.role-grid p,
.workflow-grid p,
.split-head p,
.report-layout > div > p,
.access-layout > div > p,
.site-footer p {
  color: var(--body);
}

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

.workflow-grid article {
  min-height: 240px;
}

.workflow-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.workflow-grid h3 {
  font-size: 24px;
}

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

.answer-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 600;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

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

.scenario-grid article,
.scenario-grid .scenario-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  background: white;
  border: 1px solid var(--line);
}

.scenario-grid article:nth-child(1),
.scenario-grid .scenario-card:nth-child(1) {
  background: var(--peach);
}

.scenario-grid article:nth-child(2),
.scenario-grid .scenario-card:nth-child(2) {
  background: var(--rose);
}

.scenario-grid article:nth-child(3),
.scenario-grid .scenario-card:nth-child(3) {
  background: var(--mint);
}

.scenario-grid article:nth-child(4),
.scenario-grid .scenario-card:nth-child(4) {
  background: var(--lavender);
}

.scenario-grid .scenario-card {
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.scenario-grid .scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.scenario-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.scenario-grid article > div,
.scenario-grid .scenario-card > div {
  flex: 1;
  padding: 24px;
}

.scenario-grid p {
  color: var(--body);
}

.scenario-grid strong {
  display: block;
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.merged-scenario-grid {
  align-items: stretch;
}

.merged-scenario-grid h3 {
  margin-bottom: 18px;
}

.merged-scenario-grid dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.merged-scenario-grid dl div {
  padding: 14px 0 0;
  border-top: 1px solid rgba(55, 53, 47, 0.14);
}

.merged-scenario-grid dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.merged-scenario-grid dd {
  margin: 5px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

.roles-section {
  background: white;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.role-grid ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

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

.action-table,
.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.action-table div,
.compare-table div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.action-table div:last-child,
.compare-table div:last-child {
  border-bottom: 0;
}

.action-table span,
.compare-table span {
  color: var(--body);
  font-weight: 700;
}

.action-table strong,
.compare-table strong {
  color: var(--ink);
}

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

.fit-grid article {
  min-height: 210px;
  display: grid;
  grid-template-rows: minmax(48px, auto) 116px;
  align-items: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
  color: var(--ink);
  font-weight: 700;
}

.fit-grid img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(25, 25, 24, 0.08);
}

.fit-grid span {
  align-self: start;
}

.fit-grid article:nth-child(1) {
  background: var(--yellow);
}

.fit-grid article:nth-child(2) {
  background: var(--sky);
}

.fit-grid article:nth-child(3) {
  background: var(--rose);
}

.fit-grid article:nth-child(4) {
  background: var(--mint);
}

.fit-grid article:nth-child(5) {
  background: var(--lavender);
}

.role-grid li {
  padding-left: 20px;
  position: relative;
  color: var(--ink);
  font-weight: 600;
}

.role-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.report-layout,
.access-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: center;
}

.report-card {
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--dark);
  color: white;
  box-shadow: var(--shadow);
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.report-stats div {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--dark-card);
}

.report-stats strong {
  display: block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 28px;
}

.report-stats span,
.report-columns p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

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

.report-columns div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.report-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.report-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  font-weight: 700;
}

.compare-section {
  background: white;
}

.compare-table .compare-head {
  background: var(--dark);
  color: white;
}

.compare-table .compare-head span {
  color: white;
}

.access-section {
  padding: 96px 0;
  background: var(--dark);
  color: white;
}

.access-layout > div > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.access-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.access-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.access-form input,
.access-form select,
.access-form textarea {
  display: block;
  width: 100%;
  height: 50px;
  min-height: 50px;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: #070f24;
  color: white;
  padding: 0 14px;
  line-height: normal;
}

.access-form textarea {
  height: auto;
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
}

.access-form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.25 5.25 7 9l3.75-3.75' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
}

.access-form input:focus,
.access-form select:focus {
  outline: 2px solid #d6b6f6;
  border-color: transparent;
}

.access-form .button {
  margin-top: 4px;
}

.form-status {
  min-height: 21px;
  margin: 0;
  color: #d6b6f6;
  font-size: 14px;
}

.post-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-submit a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--soft-2);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.footer-language {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-language a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--body);
  font-size: 13px;
  font-weight: 700;
}

.footer-language a.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}

.vision-section {
  padding: 86px 0;
  background: var(--primary);
  color: white;
}

.vision-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.vision-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.scenario-page .site-header {
  position: sticky;
}

.scenario-landing-hero {
  padding: 132px 0 78px;
  background: var(--dark);
  color: white;
}

.scenario-landing-hero .hero-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  justify-items: stretch;
  text-align: left;
}

.scenario-landing-hero .hero-content {
  max-width: none;
  justify-items: start;
}

.scenario-landing-hero h1 {
  max-width: 780px;
}

.scenario-landing-hero .hero-copy {
  max-width: 760px;
  margin-bottom: 18px;
}

.scenario-note {
  max-width: 760px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.55;
}

.scenario-visual-card {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

.scenario-visual-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  opacity: 0.94;
}

.scenario-visual-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.scenario-visual-body div {
  min-height: 92px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
}

.scenario-visual-body strong {
  display: block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 24px;
}

.scenario-visual-body span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

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

.scenario-copy-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: start;
}

.scenario-copy-layout h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.scenario-copy-body {
  display: grid;
  gap: 18px;
}

.scenario-copy-body p {
  margin: 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.62;
}

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

.scenario-card-grid article,
.scenario-object-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.scenario-card-grid article {
  min-height: 210px;
  padding: 24px;
}

.scenario-card-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.scenario-card-grid p {
  color: var(--body);
}

.scenario-object-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.scenario-object-list li {
  display: grid;
  place-items: center;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}

.scenario-cta {
  background: var(--primary);
  color: white;
}

.scenario-cta .vision-inner p {
  color: rgba(255, 255, 255, 0.84);
}

.scenario-cta-content {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.scenario-cta-content p {
  margin: 0;
}

.scenario-cta-content .button-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 14px 34px rgba(25, 25, 24, 0.18);
}

.scenario-cta-content .button-primary:hover {
  background: var(--soft);
}

.tool-page .site-header {
  position: sticky;
}

.tool-hero {
  padding: 132px 0 86px;
  background: var(--dark);
  color: white;
}

.tool-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 56px;
  align-items: center;
}

.tool-hero-inner > * {
  min-width: 0;
}

.tool-hero h1 {
  max-width: 820px;
}

.tool-hero p {
  max-width: 760px;
  width: 100%;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.55;
}

.maturity-title-zh span {
  display: block;
}

.tool-summary-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.tool-summary-card strong {
  font-size: 26px;
  line-height: 1.18;
}

.tool-summary-card span {
  color: rgba(255, 255, 255, 0.7);
}

.maturity-visual {
  margin: 0;
  justify-self: center;
  width: min(100%, 440px);
}

.maturity-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  filter: drop-shadow(0 28px 70px rgba(69, 93, 211, 0.24));
}

.radar-visual {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.radar-visual svg {
  width: 100%;
  max-width: 340px;
  justify-self: center;
  overflow: visible;
}

.radar-visual line,
.radar-visual .radar-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.2;
}

.radar-visual .radar-grid-mid {
  stroke: rgba(255, 255, 255, 0.16);
}

.radar-visual .radar-grid-inner {
  stroke: rgba(255, 255, 255, 0.12);
}

.radar-visual .radar-area {
  fill: rgba(69, 93, 211, 0.42);
  stroke: #d6b6f6;
  stroke-width: 2;
}

.radar-visual circle {
  fill: #d6b6f6;
  stroke: white;
  stroke-width: 1.5;
}

.radar-visual ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.radar-visual li {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
}

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

.tool-page[data-page-event="risk_check_page_view"] .tool-hero {
  padding: 108px 0 46px;
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.tool-page[data-page-event="risk_check_page_view"] .tool-hero-inner {
  grid-template-columns: minmax(0, 0.84fr) minmax(220px, 0.28fr);
  gap: 34px;
}

.tool-page[data-page-event="risk_check_page_view"] .tool-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 68px);
}

.tool-page[data-page-event="risk_check_page_view"] .tool-hero p {
  max-width: 620px;
  color: var(--body);
}

.tool-page[data-page-event="risk_check_page_view"] .hero-note {
  color: var(--muted);
  font-size: 14px;
}

.tool-page[data-page-event="risk_check_page_view"] .maturity-visual {
  max-width: 230px;
  justify-self: end;
  opacity: 0.88;
}

.tool-page[data-page-event="risk_check_page_view"] .assessment-section {
  padding-top: 112px;
}

.tool-page[data-page-event="risk_check_page_view"] .section-head {
  max-width: 860px;
  margin-bottom: 28px;
  text-align: center;
}

.tool-page[data-page-event="risk_check_page_view"] .section-head h1 {
  margin: 0;
  margin-inline: auto;
  font-size: 36px;
  line-height: 1.18;
}

.tool-page[data-page-event="risk_check_page_view"] .section-head p {
  max-width: 760px;
  margin-inline: auto;
  color: var(--body);
  font-size: 18px;
  line-height: 1.58;
}

.assessment-form {
  display: grid;
  gap: 12px;
}

.assessment-workflow {
  max-width: 920px;
}

.assessment-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.assessment-progress-bars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.assessment-progress-bars span {
  height: 8px;
  border-radius: 999px;
  background: var(--line-soft);
}

.assessment-progress-bars span.active {
  background: var(--primary);
}

.assessment-step {
  display: grid;
  gap: 12px;
}

.assessment-step[hidden] {
  display: none;
}

.assessment-step-head {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.assessment-step-head h3 {
  margin: 0;
  font-size: 24px;
}

.assessment-step[data-risk-step="2"] .assessment-step-head {
  display: none;
}

.assessment-step[data-risk-step="0"] .assessment-step-head {
  display: none;
}

.question-stack,
.domain-stack {
  display: grid;
  gap: 12px;
}

.assessment-workflow .question-block,
.assessment-workflow .domain-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.assessment-workflow .question-block h2,
.assessment-workflow .domain-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.radio-card-list {
  display: grid;
  gap: 8px;
}

.radio-card,
.score-button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.radio-card:hover,
.score-button:hover {
  background: white;
  border-color: rgba(47, 111, 237, 0.35);
}

.radio-card.selected {
  border-color: var(--primary);
  background: rgba(47, 111, 237, 0.08);
}

.radio-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 2px solid rgba(72, 88, 112, 0.62);
  border-radius: 50%;
}

.radio-card.selected .radio-dot {
  border-color: var(--primary);
  background: radial-gradient(circle, var(--primary) 45%, transparent 50%);
}

.maturity-question {
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line-soft);
}

.maturity-question:first-of-type {
  padding-top: 4px;
  border-top: 0;
}

.maturity-question h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.score-button {
  justify-content: center;
  min-height: 44px;
  text-align: center;
}

.score-button.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.assessment-form .button {
  justify-self: center;
  margin-top: 16px;
}

.partial-result-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
  box-shadow: none;
}

.partial-result-body {
  display: grid;
  gap: 10px;
}

.partial-result-body h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.14;
}

.partial-result-body p {
  margin: 0;
  color: var(--body);
  line-height: 1.6;
}

.level-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.partial-result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.partial-result-list div {
  padding: 11px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
}

.partial-result-list div:last-child {
  display: none;
}

.partial-result-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.partial-result-list dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.score-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
}

.score-ring svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.score-ring circle {
  fill: none;
  stroke: var(--line-soft);
  stroke-width: 12;
}

.score-ring circle + circle {
  stroke: currentColor;
  stroke-dasharray: 527.7;
  stroke-linecap: round;
}

.score-ring.danger {
  color: #c44242;
}

.score-ring.warning {
  color: #b96b12;
}

.score-ring.success {
  color: #16825d;
}

.score-ring div {
  position: relative;
  display: grid;
  text-align: center;
}

.score-ring strong {
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.score-ring span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.partial-score {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 104px;
  padding: 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  background: var(--soft-2);
}

.partial-score > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.partial-score div {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.partial-score strong {
  color: var(--ink);
  font-size: 40px;
  line-height: 1;
}

.partial-score div span {
  color: var(--muted);
  font-weight: 800;
}

.partial-score.danger {
  color: rgba(196, 66, 66, 0.5);
}

.partial-score.warning {
  color: rgba(185, 107, 18, 0.5);
}

.partial-score.success {
  color: rgba(22, 130, 93, 0.5);
}

.risk-stage-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.risk-stage-main h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.risk-stage-main p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.62;
}

.risk-stage-problems {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.risk-stage-problems li {
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
  color: var(--body);
  font-weight: 700;
  line-height: 1.45;
}

.risk-stage-score {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: center;
  min-height: 170px;
  padding: 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius-card);
  background: #fffafa;
}

.risk-stage-score > span,
.risk-stage-score div span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.risk-stage-score strong {
  color: var(--ink);
  font-size: 50px;
  line-height: 1;
}

.risk-stage-score div {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.risk-stage-score.danger {
  color: rgba(196, 66, 66, 0.42);
}

.risk-stage-score.warning {
  color: rgba(185, 107, 18, 0.42);
}

.risk-stage-score.success {
  color: rgba(22, 130, 93, 0.42);
}

.inline-report {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.inline-report-content {
  display: grid;
  gap: 20px;
  padding: 28px;
  transition: filter 180ms ease, opacity 180ms ease;
}

.inline-report.is-locked .inline-report-content {
  filter: blur(5px);
  opacity: 0.34;
  pointer-events: none;
  user-select: none;
}

.inline-report-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.inline-report-head h2 {
  margin: 0;
  font-size: 24px;
}

.inline-report-head p {
  margin: 6px 0 0;
  color: var(--body);
}

.inline-report-head strong {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.inline-domain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.inline-domain-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
}

.inline-domain-card b,
.inline-domain-card span {
  display: block;
}

.inline-domain-card b {
  color: var(--ink);
  font-size: 13px;
}

.inline-domain-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.inline-domain-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 26px;
}

.inline-domain-card small {
  color: var(--muted);
  font-size: 13px;
}

.inline-report-columns,
.inline-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
}

.inline-report-columns section,
.inline-insight-panel {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.inline-insight-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--soft-2);
}

.inline-insight-heading span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.inline-insight-heading strong {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: white;
  color: var(--primary);
  font-size: 14px;
}

.inline-report-columns h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.inline-report-columns ul,
.inline-insight-panel ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inline-report-columns li,
.inline-insight-panel li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border-top: 1px solid var(--line-soft);
}

.inline-insight-panel li:first-child {
  border-top: 0;
}

.inline-insight-panel li > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.inline-insight-panel strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
}

.inline-insight-panel p {
  margin: 6px 0 0;
  color: var(--body);
  font-weight: 700;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.risk-panel .inline-insight-heading {
  background: #fffafa;
}

.risk-panel .inline-insight-heading strong,
.risk-panel li > span {
  background: rgba(196, 66, 66, 0.1);
  color: #9d2d2d;
}

.action-panel .inline-insight-heading {
  background: #f6fbf8;
}

.action-panel .inline-insight-heading strong,
.action-panel li > span {
  background: rgba(22, 130, 93, 0.1);
  color: #166b4d;
}

.inline-report-gate {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(247, 246, 244, 0.44), rgba(247, 246, 244, 0.92));
}

.report-gate-card {
  width: min(520px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(24, 24, 24, 0.16);
}

.report-gate-card h2 {
  margin: 0;
  font-size: 24px;
}

.report-gate-card > p {
  margin: 8px 0 18px;
  color: var(--body);
}

.gate-lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  background: transparent;
}

.gate-lead-grid .wide {
  grid-column: 1 / -1;
}

.inline-unlock-button {
  width: 100%;
  margin-top: 16px;
}

.inline-unlocked-banner {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(22, 130, 93, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(22, 130, 93, 0.08);
  color: #166b4d;
  font-weight: 800;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.lead-grid label {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
}

.lead-grid input,
.lead-grid select {
  min-height: 46px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
  color: var(--ink);
  font: inherit;
}

.gate-lead-grid input.form-field-invalid {
  border-color: #c44242;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(196, 66, 66, 0.14);
}

.gate-lead-grid input.form-field-invalid:focus {
  border-color: #a83232;
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 66, 66, 0.2);
}

.gate-lead-grid {
  grid-template-columns: 1fr;
}

.assessment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 4px;
}

.assessment-actions .button {
  min-width: 160px;
}

.form-status-error,
.form-status-info,
.form-status-success {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.form-status-error {
  border: 1px solid rgba(196, 66, 66, 0.26);
  background: rgba(196, 66, 66, 0.08);
  color: #8b1f1f;
}

.form-status-info {
  border: 1px solid rgba(47, 111, 237, 0.24);
  background: rgba(47, 111, 237, 0.08);
  color: var(--primary);
}

.form-status-success {
  border: 1px solid rgba(22, 130, 93, 0.24);
  background: rgba(22, 130, 93, 0.08);
  color: #166b4d;
}

.form-status-error[hidden],
.form-status-info[hidden],
.form-status-success[hidden] {
  display: none;
}

.result-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(10, 10, 10, 0.74);
  color: white;
  backdrop-filter: blur(12px);
}

.result-modal[hidden] {
  display: none;
}

.result-dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(720px, calc(100vh - 56px));
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background: var(--dark);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
}

.result-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 20px;
  align-items: start;
}

.result-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
}

.result-card h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 46px);
}

.result-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.result-card dl div {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.09);
}

.result-card dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.result-card dd {
  margin: 6px 0 0;
  color: white;
  font-size: 20px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.result-domain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.domain-score-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}

.domain-score-card > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.domain-score-card strong {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 24px;
}

.domain-score-card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.domain-score-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.35;
}

.mini-bar {
  height: 7px;
  margin: 10px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mini-bar i {
  display: block;
  height: 100%;
}

.mini-bar .danger {
  background: #f87171;
}

.mini-bar .warning {
  background: #f59e0b;
}

.mini-bar .success {
  background: #34d399;
}

.result-recommendations {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.result-recommendations li {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(47, 111, 237, 0.2);
  color: #dbeafe;
  font-weight: 700;
  line-height: 1.45;
}

.result-lead-form .button-dark {
  color: white;
}

.result-summary-card {
  display: grid;
  gap: 18px;
}

.result-summary-card h3 {
  margin: 0;
  color: white;
  font-size: 24px;
}

.risk-submit-confirmation {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.risk-submit-confirmation[hidden] {
  display: none;
}

.risk-submit-confirmation dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.risk-submit-confirmation div {
  display: grid;
  gap: 4px;
}

.risk-submit-confirmation dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.risk-submit-confirmation dd {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.result-lead-form.is-submitted label:not(.field-trap),
.result-lead-form.is-submitted button[type="submit"],
.result-lead-form.is-submitted .button-dark {
  display: none;
}

.whitepaper-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 6% 98%, rgba(62, 126, 255, 0.12), transparent 18%),
    linear-gradient(118deg, #ffffff 0%, #f8fbff 54%, #eaf2ff 100%);
  color: #081331;
}

.whitepaper-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 112px 0 54px;
  overflow: hidden;
}

.whitepaper-bg-mark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 68%, rgba(50, 110, 235, 0.06) 68% 76%, transparent 76%),
    linear-gradient(108deg, transparent 0 76%, rgba(50, 110, 235, 0.08) 76% 84%, transparent 84%);
}

.whitepaper-bg-mark::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -92px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(28, 105, 255, 0.16) 0 2px, transparent 2px 100%);
  background-size: 16px 16px;
  opacity: 0.55;
}

.whitepaper-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.2fr) minmax(330px, 0.66fr);
  gap: 44px;
  align-items: center;
}

.whitepaper-copy {
  min-width: 0;
}

.whitepaper-kicker {
  position: relative;
  display: inline-block;
  margin: 0 0 38px;
  color: #055cff;
  font-size: 17px;
  font-weight: 800;
}

.whitepaper-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 48px;
  height: 2px;
  background: #055cff;
}

.whitepaper-copy h1 {
  max-width: 560px;
  margin: 0;
  color: #081331;
  font-size: clamp(52px, 5.4vw, 76px);
  line-height: 1.12;
  letter-spacing: 0;
}

.whitepaper-lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: #32405f;
  font-size: 18px;
  line-height: 1.72;
}

.whitepaper-benefits {
  margin-top: 56px;
}

.whitepaper-benefits h2 {
  margin: 0 0 22px;
  color: #081331;
  font-size: 21px;
  line-height: 1.3;
}

.whitepaper-benefits ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.whitepaper-benefits li {
  position: relative;
  padding-left: 34px;
  color: #32405f;
  font-size: 17px;
  font-weight: 600;
}

.whitepaper-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #075dff;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.whitepaper-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 44px;
}

.whitepaper-actions .button {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 8px;
  background: #075dff;
  box-shadow: 0 18px 34px rgba(7, 93, 255, 0.24);
  font-size: 17px;
  font-weight: 800;
}

.whitepaper-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #075dff;
  font-weight: 800;
}

.whitepaper-link strong {
  font-size: 24px;
  line-height: 1;
}

.whitepaper-visual {
  min-width: 0;
  align-self: center;
}

.playbook-whitepaper .whitepaper-layout,
.maturity-whitepaper .whitepaper-layout {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.playbook-whitepaper .whitepaper-copy,
.maturity-whitepaper .whitepaper-copy {
  display: grid;
  align-content: center;
}

.playbook-whitepaper .whitepaper-copy h1,
.maturity-whitepaper .whitepaper-copy h1 {
  max-width: 760px;
  font-size: 36px;
  line-height: 1.18;
}

.playbook-whitepaper .whitepaper-lede,
.maturity-whitepaper .whitepaper-lede {
  max-width: 780px;
  font-size: 16px;
}

.playbook-process-figure,
.maturity-process-figure {
  width: min(100%, 760px);
  margin: 34px 0 0;
}

.playbook-process-figure img,
.maturity-process-figure img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(5, 92, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 46px rgba(37, 67, 124, 0.12);
}

.playbook-whitepaper .whitepaper-benefits,
.maturity-whitepaper .whitepaper-benefits {
  margin-top: 34px;
}

.playbook-whitepaper .whitepaper-benefits h2,
.playbook-whitepaper .whitepaper-benefits li,
.playbook-whitepaper .whitepaper-link,
.playbook-whitepaper .whitepaper-form-card > p,
.playbook-whitepaper .whitepaper-form label,
.playbook-whitepaper .whitepaper-form input,
.playbook-whitepaper .whitepaper-form select,
.playbook-whitepaper .whitepaper-form .button,
.playbook-whitepaper .whitepaper-form-note,
.playbook-whitepaper .whitepaper-form .form-status,
.maturity-whitepaper .whitepaper-benefits h2,
.maturity-whitepaper .whitepaper-benefits li,
.maturity-whitepaper .whitepaper-link,
.maturity-whitepaper .whitepaper-form-card > p,
.maturity-whitepaper .whitepaper-form label,
.maturity-whitepaper .whitepaper-form input,
.maturity-whitepaper .whitepaper-form select,
.maturity-whitepaper .whitepaper-form .button,
.maturity-whitepaper .whitepaper-form-note,
.maturity-whitepaper .whitepaper-form .form-status {
  font-size: 16px !important;
}

.playbook-whitepaper .whitepaper-actions,
.maturity-whitepaper .whitepaper-actions {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .playbook-whitepaper .whitepaper-layout,
  .maturity-whitepaper .whitepaper-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .playbook-whitepaper .whitepaper-copy,
  .maturity-whitepaper .whitepaper-copy {
    display: contents;
  }

  .playbook-whitepaper .whitepaper-copy h1,
  .maturity-whitepaper .whitepaper-copy h1 {
    order: 1;
    max-width: none;
    margin: 0;
  }

  .playbook-whitepaper .whitepaper-lede,
  .maturity-whitepaper .whitepaper-lede {
    order: 2;
    max-width: none;
    margin: 0;
  }

  .playbook-whitepaper .whitepaper-form-card,
  .maturity-whitepaper .whitepaper-form-card {
    order: 3;
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .playbook-process-figure,
  .maturity-process-figure {
    order: 4;
    width: 100%;
    margin: 0;
  }

  .playbook-whitepaper .whitepaper-benefits,
  .maturity-whitepaper .whitepaper-benefits {
    order: 5;
  }

  .playbook-whitepaper .whitepaper-actions,
  .maturity-whitepaper .whitepaper-actions {
    order: 6;
  }
}

.playbook-visual-card {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.source-row,
.risk-row {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.source-row div,
.risk-row div {
  min-height: 76px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(5, 92, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  color: #081331;
  text-align: center;
  box-shadow: 0 16px 32px rgba(40, 91, 190, 0.12);
}

.source-row span {
  color: #075dff;
  font-size: 28px;
  line-height: 1;
}

.source-row strong,
.risk-row strong {
  font-size: 14px;
  line-height: 1.2;
}

.governance-hub {
  width: min(100%, 600px);
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 38px 20px 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(9, 114, 255, 0.12), rgba(255, 255, 255, 0.2) 62%, transparent 64%);
}

.shield-core {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(150deg, #19c7c9, #075dff);
  color: white;
  font-size: 34px;
  box-shadow: 0 22px 34px rgba(5, 92, 255, 0.28);
}

.governance-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(5, 92, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 32px rgba(40, 91, 190, 0.12);
}

.governance-steps span {
  min-width: 94px;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: #081331;
  text-align: center;
  font-weight: 800;
}

.risk-row div {
  min-height: 64px;
  color: #2b3b73;
  box-shadow: none;
}

.before-after {
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.before-after div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(5, 92, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  color: #081331;
  box-shadow: 0 16px 32px rgba(40, 91, 190, 0.1);
}

.before-after strong {
  color: #075dff;
}

.before-after em {
  color: #6c7895;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.sparkline {
  height: 38px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.sparkline.unstable {
  background-image: linear-gradient(135deg, transparent 6%, #9a8cf5 7% 10%, transparent 11% 18%, #9a8cf5 19% 22%, transparent 23% 30%, #9a8cf5 31% 34%, transparent 35% 44%, #9a8cf5 45% 48%, transparent 49% 56%, #9a8cf5 57% 60%, transparent 61% 70%, #9a8cf5 71% 74%, transparent 75%);
}

.sparkline.stable {
  background-image: linear-gradient(160deg, transparent 0 18%, #18bfc7 19% 23%, transparent 24% 35%, #18bfc7 36% 40%, transparent 41% 52%, #18bfc7 53% 57%, transparent 58% 69%, #18bfc7 70% 74%, transparent 75%);
}

.whitepaper-form-card {
  display: grid;
  gap: 14px;
  padding: 44px 42px;
  border: 1px solid rgba(5, 92, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 32px 74px rgba(37, 67, 124, 0.15);
  backdrop-filter: blur(16px);
}

.whitepaper-form-card h2,
.whitepaper-form-card p {
  margin: 0;
}

.whitepaper-form-card h2 {
  color: #081331;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.18;
}

.whitepaper-form-card > p {
  color: #33415f;
  font-size: 17px;
}

.whitepaper-form {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.whitepaper-form label {
  display: grid;
  gap: 8px;
  color: #081331;
  font-size: 15px;
  font-weight: 800;
}

.whitepaper-form input:not([type="checkbox"]),
.whitepaper-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #dce4f1;
  border-radius: 8px;
  background: white;
  color: #081331;
  font: inherit;
  font-weight: 400;
}

.whitepaper-form input:not([type="checkbox"]).form-field-invalid {
  border-color: #c44242;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(196, 66, 66, 0.14);
}

.whitepaper-form input:not([type="checkbox"]).form-field-invalid:focus {
  border-color: #a83232;
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 66, 66, 0.2);
}

.whitepaper-form input:not([type="checkbox"])::placeholder {
  color: #a7b2c5;
  font-weight: 400;
}

.whitepaper-form select {
  color: #8b97ad;
  font-weight: 400;
}

.whitepaper-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px !important;
  align-items: start;
  color: #6a7892 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.4;
}

.whitepaper-consent input {
  appearance: auto;
  min-width: 18px;
  min-height: 18px;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid #7d8492;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  accent-color: #075dff;
}

.whitepaper-form .button {
  min-height: 62px;
  margin-top: 8px;
  border-radius: 8px;
  background: #075dff;
  box-shadow: 0 18px 34px rgba(7, 93, 255, 0.24);
  font-size: 20px;
  font-weight: 900;
}

.whitepaper-form-note,
.whitepaper-form .form-status {
  color: #7b879e !important;
  text-align: center;
  font-size: 14px !important;
  line-height: 1.4;
}

.whitepaper-form .form-status {
  min-height: 18px;
}

.whitepaper-form .form-status.form-status-error {
  color: #8b1f1f !important;
}

.contact-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(69, 93, 211, 0.1), transparent 42%),
    linear-gradient(180deg, #f8f8f6 0%, #ffffff 54%, #f7f6f3 100%);
  color: var(--ink);
}

.contact-hero {
  min-height: 100vh;
  padding: 112px 0 96px;
}

.contact-heading {
  max-width: 760px;
  text-align: center;
}

.contact-heading h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-heading p {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--body);
  font-size: 19px;
  line-height: 1.65;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: min(760px, calc(100% - 48px));
  margin-top: 70px;
}

.contact-options {
  display: block;
}

.contact-options .contact-card {
  height: 100%;
}

.contact-card,
.contact-form-panel {
  border: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 253, 0.96)),
    #ffffff;
  box-shadow: 0 28px 70px rgba(37, 67, 124, 0.12);
}

.contact-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 26px 28px;
  border-radius: 8px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid #e0e5ef;
  border-radius: 8px;
  background: #f3f6fb;
  color: #455dd3;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-card h2,
.contact-card p,
.contact-form-head h2 {
  margin: 0;
}

.contact-card h2 {
  color: #081331;
  font-size: 20px;
  line-height: 1.25;
}

.contact-card p {
  max-width: none;
  margin-top: 12px;
  color: #68738a;
  line-height: 1.55;
}

.contact-card a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  color: #081331;
  font-weight: 800;
}

.contact-form-panel {
  padding: 42px;
  border-radius: 8px;
}

.contact-form-head {
  margin-bottom: 28px;
  text-align: left;
}

.contact-form-head h2 {
  color: #081331;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-field,
.lead-field {
  position: relative;
  display: block;
}

.contact-field input,
.contact-field textarea,
.lead-field input,
.lead-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 16px 0;
  border: 1px solid #7d8492;
  border-radius: 4px;
  background: #ffffff;
  color: #081331;
  outline: none;
  font-size: 16px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.contact-field textarea,
.lead-field textarea {
  min-height: 132px;
  padding-top: 22px;
  resize: vertical;
}

.contact-field-label,
.lead-field-label {
  position: absolute;
  top: 17px;
  left: 13px;
  max-width: calc(100% - 26px);
  padding: 0 4px;
  background: #ffffff;
  color: #5f6674;
  font-size: 16px;
  line-height: 1.2;
  pointer-events: none;
  transition: transform 140ms ease, color 140ms ease, font-size 140ms ease, top 140ms ease;
}

.contact-field input:focus,
.contact-field textarea:focus,
.lead-field input:focus,
.lead-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.contact-field input:focus + .contact-field-label,
.contact-field textarea:focus + .contact-field-label,
.contact-field input:not(:placeholder-shown) + .contact-field-label,
.contact-field textarea:not(:placeholder-shown) + .contact-field-label,
.lead-field input:focus + .lead-field-label,
.lead-field textarea:focus + .lead-field-label,
.lead-field input:not(:placeholder-shown) + .lead-field-label,
.lead-field textarea:not(:placeholder-shown) + .lead-field-label {
  top: -7px;
  color: var(--primary);
  font-size: 12px;
}

.contact-field input:not(:focus):not(:placeholder-shown):invalid,
.contact-field textarea:not(:focus):not(:placeholder-shown):invalid,
.lead-field input:not(:focus):not(:placeholder-shown):invalid,
.lead-field textarea:not(:focus):not(:placeholder-shown):invalid,
.form-field-invalid input,
.form-field-invalid textarea {
  border-color: #d93025;
  box-shadow: 0 0 0 1px #d93025;
}

.contact-field input:not(:focus):not(:placeholder-shown):invalid + .contact-field-label,
.contact-field textarea:not(:focus):not(:placeholder-shown):invalid + .contact-field-label,
.lead-field input:not(:focus):not(:placeholder-shown):invalid + .lead-field-label,
.lead-field textarea:not(:focus):not(:placeholder-shown):invalid + .lead-field-label,
.form-field-invalid .contact-field-label,
.form-field-invalid .lead-field-label {
  color: #d93025;
}

.field-error-message {
  margin: 6px 0 0;
  color: #d93025;
  font-size: 12px;
  line-height: 1.4;
}

.contact-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: #7d8492;
  font-size: 14px;
  font-weight: 700;
}

.contact-divider::before,
.contact-divider::after {
  content: "";
  height: 1px;
  background: #dbe2ee;
}

.contact-form .button {
  min-height: 56px;
  margin-top: 10px;
  border-radius: 8px;
}

.contact-form .form-status {
  min-height: 20px;
  margin: 0;
  color: #68738a;
  text-align: center;
}

.contact-form .form-status.form-status-error {
  color: #8b1f1f;
}

.contact-form .form-status.form-status-success {
  color: #15803d;
}

.faq-page {
  background: #f7f6f3;
}

.faq-body {
  padding: 112px 0 96px;
}

.faq-layout {
  width: min(920px, calc(100% - 48px));
}

.faq-content {
  display: grid;
  gap: 42px;
  min-width: 0;
}

.faq-section {
  display: grid;
  gap: 10px;
  scroll-margin-top: 104px;
}

.faq-section[hidden] {
  display: none;
}

.faq-section-title {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-item {
  scroll-margin-top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item:hover {
  border-color: #c9c5bd;
}

.faq-item.is-open {
  border-color: rgba(69, 93, 211, 0.46);
  box-shadow: 0 16px 42px rgba(69, 93, 211, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
}

.faq-question-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  border-radius: 50%;
  background: rgba(69, 93, 211, 0.1);
  color: var(--primary);
  font-size: 19px;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.faq-item.is-open .faq-question-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

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

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding-left: 20px;
}

.faq-answer strong {
  color: var(--ink);
}

.faq-callout {
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(69, 93, 211, 0.08);
  color: #3347a8;
  font-weight: 700;
}

.faq-maturity-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.faq-maturity-step {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
}

.faq-maturity-step.is-active {
  border-color: rgba(69, 93, 211, 0.36);
  background: rgba(69, 93, 211, 0.08);
}

.faq-maturity-step span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.faq-maturity-step strong {
  display: block;
  margin: 5px 0 3px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.faq-maturity-step em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.faq-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.faq-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: white;
  font-size: 14px;
}

.faq-table th,
.faq-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.faq-table th {
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
}

.faq-table td {
  color: var(--body);
  line-height: 1.45;
}

.faq-table tr:last-child td {
  border-bottom: 0;
}

.faq-positive {
  color: #0f6e56;
  font-weight: 800;
}

.faq-negative {
  color: #993c1d;
  font-weight: 800;
}

.faq-final {
  padding: 70px 0;
  background: var(--dark);
  color: white;
}

.faq-final .container {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.faq-final h2,
.faq-final p {
  margin: 0;
}

.faq-final h2 {
  max-width: 720px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
}

.faq-final p {
  max-width: 660px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.resource-page {
  background: white;
}

.resource-hero {
  padding: 132px 0 72px;
  background: white;
  color: var(--ink);
}

.resource-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 56px;
  align-items: start;
}

.resource-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.resource-dek {
  max-width: 780px;
  margin: 0;
  color: var(--body);
  font-size: 21px;
  line-height: 1.58;
}

.resource-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.resource-meta div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
}

.resource-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.resource-meta dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

.resource-download-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.resource-download-card h2,
.resource-download-card p {
  margin: 0;
}

.resource-download-card h2 {
  font-size: 28px;
  line-height: 1.15;
}

.resource-download-card p {
  color: var(--body);
  line-height: 1.55;
}

.resource-inline-form {
  display: grid;
  gap: 14px;
}

.resource-inline-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.resource-inline-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  font: inherit;
}

.resource-inline-form .form-status {
  min-height: 20px;
  color: var(--body);
  font-size: 13px;
}

.resource-body-section {
  padding: 32px 0 96px;
  background: white;
}

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

.resource-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--soft-2);
}

.resource-toc span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.resource-toc a {
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--body);
  font-size: 14px;
  font-weight: 700;
}

.resource-toc a:hover {
  background: white;
  color: var(--ink);
}

.resource-article {
  display: grid;
  gap: 54px;
  min-width: 0;
}

.resource-article section {
  scroll-margin-top: 104px;
}

.resource-article h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.resource-article p {
  margin: 0 0 18px;
  color: var(--body);
  font-size: 19px;
  line-height: 1.76;
}

.resource-article p:last-child {
  margin-bottom: 0;
}

.resource-callout {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--soft);
}

.resource-callout strong {
  color: var(--ink);
  font-size: 20px;
}

.resource-callout p,
.resource-callout ul {
  margin: 0;
}

.resource-callout ul,
.resource-checks {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.resource-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0 0;
}

.resource-callout li,
.resource-checks li {
  position: relative;
  padding-left: 20px;
  color: var(--body);
  font-weight: 700;
  line-height: 1.5;
}

.resource-callout li::before,
.resource-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.resource-domain-grid,
.resource-insight-grid {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.resource-domain-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.resource-domain-grid div,
.resource-insight-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
}

.resource-domain-grid span {
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.resource-domain-grid strong,
.resource-insight-grid strong {
  display: block;
  margin: 8px 0;
  color: var(--ink);
  line-height: 1.25;
}

.resource-domain-grid p,
.resource-insight-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.resource-table-wrap {
  overflow-x: auto;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.resource-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: white;
  font-size: 15px;
}

.resource-table th,
.resource-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.resource-table th {
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
}

.resource-table td {
  color: var(--body);
  line-height: 1.45;
}

.resource-table tr:last-child td {
  border-bottom: 0;
}

.resource-number-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
  counter-reset: resource-step;
}

.resource-number-list li {
  counter-increment: resource-step;
  display: grid;
  grid-template-columns: 44px 160px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
}

.resource-number-list li::before {
  content: counter(resource-step, decimal-leading-zero);
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.resource-number-list strong {
  color: var(--ink);
}

.resource-number-list span {
  color: var(--body);
  line-height: 1.5;
}

.resource-related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.resource-related a {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
  box-shadow: var(--shadow-soft);
}

.resource-related span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.resource-related strong {
  color: var(--ink);
  font-size: 20px;
}

.resource-related em {
  color: var(--body);
  font-style: normal;
  line-height: 1.45;
}

.resource-final-cta {
  padding: 72px 0;
  background: var(--dark);
  color: white;
}

.resource-final-layout {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.resource-final-layout h2,
.resource-final-layout p {
  margin: 0;
}

.resource-final-layout h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.resource-final-layout p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.pain-section {
  background: white;
}

.pain-section p {
  margin: 0;
  color: var(--body);
  font-size: 19px;
  line-height: 1.55;
}

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

.playbook-risk-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.playbook-risk-grid span {
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.playbook-risk-grid h3,
.playbook-risk-grid p {
  margin: 0;
}

.playbook-risk-grid p {
  color: var(--body);
}

.playbook-risk-grid strong {
  margin-top: 8px;
  font-size: 13px;
}

.playbook-risk-grid em {
  color: var(--primary);
  font-style: normal;
  font-weight: 700;
}

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

.maturity-list div {
  display: grid;
  grid-template-columns: 120px 220px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.maturity-list span {
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.maturity-list p {
  margin: 0;
  color: var(--body);
}

.playbook-contents {
  background: var(--dark);
  color: white;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.maturity-hero .tool-hero-inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
}

.maturity-ladder {
  display: grid;
  gap: 10px;
  align-self: stretch;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.maturity-ladder div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 6px 14px;
  align-items: center;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.maturity-ladder div:nth-child(1) {
  margin-right: 112px;
}

.maturity-ladder div:nth-child(2) {
  margin-left: 28px;
  margin-right: 84px;
}

.maturity-ladder div:nth-child(3) {
  margin-left: 56px;
  margin-right: 56px;
}

.maturity-ladder div:nth-child(4) {
  margin-left: 84px;
  margin-right: 28px;
}

.maturity-ladder div:nth-child(5) {
  margin-left: 112px;
}

.maturity-ladder span {
  grid-row: span 2;
  color: #d6b6f6;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 800;
}

.maturity-ladder strong {
  color: white;
  font-size: 18px;
  line-height: 1.2;
}

.maturity-ladder em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-size: 13px;
  line-height: 1.3;
}

.governance-card-grid {
  display: grid;
  gap: 18px;
}

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

.governance-card-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.governance-card-grid article:nth-child(1) {
  background: var(--peach);
}

.governance-card-grid article:nth-child(2) {
  background: var(--mint);
}

.governance-card-grid article:nth-child(3) {
  background: var(--lavender);
}

.governance-card-grid article:nth-child(4) {
  background: var(--sky);
}

.governance-card-grid article:nth-child(5) {
  background: var(--yellow);
}

.governance-card-grid svg {
  margin-bottom: 18px;
  color: var(--primary);
}

.governance-card-grid p {
  margin-bottom: 0;
  color: var(--body);
}

.governance-card-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.maturity-model-section {
  background: white;
}

.maturity-model-section .section-head p,
.maturity-stage-section .section-head p {
  margin: 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.55;
}

.maturity-model-strip,
.maturity-score-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.maturity-model-strip div,
.maturity-score-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-2);
}

.maturity-model-strip span,
.maturity-score-grid span {
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.maturity-model-strip strong,
.maturity-score-grid strong {
  color: var(--ink);
  line-height: 1.25;
}

.maturity-model-strip em,
.maturity-score-grid em {
  color: var(--body);
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.maturity-score-grid {
  margin-bottom: 18px;
}

.maturity-score-grid div {
  min-height: 112px;
  background: white;
}

.maturity-stage-section,
.assessment-preview-section {
  background: var(--soft);
}

.maturity-stage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.maturity-stage-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
}

.maturity-stage-grid span {
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.maturity-stage-grid h3,
.maturity-stage-grid p {
  margin: 0;
}

.maturity-stage-grid p {
  color: var(--body);
}

.maturity-stage-grid ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.maturity-stage-grid li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.maturity-stage-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.capability-section {
  background: white;
}

.capability-five-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.capability-five-grid article {
  grid-column: span 2;
}

.capability-five-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.capability-five-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.assessment-preview-section .access-layout {
  align-items: start;
}

.assessment-preview-section p {
  color: var(--body);
  font-size: 18px;
  line-height: 1.55;
}

.maturity-question-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: maturity-question;
}

.maturity-question-list li {
  counter-increment: maturity-question;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  font-weight: 700;
}

.maturity-question-list li::before {
  content: counter(maturity-question, decimal-leading-zero);
  color: var(--primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero::before,
  .hero::after {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    display: none;
  }

  .site-header.menu-open .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    z-index: 40;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    color: var(--ink);
  }

  .site-header.menu-open .main-nav > a,
  .site-header.menu-open .nav-menu > a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
  }

  .site-header.menu-open .main-nav a:hover {
    background: var(--soft);
  }

  .site-header.menu-open .nav-menu::after {
    display: none;
  }

  .site-header.menu-open .nav-menu-list {
    position: static;
    min-width: 0;
    display: grid;
    padding: 0 0 6px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .cockpit,
  .section-head,
  .split-head,
  .report-layout,
  .access-layout,
  .lead-grid,
  .risk-stage-panel,
  .whitepaper-layout,
  .scenario-landing-hero .hero-inner,
    .tool-hero-inner,
    .maturity-hero .tool-hero-inner,
    .result-layout,
    .inline-report-columns,
    .inline-insight-grid,
    .scenario-copy-layout,
    .faq-layout,
    .resource-hero-layout,
    .resource-layout,
    .contact-layout,
    .intro-grid {
    grid-template-columns: 1fr;
  }

  .answer-grid,
  .scenario-grid,
  .scenario-card-grid,
  .role-grid,
  .risk-grid,
    .workflow-grid,
    .playbook-risk-grid,
    .governance-card-grid.three-up,
    .maturity-model-strip,
    .maturity-score-grid,
    .resource-domain-grid,
  .resource-insight-grid,
  .inline-domain-grid,
  .maturity-stage-grid,
    .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-toc {
    position: static;
  }

  .whitepaper-hero {
    align-items: start;
    padding-top: 104px;
  }

  .whitepaper-layout {
    gap: 36px;
  }

  .whitepaper-copy h1 {
    max-width: 760px;
  }

  .whitepaper-visual {
    order: 2;
  }

  .whitepaper-form-card {
    order: 3;
  }

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

  .capability-five-grid article,
  .capability-five-grid article:nth-child(4),
  .capability-five-grid article:nth-child(5) {
    grid-column: auto;
  }

  .maturity-ladder div {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

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

  .kpi-grid,
  .chart-row,
  .vision-inner {
    grid-template-columns: 1fr 1fr;
  }

  .console-table > div {
    grid-template-columns: 1fr 1fr;
  }

  .tool-hero h1 {
    font-size: 44px;
    line-height: 1.06;
  }
}

@media (max-width: 680px) {
  .container,
  .hero-inner {
    width: min(100% - 32px, 1200px);
  }

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

  .nav-cta {
    gap: 6px;
    width: 40px;
    min-height: 40px;
    justify-content: center;
    padding: 0 12px;
    font-size: 14px;
  }

  .nav-cta span {
    display: none;
  }

  .language-link {
    min-width: 40px;
    height: 40px;
  }

  .contact-hero {
    padding: 96px 0 72px;
  }

  .contact-heading {
    text-align: left;
  }

  .contact-heading h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .contact-heading p {
    margin-left: 0;
    font-size: 17px;
  }

  .contact-layout {
    gap: 20px;
    margin-top: 42px;
  }

  .contact-card {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-card p,
  .contact-card a {
    margin-top: 18px;
  }

  .contact-form-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 136px 0 72px;
  }

  h1 {
    font-size: 54px;
  }

  .scenario-landing-hero h1 {
    font-size: 42px;
  }

  .tool-hero h1 {
    font-size: 36px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .tool-hero p,
  .tool-hero .hero-note {
    overflow-wrap: anywhere;
  }

  .headline-nowrap {
    font-size: 54px;
    max-width: 100%;
    white-space: normal;
  }

  .hero-title-two-line span,
  .hero-title-single-line {
    white-space: normal;
  }

  h2,
  #fit-title,
  .scenario-copy-layout h2 {
    font-size: 32px;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 26px;
  }

  .hero-visual {
    display: none;
  }

  #fit-title {
    font-size: 32px;
    max-width: 100%;
    white-space: normal;
  }

  .hero-metrics,
  .source-row,
  .risk-row,
  .lead-grid,
  .partial-result-card,
  .risk-stage-panel,
  .risk-stage-problems,
  .inline-domain-grid,
  .inline-report-columns,
  .inline-insight-grid,
  .result-domain-grid,
  .resource-meta,
  .resource-domain-grid,
  .resource-insight-grid,
  .resource-checks,
  .resource-related,
  .answer-grid,
  .scenario-grid,
  .scenario-card-grid,
  .role-grid,
  .risk-grid,
  .workflow-grid,
  .playbook-risk-grid,
  .maturity-model-strip,
  .maturity-score-grid,
  .governance-card-grid.three-up,
  .capability-five-grid,
  .maturity-stage-grid,
  .fit-grid,
  .report-stats,
  .report-columns,
  .report-list,
  .kpi-grid,
  .chart-row,
  .vision-inner {
    grid-template-columns: 1fr;
  }

  .scenario-object-list {
    grid-template-columns: 1fr;
  }

  .section,
  .access-section {
    padding: 72px 0;
  }

  .assessment-progress {
    grid-template-columns: 1fr;
  }

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

  .partial-score-ring {
    justify-self: center;
  }

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

  .inline-report-head {
    display: grid;
  }

  .inline-report-gate {
    position: static;
  }

  .inline-report.is-locked .inline-report-content {
    display: none;
  }

  .dashboard-shell,
  .report-card,
  .access-form,
    .scenario-card-grid article,
    .capability-list article,
    .governance-card-grid article,
    .maturity-stage-grid article,
    .workflow-grid article,
    .role-grid article,
    .fit-grid article,
    .answer-grid article,
    .risk-grid article {
    padding: 20px;
    border-radius: var(--radius-card);
  }

  .merged-scenario-grid {
    gap: 14px;
  }

  .merged-scenario-grid .scenario-card {
    position: relative;
    min-height: 0;
  }

  .merged-scenario-grid .scenario-card img {
    height: 116px;
    aspect-ratio: auto;
    opacity: 0.88;
  }

  .merged-scenario-grid .scenario-card h3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    min-height: 116px;
    display: flex;
    align-items: flex-end;
    margin: 0;
    padding: 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.56));
    color: white;
    font-size: 22px;
  }

  .merged-scenario-grid .scenario-card > div {
    padding: 14px 16px 16px;
  }

  .merged-scenario-grid .scenario-card p {
    margin-bottom: 12px;
  }

  .merged-scenario-grid dl {
    gap: 10px;
  }

  .merged-scenario-grid dl div {
    padding-top: 10px;
  }

  .workflow-grid article {
    min-height: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .workflow-grid svg {
    margin-bottom: 10px;
  }

  .workflow-grid span {
    margin-bottom: 8px;
  }

  .workflow-grid p {
    margin-bottom: 0;
  }

  .product-section .dashboard-shell {
    display: none;
  }

  .fit-grid article {
    min-height: 0;
    grid-template-rows: auto;
    gap: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .fit-grid img {
    display: none;
  }

  .fit-grid span {
    align-self: center;
  }

  .console-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .action-table div,
  .compare-table div {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 10px;
    padding: 16px;
    text-align: center;
  }

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

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .section-cta .button {
    width: 100%;
  }

  .resource-hero {
    padding: 112px 0 56px;
  }

  .faq-question,
  .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-body {
    padding: 28px 0 72px;
  }

  .faq-layout {
    width: min(100% - 32px, 920px);
  }

  .faq-content {
    gap: 34px;
  }

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

  .faq-final .container {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-final .button {
    width: 100%;
  }

  .resource-hero h1 {
    font-size: 42px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .resource-dek,
  .resource-article p {
    font-size: 17px;
  }

  .resource-download-card,
  .resource-callout,
  .resource-related a {
    padding: 20px;
  }

  .resource-body-section {
    padding-bottom: 72px;
  }

  .resource-layout {
    gap: 36px;
  }

  .resource-article {
    gap: 42px;
  }

  .resource-number-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .resource-final-layout {
    align-items: stretch;
    flex-direction: column;
  }

  .resource-final-layout .button {
    width: 100%;
  }

  .whitepaper-hero {
    min-height: 0;
    padding: 88px 0 48px;
  }

  .whitepaper-layout {
    width: min(100% - 32px, 1200px);
    gap: 24px;
  }

  .playbook-whitepaper .whitepaper-copy h1,
  .maturity-whitepaper .whitepaper-copy h1 {
    max-width: none;
    font-size: 30px;
    line-height: 1.18;
    margin-bottom: 0;
  }

  .playbook-whitepaper .whitepaper-lede,
  .maturity-whitepaper .whitepaper-lede {
    max-width: none;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.62;
  }

  .playbook-whitepaper .whitepaper-form-card,
  .maturity-whitepaper .whitepaper-form-card {
    gap: 10px;
  }

  .playbook-process-figure,
  .maturity-process-figure {
    width: 100%;
    margin: 4px 0 0;
  }

  .playbook-process-figure img,
  .maturity-process-figure img {
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(37, 67, 124, 0.1);
  }

  .whitepaper-kicker {
    margin-bottom: 30px;
  }

  .whitepaper-copy h1 {
    font-size: 42px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .whitepaper-lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .whitepaper-benefits {
    margin-top: 6px;
  }

  .whitepaper-benefits h2 {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .whitepaper-benefits ul {
    gap: 12px;
  }

  .whitepaper-benefits li {
    padding-left: 28px;
    font-size: 15px !important;
    line-height: 1.42;
  }

  .whitepaper-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
  }

  .whitepaper-actions .button,
  .whitepaper-link {
    width: 100%;
    justify-content: center;
  }

  .whitepaper-form-card {
    gap: 10px;
    padding: 22px 18px;
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(37, 67, 124, 0.12);
  }

  .playbook-whitepaper .whitepaper-form-card,
  .maturity-whitepaper .whitepaper-form-card {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .whitepaper-form-card h2 {
    font-size: 30px;
  }

  .whitepaper-form-card > p {
    font-size: 15px !important;
  }

  .playbook-whitepaper .whitepaper-form-card > p,
  .maturity-whitepaper .whitepaper-form-card > p {
    color: #33415f;
    font-weight: 800;
    text-align: left;
  }

  .whitepaper-form {
    gap: 12px;
    margin-top: 6px;
  }

  .playbook-whitepaper .whitepaper-form,
  .maturity-whitepaper .whitepaper-form {
    gap: 12px;
    margin-top: 8px;
  }

  .whitepaper-form label {
    gap: 6px;
  }

  .whitepaper-form input:not([type="checkbox"]),
  .whitepaper-form select {
    min-height: 48px;
    font-size: 15px !important;
  }

  .playbook-whitepaper .whitepaper-form input:not([type="checkbox"]),
  .maturity-whitepaper .whitepaper-form input:not([type="checkbox"]) {
    min-height: 50px;
    border-color: #d7dfed;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(37, 67, 124, 0.04);
  }

  .playbook-whitepaper .whitepaper-form .lead-field input,
  .maturity-whitepaper .whitepaper-form .lead-field input {
    min-height: 56px;
    padding: 16px 16px 0;
    border-color: #7d8492;
    border-radius: 4px;
    box-shadow: none;
  }

  .whitepaper-form .button {
    min-height: 52px;
    margin-top: 4px;
    font-size: 16px !important;
  }

  .playbook-whitepaper .whitepaper-form .button,
  .maturity-whitepaper .whitepaper-form .button {
    width: 100%;
    min-height: 52px;
    border-radius: 10px;
    box-shadow: none;
  }

  .source-row,
  .risk-row,
  .before-after {
    grid-template-columns: 1fr 1fr;
  }

  .governance-steps {
    border-radius: 16px;
  }

  .governance-steps span {
    min-width: 0;
    width: calc(50% - 6px);
  }

  .playbook-risk-grid,
  .resource-meta,
  .resource-domain-grid,
  .resource-insight-grid,
  .resource-checks,
  .resource-related,
  .maturity-list div {
    grid-template-columns: 1fr;
  }

  .maturity-ladder {
    padding: 14px;
  }

  .maturity-ladder div,
  .maturity-question-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .radar-visual ul,
  .result-layout {
    grid-template-columns: 1fr;
  }

  .result-modal {
    padding: 14px;
  }

  .result-dialog {
    max-height: calc(100vh - 28px);
    padding: 20px;
  }

}
