@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --neutral-0: #ffffff;
  --neutral-25: #f8fbff;
  --neutral-50: #eff5ff;
  --neutral-100: #eef4fb;
  --neutral-200: #d6e1f2;
  --neutral-300: #c5d4e8;
  --neutral-500: #627da4;
  --neutral-700: #233552;
  --neutral-900: #0b172b;

  --primary-50: #eff5ff;
  --primary-100: #dce9ff;
  --primary-300: #8fb6ff;
  --primary-500: #1a62d8;
  --primary-600: #0f4eb8;
  --primary-700: #0a3f96;
  --primary-900: #071b46;

  --teal-300: #64cce2;
  --teal-500: #0ea8c6;

  --bg: var(--neutral-50);
  --bg-soft: var(--neutral-25);
  --surface: var(--neutral-0);
  --surface-soft: #f8fbff;
  --ink: var(--neutral-900);
  --ink-soft: var(--neutral-500);
  --line: var(--neutral-200);
  --line-strong: var(--neutral-300);
  --brand: var(--primary-700);
  --brand-2: var(--primary-500);
  --brand-deep: var(--primary-900);
  --brand-grad: linear-gradient(135deg, #0a3f96 0%, #1053c2 55%, #2a78e2 100%);
  --accent: var(--teal-500);
  --accent-soft: #e8f9fd;
  --ok-bg: #e6f7ef;
  --ok-ink: #0b6540;
  --warn-bg: #fff7e2;
  --warn-ink: #785910;
  --risk-bg: #fff0f3;
  --risk-ink: #a11f3a;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-1: 0 6px 16px rgba(7, 27, 70, 0.05);
  --shadow-2: 0 10px 26px rgba(7, 27, 70, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(64rem 34rem at 8% -12%, rgba(26, 98, 216, 0.08), rgba(26, 98, 216, 0)),
    radial-gradient(52rem 28rem at 92% -8%, rgba(14, 168, 198, 0.06), rgba(14, 168, 198, 0)),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  line-height: 1.62;
}

a {
  color: var(--primary-600);
}

a:hover {
  color: var(--primary-900);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.62rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-family: 'Plus Jakarta Sans', 'Avenir Next', sans-serif;
}

h1 {
  font-size: clamp(2.1rem, 3.5vw, 3.45rem);
}

h2 {
  font-size: clamp(1.32rem, 2vw, 2rem);
}

h3 {
  font-size: clamp(1rem, 1.35vw, 1.24rem);
}

p {
  margin: 0 0 0.9rem;
}

small,
.muted,
.card p,
.card li,
.lead-strip p,
.lead-strip li {
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  border: 1px solid #bfd6ff;
  background: #eff5ff;
  color: #0f4eb8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.26rem 0.74rem;
  margin-bottom: 0.74rem;
}

.container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  border-bottom: 1px solid rgba(9, 29, 69, 0.12);
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.82rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

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

.brand-tagline {
  display: inline-block;
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3f5574;
  white-space: nowrap;
}

.brand-dot {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(145deg, #1a62d8 0%, #0a3f96 52%, #0ea8c6 100%);
  box-shadow: 0 9px 20px rgba(10, 62, 168, 0.32);
}

.brand-text {
  color: #16233a;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

@media (max-width: 960px) {
  .brand-logo {
    height: 30px;
    max-width: 174px;
  }

  .brand-tagline {
    font-size: 0.52rem;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 27px;
    max-width: 154px;
  }

  .brand-tagline {
    display: none;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid rgba(16, 57, 126, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 20px rgba(8, 37, 95, 0.06);
  padding: 0.24rem;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  text-decoration: none;
  color: #233552;
  font-family: 'Sora', 'Plus Jakarta Sans', 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 0.81rem;
  letter-spacing: 0.004em;
  white-space: nowrap;
  padding: 0.44rem 0.76rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 180ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #1053c2 0%, #2a78e2 56%, #5f95f0 100%);
  box-shadow: 0 8px 16px rgba(10, 70, 160, 0.26);
  transform: translateY(-1px);
}

.site-nav a.nav-solutioning {
  color: #ffffff;
  border-color: #0a5dcf;
  background: linear-gradient(135deg, #0b366f 0%, #0f57be 52%, #10a5c3 100%);
  box-shadow: 0 10px 20px rgba(8, 64, 146, 0.3);
}

.site-nav a.nav-solutioning:hover,
.site-nav a.nav-solutioning:focus-visible {
  color: #ffffff;
  border-color: #1183db;
  background: linear-gradient(135deg, #0a3f96 0%, #1767d1 52%, #1ab6d6 100%);
  box-shadow: 0 12px 24px rgba(7, 68, 150, 0.34);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.cta-group .button {
  border-radius: 999px;
  min-height: 44px;
  padding: 0.66rem 1.16rem;
  box-shadow: 0 10px 20px rgba(8, 53, 132, 0.22);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  display: none;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #233552;
  content: '';
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before {
  top: -6px;
  position: absolute;
}

.nav-toggle span::after {
  top: 6px;
  position: absolute;
}

.button,
button,
input[type='submit'] {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: #ffffff;
  background: var(--brand-grad);
  box-shadow: 0 12px 26px rgba(9, 62, 160, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover,
button:hover,
input[type='submit']:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(9, 62, 160, 0.3);
}

.button.secondary,
button.secondary {
  color: #0f4eb8;
  background: #ffffff;
  border: 1px solid #bfd6ff;
  box-shadow: none;
}

.button.ghost,
button.ghost {
  color: #0f4eb8;
  background: #eff5ff;
  border: 1px solid #bfd6ff;
  box-shadow: none;
}

.hero {
  padding: 2.8rem 0 2.1rem;
}

.home-hero {
  color: #eff5ff;
  background: linear-gradient(140deg, #071b46 0%, #0a3f96 55%, #0a3f96 100%);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  padding-top: 3rem;
}

body.home-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.home-page main {
  flex: 1 1 auto;
  min-height: 0;
}

body.home-page .home-hero {
  height: 100%;
  padding: 1.35rem 0 0.9rem;
}

.home-hero::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 2.1rem;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  background: linear-gradient(90deg, #1a62d8, #2a78e2);
}

body.home-page .home-hero::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.2rem;
  align-items: start;
}

.hero p {
  max-width: 68ch;
}

.hero-actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.home-hero h1,
.home-hero h2,
.home-hero h3,
.home-hero p,
.home-hero li,
.home-hero .kpi,
.home-hero .kpi strong,
.home-hero .kpi p {
  color: #eff5ff;
}

.home-page .home-hero .home-hero-center {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-page .home-hero .home-hero-center p {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-page .home-hero .home-hero-center .hero-actions {
  justify-content: center;
  width: 100%;
}

.home-page .home-hero .hero-pillars {
  width: 100%;
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
}

.home-page .home-hero .hero-pillar {
  border: 1px solid rgba(196, 220, 248, 0.32);
  border-radius: 14px;
  background: rgba(7, 21, 49, 0.36);
  min-height: 138px;
  padding: 0.88rem 0.84rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.home-page .home-hero .hero-pillar h3 {
  width: 100%;
  text-align: center;
  margin-bottom: 0.56rem;
  font-size: 1rem;
  color: #eff5ff;
}

.home-page .home-hero .hero-pillar p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #dce9ff;
  text-align: left;
}

.home-page .home-hero .hero-pillar-points {
  margin: 0;
  padding-left: 1.18rem;
  list-style-type: disc;
  list-style-position: outside;
}

.home-page .home-hero .hero-pillar-points li {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.42;
  color: #dce9ff;
  display: list-item;
}

.home-page .home-hero .hero-pillar-points li::marker {
  color: #eff5ff;
}

.home-page .home-hero .hero-flow-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(196, 220, 248, 0.42);
  background: rgba(7, 21, 49, 0.5);
  color: #eef4fb;
  font-size: 1.08rem;
  font-weight: 800;
}

.kpis {
  margin-top: 1.16rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.74rem;
}

.kpi {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-1);
  padding: 0.9rem;
}

.kpi strong {
  display: block;
  color: #071b46;
  margin-bottom: 0.2rem;
}

.home-hero .kpis {
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.home-hero .kpi {
  border-color: rgba(196, 220, 248, 0.34);
  background: rgba(5, 16, 38, 0.36);
  box-shadow: none;
}

.lead-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-2);
  padding: 1.08rem;
}

.lead-strip ul,
.lead-strip ol {
  margin: 0.26rem 0 0;
  padding-left: 1rem;
}

.home-hero .lead-strip {
  border-color: rgba(196, 220, 248, 0.38);
  background: rgba(8, 21, 49, 0.36);
}

.home-hero .lead-strip h2,
.home-hero .lead-strip p,
.home-hero .lead-strip li,
.home-hero .lead-strip strong,
.home-hero .lead-strip span {
  color: #eff5ff;
}

.lead-strip .scoreline {
  margin-top: 0.82rem;
  padding-top: 0.7rem;
  border-top: 1px solid #d6e1f2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.42rem;
}

.lead-strip .scoreline span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.lead-strip .scoreline strong {
  color: #233552;
}

.home-hero .lead-strip .scoreline {
  border-top-color: rgba(196, 220, 248, 0.3);
}

.home-hero .lead-strip .scoreline span,
.home-hero .lead-strip .scoreline strong {
  color: #dce9ff;
}

.section {
  padding: 2.45rem 0;
}

.section-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-head p {
  max-width: 72ch;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 0.92rem;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
  padding: 1rem;
}

.card ul,
.card ol {
  margin: 0;
  padding-left: 1rem;
}

.card li + li {
  margin-top: 0.3rem;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #bfd6ff;
  background: var(--accent-soft);
  color: #087f97;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.62rem;
}

.list-tight {
  margin: 0;
  padding-left: 1rem;
}

.list-tight li + li {
  margin-top: 0.28rem;
}

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

.comparison-table,
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.comparison-table th,
.comparison-table td,
th,
td {
  text-align: left;
  padding: 0.72rem;
  border-bottom: 1px solid #e3ecf8;
}

.comparison-table th,
th {
  background: #eff5ff;
  color: #0a3f96;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-definitions li strong {
  color: #0a3f96;
}

.value-table-wrap table {
  min-width: 1120px;
}

.value-snapshot-wrap table {
  min-width: 1680px;
}

.value-matrix td:first-child,
.value-matrix th:first-child {
  min-width: 220px;
  font-weight: 700;
  color: #233552;
}

.value-matrix td:not(:first-child),
.value-matrix th:not(:first-child) {
  min-width: 280px;
}

.value-anchor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
  padding: 0.58rem;
  border: 1px solid #d6e1f2;
  border-radius: 14px;
  background: #f8fbff;
}

.value-anchor-strip a {
  text-decoration: none;
  color: #0a3f96;
  border: 1px solid #d6e1f2;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.34rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.value-fit-grid {
  align-items: start;
}

.fit-form-grid {
  grid-template-columns: 1fr 1fr;
}

.value-fit-output {
  position: sticky;
  top: 98px;
}

.fit-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.fit-rank-card {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.64rem;
}

.fit-rank-card.is-primary {
  border-color: #1053c2;
  background: linear-gradient(180deg, #eff5ff 0%, #eff5ff 100%);
}

.fit-rank-card h4 {
  margin: 0 0 0.16rem;
  color: #0a3f96;
}

.fit-rank-card .fit-rank-score {
  margin: 0 0 0.2rem;
  font-weight: 800;
  color: #1053c2;
}

.fit-rank-card p {
  margin: 0;
  color: #3f5574;
  font-size: 0.82rem;
  line-height: 1.4;
}

.fit-cap {
  margin-top: 0.56rem;
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.56rem 0.62rem;
}

label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #233552;
  margin-bottom: 0.28rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #ffffff;
  padding: 0.68rem 0.76rem;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 2px solid rgba(17, 90, 208, 0.35);
  outline-offset: 2px;
}

.notice {
  border: 1px solid #fff7e2;
  border-radius: 10px;
  background: var(--warn-bg);
  color: var(--warn-ink);
  padding: 0.68rem 0.76rem;
}

.notice.ok {
  border-color: #b5c8e1;
  background: var(--ok-bg);
  color: var(--ok-ink);
}

.notice.risk {
  border-color: #c5d4e8;
  background: var(--risk-bg);
  color: var(--risk-ink);
}

.notice:empty {
  display: none;
}

.report-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-1);
  padding: 1.12rem;
}

.result-grid,
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.metric,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 0.72rem;
}

.metric small,
.metric-card small {
  color: #627da4;
}

.metric strong,
.metric-card strong {
  display: block;
  margin-top: 0.14rem;
  color: #233552;
  font-size: 1.06rem;
}

.wizard {
  max-width: 930px;
}

.question-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-1);
  padding: 1.1rem;
}

.progress {
  height: 10px;
  border-radius: 999px;
  background: #e3ecf8;
  margin: 0.6rem 0 1rem;
  overflow: hidden;
}

.progress > span {
  display: block;
  height: 100%;
  background: var(--brand-grad);
  transition: width 0.2s ease;
}

.option-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.72rem;
}

.option-list button {
  justify-content: flex-start;
  border: 1px solid #bfd6ff;
  background: #eff5ff;
  color: #0a3f96;
  box-shadow: none;
}

.option-list button.active {
  border-color: transparent;
  color: #ffffff;
  background: var(--brand-grad);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 0.88rem;
}

.tabs button {
  border-radius: 999px;
  border: 1px solid #bfd6ff;
  background: #ffffff;
  color: #0f4eb8;
  box-shadow: none;
}

.tabs button.active {
  color: #ffffff;
  border-color: transparent;
  background: var(--brand-grad);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.66rem;
  margin-bottom: 0.4rem;
  background: #ffffff;
}

.status-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.16rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.status-pill.warn {
  background: #fff7e2;
  color: #785910;
}

.cta-band {
  border: 1px solid #bfd6ff;
  border-radius: var(--radius-lg);
  background: #f8fbff;
  color: #233552;
  box-shadow: none;
  padding: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
}

.cta-band h2,
.cta-band p {
  color: #233552;
}

.page-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.site-journey-band {
  padding-top: 1.2rem;
}

.site-journey-shell {
  border: 1px solid #d6e1f2;
  border-radius: 20px;
  background:
    radial-gradient(36rem 14rem at 4% 0%, rgba(138, 183, 255, 0.18), rgba(138, 183, 255, 0)),
    linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
  box-shadow: 0 12px 24px rgba(8, 30, 70, 0.05);
  padding: 1rem;
}

.site-journey-head h2 {
  margin: 0.2rem 0 0.56rem;
  color: #233552;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(1rem, 1.65vw, 1.42rem);
  line-height: 1.18;
}

@media (max-width: 760px) {
  .site-journey-head h2 {
    white-space: normal;
  }
}

.site-journey-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.56rem;
}

.site-journey-step {
  text-decoration: none;
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.66rem;
  display: grid;
  gap: 0.14rem;
  box-shadow: 0 8px 16px rgba(9, 33, 76, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-journey-step small {
  color: #3f5574;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-journey-step strong {
  color: #0a3f96;
  font-family: 'Sora', 'Plus Jakarta Sans', 'IBM Plex Sans', sans-serif;
  font-size: 0.84rem;
}

.site-journey-step span {
  color: #3f5574;
  font-size: 0.78rem;
  line-height: 1.4;
}

.site-journey-step:hover {
  transform: translateY(-2px);
  border-color: #8fb6ff;
  box-shadow: 0 12px 22px rgba(9, 44, 102, 0.08);
}

.site-journey-step.is-active {
  border-color: #1053c2;
  background: linear-gradient(180deg, #eff5ff 0%, #e3ecf8 100%);
}

.site-journey-next {
  margin-top: 0.72rem;
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.site-journey-next p {
  margin: 0;
  color: #233552;
}

.site-context-links {
  padding-top: 0.9rem;
}

.context-links-shell {
  border: 1px solid #d6e1f2;
  border-radius: 20px;
  background:
    radial-gradient(34rem 14rem at 5% 0%, rgba(130, 176, 243, 0.16), rgba(130, 176, 243, 0)),
    linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
  box-shadow: 0 12px 24px rgba(8, 30, 70, 0.05);
  padding: 0.96rem;
}

.context-links-head h2 {
  margin: 0.22rem 0 0.58rem;
  color: #233552;
}

.context-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.context-link-card {
  text-decoration: none;
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(9, 33, 76, 0.035);
  padding: 0.72rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.context-link-card h3 {
  margin: 0 0 0.24rem;
  color: #0a3f96;
  font-size: 0.94rem;
}

.context-link-card p {
  margin: 0;
  color: #3f5574;
  font-size: 0.82rem;
  line-height: 1.45;
}

.context-link-card:hover {
  transform: translateY(-2px);
  border-color: #b5c8e1;
  box-shadow: 0 14px 26px rgba(9, 44, 102, 0.09);
}

.map-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 0.9rem;
  text-decoration: none;
  color: inherit;
  box-shadow: none;
}

.map-link strong {
  display: block;
  color: #233552;
  margin-bottom: 0.2rem;
}

.map-link span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.insight-list {
  margin: 0;
  padding-left: 1rem;
}

.insight-list li + li {
  margin-top: 0.32rem;
}

.timeline-matrix {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.timeline-matrix th,
.timeline-matrix td {
  text-align: left;
  padding: 0.72rem;
  border-bottom: 1px solid #e3ecf8;
}

.timeline-matrix th {
  background: #eff5ff;
  color: #0a3f96;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer {
  margin-top: 2.8rem;
  border-top: 1px solid rgba(8, 26, 65, 0.12);
  background: #071b46;
  color: #dce9ff;
  padding: 1.6rem 0;
}

.footer a {
  color: #dce9ff;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer .footer-core-nav {
  width: 100%;
  padding-top: 0.24rem;
  border-top: 1px solid rgba(191, 215, 249, 0.2);
  margin-top: 0.18rem;
}

.hidden-field {
  position: absolute;
  left: -5000px;
  opacity: 0;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 75;
  display: none;
  gap: 0.42rem;
}

.sticky-cta .button {
  box-shadow: 0 12px 24px rgba(9, 62, 160, 0.3);
}

@media (max-width: 1024px) {
  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-nav a {
    font-size: 0.85rem;
    padding: 0.3rem 0.14rem;
    border-radius: 8px;
  }

  .nav-toggle {
    display: none;
  }

  .cta-group {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: space-between;
  }

  html.has-js .site-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 78px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 0.95rem 4vw;
    z-index: 105;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }

  html.has-js .site-nav a {
    width: 100%;
    padding: 0.66rem 0.2rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #eef4fb;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    background: transparent;
    color: #233552;
  }

  html.has-js .site-nav a.nav-solutioning {
    color: #ffffff;
    border: 1px solid #0f5ec9;
    border-radius: 10px;
    background: linear-gradient(135deg, #0b366f 0%, #0f57be 52%, #10a5c3 100%);
    margin-bottom: 0.3rem;
  }

  html.has-js .site-nav.open {
    display: flex;
  }

  html.has-js .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  html.has-js .nav-shell {
    grid-template-columns: auto auto;
  }

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

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

  .fit-form-grid {
    grid-template-columns: 1fr;
  }

  .fit-rank-grid {
    grid-template-columns: 1fr;
  }

  .value-fit-output {
    position: static;
  }
}

@media (max-width: 1060px) {
  .hero,
  .home-hero {
    padding-top: 2.55rem;
  }

  .hero-grid,
  .kpis,
  .grid-2,
  .grid-3,
  .grid-4,
  .result-grid,
  .metric-row,
  .form-grid,
  .lead-strip .scoreline,
  .page-map,
  .site-journey-flow,
  .context-links-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-journey-next {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    display: flex;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.55rem 0.72rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
  }

  .sticky-cta .button {
    flex: 1;
    min-height: 46px;
  }

  body {
    padding-bottom: 76px;
  }

  body.home-page {
    padding-bottom: 0;
  }

  body.home-page .home-hero {
    padding-top: 1rem;
  }

  .home-page .home-hero .hero-pillars {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .home-page .home-hero .hero-flow-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }
}

/* Home Premium Refresh */
body.home-page {
  display: block;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 44%, #f8fbff 100%);
}

body.home-page main.home-main {
  display: block;
}

body.home-page .site-header {
  border-bottom: 1px solid rgba(6, 35, 93, 0.1);
  background: rgba(247, 251, 255, 0.78);
  backdrop-filter: blur(14px);
}

body.home-page .nav-shell {
  min-height: 80px;
  gap: 1rem;
}

body.home-page .site-nav {
  justify-content: center;
  gap: 0.3rem;
  overflow: visible;
}

body.home-page .site-nav a {
  padding: 0.42rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
}

body.home-page .cta-group .button {
  min-height: 42px;
  padding: 0.62rem 1rem;
}

body.home-page .section {
  padding: clamp(2.3rem, 4.5vw, 4.2rem) 0;
}

.layout-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
}

.col-7 {
  grid-column: span 7;
}

.col-5 {
  grid-column: span 5;
}

.col-4 {
  grid-column: span 4;
}

body.home-page .home-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: clamp(2.2rem, 5vw, 4rem) 0 2rem;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  background:
    radial-gradient(65rem 30rem at 8% -12%, rgba(79, 147, 255, 0.42), rgba(79, 147, 255, 0)),
    radial-gradient(55rem 26rem at 92% -8%, rgba(32, 193, 255, 0.2), rgba(32, 193, 255, 0)),
    linear-gradient(128deg, #071b46 0%, #0a3f96 52%, #0f4eb8 100%);
  overflow: clip;
}

body.home-page .home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.3;
  pointer-events: none;
}

body.home-page .home-hero::after {
  display: none;
}

body.home-page .hero-layout {
  align-items: center;
}

body.home-page .hero-copy {
  position: relative;
  z-index: 1;
}

body.home-page .hero-copy .eyebrow {
  margin-bottom: 0.95rem;
  border-color: rgba(180, 217, 255, 0.55);
  background: rgba(221, 239, 255, 0.96);
}

body.home-page .hero-copy h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: #eff5ff;
}

body.home-page .hero-copy h1 span {
  display: inline-block;
  color: #bfd6ff;
}

body.home-page .hero-copy p {
  margin-bottom: 1.05rem;
  max-width: 54ch;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.6;
  color: rgba(230, 240, 255, 0.95);
}

body.home-page .hero-assurance {
  max-width: 58ch;
  border: 1px solid rgba(183, 218, 255, 0.42);
  border-radius: 14px;
  background: rgba(8, 27, 62, 0.38);
  padding: 0.68rem 0.8rem;
  box-shadow: inset 0 0 0 1px rgba(211, 232, 255, 0.08);
}

body.home-page .hero-assurance p {
  margin: 0;
  max-width: none;
  font-size: 0.88rem;
  line-height: 1.46;
  color: rgba(233, 242, 255, 0.97);
}

body.home-page .hero-assurance .hero-assurance-brief {
  font-weight: 600;
}

body.home-page .hero-assurance .hero-assurance-trust {
  margin-top: 0.4rem;
  padding-top: 0.38rem;
  border-top: 1px solid rgba(182, 217, 255, 0.32);
  font-size: 0.8rem;
  color: rgba(200, 224, 255, 0.95);
  font-weight: 500;
}

body.home-page .hero-copy .hero-actions {
  margin-top: 1rem;
  align-items: center;
}

body.home-page .hero-copy .hero-actions .button.secondary {
  background: rgba(247, 251, 255, 0.96);
  color: #0a3f96;
  border: 1px solid rgba(171, 208, 255, 0.85);
}

body.home-page .hero-copy .hero-actions .button.ghost {
  color: #eff5ff;
  border: 1px solid rgba(181, 217, 255, 0.54);
  background: rgba(7, 26, 58, 0.35);
}

body.home-page .hero-signal-row {
  margin-top: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

body.home-page .hero-signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.24rem 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(190, 220, 255, 0.46);
  background: rgba(7, 24, 53, 0.4);
  color: #eff5ff;
  font-size: 0.74rem;
  font-weight: 700;
}

body.home-page .hero-preview {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  border: 1px solid rgba(175, 211, 255, 0.44);
  background: rgba(7, 24, 54, 0.5);
  box-shadow: 0 20px 54px rgba(5, 21, 57, 0.36);
  padding: 1.15rem;
  color: #eff5ff;
}

body.home-page .hero-preview h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: #f8fbff;
}

body.home-page .hero-preview .preview-tag {
  margin: 0 0 0.36rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bfd6ff;
  font-weight: 700;
}

body.home-page .hero-preview .muted {
  margin-bottom: 0.7rem;
  color: rgba(211, 229, 255, 0.9);
}

body.home-page .preview-toggle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.32rem;
  margin: 0 0 0.68rem;
}

body.home-page .preview-plan {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(176, 213, 255, 0.35);
  background: rgba(5, 20, 47, 0.5);
  color: #dce9ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: none;
  padding: 0.3rem 0.45rem;
}

body.home-page .preview-plan:hover {
  background: rgba(13, 42, 89, 0.68);
  transform: none;
  box-shadow: none;
}

body.home-page .preview-plan.is-active,
body.home-page .preview-plan[aria-selected='true'] {
  border-color: rgba(170, 211, 255, 0.92);
  background: linear-gradient(135deg, #1053c2 0%, #0a3f96 100%);
  color: #f8fbff;
}

body.home-page .preview-sheet {
  border-radius: 14px;
  border: 1px solid rgba(175, 211, 255, 0.35);
  background: rgba(4, 16, 41, 0.5);
  overflow: hidden;
}

body.home-page .preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.58rem 0.7rem;
  border-bottom: 1px solid rgba(175, 211, 255, 0.2);
}

body.home-page .preview-row:last-child {
  border-bottom: 0;
}

body.home-page .preview-row span {
  color: rgba(211, 229, 255, 0.9);
  font-size: 0.82rem;
}

body.home-page .preview-row strong {
  color: #eff5ff;
  font-size: 0.84rem;
}

body.home-page .preview-graph {
  margin-top: 0.62rem;
  border-radius: 12px;
  border: 1px solid rgba(175, 211, 255, 0.28);
  background: rgba(6, 22, 52, 0.46);
  padding: 0.56rem 0.62rem;
}

body.home-page .graph-row {
  display: grid;
  grid-template-columns: 6.2rem minmax(0, 1fr) 2.2rem;
  align-items: center;
  gap: 0.42rem;
}

body.home-page .graph-row + .graph-row {
  margin-top: 0.36rem;
}

body.home-page .graph-row > span {
  color: rgba(216, 233, 255, 0.94);
  font-size: 0.76rem;
  white-space: nowrap;
}

body.home-page .graph-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(166, 205, 255, 0.24);
  overflow: hidden;
}

body.home-page .graph-track > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5f95f0 0%, #8fb6ff 100%);
  transition: width 0.35s ease;
}

body.home-page .graph-row small {
  color: rgba(219, 235, 255, 0.94);
  font-size: 0.72rem;
  text-align: right;
}

body.home-page .inline-action {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  color: #bfd6ff;
  font-weight: 700;
  text-decoration: none;
}

body.home-page .inline-action::after {
  content: '->';
  font-size: 0.82rem;
}

body.home-page .home-flow {
  margin-top: -0.85rem;
}

body.home-page .home-partner-note {
  padding: 1rem 0 0.8rem;
}

body.home-page .partner-note-card {
  border-radius: 18px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(7, 27, 70, 0.06);
}

body.home-page .partner-note-card h2 {
  margin-bottom: 0.42rem;
  color: #233552;
}

body.home-page .partner-note-card p {
  margin: 0;
  color: #3f5574;
}

body.home-page .partner-note-card p + p {
  margin-top: 0.48rem;
}

body.home-page .partner-note-list {
  margin: 0.62rem 0 0;
  padding-left: 1.05rem;
}

body.home-page .partner-note-list li {
  color: #3f5574;
  line-height: 1.48;
}

body.home-page .partner-note-list li + li {
  margin-top: 0.26rem;
}

body.home-page .home-jump-nav {
  padding: 1.35rem 0 0.95rem;
}

body.home-page .jump-grid {
  margin-top: 0.48rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

body.home-page .jump-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  padding: 0.74rem 0.76rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.home-page .jump-card strong {
  display: block;
  color: #233552;
  margin-bottom: 0.16rem;
  font-size: 0.9rem;
}

body.home-page .jump-card span {
  color: #627da4;
  font-size: 0.82rem;
  line-height: 1.38;
}

body.home-page .jump-card:hover {
  transform: translateY(-2px);
  border-color: #c5d4e8;
  box-shadow: 0 12px 24px rgba(8, 36, 84, 0.08);
}

body.home-page .flow-strip {
  margin: 0 0 0.95rem;
  border-radius: 999px;
  border: 1px solid #bfd6ff;
  background: linear-gradient(90deg, #eff5ff, #f8fbff);
  color: #233552;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 0.6rem 1rem;
}

body.home-page .flow-track {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0.75rem;
}

body.home-page .flow-track::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(82, 141, 230, 0.18), rgba(35, 103, 204, 0.5), rgba(82, 141, 230, 0.18));
}

body.home-page .flow-card {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 27, 70, 0.07);
  padding: 0.95rem 0.92rem;
  min-height: 236px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

body.home-page .flow-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(7, 27, 70, 0.12);
}

body.home-page .flow-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.76rem;
  color: #eff5ff;
  background: linear-gradient(145deg, #1053c2 0%, #0a3f96 100%);
  margin: 0 auto 0.56rem;
}

body.home-page .flow-card h3 {
  margin-bottom: 0.62rem;
  text-align: center;
  color: #071b46;
  font-size: 1.05rem;
}

body.home-page .flow-points {
  margin: 0;
  padding-left: 1.08rem;
}

body.home-page .flow-points li {
  color: #3f5574;
  font-size: 0.92rem;
  line-height: 1.42;
}

body.home-page .flow-points li + li {
  margin-top: 0.25rem;
}

body.home-page .flow-arrow {
  position: relative;
  z-index: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #bfd6ff;
  background: #eff5ff;
  color: #1053c2;
  font-size: 1.1rem;
  font-weight: 800;
}

body.home-page .home-proof {
  padding-top: 0.85rem;
}

body.home-page .proof-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

body.home-page .proof-bar article {
  border-radius: 16px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  padding: 0.9rem 0.78rem;
  text-align: center;
}

body.home-page .proof-bar strong {
  display: block;
  color: #233552;
  font-size: 1.28rem;
  margin-bottom: 0.22rem;
  letter-spacing: -0.02em;
}

body.home-page .proof-bar span {
  color: #627da4;
  font-size: 0.85rem;
}

body.home-page .section-intro {
  margin-bottom: 1rem;
}

body.home-page .section-intro p {
  max-width: 66ch;
}

body.home-page .story-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d6e1f2;
  padding: 1rem;
}

body.home-page .story-card h3 {
  margin-bottom: 0.42rem;
  color: #233552;
}

body.home-page .story-card p {
  margin: 0;
}

body.home-page .home-method {
  position: relative;
}

body.home-page .home-method::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(200, 223, 255, 0.12), rgba(200, 223, 255, 0));
  pointer-events: none;
}

body.home-page .method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

body.home-page .method-step {
  border-radius: 18px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  padding: 0.98rem;
}

body.home-page .method-step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #eef4fb;
  color: #0f4eb8;
  font-weight: 800;
  font-size: 0.77rem;
  margin-bottom: 0.48rem;
}

body.home-page .method-step h3 {
  margin-bottom: 0.34rem;
  font-size: 1.06rem;
}

body.home-page .method-step p {
  margin: 0;
  color: #627da4;
}

body.home-page .home-outcome .outcome-copy ul {
  margin: 0;
  padding-left: 1.05rem;
}

body.home-page .home-outcome .outcome-copy li {
  color: #3f5574;
}

body.home-page .home-outcome .outcome-copy li + li {
  margin-top: 0.3rem;
}

body.home-page .home-outcome .outcome-panel {
  border-radius: 20px;
  border: 1px solid #d6e1f2;
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
  padding: 1rem;
}

body.home-page .home-outcome .outcome-panel h3 {
  margin-bottom: 0.38rem;
  color: #233552;
}

body.home-page .home-outcome .outcome-panel p {
  margin-bottom: 0.72rem;
}

body.home-page .footer {
  margin-top: 0.8rem;
}

html.has-js body.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.has-js body.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #8fb6ff;
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  body.home-page .site-nav a {
    font-size: 0.78rem;
  }
}

@media (max-width: 1024px) {
  body.home-page .home-hero {
    min-height: auto;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

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

  .col-7,
  .col-5,
  .col-4 {
    grid-column: auto;
  }

  body.home-page .hero-copy p {
    max-width: 100%;
  }

  body.home-page .flow-track {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  body.home-page .jump-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .flow-track::before {
    display: none;
  }

  body.home-page .flow-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  body.home-page .proof-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.home-page .hero-copy h1 {
    font-size: clamp(1.95rem, 9vw, 2.5rem);
  }

  body.home-page .hero-copy p {
    font-size: 0.99rem;
    line-height: 1.55;
  }

  body.home-page .hero-assurance p {
    font-size: 0.88rem;
  }

  body.home-page .hero-assurance .hero-assurance-trust {
    font-size: 0.8rem;
  }

  body.home-page .hero-signal-row {
    gap: 0.42rem;
  }

  body.home-page .hero-signal-row span {
    width: 100%;
    justify-content: center;
  }

  body.home-page .preview-toggle {
    grid-template-columns: 1fr;
  }

  body.home-page .graph-row {
    grid-template-columns: 5.4rem minmax(0, 1fr) 2rem;
  }

  body.home-page .jump-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .proof-bar {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) {
  html.has-js .site-nav {
    display: flex !important;
    position: static;
    max-height: none;
    padding: 0;
    border: 0;
  }
}

/* Home Conversion Refresh v3 */
body.home-page .section {
  padding: clamp(3.2rem, 6vw, 5.1rem) 0;
}

body.home-page .home-hero {
  min-height: 72vh;
  padding: clamp(1.9rem, 3.8vw, 3rem) 0 1.25rem;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

body.home-page .hero-layout {
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
}

body.home-page .hero-copy h1 {
  margin-bottom: 0.72rem;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

body.home-page .hero-copy p {
  max-width: 48ch;
  margin-bottom: 0.84rem;
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.55;
}

body.home-page .hero-copy .hero-actions {
  margin-top: 0.82rem;
}

body.home-page .pay-use-badge {
  margin: 0.48rem 0 0;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(186, 220, 255, 0.55);
  background: rgba(8, 31, 66, 0.45);
  color: #dce9ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

body.home-page .hero-signal-row {
  margin-top: 0.72rem;
  gap: 0.36rem;
}

body.home-page .hero-signal-row span {
  min-height: 28px;
  padding: 0.2rem 0.58rem;
  font-size: 0.72rem;
}

body.home-page .hero-preview {
  border-radius: 18px;
  padding: 0.92rem;
  border: 1px solid rgba(184, 215, 253, 0.34);
  background: rgba(6, 23, 52, 0.44);
}

body.home-page .hero-preview h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  margin-bottom: 0.34rem;
}

body.home-page .hero-preview .preview-tag {
  margin-bottom: 0.22rem;
}

body.home-page .hero-preview .muted {
  margin-bottom: 0.56rem;
  font-size: 0.84rem;
}

body.home-page .preview-toggle {
  margin-bottom: 0.52rem;
}

body.home-page .preview-plan {
  min-height: 32px;
}

body.home-page .preview-active {
  margin: 0 0 0.44rem;
  color: rgba(214, 232, 255, 0.95);
  font-size: 0.77rem;
}

body.home-page .preview-active strong {
  color: #eff5ff;
}

body.home-page .preview-sheet {
  border-radius: 11px;
}

body.home-page .preview-row {
  padding: 0.48rem 0.6rem;
}

body.home-page .preview-row span,
body.home-page .preview-row strong {
  font-size: 0.8rem;
}

body.home-page .preview-graph {
  margin-top: 0.5rem;
  border-radius: 11px;
}

body.home-page .graph-row {
  grid-template-columns: 6.6rem minmax(0, 1fr) 2rem;
}

body.home-page .graph-row > span {
  font-size: 0.72rem;
}

body.home-page .inline-action {
  margin-top: 0.5rem;
  font-size: 0.84rem;
}

body.home-page .home-trust-band {
  padding-top: 1.3rem;
  padding-bottom: 1rem;
}

body.home-page .trust-band-line {
  margin: 0;
  border-radius: 14px;
  border: 1px solid #d6e1f2;
  background: linear-gradient(90deg, #f8fbff 0%, #eff5ff 100%);
  color: #233552;
  text-align: center;
  padding: 0.78rem 0.9rem;
  font-weight: 600;
}

body.home-page .section-intro {
  margin-bottom: 1.2rem;
}

body.home-page .section-intro h2 {
  max-width: 24ch;
}

body.home-page .home-how .section-intro h2,
body.home-page .home-value .section-intro h2,
body.home-page .home-outcomes .section-intro h2,
body.home-page .home-plans .section-intro h2 {
  max-width: 30ch;
}

body.home-page .single-line-heading {
  max-width: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

body.home-page .how-grid,
body.home-page .value-grid,
body.home-page .outcomes-grid,
body.home-page .plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

body.home-page .how-step,
body.home-page .value-card,
body.home-page .outcome-card,
body.home-page .plan-card {
  border-radius: 16px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(8, 31, 72, 0.05);
}

body.home-page .how-step span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(145deg, #1053c2 0%, #0a3f96 100%);
  margin-bottom: 0.4rem;
}

body.home-page .how-step h3,
body.home-page .value-card h3,
body.home-page .plan-card h3 {
  margin-bottom: 0.28rem;
  color: #233552;
}

body.home-page .how-step p,
body.home-page .value-card p,
body.home-page .plan-card p,
body.home-page .outcome-card span {
  margin: 0;
  color: #627da4;
}

body.home-page .outcome-card {
  text-align: left;
}

body.home-page .outcome-card strong {
  display: block;
  color: #233552;
  font-size: 1.46rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

body.home-page .plan-card.is-featured {
  border-color: #bfd6ff;
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
}

body.home-page .plans-note {
  margin: 0.92rem 0 0;
  border-radius: 12px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #233552;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.66rem 0.78rem;
}

body.home-page .home-final-cta .cta-band {
  border-radius: 18px;
  border: 1px solid #d6e1f2;
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
  box-shadow: 0 12px 26px rgba(8, 32, 75, 0.06);
}

body.home-page .home-final-cta .cta-band h2 {
  max-width: 30ch;
  margin-bottom: 0.34rem;
}

body.home-page .home-final-cta .cta-band p {
  margin: 0;
  max-width: 54ch;
}

@media (max-width: 1024px) {
  body.home-page .home-hero {
    min-height: 82vh;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }

  body.home-page .how-grid,
  body.home-page .value-grid,
  body.home-page .outcomes-grid,
  body.home-page .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body.home-page .section {
    padding: 2.35rem 0;
  }

  body.home-page .home-hero {
    min-height: 82vh;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(1.8rem, 8.5vw, 2.4rem);
  }

  body.home-page .hero-copy p {
    font-size: 0.95rem;
  }

  body.home-page .hero-signal-row span {
    width: auto;
    justify-content: center;
  }

  body.home-page .preview-toggle {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-page .graph-row {
    grid-template-columns: 5.6rem minmax(0, 1fr) 1.9rem;
  }

  body.home-page .how-grid,
  body.home-page .value-grid,
  body.home-page .outcomes-grid,
  body.home-page .plans-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .single-line-heading {
    white-space: normal;
  }

  body.home-page .home-final-cta .cta-band {
    padding: 1rem;
  }
}

/* Engagement Models Page Enhancements */
.plan-matrix th:first-child,
.plan-matrix td:first-child {
  width: 23%;
  font-weight: 700;
  color: #233552;
}

#plan-office,
#plan-enterprise,
#snapshot-six {
  scroll-margin-top: 96px;
}

.matrix-dense th,
.matrix-dense td {
  font-size: 0.84rem;
  line-height: 1.42;
  vertical-align: top;
}

.matrix-dense th:first-child,
.matrix-dense td:first-child {
  min-width: 190px;
}

.matrix-wide {
  min-width: 1340px;
}

.plans-note {
  margin: 0.88rem 0 0;
  border-radius: 12px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #233552;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.66rem 0.78rem;
}

.models-lead-toggle {
  display: inline-flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.72rem;
}

.models-lead-toggle button {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid #bfd6ff;
  background: #eff5ff;
  color: #0a3f96;
  box-shadow: none;
  padding: 0.5rem 0.92rem;
}

.models-lead-toggle button:hover {
  transform: none;
  box-shadow: none;
  background: #e3ecf8;
}

.models-lead-toggle button.is-active,
.models-lead-toggle button[aria-selected='true'] {
  border-color: transparent;
  background: var(--brand-grad);
  color: #ffffff;
}

.lead-panel {
  border-top: 1px solid #e3ecf8;
  padding-top: 0.72rem;
}

.lead-panel h3 {
  margin-bottom: 0.34rem;
}

.lead-panel p,
.lead-panel li {
  color: #3f5574;
}

.lead-panel[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .plan-matrix th:first-child,
  .plan-matrix td:first-child {
    width: auto;
  }
}

/* Home Premium Finalization */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  z-index: 200;
  padding: 0.56rem 0.82rem;
  border-radius: 10px;
  background: #0a3f96;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

body.home-page .hero-proof-line {
  margin: 0 0 0.44rem;
  color: rgba(214, 232, 255, 0.95);
  font-size: 0.92rem;
  font-weight: 600;
}

body.home-page .hero-context {
  display: grid;
  gap: 0.24rem;
  margin-bottom: 0.3rem;
}

body.home-page .hero-context span {
  color: rgba(205, 224, 255, 0.96);
  font-size: 0.8rem;
}

body.home-page .hero-ttv {
  margin: 0.48rem 0 0.28rem;
  color: #dce9ff;
  font-size: 0.8rem;
  font-weight: 600;
}

body.home-page .hero-scroll {
  display: inline-flex;
  margin-top: 0.64rem;
  color: #dce9ff;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
}

body.home-page .hero-scroll:hover {
  color: #ffffff;
}

body.home-page .home-micro-proof {
  padding: 1rem 0 0.55rem;
}

body.home-page .micro-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

body.home-page .micro-proof-grid article {
  border: 1px solid #d6e1f2;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.72rem 0.78rem;
}

body.home-page .micro-proof-grid strong {
  display: block;
  color: #233552;
  font-size: 1.06rem;
  margin-bottom: 0.14rem;
}

body.home-page .micro-proof-grid span {
  color: #627da4;
  font-size: 0.82rem;
}

body.home-page .section + .section {
  position: relative;
}

body.home-page .section + .section::before {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(186, 208, 238, 0), rgba(186, 208, 238, 0.72), rgba(186, 208, 238, 0));
}

body.home-page .how-step,
body.home-page .value-card,
body.home-page .outcome-card,
body.home-page .plan-card {
  border-color: #e3ecf8;
  box-shadow: 0 8px 16px rgba(8, 31, 72, 0.035);
}

body.home-page .no-sales-note {
  margin-top: 0.85rem;
  border-color: #d6e1f2;
  background: #f8fbff;
}

body.home-page .no-sales-note h3 {
  margin-bottom: 0.26rem;
}

body.home-page .no-sales-note p {
  margin: 0;
  color: #3f5574;
}

body.home-page .social-proof-grid {
  margin-top: 0.86rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

body.home-page .proof-quote {
  border: 1px solid #d6e1f2;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.8rem;
}

body.home-page .proof-quote .eyebrow {
  margin-bottom: 0.4rem;
}

body.home-page .proof-quote p {
  margin: 0;
  color: #3f5574;
}

body.home-page .proof-quote.executive-note {
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
}

body.home-page .home-risk-reversal {
  padding-top: 1.3rem;
}

body.home-page .risk-card {
  border-color: #d6e1f2;
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
}

body.home-page .risk-card h2 {
  margin-bottom: 0.34rem;
}

body.home-page .handoff-note {
  margin-top: 0.58rem !important;
  color: #3f5574;
  font-size: 0.86rem;
  font-weight: 600;
}

body.home-page .footer {
  padding: 1.2rem 0;
}

body.home-page .footer nav {
  gap: 0.68rem;
}

html.has-js body.motion-ready [data-reveal] {
  transform: translateY(12px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

@media (max-width: 1024px) {
  body.home-page .micro-proof-grid,
  body.home-page .social-proof-grid,
  body.home-page .diff-grid,
  body.home-page .system-map-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body.home-page .hero-context span,
  body.home-page .hero-ttv {
    font-size: 0.78rem;
  }

  body.home-page .micro-proof-grid,
  body.home-page .social-proof-grid,
  body.home-page .diff-grid,
  body.home-page .system-map-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .diff-cta {
    flex-direction: column;
  }

  body.home-page .diff-cta .button {
    width: 100%;
  }

  body.home-page .hero-scroll {
    margin-top: 0.5rem;
  }
}

/* Home Visual Pass - March 2026 */
body.home-page .home-hero {
  position: relative;
}

body.home-page .trust-pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

body.home-page .trust-pill-row span {
  border: 1px solid #d6e1f2;
  border-radius: 999px;
  background: #ffffff;
  color: #0a3f96;
  min-height: 42px;
  padding: 0.54rem 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

body.home-page .home-white-label {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

body.home-page .white-label-panel {
  border: 1px solid #d6e1f2;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(7, 33, 84, 0.07);
  padding: 1.12rem 1.2rem;
}

body.home-page .white-label-panel .eyebrow {
  margin-bottom: 0.56rem;
}

body.home-page .white-label-panel p {
  margin: 0;
  color: #3f5574;
  font-size: 0.98rem;
  line-height: 1.62;
}

body.home-page .white-label-panel .white-label-trust {
  margin-top: 0.58rem;
  border-top: 1px solid #d6e1f2;
  padding-top: 0.58rem;
  font-weight: 700;
  color: #0a3f96;
}

body.home-page .home-differentiation {
  padding-top: 1rem;
  padding-bottom: 1.45rem;
}

body.home-page .diff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

body.home-page .diff-card {
  border: 1px solid #d6e1f2;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 20px rgba(8, 31, 72, 0.05);
  padding: 0.94rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.home-page .diff-card h3 {
  margin-bottom: 0.32rem;
  color: #0a3f96;
}

body.home-page .diff-card p {
  margin: 0;
  color: #3f5574;
  line-height: 1.5;
}

body.home-page .diff-card p + p {
  margin-top: 0.3rem;
}

body.home-page .diff-card:hover {
  transform: translateY(-4px);
  border-color: #c5d4e8;
  box-shadow: 0 16px 30px rgba(8, 31, 72, 0.11);
}

body.home-page .diff-cta {
  margin-top: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem;
}

body.home-page .home-system-map {
  padding-top: 1rem;
  padding-bottom: 1.35rem;
}

body.home-page .system-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

body.home-page .system-link-card {
  text-decoration: none;
  border: 1px solid #d6e1f2;
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 20px rgba(8, 31, 72, 0.05);
  padding: 0.85rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.home-page .system-link-card h3 {
  margin: 0 0 0.28rem;
  color: #0a3f96;
  font-size: 0.96rem;
}

body.home-page .system-link-card p {
  margin: 0;
  color: #3f5574;
  font-size: 0.84rem;
  line-height: 1.48;
}

body.home-page .system-link-card:hover {
  transform: translateY(-4px);
  border-color: #c5d4e8;
  box-shadow: 0 16px 30px rgba(8, 31, 72, 0.11);
}

body.home-page .parallax-section {
  position: relative;
  overflow: hidden;
  --parallax-offset: 0px;
}

body.home-page .parallax-section::after {
  content: '';
  position: absolute;
  inset: -14% -4%;
  background:
    radial-gradient(38rem 18rem at 8% 14%, rgba(52, 129, 235, 0.11), rgba(52, 129, 235, 0)),
    radial-gradient(28rem 16rem at 92% 84%, rgba(43, 178, 225, 0.1), rgba(43, 178, 225, 0));
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
  pointer-events: none;
}

body.home-page .parallax-section > .container {
  position: relative;
  z-index: 1;
}

body.home-page .home-how::after,
body.home-page .home-value::after,
body.home-page .home-outcomes::after,
body.home-page .home-plans::after,
body.home-page .home-final-cta::after {
  opacity: 0.95;
}

body.home-page .how-step,
body.home-page .value-card,
body.home-page .outcome-card,
body.home-page .plan-card {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

body.home-page .how-step:hover,
body.home-page .value-card:hover,
body.home-page .outcome-card:hover,
body.home-page .plan-card:hover {
  transform: translateY(-4px);
  border-color: #c5d4e8;
  box-shadow: 0 16px 30px rgba(8, 31, 72, 0.12);
}

@media (prefers-reduced-motion: no-preference) {
  body.home-page .hero-preview {
    animation: homeHeroPanelFloat 7s ease-in-out infinite;
  }
}

@keyframes homeHeroPanelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (min-width: 1025px) {
  body.home-page .home-hero {
    min-height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
    padding: 1.2rem 0 0.92rem;
  }

  body.home-page .hero-layout {
    height: 100%;
    align-items: center;
  }

  body.home-page .hero-copy h1 {
    margin-bottom: 0.56rem;
    font-size: clamp(1.95rem, 3.25vw, 3.35rem);
    line-height: 1.03;
  }

  body.home-page .hero-copy p {
    max-width: 44ch;
    margin-bottom: 0.7rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  body.home-page .hero-copy .hero-actions {
    margin-top: 0.66rem;
  }

  body.home-page .hero-signal-row {
    margin-top: 0.52rem;
  }

  body.home-page .hero-signal-row span {
    font-size: 0.7rem;
    min-height: 26px;
    padding: 0.16rem 0.54rem;
  }

  body.home-page .hero-preview {
    border-radius: 16px;
    padding: 0.74rem 0.78rem;
  }

  body.home-page .hero-preview h2 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 0.22rem;
  }

  body.home-page .hero-preview .preview-tag {
    margin-bottom: 0.16rem;
    font-size: 0.68rem;
  }

  body.home-page .hero-preview .muted {
    margin-bottom: 0.46rem;
    font-size: 0.79rem;
  }

  body.home-page .preview-toggle {
    margin-bottom: 0.42rem;
  }

  body.home-page .preview-active {
    margin-bottom: 0.3rem;
    font-size: 0.74rem;
  }

  body.home-page .preview-row {
    padding: 0.4rem 0.52rem;
  }

  body.home-page .preview-row span,
  body.home-page .preview-row strong {
    font-size: 0.76rem;
  }

  body.home-page .preview-graph {
    margin-top: 0.44rem;
    padding: 0.4rem 0.46rem;
  }

  body.home-page .graph-row {
    grid-template-columns: 5.9rem minmax(0, 1fr) 1.85rem;
    gap: 0.34rem;
  }

  body.home-page .graph-row > span {
    font-size: 0.68rem;
  }

  body.home-page .graph-row small {
    font-size: 0.66rem;
  }

  body.home-page .inline-action {
    margin-top: 0.36rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 1024px) {
  body.home-page .home-hero {
    max-height: none;
    min-height: auto;
    padding: 1.45rem 0 1.08rem;
  }

  body.home-page .trust-pill-row {
    grid-template-columns: 1fr;
  }

  body.home-page .parallax-section::after {
    transform: none !important;
    opacity: 0.75;
  }
}

/* Challenges Page Refresh */
body.challenge-page {
  background: linear-gradient(180deg, #eff5ff 0%, #eef4fb 48%, #f8fbff 100%);
}

body.challenge-page .section {
  padding: clamp(2.4rem, 5vw, 4.2rem) 0;
}

body.challenge-page .challenge-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.2rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(60rem 24rem at 12% -12%, rgba(242, 85, 150, 0.24), rgba(242, 85, 150, 0)),
    radial-gradient(48rem 22rem at 92% 4%, rgba(112, 160, 255, 0.22), rgba(112, 160, 255, 0)),
    linear-gradient(130deg, #0b172b 0%, #071b46 54%, #233552 100%);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

body.challenge-page .challenge-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.32;
}

body.challenge-page .challenge-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: center;
}

body.challenge-page .challenge-hero-copy h1 {
  color: #eff5ff;
  margin-bottom: 0.7rem;
  font-size: clamp(2.05rem, 4vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

body.challenge-page .challenge-hero-copy p {
  color: rgba(220, 233, 255, 0.95);
  max-width: 58ch;
  margin-bottom: 0.8rem;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.58;
}

body.challenge-page .challenge-hero-copy .challenge-hero-support {
  color: rgba(198, 219, 255, 0.94);
  max-width: 62ch;
  font-size: 0.94rem;
}

body.challenge-page .challenge-hero-copy .hero-actions {
  margin-top: 0.9rem;
}

body.challenge-page .challenge-hero-copy .button.secondary {
  background: rgba(247, 251, 255, 0.98);
  color: #0a3f96;
  border: 1px solid rgba(169, 201, 248, 0.86);
}

body.challenge-page .challenge-hero-panel {
  border-radius: 20px;
  border: 1px solid rgba(178, 203, 247, 0.4);
  background: rgba(10, 21, 52, 0.56);
  box-shadow: 0 20px 48px rgba(4, 12, 36, 0.42);
  padding: 1.1rem 1rem;
}

body.challenge-page .challenge-panel-kicker {
  margin: 0 0 0.3rem;
  color: #b5c8e1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.challenge-page .challenge-hero-panel h2 {
  margin-bottom: 0.56rem;
  color: #eff5ff;
  font-size: clamp(1.1rem, 1.8vw, 1.48rem);
}

body.challenge-page .challenge-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.challenge-page .challenge-panel-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.62rem;
  border-top: 1px solid rgba(176, 204, 245, 0.24);
  padding: 0.54rem 0;
}

body.challenge-page .challenge-panel-list li:first-child {
  border-top: 0;
  padding-top: 0.14rem;
}

body.challenge-page .challenge-panel-list span {
  color: #dce9ff;
  font-size: 0.86rem;
}

body.challenge-page .challenge-panel-list strong {
  color: #ffffff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

body.challenge-page .challenge-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

body.challenge-page .challenge-card {
  border-radius: 18px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 27, 70, 0.06);
  padding: 1.06rem 1rem;
}

body.challenge-page .challenge-card h2,
body.challenge-page .challenge-card h3 {
  color: #233552;
  margin-bottom: 0.42rem;
}

body.challenge-page .challenge-card p {
  color: #3f5574;
}

body.challenge-page .challenge-bullets {
  margin: 0;
  padding-left: 1.06rem;
}

body.challenge-page .challenge-bullets li {
  color: #3f5574;
  line-height: 1.46;
}

body.challenge-page .challenge-bullets li + li {
  margin-top: 0.26rem;
}

body.challenge-page .challenge-failure-modes {
  background: linear-gradient(180deg, rgba(233, 241, 255, 0.52), rgba(233, 241, 255, 0));
}

body.challenge-page .challenge-failure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

body.challenge-page .challenge-failure-card {
  border-radius: 18px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 31, 72, 0.06);
  padding: 1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.challenge-page .challenge-failure-card:last-child {
  grid-column: 1 / -1;
}

body.challenge-page .challenge-failure-card:hover {
  transform: translateY(-3px);
  border-color: #c5d4e8;
  box-shadow: 0 16px 34px rgba(7, 27, 70, 0.11);
}

body.challenge-page .challenge-failure-head {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  margin-bottom: 0.42rem;
}

body.challenge-page .challenge-failure-head span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(145deg, #0f4eb8 0%, #0a3f96 100%);
  font-size: 0.72rem;
  font-weight: 800;
}

body.challenge-page .challenge-failure-head h3 {
  color: #233552;
  margin: 0;
}

body.challenge-page .challenge-label {
  margin: 0.44rem 0 0.22rem;
  color: #0a3f96;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.challenge-page .challenge-operating-model {
  padding-top: 2.1rem;
}

body.challenge-page .challenge-model-panel {
  border-radius: 22px;
  border: 1px solid #d6e1f2;
  background:
    radial-gradient(40rem 18rem at 8% -18%, rgba(215, 228, 252, 0.8), rgba(215, 228, 252, 0)),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(7, 27, 70, 0.06);
  padding: 1.16rem;
}

body.challenge-page .challenge-model-panel h2 {
  color: #233552;
  margin-bottom: 0.74rem;
}

body.challenge-page .challenge-model-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

body.challenge-page .challenge-model-grid article {
  border: 1px solid #d6e1f2;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.8rem 0.72rem;
}

body.challenge-page .challenge-model-grid h3 {
  color: #233552;
  font-size: 0.98rem;
  margin-bottom: 0.24rem;
}

body.challenge-page .challenge-model-grid p {
  margin: 0;
  color: #3f5574;
  font-size: 0.9rem;
  line-height: 1.42;
}

@media (max-width: 1080px) {
  body.challenge-page .challenge-model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  body.challenge-page .challenge-hero-grid,
  body.challenge-page .challenge-grid-2,
  body.challenge-page .challenge-failure-grid {
    grid-template-columns: 1fr;
  }

  body.challenge-page .challenge-failure-card:last-child {
    grid-column: auto;
  }

  body.challenge-page .challenge-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.challenge-page .challenge-hero {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    padding-top: 1.75rem;
  }

  body.challenge-page .challenge-hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  body.challenge-page .challenge-model-grid {
    grid-template-columns: 1fr;
  }
}

/* Challenge Engine Premium Experience */
body.challenge-engine-page {
  --ce-space-2xs: 0.375rem;
  --ce-space-xs: 0.5rem;
  --ce-space-sm: 0.75rem;
  --ce-space-md: 1rem;
  --ce-space-lg: 1.25rem;
  --ce-space-xl: 1.5rem;
  --ce-space-2xl: 2rem;
  --ce-card-padding: clamp(1rem, 1.6vw, 1.3rem);
  background: linear-gradient(180deg, #eff5ff 0%, #eef4fb 48%, #f8fbff 100%);
}

body.challenge-engine-page .challenge-main {
  overflow: hidden;
}

html.has-js body.challenge-engine-page.motion-ready [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

body.challenge-engine-page h2 {
  margin: var(--ce-space-xs) 0 var(--ce-space-sm);
  line-height: 1.18;
}

body.challenge-engine-page h3 {
  margin: 0 0 var(--ce-space-xs);
  line-height: 1.28;
}

body.challenge-engine-page p {
  line-height: 1.58;
}

body.challenge-engine-page .challenge-engine-hero {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background:
    radial-gradient(58rem 28rem at 6% -18%, rgba(203, 85, 141, 0.3), rgba(203, 85, 141, 0)),
    radial-gradient(54rem 24rem at 94% -10%, rgba(74, 156, 255, 0.28), rgba(74, 156, 255, 0)),
    linear-gradient(132deg, #0b172b 0%, #071b46 52%, #233552 100%);
  padding: clamp(2.6rem, 5.4vw, 4.2rem) 0 clamp(2rem, 4vw, 3.2rem);
}

body.challenge-engine-page .challenge-engine-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.34;
}

body.challenge-engine-page .challenge-engine-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: center;
}

body.challenge-engine-page .challenge-engine-hero-copy h1 {
  margin-bottom: var(--ce-space-sm);
  color: #f8fbff;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.032em;
}

body.challenge-engine-page .challenge-engine-hero-copy p {
  margin-bottom: var(--ce-space-sm);
  max-width: 58ch;
  color: rgba(218, 230, 255, 0.96);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.62;
}

body.challenge-engine-page .hero-score-teaser {
  border: 1px solid rgba(180, 206, 248, 0.42);
  border-radius: 14px;
  background: rgba(9, 22, 53, 0.55);
  padding: 0.78rem 0.9rem;
  display: grid;
  gap: 0.24rem;
  max-width: 26rem;
}

body.challenge-engine-page .hero-score-teaser span {
  color: #bfd6ff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

body.challenge-engine-page .hero-score-teaser strong {
  color: #eff5ff;
  font-size: 1.06rem;
}

body.challenge-engine-page .hero-score-teaser small {
  color: #bfd6ff;
  font-size: 0.78rem;
}

body.challenge-engine-page .challenge-engine-hero-copy .hero-actions {
  margin-top: var(--ce-space-sm);
}

body.challenge-engine-page .signal-noise-row {
  margin-top: var(--ce-space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .signal-chip,
body.challenge-engine-page .noise-chip {
  min-height: 28px;
  padding: 0.16rem 0.58rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

body.challenge-engine-page .signal-chip {
  border: 1px solid #bfd6ff;
  background: #eff5ff;
  color: #0f4eb8;
}

body.challenge-engine-page .noise-chip {
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #3f5574;
}

body.challenge-engine-page .challenge-engine-hero-panel {
  border-radius: 20px;
  border: 1px solid rgba(186, 210, 248, 0.42);
  background: rgba(8, 20, 48, 0.58);
  box-shadow: 0 24px 54px rgba(4, 11, 34, 0.44);
  padding: var(--ce-space-lg);
}

body.challenge-engine-page .challenge-engine-hero-panel h2 {
  color: #eff5ff;
  margin-bottom: var(--ce-space-xs);
  font-size: clamp(1.1rem, 1.8vw, 1.52rem);
}

body.challenge-engine-page .panel-kicker {
  margin: 0 0 var(--ce-space-2xs);
  color: #b5c8e1;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

body.challenge-engine-page .deal-funnel {
  display: grid;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .deal-funnel-step {
  border: 1px solid rgba(175, 204, 247, 0.32);
  border-radius: 12px;
  background: rgba(7, 18, 45, 0.52);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  padding: 0.62rem 0.75rem;
}

body.challenge-engine-page .deal-funnel-step span {
  color: #dce9ff;
  font-size: 0.84rem;
}

body.challenge-engine-page .deal-funnel-step strong {
  color: #ffffff;
  font-size: 0.82rem;
}

body.challenge-engine-page .panel-note {
  margin: var(--ce-space-sm) 0 0;
  color: #bfd6ff;
  font-size: 0.79rem;
}

body.challenge-engine-page .challenge-quote-strip {
  padding-top: var(--ce-space-xl);
  padding-bottom: var(--ce-space-md);
}

body.challenge-engine-page .quote-strip {
  border-radius: 16px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 31, 72, 0.06);
  padding: 1rem 1.2rem;
  display: grid;
  gap: 0.42rem;
}

body.challenge-engine-page .quote-strip p {
  margin: 0;
  color: #233552;
  font-size: clamp(0.94rem, 1.15vw, 1rem);
  font-weight: 600;
  line-height: 1.58;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

body.challenge-engine-page .quote-strip small {
  display: block;
  margin-top: 0;
  color: #627da4;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 100%;
  overflow-wrap: anywhere;
}

body.challenge-engine-page .challenge-engine-workspace {
  padding-top: var(--ce-space-xl);
}

body.challenge-engine-page .maturity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 276px;
  gap: var(--ce-space-md);
  align-items: start;
}

body.challenge-engine-page .maturity-main {
  display: grid;
  gap: 1.05rem;
}

body.challenge-engine-page .assessment-card,
body.challenge-engine-page .boardroom-brief,
body.challenge-engine-page .results-card,
body.challenge-engine-page .summary-card,
body.challenge-engine-page .scenario-card,
body.challenge-engine-page .simulator-card,
body.challenge-engine-page .roadmap-card,
body.challenge-engine-page .aixo-fit-card,
body.challenge-engine-page .report-card {
  border-radius: 18px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(8, 31, 72, 0.06);
  padding: var(--ce-card-padding);
}

body.challenge-engine-page .output-lock-card {
  border-style: dashed;
  border-color: #c5d4e8;
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
}

body.challenge-engine-page [data-assessment-output][hidden] {
  display: none !important;
}

body.challenge-engine-page .assessment-head,
body.challenge-engine-page .results-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .assessment-live-score {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.5rem 0.66rem;
  min-width: 86px;
}

body.challenge-engine-page .assessment-live-score small {
  display: block;
  color: #627da4;
  font-size: 0.7rem;
}

body.challenge-engine-page .assessment-live-score strong {
  color: #233552;
  font-size: 1.12rem;
}

body.challenge-engine-page .assessment-progress-wrap {
  margin-top: var(--ce-space-sm);
}

body.challenge-engine-page .assessment-progress-bar,
body.challenge-engine-page .rail-progress {
  height: 8px;
  border-radius: 999px;
  background: #dce9ff;
  overflow: hidden;
}

body.challenge-engine-page .assessment-progress-bar span,
body.challenge-engine-page .rail-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1053c2, #5f95f0);
}

body.challenge-engine-page .assessment-progress-wrap p {
  margin: var(--ce-space-2xs) 0 0;
  color: #627da4;
  font-size: 0.82rem;
}

body.challenge-engine-page .assessment-question {
  margin-top: var(--ce-space-md);
}

body.challenge-engine-page .assessment-question h3 {
  margin-bottom: var(--ce-space-2xs);
  color: #233552;
}

body.challenge-engine-page .assessment-question p {
  color: #3f5574;
}

body.challenge-engine-page .question-options {
  margin-top: var(--ce-space-sm);
  display: grid;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .question-option {
  border-radius: 12px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #0a3f96;
  font-weight: 700;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.72rem 0.84rem;
  min-height: 44px;
  box-shadow: none;
}

body.challenge-engine-page .question-option.is-active,
body.challenge-engine-page .question-option[aria-pressed='true'] {
  border-color: #1053c2;
  background: #eff5ff;
}

body.challenge-engine-page .range-question {
  margin-top: var(--ce-space-sm);
}

body.challenge-engine-page .range-question input[type='range'] {
  width: 100%;
  min-height: auto;
  border: 0;
  padding: 0;
}

body.challenge-engine-page .range-value {
  margin: var(--ce-space-xs) 0 0;
  color: #0a3f96;
  font-weight: 700;
}

body.challenge-engine-page .range-scale {
  margin-top: var(--ce-space-xs);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .range-scale span {
  color: #627da4;
  font-size: 0.72rem;
}

body.challenge-engine-page .number-question {
  margin-top: var(--ce-space-sm);
  display: grid;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .number-question input[type='number'] {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #233552;
  min-height: 44px;
  padding: 0.62rem 0.74rem;
  font-size: 0.9rem;
}

body.challenge-engine-page .number-question input[type='number']:focus {
  border-color: #1053c2;
  outline: 2px solid rgba(16, 83, 194, 0.15);
  outline-offset: 0;
}

body.challenge-engine-page .compound-question {
  margin-top: var(--ce-space-sm);
  display: grid;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .assessment-controls {
  margin-top: var(--ce-space-md);
  display: flex;
  justify-content: space-between;
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .assessment-controls .button {
  min-width: 120px;
}

body.challenge-engine-page .assessment-controls .button:disabled {
  opacity: 0.45;
  pointer-events: none;
}

body.challenge-engine-page .boardroom-brief-grid {
  margin-top: var(--ce-space-sm);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .boardroom-brief-grid article {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.8rem 0.9rem;
}

body.challenge-engine-page .boardroom-brief-grid h3 {
  margin-bottom: var(--ce-space-2xs);
  color: #233552;
  font-size: 0.95rem;
}

body.challenge-engine-page .boardroom-brief-grid p {
  margin: 0;
  color: #627da4;
  font-size: 0.84rem;
}

body.challenge-engine-page .confidence-pill {
  border: 1px solid #d6e1f2;
  border-radius: 999px;
  min-height: 32px;
  padding: 0.24rem 0.66rem;
  font-size: 0.74rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

body.challenge-engine-page .confidence-pill.low {
  color: #a11f3a;
  background: #fff0f3;
  border-color: #d6e1f2;
}

body.challenge-engine-page .confidence-pill.medium {
  color: #785910;
  background: #fff7e2;
  border-color: #fff7e2;
}

body.challenge-engine-page .confidence-pill.high {
  color: #0b6540;
  background: #e6f7ef;
  border-color: #c5d4e8;
}

body.challenge-engine-page .score-band-grid {
  margin-top: var(--ce-space-sm);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .benchmark-mode-wrap {
  margin-top: var(--ce-space-sm);
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.72rem 0.86rem;
}

body.challenge-engine-page .benchmark-mode-toggle {
  display: inline-flex;
  gap: var(--ce-space-xs);
  flex-wrap: wrap;
}

body.challenge-engine-page .benchmark-mode-button {
  min-height: 32px;
  border: 1px solid #d6e1f2;
  border-radius: 999px;
  background: #ffffff;
  color: #0a3f96;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.28rem 0.74rem;
  box-shadow: none;
}

body.challenge-engine-page .benchmark-mode-button.is-active,
body.challenge-engine-page .benchmark-mode-button[aria-pressed='true'] {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(145deg, #1053c2 0%, #5f95f0 100%);
}

body.challenge-engine-page .benchmark-meta-strip {
  margin-top: var(--ce-space-xs);
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem 0.66rem;
}

body.challenge-engine-page .benchmark-meta-strip span {
  font-size: 0.76rem;
  color: #3f5574;
}

body.challenge-engine-page .score-tile {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.72rem;
}

body.challenge-engine-page .score-tile small {
  color: #627da4;
}

body.challenge-engine-page .score-tile strong {
  display: block;
  margin-top: var(--ce-space-2xs);
  color: #233552;
  font-size: 1.18rem;
}

body.challenge-engine-page .score-tile p {
  margin: var(--ce-space-2xs) 0 0;
  color: #3f5574;
  font-size: 0.82rem;
}

body.challenge-engine-page .benchmark-block {
  margin-top: var(--ce-space-sm);
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.68rem 0.8rem;
}

body.challenge-engine-page .benchmark-block p {
  margin: 0 0 var(--ce-space-2xs);
}

body.challenge-engine-page .benchmark-track {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: #dce9ff;
  overflow: hidden;
}

body.challenge-engine-page .benchmark-you,
body.challenge-engine-page .benchmark-top {
  position: absolute;
  top: 0;
  bottom: 0;
}

body.challenge-engine-page .benchmark-you {
  left: 0;
  width: 0;
  background: linear-gradient(90deg, #1053c2, #5f95f0);
}

body.challenge-engine-page .benchmark-top {
  width: 2px;
  left: 78%;
  background: #233552;
}

body.challenge-engine-page .benchmark-labels {
  margin-top: var(--ce-space-2xs);
  display: flex;
  justify-content: space-between;
  color: #627da4;
  font-size: 0.78rem;
}

body.challenge-engine-page .radar-heatmap-grid {
  margin-top: var(--ce-space-sm);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .benchmark-context-grid {
  margin-top: var(--ce-space-sm);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .benchmark-context-card {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.72rem 0.78rem;
}

body.challenge-engine-page .benchmark-context-card h3 {
  margin-bottom: 0.28rem;
  color: #0a3f96;
  font-size: 0.88rem;
}

body.challenge-engine-page .benchmark-context-card p {
  margin: 0;
  color: #3f5574;
  font-size: 0.84rem;
}

body.challenge-engine-page .radar-panel,
body.challenge-engine-page .heatmap-panel {
  border: 1px solid #d6e1f2;
  border-radius: 14px;
  background: #f8fbff;
  padding: 0.82rem;
}

body.challenge-engine-page .radar-panel h3,
body.challenge-engine-page .heatmap-panel h3 {
  margin-bottom: var(--ce-space-xs);
  color: #233552;
}

body.challenge-engine-page .radar-ring {
  fill: none;
  stroke: #d6e1f2;
  stroke-width: 1;
}

body.challenge-engine-page .radar-axis {
  stroke: #d6e1f2;
  stroke-width: 1;
}

body.challenge-engine-page .radar-area {
  fill: rgba(36, 114, 220, 0.28);
  stroke: #1053c2;
  stroke-width: 2;
}

body.challenge-engine-page .radar-label {
  fill: #3f5574;
  font-size: 10px;
  font-weight: 700;
}

body.challenge-engine-page .weakness-heatmap {
  display: grid;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .weakness-card {
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.56rem 0.66rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--ce-space-2xs);
  align-items: center;
}

body.challenge-engine-page .weakness-card strong {
  color: #233552;
}

body.challenge-engine-page .weakness-card p {
  margin: 0;
  color: #233552;
  font-weight: 800;
}

body.challenge-engine-page .weakness-card small {
  grid-column: 1 / -1;
  color: #627da4;
}

body.challenge-engine-page .dimension-cards {
  margin-top: var(--ce-space-sm);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .dimension-card {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.68rem;
}

body.challenge-engine-page .dimension-card-head {
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

body.challenge-engine-page .dimension-card-head span {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f9fd;
  color: #0f4eb8;
  font-size: 0.68rem;
  font-weight: 800;
}

body.challenge-engine-page .dimension-card-head strong {
  color: #233552;
  font-size: 0.84rem;
}

body.challenge-engine-page .dimension-card p {
  margin: var(--ce-space-2xs) 0 var(--ce-space-2xs);
  color: #233552;
  font-size: 1.06rem;
  font-weight: 800;
}

body.challenge-engine-page .dimension-card small {
  display: block;
  margin-bottom: var(--ce-space-2xs);
  color: #627da4;
  font-size: 0.74rem;
}

body.challenge-engine-page .dimension-bar {
  height: 6px;
  border-radius: 999px;
  background: #e3ecf8;
  overflow: hidden;
}

body.challenge-engine-page .dimension-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #1053c2, #5f95f0);
}

body.challenge-engine-page .diagnostic-list-grid,
body.challenge-engine-page .scenario-grid,
body.challenge-engine-page .roadmap-grid {
  margin-top: var(--ce-space-sm);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .diagnostic-list-grid article,
body.challenge-engine-page .scenario-grid article,
body.challenge-engine-page .roadmap-grid article,
body.challenge-engine-page .faq-panel {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.78rem;
}

body.challenge-engine-page .explainability-drawer {
  margin-top: var(--ce-space-sm);
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.68rem 0.78rem;
}

body.challenge-engine-page .explainability-drawer summary {
  cursor: pointer;
  font-weight: 800;
  color: #0a3f96;
}

body.challenge-engine-page .explainability-drawer div {
  margin-top: var(--ce-space-xs);
}

body.challenge-engine-page .explainability-drawer p {
  margin: 0 0 var(--ce-space-xs);
  color: #3f5574;
}

body.challenge-engine-page .diagnostic-list {
  margin: 0;
  padding-left: 1rem;
}

body.challenge-engine-page .diagnostic-list li {
  color: #3f5574;
  line-height: 1.5;
}

body.challenge-engine-page .diagnostic-list li + li {
  margin-top: var(--ce-space-2xs);
}

body.challenge-engine-page .combo-key {
  border: 1px solid #d6e1f2;
  border-radius: 999px;
  min-height: 28px;
  padding: 0.16rem 0.56rem;
  color: #0a3f96;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

body.challenge-engine-page .support-mode {
  margin-top: var(--ce-space-xs);
  color: #233552;
  font-weight: 700;
}

body.challenge-engine-page .simulator-impact-grid {
  margin-top: var(--ce-space-sm);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .simulator-impact-grid article {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.68rem;
}

body.challenge-engine-page .simulator-impact-grid small {
  color: #627da4;
}

body.challenge-engine-page .simulator-impact-grid strong {
  display: block;
  margin-top: 0.14rem;
  color: #233552;
  font-size: 1.06rem;
}

body.challenge-engine-page .simulator-controls {
  margin-top: var(--ce-space-sm);
  display: grid;
  gap: var(--ce-space-sm);
}

body.challenge-engine-page .sim-control-row {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.68rem;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: var(--ce-space-sm);
  align-items: center;
}

body.challenge-engine-page .sim-control-row label {
  margin: 0;
  color: #3f5574;
}

body.challenge-engine-page .sim-control-row span {
  color: #0a3f96;
  font-weight: 700;
  min-width: 34px;
  text-align: right;
}

body.challenge-engine-page .before-after-bars {
  margin-top: var(--ce-space-sm);
  display: grid;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .before-after-row {
  border: 1px solid #d6e1f2;
  border-radius: 11px;
  background: #ffffff;
  padding: 0.56rem 0.68rem;
}

body.challenge-engine-page .before-after-row p {
  margin: 0 0 var(--ce-space-2xs);
  color: #3f5574;
  font-weight: 700;
}

body.challenge-engine-page .before-after-track {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: #e3ecf8;
  overflow: hidden;
}

body.challenge-engine-page .before-after-track .before,
body.challenge-engine-page .before-after-track .after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

body.challenge-engine-page .before-after-track .before {
  background: #8fb6ff;
  opacity: 0.55;
}

body.challenge-engine-page .before-after-track .after {
  background: linear-gradient(90deg, #1053c2, #5f95f0);
}

body.challenge-engine-page .before-after-row small {
  display: block;
  margin-top: var(--ce-space-2xs);
  color: #627da4;
}

body.challenge-engine-page .ninety-day-indicator {
  margin-top: var(--ce-space-sm);
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
  color: #0a3f96;
  font-weight: 700;
  padding: 0.66rem 0.8rem;
}

body.challenge-engine-page .intervention-card {
  margin-top: var(--ce-space-sm);
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.68rem 0.8rem;
}

body.challenge-engine-page .intervention-card strong {
  color: #0a3f96;
}

body.challenge-engine-page .intervention-card p {
  margin: var(--ce-space-2xs) 0 0;
  color: #3f5574;
}

body.challenge-engine-page .mapping-table-wrap {
  margin-top: var(--ce-space-sm);
  overflow-x: auto;
}

body.challenge-engine-page .mapping-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

body.challenge-engine-page .mapping-table th,
body.challenge-engine-page .mapping-table td {
  padding: 0.68rem;
  border-bottom: 1px solid #e3ecf8;
  text-align: left;
}

body.challenge-engine-page .mapping-table th {
  color: #0a3f96;
  background: #eff5ff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.challenge-engine-page .mapping-table td {
  color: #3f5574;
  font-size: 0.84rem;
}

body.challenge-engine-page .plan-fit-panel {
  margin-top: var(--ce-space-sm);
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.78rem;
}

body.challenge-engine-page .plan-fit-panel h3 {
  margin-bottom: var(--ce-space-2xs);
}

body.challenge-engine-page .plan-fit-panel p {
  margin-bottom: var(--ce-space-xs);
}

body.challenge-engine-page .plan-fit-panel ul {
  margin: 0;
  padding-left: 1rem;
}

body.challenge-engine-page .plan-fit-chip {
  display: inline-flex;
  margin-left: 0.42rem;
  border-radius: 999px;
  border: 1px solid #c8daf6;
  background: #eef5ff;
  color: #0b4db2;
  padding: 0.1rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
}

body.challenge-engine-page .plan-score-bars {
  margin: 0.65rem 0 0.8rem;
  display: grid;
  gap: 0.46rem;
}

body.challenge-engine-page .plan-score-row p {
  margin: 0 0 0.2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #3f5574;
}

body.challenge-engine-page .plan-score-row strong {
  color: #233552;
}

body.challenge-engine-page .plan-score-track {
  height: 7px;
  border-radius: 999px;
  background: #dbe7fb;
  overflow: hidden;
}

body.challenge-engine-page .plan-score-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1d64d1, #6a9df0);
}

body.challenge-engine-page .plan-score-row.is-active .plan-score-track span {
  background: linear-gradient(90deg, #0f4ab3, #2b7df0);
}

body.challenge-engine-page .report-tabs {
  display: inline-flex;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .report-tab {
  border-radius: 999px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  color: #0a3f96;
  font-size: 0.74rem;
  font-weight: 700;
  min-height: 30px;
  padding: 0.3rem 0.72rem;
  box-shadow: none;
}

body.challenge-engine-page .report-tab.is-active {
  border-color: #1053c2;
  background: #eff5ff;
}

body.challenge-engine-page .report-preview {
  margin-top: var(--ce-space-sm);
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.88rem;
}

body.challenge-engine-page .report-preview h3,
body.challenge-engine-page .report-preview h4 {
  color: #233552;
}

body.challenge-engine-page .report-preview p,
body.challenge-engine-page .report-preview li {
  color: #3f5574;
}

body.challenge-engine-page .report-actions {
  margin-top: var(--ce-space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .stakeholder-invite {
  margin-top: var(--ce-space-sm);
  border-top: 1px solid #e3ecf8;
  padding-top: var(--ce-space-sm);
}

body.challenge-engine-page .stakeholder-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .stakeholder-list {
  margin: var(--ce-space-sm) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--ce-space-xs);
}

body.challenge-engine-page .stakeholder-list li {
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.56rem 0.66rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #3f5574;
}

body.challenge-engine-page .stakeholder-list button {
  min-height: 28px;
  padding: 0.18rem 0.5rem;
  border: 1px solid #d6e1f2;
  border-radius: 999px;
  background: #f8fbff;
  color: #3f5574;
  box-shadow: none;
}

body.challenge-engine-page .maturity-rail {
  position: sticky;
  top: 92px;
  border-radius: 16px;
  border: 1px solid #d6e1f2;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(8, 31, 72, 0.08);
  padding: 1rem;
}

body.challenge-engine-page .maturity-rail h3 {
  margin-bottom: var(--ce-space-xs);
}

body.challenge-engine-page .maturity-rail small {
  color: #627da4;
  font-size: 0.72rem;
}

body.challenge-engine-page .maturity-rail strong {
  display: block;
  color: #233552;
  font-size: 1rem;
}

body.challenge-engine-page .maturity-rail > div + div {
  margin-top: var(--ce-space-xs);
}

body.challenge-engine-page .rail-nav {
  margin-top: var(--ce-space-sm);
  display: grid;
  gap: var(--ce-space-2xs);
}

body.challenge-engine-page .rail-nav a {
  border: 1px solid #d6e1f2;
  border-radius: 9px;
  background: #f8fbff;
  color: #3f5574;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.34rem 0.48rem;
}

body.challenge-engine-page .rail-nav a.is-active {
  border-color: #1053c2;
  background: #eff5ff;
}

body.challenge-engine-page .rail-progress-wrap {
  margin-top: var(--ce-space-sm);
}

body.challenge-engine-page .rail-progress-wrap p {
  margin: var(--ce-space-2xs) 0 0;
  color: #627da4;
  font-size: 0.76rem;
}

body.challenge-engine-page .maturity-rail > .button {
  width: 100%;
  margin-top: var(--ce-space-sm);
}

@media (max-width: 1220px) {
  body.challenge-engine-page .score-band-grid,
  body.challenge-engine-page .simulator-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.challenge-engine-page .benchmark-context-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.challenge-engine-page .dimension-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  body.challenge-engine-page .challenge-engine-hero-grid,
  body.challenge-engine-page .maturity-layout {
    grid-template-columns: 1fr;
  }

  body.challenge-engine-page .maturity-rail {
    position: static;
  }

  body.challenge-engine-page .boardroom-brief-grid,
  body.challenge-engine-page .diagnostic-list-grid,
  body.challenge-engine-page .scenario-grid,
  body.challenge-engine-page .roadmap-grid,
  body.challenge-engine-page .radar-heatmap-grid,
  body.challenge-engine-page .benchmark-context-grid {
    grid-template-columns: 1fr;
  }

  body.challenge-engine-page .maturity-rail > .button {
    width: auto;
  }
}

@media (max-width: 760px) {
  body.challenge-engine-page .challenge-engine-hero {
    height: auto;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  body.challenge-engine-page .challenge-engine-hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  body.challenge-engine-page .score-band-grid,
  body.challenge-engine-page .simulator-impact-grid,
  body.challenge-engine-page .dimension-cards {
    grid-template-columns: 1fr;
  }

  body.challenge-engine-page .sim-control-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  body.challenge-engine-page .stakeholder-form-row {
    grid-template-columns: 1fr;
  }

  body.challenge-engine-page .report-actions {
    flex-direction: column;
  }

  body.challenge-engine-page .report-actions .button,
  body.challenge-engine-page .report-actions a.button {
    width: 100%;
  }
}

/* Challenge Engine Visual System Upgrade */
body.challenge-engine-page {
  --ce-bg-0: #eff5ff;
  --ce-bg-1: #eef4fb;
  --ce-bg-2: #f8fbff;
  --ce-ink-0: #16233a;
  --ce-ink-1: #233552;
  --ce-ink-2: #627da4;
  --ce-line: rgba(148, 170, 208, 0.28);
  --ce-glow: rgba(68, 130, 242, 0.24);
  --ce-radius-lg: 18px;
  --ce-shadow-low: 0 10px 26px rgba(15, 39, 88, 0.06);
  --ce-shadow-mid: 0 18px 36px rgba(12, 32, 74, 0.1);
  --ce-shadow-high: 0 28px 52px rgba(7, 20, 48, 0.18);
  background:
    radial-gradient(74rem 48rem at 10% -10%, rgba(123, 171, 255, 0.22), rgba(123, 171, 255, 0)),
    radial-gradient(62rem 42rem at 92% -20%, rgba(84, 109, 255, 0.16), rgba(84, 109, 255, 0)),
    linear-gradient(180deg, var(--ce-bg-0) 0%, var(--ce-bg-1) 52%, var(--ce-bg-2) 100%);
}

body.challenge-engine-page .challenge-main {
  position: relative;
}

body.challenge-engine-page .challenge-main::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 24% 18%, rgba(73, 129, 246, 0.08) 0, rgba(73, 129, 246, 0) 42%),
    radial-gradient(circle at 82% 36%, rgba(52, 88, 214, 0.1) 0, rgba(52, 88, 214, 0) 36%);
  z-index: 0;
}

body.challenge-engine-page .challenge-main > section {
  position: relative;
  z-index: 1;
}

body.challenge-engine-page .challenge-engine-hero {
  height: calc(100vh - 76px);
  height: calc(100svh - 76px);
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(0.78rem, 1.7vw, 1.28rem) 0 clamp(0.66rem, 1.4vw, 1.04rem);
  box-shadow: var(--ce-shadow-high);
}

body.challenge-engine-page .challenge-engine-hero::before {
  transform: translate3d(0, calc(var(--parallax-shift, 0px) * -0.1), 0);
}

body.challenge-engine-page .challenge-engine-hero-copy p {
  max-width: 54ch;
}

body.challenge-engine-page .hero-boardroom-brief {
  margin-top: 0.74rem;
}

body.challenge-engine-page .hero-brief-white-card {
  border: 1px solid #d6e1f2;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.74rem 0.84rem;
  box-shadow: 0 8px 18px rgba(8, 35, 90, 0.08);
}

body.challenge-engine-page .hero-boardroom-brief h2 {
  margin: 0;
  color: #233552;
  font-size: clamp(0.98rem, 1.1vw, 1.14rem);
}

body.challenge-engine-page .hero-boardroom-brief .boardroom-brief-grid {
  margin-top: 0.52rem;
}

body.challenge-engine-page .hero-brief-white-card .boardroom-brief-grid article {
  background: #f8fbff;
  border-color: #d6e1f2;
  padding: 0.68rem 0.76rem;
}

body.challenge-engine-page .hero-brief-white-card .boardroom-brief-grid p {
  font-size: 0.8rem;
  line-height: 1.45;
}

body.challenge-engine-page .hero-lock-card {
  margin-top: 0.52rem;
  border: 1px solid #dbe6f6;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.62rem 0.7rem;
}

body.challenge-engine-page .hero-lock-card h3 {
  margin: 0 0 0.22rem;
  color: #16345b;
  font-size: 0.86rem;
}

body.challenge-engine-page .hero-lock-card p {
  margin: 0;
  color: #2d4d75;
  font-size: 0.79rem;
  line-height: 1.45;
}

body.challenge-engine-page .hero-metric-strip {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 31rem;
}

body.challenge-engine-page .hero-metric-strip article {
  border: 1px solid rgba(185, 210, 250, 0.3);
  border-radius: 11px;
  background: rgba(10, 24, 58, 0.58);
  padding: 0.52rem 0.6rem;
}

body.challenge-engine-page .hero-metric-strip small {
  display: block;
  color: rgba(190, 213, 247, 0.95);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.challenge-engine-page .hero-metric-strip strong {
  display: block;
  margin-top: 0.1rem;
  color: #f8fbff;
  font-size: 0.98rem;
}

body.challenge-engine-page .challenge-engine-hero-panel {
  backdrop-filter: blur(6px);
}

body.challenge-engine-page .challenge-quote-strip .quote-strip {
  transform: translate3d(0, calc(var(--parallax-shift, 0px) * -0.04), 0);
}

body.challenge-engine-page .assessment-card,
body.challenge-engine-page .boardroom-brief,
body.challenge-engine-page .results-card,
body.challenge-engine-page .summary-card,
body.challenge-engine-page .scenario-card,
body.challenge-engine-page .simulator-card,
body.challenge-engine-page .roadmap-card,
body.challenge-engine-page .aixo-fit-card,
body.challenge-engine-page .report-card {
  border: 1px solid var(--ce-line);
  box-shadow: var(--ce-shadow-low);
}

body.challenge-engine-page .assessment-card:hover,
body.challenge-engine-page .results-card:hover,
body.challenge-engine-page .scenario-card:hover,
body.challenge-engine-page .simulator-card:hover {
  box-shadow: var(--ce-shadow-mid);
}

body.challenge-engine-page .assessment-meta-row {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--ce-ink-2);
  font-size: 0.74rem;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(179, 198, 230, 0.44);
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
}

body.challenge-engine-page .results-head-meta {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
}

body.challenge-engine-page .results-head-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

body.challenge-engine-page .compare-toggle {
  min-height: 36px;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #3f5574;
}

body.challenge-engine-page .compare-toggle input {
  accent-color: #1a62d8;
}

body.challenge-engine-page .previous-run-panel {
  margin-top: 0.66rem;
  border: 1px solid #d6e1f2;
  border-radius: 13px;
  background: linear-gradient(145deg, #eff5ff 0%, #f8fbff 100%);
  padding: 0.62rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.56rem;
}

body.challenge-engine-page .previous-run-panel article {
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #dce9ff;
  padding: 0.52rem 0.58rem;
}

body.challenge-engine-page .previous-run-panel strong {
  display: block;
  margin-top: 0.1rem;
  color: #233552;
  font-size: 1.04rem;
}

body.challenge-engine-page .previous-run-panel p,
body.challenge-engine-page .previous-run-panel small {
  margin: 0;
  color: var(--ce-ink-2);
  font-size: 0.74rem;
}

body.challenge-engine-page .benchmark-trend-strip {
  margin-top: 0.66rem;
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.62rem 0.68rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

body.challenge-engine-page .benchmark-trend-strip article {
  border-radius: 10px;
  border: 1px solid #dce9ff;
  background: #f8fbff;
  padding: 0.48rem 0.52rem;
}

body.challenge-engine-page .trend-track {
  margin-top: 0.28rem;
  height: 8px;
  border-radius: 999px;
  background: #e3ecf8;
  overflow: hidden;
}

body.challenge-engine-page .trend-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1053c2, #5f95f0);
  transition: width 360ms ease;
}

body.challenge-engine-page #trend-peer,
body.challenge-engine-page #trend-top {
  background: linear-gradient(90deg, #627da4, #8fa7c9);
}

body.challenge-engine-page #trend-leader {
  background: linear-gradient(90deg, #233552, #3f5574);
}

body.challenge-engine-page .benchmark-trend-strip p,
body.challenge-engine-page .benchmark-trend-strip small {
  margin: 0.16rem 0 0;
  color: #627da4;
  font-size: 0.74rem;
}

body.challenge-engine-page .heatmap-legend {
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

body.challenge-engine-page .heatmap-legend span {
  border-radius: 999px;
  border: 1px solid #d6e1f2;
  padding: 0.1rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
}

body.challenge-engine-page .heatmap-legend .legend-critical {
  color: #a11f3a;
  background: #fff0f3;
}

body.challenge-engine-page .heatmap-legend .legend-high {
  color: #785910;
  background: #fff7e2;
}

body.challenge-engine-page .heatmap-legend .legend-mid {
  color: #3f5574;
  background: #eff5ff;
}

body.challenge-engine-page .heatmap-legend .legend-low {
  color: #0b6540;
  background: #e6f7ef;
}

body.challenge-engine-page .weakness-heatmap {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.challenge-engine-page .weakness-card {
  gap: 0.42rem;
  align-items: start;
}

body.challenge-engine-page .weakness-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.3rem;
}

body.challenge-engine-page .severity-badge {
  border-radius: 999px;
  border: 1px solid currentcolor;
  padding: 0.02rem 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
}

body.challenge-engine-page .severity-badge.critical {
  color: #a11f3a;
}

body.challenge-engine-page .severity-badge.high {
  color: #785910;
}

body.challenge-engine-page .severity-badge.mid {
  color: #0a3f96;
}

body.challenge-engine-page .severity-badge.low {
  color: #0b6540;
}

body.challenge-engine-page .weakness-meter {
  height: 6px;
  border-radius: 999px;
  background: #e3ecf8;
  overflow: hidden;
}

body.challenge-engine-page .weakness-meter span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f4eb8, #5f95f0);
}

body.challenge-engine-page .reference-cards {
  margin-top: 0.64rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

body.challenge-engine-page .reference-card {
  border: 1px solid #d6e1f2;
  border-radius: 11px;
  background: #ffffff;
  padding: 0.56rem 0.64rem;
}

body.challenge-engine-page .reference-card .ref-metric {
  margin: 0;
  color: #3f5574;
  font-size: 0.76rem;
  font-weight: 700;
}

body.challenge-engine-page .reference-card strong {
  display: block;
  margin-top: 0.15rem;
  color: #233552;
}

body.challenge-engine-page .reference-card .ref-source {
  margin: 0.18rem 0 0;
  color: #627da4;
  font-size: 0.7rem;
}

body.challenge-engine-page .audit-integrity-panel {
  margin-top: 0.75rem;
  border: 1px solid #d6e1f2;
  border-radius: 13px;
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
  padding: 0.66rem 0.72rem;
}

body.challenge-engine-page .audit-integrity-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

body.challenge-engine-page .audit-integrity-head h3 {
  margin: 0;
  font-size: 0.95rem;
}

body.challenge-engine-page .integrity-badge {
  min-height: 24px;
  border-radius: 999px;
  border: 1px solid #c5d4e8;
  background: #f8fbff;
  color: #3f5574;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.08rem 0.45rem;
  display: inline-flex;
  align-items: center;
}

body.challenge-engine-page .integrity-badge.ok {
  color: #0b6540;
  border-color: #c5d4e8;
  background: #e6f7ef;
}

body.challenge-engine-page .integrity-badge.error {
  color: #a11f3a;
  border-color: #d6e1f2;
  background: #fff0f3;
}

body.challenge-engine-page #integrity-note {
  margin: 0.34rem 0 0;
  color: #627da4;
  font-size: 0.78rem;
}

body.challenge-engine-page .audit-metrics-grid {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

body.challenge-engine-page .audit-metrics-grid article {
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.42rem 0.5rem;
}

body.challenge-engine-page .audit-metrics-grid small {
  color: #627da4;
  font-size: 0.68rem;
}

body.challenge-engine-page .audit-metrics-grid strong {
  display: block;
  margin-top: 0.1rem;
  color: #233552;
  font-size: 0.8rem;
}

body.challenge-engine-page .audit-math-table td:last-child {
  font-weight: 700;
}

body.challenge-engine-page .audit-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

body.challenge-engine-page .audit-pdf-gate-form {
  margin-top: 0.56rem;
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.76rem;
}

body.challenge-engine-page .audit-pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.54rem;
}

body.challenge-engine-page .audit-pdf-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #223550;
}

body.challenge-engine-page .audit-pdf-grid input {
  border: 1px solid #c4d7f0;
  border-radius: 10px;
  padding: 0.58rem 0.66rem;
  font-size: 0.88rem;
  color: #122747;
  background: #ffffff;
}

body.challenge-engine-page .audit-pdf-grid input:focus-visible {
  outline: 2px solid rgba(26, 98, 216, 0.34);
  outline-offset: 1px;
}

body.challenge-engine-page .audit-pdf-actions {
  margin-top: 0.62rem;
}

body.challenge-engine-page .audit-pdf-feedback {
  margin: 0.44rem 0 0;
  font-size: 0.8rem;
  color: #2b4a74;
}

body.challenge-engine-page .objection-prob-grid {
  display: grid;
  gap: 0.52rem;
}

body.challenge-engine-page .objection-prob-item {
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.5rem 0.56rem;
}

body.challenge-engine-page .objection-prob-item p {
  margin: 0;
  color: #3f5574;
  font-size: 0.8rem;
}

body.challenge-engine-page .prob-track {
  margin-top: 0.36rem;
  height: 7px;
  border-radius: 999px;
  background: #e3ecf8;
  overflow: hidden;
}

body.challenge-engine-page .prob-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1a62d8, #5f95f0);
  transition: width 360ms ease;
}

body.challenge-engine-page .roadmap-timeline {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

body.challenge-engine-page .roadmap-timeline li {
  position: relative;
  border: 1px solid #dce9ff;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.52rem 0.58rem;
}

body.challenge-engine-page .roadmap-timeline .timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.3rem;
}

body.challenge-engine-page .roadmap-timeline .timeline-step {
  color: #0a3f96;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

body.challenge-engine-page .roadmap-timeline .timeline-owner {
  color: #627da4;
  font-size: 0.68rem;
}

body.challenge-engine-page .roadmap-timeline p {
  margin: 0.18rem 0 0;
  color: #3f5574;
  font-size: 0.8rem;
}

body.challenge-engine-page .simulator-arc-wrap {
  margin-top: 0.72rem;
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
  padding: 0.6rem;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 0.58rem;
}

body.challenge-engine-page #simulator-arc {
  width: 100%;
  height: auto;
}

body.challenge-engine-page #simulator-arc .arc-base {
  fill: none;
  stroke: #dce9ff;
  stroke-width: 12;
  stroke-linecap: round;
}

body.challenge-engine-page #simulator-arc .arc-before {
  fill: none;
  stroke: #5f95f0;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 0 283;
  transition: stroke-dasharray 420ms ease;
}

body.challenge-engine-page #simulator-arc .arc-after {
  fill: none;
  stroke: #1a62d8;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 0 283;
  transition: stroke-dasharray 420ms ease;
}

body.challenge-engine-page .simulator-arc-values {
  display: grid;
  gap: 0.35rem;
}

body.challenge-engine-page .simulator-arc-values p {
  margin: 0;
  color: #3f5574;
  font-size: 0.82rem;
}

body.challenge-engine-page .simulator-arc-values strong {
  color: #233552;
}

body.challenge-engine-page .delta-chip {
  margin-left: 0.38rem;
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  padding: 0.02rem 0.35rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

body.challenge-engine-page .delta-chip.up {
  color: #0b6540;
  background: #e6f7ef;
  border: 1px solid #c5d4e8;
}

body.challenge-engine-page .delta-chip.down {
  color: #a11f3a;
  background: #fff0f3;
  border: 1px solid #d6e1f2;
}

body.challenge-engine-page .mapping-table th {
  position: sticky;
  top: 0;
  z-index: 1;
}

body.challenge-engine-page .mapping-table tbody tr:nth-child(odd) td {
  background: #f8fbff;
}

body.challenge-engine-page .mapping-table tbody tr:hover td {
  background: #eff5ff;
}

body.challenge-engine-page .maturity-rail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.95) 100%);
  border: 1px solid rgba(151, 176, 214, 0.4);
  box-shadow: 0 18px 36px rgba(12, 31, 74, 0.12);
}

body.challenge-engine-page .maturity-rail .button.secondary {
  width: 100%;
  margin-top: 0.55rem;
}

body.challenge-engine-page .rail-last-save {
  margin-top: 0.55rem;
  border-radius: 10px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  padding: 0.45rem 0.55rem;
}

body.challenge-engine-page .rail-last-save p {
  margin: 0.16rem 0 0;
  color: #3f5574;
  font-size: 0.74rem;
  font-weight: 700;
}

body.challenge-engine-page .floating-diagnostic-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 52;
  border: 1px solid rgba(139, 166, 207, 0.56);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(8, 29, 68, 0.16);
  backdrop-filter: blur(8px);
  padding: 0.62rem 0.68rem;
  max-width: 19rem;
}

body.challenge-engine-page .floating-diagnostic-cta p {
  margin: 0;
  color: #233552;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 700;
}

body.challenge-engine-page .floating-cta-actions {
  margin-top: 0.52rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

body.challenge-engine-page .floating-cta-actions .button {
  min-height: 36px;
  padding: 0.3rem 0.5rem;
  font-size: 0.77rem;
}

body.challenge-engine-page .floating-diagnostic-cta.is-complete {
  border-color: rgba(75, 154, 108, 0.48);
}

body.challenge-engine-page .reset-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(8, 19, 45, 0.58);
  display: grid;
  place-items: center;
  padding: 1rem;
}

body.challenge-engine-page .reset-modal-backdrop[hidden] {
  display: none !important;
}

body.challenge-engine-page .reset-modal-dialog {
  width: min(540px, 96vw);
  border-radius: 16px;
  border: 1px solid rgba(165, 187, 223, 0.5);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(7, 21, 50, 0.26);
  padding: 1rem;
}

body.challenge-engine-page .reset-modal-dialog h3 {
  margin-bottom: 0.3rem;
}

body.challenge-engine-page .reset-modal-dialog p {
  margin: 0;
  color: #3f5574;
}

body.challenge-engine-page .reset-modal-actions {
  margin-top: 0.86rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

body.challenge-engine-page .button.danger {
  border-color: #d6e1f2;
  background: #fff0f3;
  color: #a11f3a;
}

body.challenge-engine-page .button.ghost {
  border-color: #d6e1f2;
  background: #ffffff;
  color: #3f5574;
}

body.modal-open {
  overflow: hidden;
}

body.challenge-engine-page .ref-empty {
  margin: 0;
  color: #627da4;
  font-size: 0.76rem;
}

@media (max-width: 1220px) {
  body.challenge-engine-page .previous-run-panel,
  body.challenge-engine-page .benchmark-trend-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.challenge-engine-page .reference-cards,
  body.challenge-engine-page .weakness-heatmap {
    grid-template-columns: 1fr;
  }

  body.challenge-engine-page .audit-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  body.challenge-engine-page .results-head-meta {
    justify-items: start;
  }

  body.challenge-engine-page .floating-diagnostic-cta {
    left: 0.8rem;
    right: 0.8rem;
    max-width: none;
  }
}

@media (max-width: 760px) {
  body.challenge-engine-page .challenge-engine-hero {
    height: auto !important;
    min-height: 0 !important;
    align-items: flex-start;
    padding-top: 1.05rem !important;
    padding-bottom: 0.95rem !important;
  }

  body.challenge-engine-page .challenge-engine-hero-copy h1 {
    font-size: clamp(1.56rem, 7.2vw, 2.06rem) !important;
    line-height: 1.1 !important;
  }

  body.challenge-engine-page .challenge-engine-hero-copy p {
    max-width: 100% !important;
    font-size: 0.92rem !important;
    line-height: 1.54 !important;
  }

  body.challenge-engine-page .hero-brief-white-card {
    padding: 0.62rem 0.66rem !important;
  }

  body.challenge-engine-page .hero-brief-white-card .boardroom-brief-grid {
    grid-template-columns: 1fr !important;
    gap: 0.44rem !important;
  }

  body.challenge-engine-page .hero-brief-white-card .boardroom-brief-grid article {
    padding: 0.56rem 0.6rem !important;
  }

  body.challenge-engine-page .hero-brief-white-card .boardroom-brief-grid h3 {
    font-size: 0.83rem !important;
    line-height: 1.25 !important;
  }

  body.challenge-engine-page .hero-brief-white-card .boardroom-brief-grid p,
  body.challenge-engine-page .hero-lock-card p {
    font-size: 0.75rem !important;
    line-height: 1.42 !important;
  }

  body.challenge-engine-page .hero-metric-strip,
  body.challenge-engine-page .benchmark-trend-strip,
  body.challenge-engine-page .previous-run-panel,
  body.challenge-engine-page .floating-cta-actions {
    grid-template-columns: 1fr;
  }

  body.challenge-engine-page .simulator-arc-wrap {
    grid-template-columns: 1fr;
  }

  body.challenge-engine-page .assessment-meta-row {
    flex-direction: column;
    gap: 0.24rem;
  }

  body.challenge-engine-page .audit-integrity-head,
  body.challenge-engine-page .audit-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  body.challenge-engine-page .audit-metrics-grid {
    grid-template-columns: 1fr;
  }

  body.challenge-engine-page .audit-pdf-grid {
    grid-template-columns: 1fr;
  }

  body.challenge-engine-page .results-head-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.challenge-engine-page .challenge-engine-hero::before,
  body.challenge-engine-page .challenge-quote-strip .quote-strip,
  body.challenge-engine-page .trend-track span,
  body.challenge-engine-page .prob-track span {
    transform: none !important;
    transition: none !important;
  }
}

/* Services Page Premium Rewrite */
body.services-page {
  --sp-ink-1: #16233a;
  --sp-ink-2: #3f5574;
  --sp-ink-3: #627da4;
  --sp-line: #d6e1f2;
  --sp-bg-1: #eff5ff;
  --sp-bg-2: #eef4fb;
  --sp-card: #ffffff;
  --sp-shadow: 0 14px 30px rgba(7, 27, 70, 0.06);
  background:
    radial-gradient(70rem 42rem at 8% -12%, rgba(119, 164, 245, 0.18), rgba(119, 164, 245, 0)),
    radial-gradient(62rem 38rem at 96% -18%, rgba(82, 110, 226, 0.14), rgba(82, 110, 226, 0)),
    linear-gradient(180deg, var(--sp-bg-1) 0%, var(--sp-bg-2) 62%, #f8fbff 100%);
}

body.services-page .services-main {
  overflow: hidden;
}

body.services-page .section {
  padding: clamp(2rem, 3.6vw, 3rem) 0;
}

body.services-page .services-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(64rem 30rem at 8% -16%, rgba(178, 93, 168, 0.3), rgba(178, 93, 168, 0)),
    radial-gradient(54rem 28rem at 94% -8%, rgba(66, 135, 255, 0.24), rgba(66, 135, 255, 0)),
    linear-gradient(132deg, #0b172b 0%, #071b46 55%, #233552 100%);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  padding: clamp(2rem, 3.5vw, 2.8rem) 0 clamp(1.6rem, 3vw, 2.2rem);
}

body.services-page .services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
}

body.services-page .services-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1rem, 1.8vw, 1.4rem);
  align-items: center;
}

body.services-page .services-hero-copy h1 {
  color: #eff5ff;
  margin-bottom: 0.72rem;
  font-size: clamp(2rem, 3.9vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

body.services-page .services-hero-copy p {
  color: rgba(217, 230, 252, 0.95);
  max-width: 58ch;
  line-height: 1.62;
}

body.services-page .services-thesis-line {
  border-left: 3px solid rgba(151, 190, 248, 0.9);
  padding-left: 0.62rem;
  color: #dce9ff;
  font-weight: 600;
  margin-bottom: 0.72rem;
}

body.services-page .services-keyline {
  margin: 0.72rem 0 0;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

body.services-page .services-hero-actions {
  margin-top: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

body.services-page .services-hero .button.secondary {
  border: 1px solid rgba(178, 207, 247, 0.7);
  color: #0f4eb8;
  background: #ffffff;
}

body.services-page .services-proof-chips {
  margin-top: 0.86rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

body.services-page .services-proof-chips span {
  border: 1px solid rgba(171, 201, 245, 0.62);
  border-radius: 999px;
  background: rgba(8, 24, 58, 0.56);
  color: #dce9ff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.2rem 0.58rem;
}

body.services-page .services-hero-panel {
  border-radius: 20px;
  border: 1px solid rgba(177, 206, 247, 0.42);
  background: rgba(8, 20, 48, 0.56);
  box-shadow: 0 24px 52px rgba(7, 18, 44, 0.42);
  padding: 1rem;
  backdrop-filter: blur(4px);
}

body.services-page .services-panel-kicker {
  margin: 0 0 0.22rem;
  color: #bfd6ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.services-page .services-hero-panel h2 {
  color: #eff5ff;
  font-size: clamp(1.05rem, 1.7vw, 1.44rem);
  margin-bottom: 0.56rem;
}

body.services-page .services-panel-list {
  margin: 0 0 0.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

body.services-page .services-panel-list li {
  border: 1px solid rgba(161, 193, 241, 0.34);
  border-radius: 11px;
  background: rgba(8, 22, 53, 0.5);
  padding: 0.52rem 0.62rem;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.5rem;
  align-items: start;
}

body.services-page .services-panel-list strong {
  color: #ffffff;
  font-size: 0.82rem;
}

body.services-page .services-panel-list span {
  color: #dce9ff;
  font-size: 0.84rem;
  line-height: 1.45;
}

body.services-page .services-trust-strip {
  padding-top: 1.1rem;
  padding-bottom: 1.2rem;
}

body.services-page .services-trust-inner {
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--sp-shadow);
  padding: 0.86rem 0.98rem;
}

body.services-page .services-trust-inner p {
  margin: 0;
  color: #233552;
  font-weight: 600;
  font-size: 0.95rem;
}

body.services-page .services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 0.92rem;
  align-items: start;
}

body.services-page .services-main-column {
  display: grid;
  gap: 0.92rem;
}

body.services-page .services-card {
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  background: var(--sp-card);
  box-shadow: var(--sp-shadow);
  padding: clamp(0.9rem, 1.4vw, 1.15rem);
}

body.services-page .services-card h2 {
  margin: 0 0 0.52rem;
  color: var(--sp-ink-1);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
}

body.services-page .services-card h3 {
  margin: 0 0 0.34rem;
  color: #0a3f96;
  font-size: 1rem;
}

body.services-page .services-card p {
  color: var(--sp-ink-2);
  max-width: 72ch;
}

body.services-page .services-why {
  margin-bottom: 0.66rem;
  color: #3f5574;
  font-size: 0.89rem;
  font-weight: 600;
}

body.services-page .services-engine-grid,
body.services-page .services-cadence-grid,
body.services-page .services-scope-grid,
body.services-page .services-question-grid,
body.services-page .services-objection-grid,
body.services-page .services-coverage-grid,
body.services-page .services-proof-grid,
body.services-page .services-path-grid,
body.services-page .services-phase-grid,
body.services-page .services-definition-grid {
  display: grid;
  gap: 0.68rem;
}

body.services-page .services-engine-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.services-page .services-cadence-grid,
body.services-page .services-scope-grid,
body.services-page .services-proof-grid,
body.services-page .services-definition-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.services-page .services-question-grid,
body.services-page .services-objection-grid,
body.services-page .services-coverage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.services-page .services-path-grid,
body.services-page .services-phase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.services-page .services-path-grid article,
body.services-page .services-proof-grid article,
body.services-page .services-objection-grid article,
body.services-page .services-question-grid article,
body.services-page .services-engine-card,
body.services-page .services-phase-grid article,
body.services-page .services-cadence-grid article,
body.services-page .services-scope-grid article,
body.services-page .services-coverage-grid article,
body.services-page .services-definition-grid article {
  border: 1px solid var(--sp-line);
  border-radius: 13px;
  background: #f8fbff;
  padding: 0.74rem;
}

body.services-page .services-stall-note {
  margin-top: 0.52rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  color: #627da4;
  font-style: italic;
}

body.services-page .services-list {
  margin: 0;
  padding-left: 1rem;
}

body.services-page .services-list li {
  color: var(--sp-ink-2);
  line-height: 1.5;
}

body.services-page .services-list li + li {
  margin-top: 0.22rem;
}

body.services-page .services-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

body.services-page .services-checklist li {
  border: 1px solid var(--sp-line);
  border-radius: 11px;
  background: #f8fbff;
  padding: 0.6rem 0.7rem 0.6rem 2rem;
  color: #3f5574;
  position: relative;
}

body.services-page .services-checklist li::before {
  content: '';
  position: absolute;
  left: 0.66rem;
  top: 0.68rem;
  width: 11px;
  height: 6px;
  border-left: 2px solid #1a62d8;
  border-bottom: 2px solid #1a62d8;
  transform: rotate(-45deg);
}

body.services-page .services-table {
  border: 1px solid var(--sp-line);
}

body.services-page .services-table th {
  background: #eff5ff;
  color: #0a3f96;
}

body.services-page .services-inline-actions {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

body.services-page .services-final-cta {
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
}

body.services-page .services-rail {
  position: sticky;
  top: 90px;
  border: 1px solid var(--sp-line);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--sp-shadow);
  padding: 0.84rem;
}

body.services-page .services-rail h3 {
  margin: 0 0 0.54rem;
  color: #233552;
}

body.services-page .services-rail-meta + .services-rail-meta {
  margin-top: 0.42rem;
}

body.services-page .services-rail-meta small {
  display: block;
  color: #627da4;
  font-size: 0.72rem;
}

body.services-page .services-rail-meta strong {
  color: #0a3f96;
  font-size: 0.86rem;
}

body.services-page .services-rail-nav {
  margin-top: 0.74rem;
  display: grid;
  gap: 0.32rem;
}

body.services-page .services-rail-nav a {
  border: 1px solid #d6e1f2;
  border-radius: 9px;
  background: #f8fbff;
  color: #3f5574;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 700;
  padding: 0.3rem 0.46rem;
}

body.services-page .services-rail-nav a:hover,
body.services-page .services-rail-nav a.is-active {
  border-color: #1053c2;
  background: #eff5ff;
  color: #0a3f96;
}

body.services-page .services-rail-actions {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.42rem;
}

body.services-page .services-rail-actions .button {
  width: 100%;
}

@media (max-width: 1160px) {
  body.services-page .services-cadence-grid,
  body.services-page .services-scope-grid,
  body.services-page .services-proof-grid,
  body.services-page .services-definition-grid,
  body.services-page .services-path-grid,
  body.services-page .services-phase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  body.services-page .services-layout,
  body.services-page .services-hero-grid,
  body.services-page .services-engine-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .services-rail {
    position: static;
  }
}

@media (max-width: 760px) {
  body.services-page .services-hero {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-top: 1.6rem;
  }

  body.services-page .services-hero-copy h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.6rem);
    max-width: 100%;
  }

  body.services-page .services-hero-copy p {
    max-width: 100%;
  }

  body.services-page .services-hero-copy p:not(.services-thesis-line):not(.services-keyline) {
    font-size: 0.95rem;
  }

  body.services-page .services-cadence-grid,
  body.services-page .services-scope-grid,
  body.services-page .services-proof-grid,
  body.services-page .services-definition-grid,
  body.services-page .services-question-grid,
  body.services-page .services-objection-grid,
  body.services-page .services-coverage-grid,
  body.services-page .services-path-grid,
  body.services-page .services-phase-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .services-inline-actions,
  body.services-page .services-hero-actions {
    flex-direction: column;
  }

  body.services-page .services-inline-actions .button,
  body.services-page .services-hero-actions .button {
    width: 100%;
  }
}

@media print {
  body.services-page {
    background: #ffffff !important;
  }

  body.services-page .site-header,
  body.services-page .footer,
  body.services-page .services-rail,
  body.services-page .sticky-cta,
  body.services-page .services-hero-actions,
  body.services-page .services-inline-actions,
  body.services-page .services-proof-chips,
  body.services-page .nav-toggle {
    display: none !important;
  }

  body.services-page .services-hero {
    background: #ffffff !important;
    border-radius: 0;
    color: #16233a;
    padding: 0 0 0.8rem;
    box-shadow: none;
  }

  body.services-page .services-hero::before {
    display: none;
  }

  body.services-page .services-hero-copy h1,
  body.services-page .services-hero-copy p,
  body.services-page .services-keyline,
  body.services-page .services-thesis-line {
    color: #16233a !important;
  }

  body.services-page .services-layout {
    grid-template-columns: 1fr;
  }

  body.services-page .services-card {
    box-shadow: none;
    break-inside: avoid;
  }
}

/* Services v2 Premium */
body.services-v2 {
  --sv2-ink-1: #16233a;
  --sv2-ink-2: #3f5574;
  --sv2-ink-3: #627da4;
  --sv2-line: #d6e1f2;
  --sv2-bg-1: #f8fbff;
  --sv2-bg-2: #eef4fb;
  --sv2-card: #ffffff;
  --sv2-shadow: 0 14px 30px rgba(8, 28, 68, 0.06);
  background:
    radial-gradient(68rem 42rem at 6% -8%, rgba(124, 167, 245, 0.18), rgba(124, 167, 245, 0)),
    radial-gradient(54rem 34rem at 94% -14%, rgba(83, 108, 225, 0.12), rgba(83, 108, 225, 0)),
    linear-gradient(180deg, var(--sv2-bg-1) 0%, var(--sv2-bg-2) 56%, #f8fbff 100%);
}

body.services-v2 .sv2-main-shell {
  overflow: hidden;
}

body.services-v2 .sv2-hero {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  background:
    radial-gradient(58rem 26rem at 8% -16%, rgba(188, 95, 170, 0.28), rgba(188, 95, 170, 0)),
    radial-gradient(52rem 26rem at 94% -8%, rgba(64, 133, 255, 0.24), rgba(64, 133, 255, 0)),
    linear-gradient(134deg, #0b172b 0%, #071b46 56%, #233552 100%);
  padding: clamp(1.8rem, 3.2vw, 2.6rem) 0 clamp(1.5rem, 2.6vw, 2rem);
}

body.services-v2 .sv2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.26;
}

body.services-v2 .sv2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  align-items: center;
}

body.services-v2 .sv2-hero-copy h1 {
  color: #eff5ff;
  margin-bottom: 0.62rem;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

body.services-v2 .sv2-hero-copy p {
  margin-bottom: 0.68rem;
  color: rgba(218, 231, 253, 0.95);
  max-width: 56ch;
  font-size: clamp(0.96rem, 1.16vw, 1.06rem);
}

body.services-v2 .sv2-hero-keyline {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.96rem;
  margin-bottom: 0.74rem;
}

body.services-v2 .sv2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

body.services-v2 .sv2-hero .button.secondary {
  border: 1px solid rgba(177, 206, 246, 0.7);
  color: #0f4eb8;
  background: #ffffff;
}

body.services-v2 .sv2-hero-trust {
  margin-top: 0.76rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

body.services-v2 .sv2-hero-trust span {
  border: 1px solid rgba(169, 200, 246, 0.62);
  border-radius: 999px;
  background: rgba(10, 24, 56, 0.56);
  color: #dce9ff;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.2rem 0.56rem;
}

body.services-v2 .sv2-hero-panel {
  border-radius: 18px;
  border: 1px solid rgba(173, 202, 245, 0.42);
  background: rgba(8, 20, 47, 0.56);
  box-shadow: 0 24px 50px rgba(6, 17, 40, 0.42);
  padding: 0.96rem;
}

body.services-v2 .sv2-hero-panel-kicker {
  margin: 0 0 0.2rem;
  color: #b5c8e1;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.services-v2 .sv2-hero-panel ul {
  margin: 0 0 0.72rem;
  padding-left: 1rem;
}

body.services-v2 .sv2-hero-panel li {
  color: #dce9ff;
  line-height: 1.48;
}

body.services-v2 .sv2-content {
  padding-top: clamp(1.5rem, 2.6vw, 2.2rem);
}

body.services-v2 .sv2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 264px;
  gap: 0.92rem;
  align-items: start;
}

body.services-v2 .sv2-main {
  display: grid;
  gap: 0.88rem;
}

body.services-v2 .sv2-section-card,
body.services-v2 .sv2-section-band {
  border: 1px solid rgba(216, 227, 244, 0.55);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  box-shadow: 0 10px 22px rgba(8, 28, 68, 0.04);
  backdrop-filter: blur(2px);
  padding: clamp(1rem, 1.5vw, 1.25rem);
}

body.services-v2 .sv2-section-head {
  margin-bottom: 0.62rem;
}

body.services-v2 .sv2-section-head h2 {
  margin: 0.22rem 0 0;
  color: var(--sv2-ink-1);
  font-size: clamp(1.2rem, 1.8vw, 1.62rem);
}

body.services-v2 .sv2-summary-grid,
body.services-v2 .sv2-scope-grid,
body.services-v2 .sv2-cadence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

body.services-v2 .sv2-summary-grid article,
body.services-v2 .sv2-scope-grid article,
body.services-v2 .sv2-cadence-grid article,
body.services-v2 .sv2-path-grid article {
  border: 0;
  border-left: 3px solid #c5d4e8;
  border-radius: 12px;
  background: rgba(247, 251, 255, 0.84);
  padding: 0.8rem 0.84rem;
}

body.services-v2 .sv2-summary-grid p,
body.services-v2 .sv2-scope-grid p,
body.services-v2 .sv2-cadence-grid p,
body.services-v2 .sv2-path-grid p {
  margin: 0;
  color: var(--sv2-ink-2);
}

body.services-v2 .sv2-stage-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.62rem;
}

body.services-v2 .sv2-stage-tabs button {
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #3f5574;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: none;
  padding: 0.34rem 0.4rem;
}

body.services-v2 .sv2-stage-tabs button.is-active,
body.services-v2 .sv2-stage-tabs button[aria-selected='true'] {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, #1053c2 0%, #5f95f0 100%);
}

body.services-v2 .sv2-stage-panel {
  border: 1px solid rgba(210, 224, 243, 0.72);
  border-radius: 12px;
  background:
    radial-gradient(32rem 10rem at 0% 0%, rgba(149, 193, 255, 0.16), rgba(149, 193, 255, 0)),
    #f8fbff;
  padding: 0.82rem;
}

body.services-v2 .sv2-stage-panel h3 {
  margin-bottom: 0.44rem;
  color: #0a3f96;
}

body.services-v2 .sv2-om-grid {
  display: grid;
  gap: 0.42rem;
}

body.services-v2 .sv2-om-grid p {
  margin: 0;
  color: var(--sv2-ink-2);
}

body.services-v2 .sv2-library-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 0.62rem;
}

body.services-v2 .sv2-library-toggle button {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #0a3f96;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: none;
  padding: 0.26rem 0.66rem;
}

body.services-v2 .sv2-library-toggle button.is-active,
body.services-v2 .sv2-library-toggle button[aria-selected='true'] {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, #1053c2 0%, #5f95f0 100%);
}

body.services-v2 .sv2-library-panel {
  border: 1px solid rgba(210, 224, 243, 0.72);
  border-radius: 12px;
  background:
    radial-gradient(32rem 10rem at 100% 0%, rgba(149, 193, 255, 0.14), rgba(149, 193, 255, 0)),
    #f8fbff;
  padding: 0.82rem;
}

body.services-v2 .sv2-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

body.services-v2 .sv2-library-grid h3 {
  margin-bottom: 0.34rem;
  color: #0a3f96;
}

body.services-v2 .sv2-list {
  margin: 0;
  padding-left: 1rem;
}

body.services-v2 .sv2-list li {
  color: var(--sv2-ink-2);
  line-height: 1.48;
}

body.services-v2 .sv2-list li + li {
  margin-top: 0.22rem;
}

body.services-v2 .sv2-section-band {
  background:
    radial-gradient(46rem 18rem at 8% -24%, rgba(138, 183, 255, 0.22), rgba(138, 183, 255, 0)),
    linear-gradient(145deg, #071b46 0%, #233552 100%);
  border-color: rgba(177, 205, 246, 0.35);
  box-shadow: 0 22px 42px rgba(8, 21, 49, 0.2);
}

body.services-v2 .sv2-section-band h2 {
  color: #eff5ff;
  margin: 0.16rem 0 0.36rem;
}

body.services-v2 .sv2-section-band p {
  color: #dce9ff;
  max-width: 64ch;
}

body.services-v2 .sv2-domain-chips {
  margin-top: 0.64rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

body.services-v2 .sv2-domain-chips span {
  border: 1px solid rgba(177, 204, 245, 0.5);
  border-radius: 999px;
  background: rgba(7, 21, 50, 0.52);
  color: #dce9ff;
  padding: 0.2rem 0.56rem;
  font-size: 0.73rem;
  font-weight: 700;
}

body.services-v2 .sv2-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

body.services-v2 .sv2-path-grid .button {
  margin-top: 0.56rem;
}

body.services-v2 .sv2-cta-card {
  background:
    radial-gradient(36rem 14rem at 0% 0%, rgba(120, 171, 249, 0.24), rgba(120, 171, 249, 0)),
    linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
}

body.services-v2 .sv2-cta-card h2 {
  margin-bottom: 0.62rem;
  max-width: 56ch;
}

body.services-v2 .sv2-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

body.services-v2 .sv2-rail {
  position: sticky;
  top: 90px;
  border: 1px solid rgba(216, 227, 244, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(8, 28, 68, 0.06);
  backdrop-filter: blur(3px);
  padding: 0.82rem;
}

body.services-v2 .sv2-rail h3 {
  margin: 0 0 0.5rem;
  color: #0a3f96;
}

body.services-v2 .sv2-rail-progress {
  height: 8px;
  border-radius: 999px;
  background: #e3ecf8;
  overflow: hidden;
}

body.services-v2 .sv2-rail-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1053c2, #5f95f0);
}

body.services-v2 #sv2-rail-progress-label {
  margin: 0.24rem 0 0.62rem;
  color: #627da4;
  font-size: 0.76rem;
  font-weight: 700;
}

body.services-v2 .sv2-rail-nav {
  display: grid;
  gap: 0.28rem;
}

body.services-v2 .sv2-rail-nav a {
  border: 1px solid #d6e1f2;
  border-radius: 9px;
  background: rgba(248, 251, 255, 0.9);
  color: #3f5574;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.46rem;
}

body.services-v2 .sv2-main > .sv2-section-card,
body.services-v2 .sv2-main > .sv2-section-band {
  position: relative;
  overflow: hidden;
}

body.services-v2 .sv2-main > .sv2-section-card::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 84, 190, 0.35), rgba(78, 164, 255, 0.08));
}

body.services-v2 .sv2-rail-nav a.is-active {
  border-color: #1053c2;
  background: #eff5ff;
  color: #0a3f96;
}

body.services-v2 .sv2-rail-actions {
  margin-top: 0.68rem;
  display: grid;
  gap: 0.4rem;
}

body.services-v2 .sv2-rail-actions .button {
  width: 100%;
}

@media (max-width: 1120px) {
  body.services-v2 .sv2-summary-grid,
  body.services-v2 .sv2-scope-grid,
  body.services-v2 .sv2-cadence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.services-v2 .sv2-stage-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body.services-v2 .sv2-layout,
  body.services-v2 .sv2-hero-grid {
    grid-template-columns: 1fr;
  }

  body.services-v2 .sv2-rail {
    position: static;
  }
}

@media (max-width: 760px) {
  body.services-v2 .sv2-hero {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-top: 1.55rem;
  }

  body.services-v2 .sv2-hero-copy h1 {
    font-size: clamp(1.82rem, 8.3vw, 2.52rem);
    max-width: 100%;
  }

  body.services-v2 .sv2-stage-tabs,
  body.services-v2 .sv2-summary-grid,
  body.services-v2 .sv2-scope-grid,
  body.services-v2 .sv2-cadence-grid,
  body.services-v2 .sv2-library-grid,
  body.services-v2 .sv2-path-grid {
    grid-template-columns: 1fr;
  }

  body.services-v2 .sv2-hero-actions,
  body.services-v2 .sv2-cta-actions {
    flex-direction: column;
  }

  body.services-v2 .sv2-hero-actions .button,
  body.services-v2 .sv2-cta-actions .button {
    width: 100%;
  }
}

@media print {
  body.services-v2 {
    background: #ffffff !important;
  }

  body.services-v2 .site-header,
  body.services-v2 .footer,
  body.services-v2 .sv2-rail,
  body.services-v2 .sticky-cta,
  body.services-v2 .sv2-hero-actions,
  body.services-v2 .sv2-cta-actions,
  body.services-v2 .sv2-hero-trust,
  body.services-v2 .nav-toggle {
    display: none !important;
  }

  body.services-v2 .sv2-hero {
    background: #ffffff !important;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0.6rem;
  }

  body.services-v2 .sv2-hero::before {
    display: none;
  }

  body.services-v2 .sv2-hero-copy h1,
  body.services-v2 .sv2-hero-copy p,
  body.services-v2 .sv2-hero-keyline {
    color: #16233a !important;
  }

  body.services-v2 .sv2-layout {
    grid-template-columns: 1fr;
  }

  body.services-v2 .sv2-section-card,
  body.services-v2 .sv2-section-band {
    box-shadow: none;
    break-inside: avoid;
  }
}

/* Methodology v2 */
body.methodology-v2 {
  --meth-ink-1: #16233a;
  --meth-ink-2: #3f5574;
  --meth-line: rgba(207, 221, 241, 0.92);
  --meth-soft: #eef4fb;
  background:
    radial-gradient(70rem 44rem at 8% -12%, rgba(120, 168, 244, 0.18), rgba(120, 168, 244, 0)),
    radial-gradient(56rem 34rem at 92% -16%, rgba(81, 110, 221, 0.14), rgba(81, 110, 221, 0)),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 58%, #f8fbff 100%);
}

body.methodology-v2 .meth2-main {
  overflow: hidden;
}

body.methodology-v2 .meth2-hero {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  background:
    radial-gradient(52rem 26rem at 8% -20%, rgba(193, 104, 173, 0.28), rgba(193, 104, 173, 0)),
    radial-gradient(48rem 24rem at 92% -10%, rgba(67, 138, 255, 0.22), rgba(67, 138, 255, 0)),
    linear-gradient(133deg, #0b172b 0%, #071b46 52%, #233552 100%);
  padding: clamp(2rem, 3.2vw, 2.7rem) 0 clamp(1.6rem, 2.7vw, 2.1rem);
}

body.methodology-v2 .meth2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.24;
}

body.methodology-v2 .meth2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(0.95rem, 1.9vw, 1.4rem);
  align-items: center;
}

body.methodology-v2 .meth2-hero-copy h1 {
  color: #f8fbff;
  margin-bottom: 0.68rem;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 17ch;
}

body.methodology-v2 .meth2-hero-copy p {
  color: rgba(220, 232, 250, 0.96);
  margin-bottom: 0.74rem;
  max-width: 60ch;
}

body.methodology-v2 .meth2-hero-note {
  color: #ffffff;
  font-weight: 700;
}

body.methodology-v2 .meth2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

body.methodology-v2 .meth2-hero-panel {
  border: 1px solid rgba(170, 199, 242, 0.45);
  border-radius: 18px;
  background: rgba(8, 20, 49, 0.58);
  box-shadow: 0 24px 52px rgba(7, 18, 42, 0.4);
  padding: 1rem;
}

body.methodology-v2 .meth2-kicker {
  margin: 0 0 0.22rem;
  color: #b5c8e1;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

body.methodology-v2 .meth2-hero-panel ul {
  margin: 0;
  padding-left: 1rem;
}

body.methodology-v2 .meth2-hero-panel li {
  color: #dce9ff;
  line-height: 1.5;
}

body.methodology-v2 .meth2-content {
  padding-top: clamp(1.55rem, 2.7vw, 2.25rem);
}

body.methodology-v2 .meth2-section-intro {
  margin-bottom: 0.95rem;
}

body.methodology-v2 .meth2-section-intro h2 {
  color: var(--meth-ink-1);
  margin: 0.2rem 0 0.36rem;
}

body.methodology-v2 .meth2-section-intro p {
  color: var(--meth-ink-2);
  max-width: 62ch;
}

body.methodology-v2 .meth2-anchor-section {
  padding: 0.85rem 0 0.35rem;
}

body.methodology-v2 .meth2-anchor-strip {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid var(--meth-line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.9));
  box-shadow: 0 8px 18px rgba(8, 30, 74, 0.05);
  padding: 0.26rem;
}

body.methodology-v2 .meth2-anchor-strip::-webkit-scrollbar {
  display: none;
}

body.methodology-v2 .meth2-anchor-strip a {
  flex: 0 0 auto;
  text-decoration: none;
  color: #3f5574;
  font-family: 'Sora', 'Plus Jakarta Sans', 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.32rem 0.62rem;
}

body.methodology-v2 .meth2-anchor-strip a:hover {
  border-color: #bfd6ff;
  background: #eff5ff;
}

body.methodology-v2 .meth2-stage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.66rem;
}

body.methodology-v2 .meth2-stage {
  position: relative;
  border: 1px solid var(--meth-line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 254, 255, 0.86));
  box-shadow: 0 10px 24px rgba(8, 31, 74, 0.05);
  padding: 0.86rem;
}

body.methodology-v2 .meth2-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0.82rem;
  right: 0.82rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 84, 189, 0.5), rgba(78, 166, 255, 0.12));
}

body.methodology-v2 .meth2-stage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1053c2, #5f95f0);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
}

body.methodology-v2 .meth2-stage h3 {
  margin: 0.5rem 0 0.38rem;
  color: #0a3f96;
}

body.methodology-v2 .meth2-stage-label {
  margin: 0 0 0.2rem;
  color: #0a3f96;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.methodology-v2 .meth2-stage ul {
  margin: 0 0 0.52rem;
  padding-left: 1rem;
}

body.methodology-v2 .meth2-stage li {
  color: var(--meth-ink-2);
  line-height: 1.44;
}

body.methodology-v2 .meth2-stage p {
  margin: 0;
  color: var(--meth-ink-2);
}

body.methodology-v2 .meth2-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

body.methodology-v2 .meth2-principle-grid article {
  border: 0;
  border-left: 3px solid #b5c8e1;
  border-radius: 12px;
  background: rgba(247, 251, 255, 0.9);
  box-shadow: 0 8px 18px rgba(8, 30, 74, 0.04);
  padding: 0.78rem 0.84rem;
}

body.methodology-v2 .meth2-principle-grid h3 {
  margin-bottom: 0.34rem;
  color: #0a3f96;
}

body.methodology-v2 .meth2-principle-grid p {
  margin: 0;
  color: var(--meth-ink-2);
}

body.methodology-v2 .meth2-artifact-shell {
  border: 1px solid var(--meth-line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 253, 255, 0.86));
  box-shadow: 0 12px 26px rgba(8, 30, 74, 0.05);
  padding: 0.8rem;
}

body.methodology-v2 .meth2-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 0.68rem;
}

body.methodology-v2 .meth2-tabs button {
  min-height: 35px;
  border-radius: 999px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #3f5574;
  font-family: 'Sora', 'Plus Jakarta Sans', 'IBM Plex Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.24rem 0.72rem;
}

body.methodology-v2 .meth2-tabs button.is-active,
body.methodology-v2 .meth2-tabs button[aria-selected='true'] {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #1053c2 0%, #5f95f0 100%);
  box-shadow: 0 10px 18px rgba(9, 68, 157, 0.22);
}

body.methodology-v2 .meth2-artifact-panel {
  border: 1px solid var(--meth-line);
  border-radius: 12px;
  background:
    radial-gradient(32rem 11rem at 100% 0%, rgba(142, 189, 255, 0.15), rgba(142, 189, 255, 0)),
    #f8fbff;
  padding: 0.82rem;
}

body.methodology-v2 .meth2-artifact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

body.methodology-v2 .meth2-artifact-grid h3 {
  margin: 0 0 0.28rem;
  color: #0a3f96;
  font-size: 0.92rem;
}

body.methodology-v2 .meth2-artifact-grid p {
  margin: 0 0 0.5rem;
  color: var(--meth-ink-2);
}

body.methodology-v2 .meth2-artifact-grid ul {
  margin: 0;
  padding-left: 1rem;
}

body.methodology-v2 .meth2-artifact-grid li {
  color: var(--meth-ink-2);
  line-height: 1.45;
}

body.methodology-v2 .meth2-gate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

body.methodology-v2 .meth2-gate-card {
  border: 1px solid var(--meth-line);
  border-radius: 12px;
  background: rgba(250, 253, 255, 0.92);
  box-shadow: 0 10px 20px rgba(8, 30, 74, 0.04);
  padding: 0.78rem;
}

body.methodology-v2 .meth2-gate-card h3 {
  margin-bottom: 0.34rem;
  color: #0a3f96;
  font-size: 0.95rem;
}

body.methodology-v2 .meth2-gate-card p {
  margin: 0;
  color: var(--meth-ink-2);
}

body.methodology-v2 .meth2-gate-card p + p {
  margin-top: 0.28rem;
}

body.methodology-v2 .meth2-activation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

body.methodology-v2 .meth2-activation-grid article {
  border: 1px solid var(--meth-line);
  border-radius: 12px;
  background: rgba(249, 253, 255, 0.92);
  padding: 0.78rem;
}

body.methodology-v2 .meth2-activation-grid h3 {
  margin-bottom: 0.32rem;
  color: #0a3f96;
}

body.methodology-v2 .meth2-activation-grid ul {
  margin: 0;
  padding-left: 1rem;
}

body.methodology-v2 .meth2-activation-grid li {
  color: var(--meth-ink-2);
  line-height: 1.45;
}

body.methodology-v2 .meth2-metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.58rem;
}

body.methodology-v2 .meth2-metric-grid article {
  border: 1px solid var(--meth-line);
  border-radius: 12px;
  background: rgba(250, 253, 255, 0.94);
  padding: 0.74rem;
}

body.methodology-v2 .meth2-metric-grid h3 {
  margin-bottom: 0.3rem;
  color: #0a3f96;
  font-size: 0.92rem;
}

body.methodology-v2 .meth2-metric-band {
  margin-bottom: 0.34rem;
  color: #0a3f96;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.methodology-v2 .meth2-metric-grid p {
  margin: 0;
  color: var(--meth-ink-2);
}

body.methodology-v2 .meth2-differentiation {
  padding-top: clamp(1.4rem, 2.3vw, 2rem);
}

body.methodology-v2 .meth2-compare-tabs {
  margin-bottom: 0.76rem;
}

body.methodology-v2 .meth2-compare-tabs button {
  min-height: 36px;
}

body.methodology-v2 .meth2-compare-panel {
  border: 1px solid var(--meth-line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 253, 255, 0.84));
  box-shadow: 0 12px 26px rgba(8, 29, 70, 0.05);
  padding: clamp(0.9rem, 1.4vw, 1.15rem);
}

body.methodology-v2 .meth2-compare-panel header {
  margin-bottom: 0.68rem;
}

body.methodology-v2 .meth2-compare-panel h3 {
  margin-bottom: 0.24rem;
  color: #0a3f96;
}

body.methodology-v2 .meth2-compare-panel header p {
  margin: 0;
  color: #3f5574;
  font-weight: 600;
}

body.methodology-v2 .meth2-row-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
}

body.methodology-v2 .meth2-row-grid article {
  border: 0;
  border-left: 3px solid #b5c8e1;
  border-radius: 11px;
  background: rgba(246, 250, 255, 0.9);
  padding: 0.72rem 0.78rem;
}

body.methodology-v2 .meth2-row-grid h4 {
  margin: 0 0 0.34rem;
  color: #0a3f96;
  font-size: 0.9rem;
}

body.methodology-v2 .meth2-row-grid p {
  margin: 0;
  color: var(--meth-ink-2);
  line-height: 1.45;
}

body.methodology-v2 .meth2-row-grid p + p {
  margin-top: 0.24rem;
}

body.methodology-v2 .meth2-ethics,
body.methodology-v2 .meth2-pay-safe {
  margin-top: 0.78rem;
  border: 1px solid var(--meth-line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(7, 31, 73, 0.04);
  padding: 0.88rem;
}

body.methodology-v2 .meth2-ethics h3,
body.methodology-v2 .meth2-pay-safe h3 {
  margin-bottom: 0.32rem;
  color: #0a3f96;
}

body.methodology-v2 .meth2-ethics ul {
  margin: 0;
  padding-left: 1rem;
}

body.methodology-v2 .meth2-ethics li {
  color: var(--meth-ink-2);
  line-height: 1.5;
}

body.methodology-v2 .meth2-pay-safe p {
  margin: 0;
  color: var(--meth-ink-2);
}

body.methodology-v2 .meth2-cta {
  padding-top: 1.35rem;
}

body.methodology-v2 .meth2-cta-shell {
  border: 1px solid rgba(181, 204, 237, 0.7);
  border-radius: 16px;
  background:
    radial-gradient(34rem 14rem at 0% 0%, rgba(137, 183, 255, 0.2), rgba(137, 183, 255, 0)),
    linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(239, 247, 255, 0.88));
  box-shadow: 0 14px 30px rgba(8, 32, 76, 0.08);
  padding: clamp(0.95rem, 1.8vw, 1.25rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
}

body.methodology-v2 .meth2-cta-shell h2 {
  margin: 0 0 0.3rem;
  color: var(--meth-ink-1);
}

body.methodology-v2 .meth2-cta-shell p {
  margin: 0;
  color: var(--meth-ink-2);
}

body.methodology-v2 .meth2-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.48rem;
}

@media (max-width: 1180px) {
  body.methodology-v2 .meth2-stage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.methodology-v2 .meth2-principle-grid,
  body.methodology-v2 .meth2-gate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.methodology-v2 .meth2-activation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.methodology-v2 .meth2-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.methodology-v2 .meth2-row-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  body.methodology-v2 .meth2-hero-grid,
  body.methodology-v2 .meth2-cta-shell {
    grid-template-columns: 1fr;
  }

  body.methodology-v2 .meth2-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body.methodology-v2 .meth2-hero {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-top: 1.55rem;
  }

  body.methodology-v2 .meth2-hero-copy h1 {
    font-size: clamp(1.82rem, 8.4vw, 2.56rem);
    max-width: 100%;
  }

  body.methodology-v2 .meth2-stage-grid,
  body.methodology-v2 .meth2-row-grid,
  body.methodology-v2 .meth2-principle-grid,
  body.methodology-v2 .meth2-artifact-grid,
  body.methodology-v2 .meth2-gate-grid,
  body.methodology-v2 .meth2-activation-grid,
  body.methodology-v2 .meth2-metric-grid {
    grid-template-columns: 1fr;
  }

  body.methodology-v2 .meth2-hero-actions,
  body.methodology-v2 .meth2-cta-actions {
    flex-direction: column;
  }

  body.methodology-v2 .meth2-hero-actions .button,
  body.methodology-v2 .meth2-cta-actions .button {
    width: 100%;
  }
}

/* Value v2 */
body.value-v2 {
  --val-ink-1: #16233a;
  --val-ink-2: #3f5574;
  --val-line: rgba(204, 220, 242, 0.9);
  --val-soft: #eef4fb;
  background:
    radial-gradient(72rem 44rem at 9% -11%, rgba(124, 172, 245, 0.18), rgba(124, 172, 245, 0)),
    radial-gradient(58rem 36rem at 92% -15%, rgba(83, 112, 219, 0.14), rgba(83, 112, 219, 0)),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 58%, #f8fbff 100%);
}

body.value-v2 .val2-main-shell {
  overflow: hidden;
}

body.value-v2 .val2-hero {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  background:
    radial-gradient(56rem 25rem at 7% -15%, rgba(191, 103, 177, 0.22), rgba(191, 103, 177, 0)),
    radial-gradient(54rem 26rem at 93% -9%, rgba(78, 141, 255, 0.24), rgba(78, 141, 255, 0)),
    linear-gradient(133deg, #0b172b 0%, #233552 56%, #233552 100%);
  padding: clamp(1.8rem, 3.2vw, 2.55rem) 0 clamp(1.5rem, 2.7vw, 2rem);
}

body.value-v2 .val2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
  transform: translateY(var(--parallax-offset, 0px));
}

body.value-v2 .val2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(0.92rem, 1.8vw, 1.35rem);
  align-items: center;
}

body.value-v2 .val2-hero-copy h1 {
  color: #eff5ff;
  margin-bottom: 0.62rem;
  font-size: clamp(2rem, 3.7vw, 3.28rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 19ch;
}

body.value-v2 .val2-hero-copy p {
  margin-bottom: 0.66rem;
  color: rgba(217, 230, 251, 0.95);
  max-width: 56ch;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
}

body.value-v2 .val2-hero-keyline {
  margin-bottom: 0.78rem;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
}

body.value-v2 .val2-hero .hero-actions {
  margin-bottom: 0;
}

body.value-v2 .val2-hero .button.secondary {
  border: 1px solid rgba(176, 205, 246, 0.74);
  background: #ffffff;
  color: #0f4eb8;
}

body.value-v2 .val2-hero-metrics {
  margin-top: 0.76rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.42rem;
}

body.value-v2 .val2-hero-metrics article {
  border: 1px solid rgba(172, 201, 243, 0.44);
  border-radius: 10px;
  background: rgba(8, 24, 57, 0.44);
  padding: 0.5rem 0.56rem;
}

body.value-v2 .val2-hero-metrics small {
  display: block;
  margin-bottom: 0.12rem;
  color: #bfd6ff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

body.value-v2 .val2-hero-metrics strong {
  color: #eff5ff;
  font-size: 0.8rem;
  line-height: 1.35;
}

body.value-v2 .val2-hero-panel {
  border-radius: 18px;
  border: 1px solid rgba(173, 203, 246, 0.42);
  background: rgba(8, 21, 50, 0.56);
  box-shadow: 0 24px 50px rgba(6, 17, 40, 0.42);
  padding: 0.95rem;
}

body.value-v2 .val2-panel-kicker {
  margin: 0 0 0.2rem;
  color: #b5c8e1;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.value-v2 .val2-hero-panel h2 {
  color: #f8fbff;
  margin-bottom: 0.48rem;
}

body.value-v2 .val2-hero-panel ol {
  margin: 0 0 0.64rem;
  padding-left: 1.05rem;
}

body.value-v2 .val2-hero-panel li {
  color: #dce9ff;
  line-height: 1.48;
}

body.value-v2 .val2-panel-note {
  margin: 0;
  color: #b5c8e1;
  font-size: 0.8rem;
}

body.value-v2 .val2-anchor-section {
  padding-top: 1.1rem;
  padding-bottom: 0.2rem;
}

body.value-v2 .val2-anchor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  border: 1px solid var(--val-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(9, 33, 74, 0.04);
  padding: 0.6rem;
}

body.value-v2 .val2-anchor-strip a {
  text-decoration: none;
  color: #3f5574;
  border: 1px solid #d6e1f2;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.66rem;
}

body.value-v2 .val2-content {
  padding-top: 0.95rem;
}

body.value-v2 .val2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 274px;
  gap: 0.92rem;
  align-items: start;
}

body.value-v2 .val2-layout.no-rail {
  grid-template-columns: minmax(0, 1fr);
}

body.value-v2 .val2-main {
  display: grid;
  gap: 0.9rem;
}

body.value-v2 .val2-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 226, 244, 0.62);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  box-shadow: 0 11px 24px rgba(8, 28, 68, 0.05);
  backdrop-filter: blur(2px);
  padding: clamp(0.98rem, 1.6vw, 1.25rem);
}

body.value-v2 .val2-card::before {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 84, 190, 0.35), rgba(78, 164, 255, 0.08));
}

body.value-v2 .val2-section-head {
  margin-bottom: 0.66rem;
}

body.value-v2 .val2-section-head h2 {
  margin: 0.22rem 0 0.36rem;
  color: var(--val-ink-1);
  font-size: clamp(1.2rem, 1.8vw, 1.64rem);
}

body.value-v2 .val2-section-head p {
  margin: 0;
  color: var(--val-ink-2);
}

body.value-v2 .val2-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  gap: 0.74rem;
  align-items: start;
}

body.value-v2 .val2-fit-output {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.75rem;
}

body.value-v2 .val2-fit-output h3 {
  margin-bottom: 0.42rem;
  color: #0a3f96;
}

body.value-v2 .val2-fit-output h4 {
  margin: 0.56rem 0 0.34rem;
  color: #0a3f96;
}

body.value-v2 .val2-explain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
  margin-bottom: 0.72rem;
}

body.value-v2 .val2-explain-grid article {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.76rem;
}

body.value-v2 .val2-explain-grid h3 {
  margin-bottom: 0.36rem;
  color: #0a3f96;
}

body.value-v2 .val2-plan-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.42rem;
  margin-bottom: 0.68rem;
}

body.value-v2 .val2-plan-tabs button {
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #3f5574;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  padding: 0.34rem 0.42rem;
}

body.value-v2 .val2-plan-tabs button.is-active,
body.value-v2 .val2-plan-tabs button[aria-selected='true'] {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, #1053c2 0%, #5f95f0 100%);
}

body.value-v2 .val2-plan-panel h3 {
  margin-bottom: 0.5rem;
  color: #0a3f96;
}

body.value-v2 .val2-note {
  margin-top: 0.62rem;
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #f8fbff;
  color: #3f5574;
  font-size: 0.84rem;
  line-height: 1.55;
  padding: 0.58rem 0.68rem;
}

body.value-v2 .val2-roi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: 0.72rem;
  align-items: start;
}

body.value-v2 .val2-roi-brief {
  border: 1px solid #d6e1f2;
  border-radius: 12px;
  background:
    radial-gradient(30rem 12rem at 0% 0%, rgba(149, 193, 255, 0.18), rgba(149, 193, 255, 0)),
    #f8fbff;
  padding: 0.78rem;
}

body.value-v2 .val2-roi-brief h3 {
  margin-bottom: 0.42rem;
  color: #0a3f96;
}

body.value-v2 .val2-roi-brief ul {
  margin: 0 0 0.6rem;
}

body.value-v2 .val2-report-card h2 {
  margin-bottom: 0.66rem;
}

body.value-v2 .val2-rail {
  position: sticky;
  top: 90px;
  border: 1px solid rgba(216, 227, 244, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(8, 28, 68, 0.06);
  backdrop-filter: blur(3px);
  padding: 0.82rem;
}

body.value-v2 .val2-rail h3 {
  margin: 0 0 0.52rem;
  color: #0a3f96;
}

body.value-v2 .val2-rail-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

body.value-v2 .val2-rail-status article {
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.42rem 0.44rem;
}

body.value-v2 .val2-rail-status small {
  display: block;
  font-size: 0.69rem;
  color: #627da4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.08rem;
}

body.value-v2 .val2-rail-status strong {
  color: #0a3f96;
  font-size: 0.82rem;
}

body.value-v2 .val2-rail-nav {
  display: grid;
  gap: 0.28rem;
}

body.value-v2 .val2-rail-nav a {
  border: 1px solid #d6e1f2;
  border-radius: 9px;
  background: rgba(248, 251, 255, 0.9);
  color: #3f5574;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.32rem 0.48rem;
}

body.value-v2 .val2-rail-nav a.is-active {
  border-color: #1053c2;
  background: #eff5ff;
  color: #0a3f96;
}

body.value-v2 .val2-rail-actions {
  margin-top: 0.66rem;
  display: grid;
  gap: 0.38rem;
}

body.value-v2 .val2-rail-actions .button {
  width: 100%;
}

body.value-v2 .fit-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.46rem;
}

body.value-v2 .fit-rank-card {
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.56rem;
}

body.value-v2 .fit-rank-card.is-primary {
  border-color: #1053c2;
  background: linear-gradient(180deg, #eff5ff 0%, #eff5ff 100%);
}

body.value-v2 .fit-rank-card h4 {
  margin: 0 0 0.16rem;
  color: #0a3f96;
}

body.value-v2 .fit-rank-card .fit-rank-score {
  margin: 0 0 0.18rem;
  font-weight: 800;
  color: #1053c2;
}

body.value-v2 .fit-rank-card p {
  margin: 0;
  color: #3f5574;
  font-size: 0.8rem;
  line-height: 1.4;
}

body.value-v2 .fit-cap {
  margin-top: 0.56rem;
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.56rem 0.62rem;
}

body.value-v2 .value-definitions li strong {
  color: #0a3f96;
}

body.value-v2 .value-table-wrap table {
  min-width: 1120px;
}

body.value-v2 .value-snapshot-wrap table {
  min-width: 1640px;
}

body.value-v2 .value-matrix td:first-child,
body.value-v2 .value-matrix th:first-child {
  min-width: 220px;
  font-weight: 700;
  color: #233552;
}

body.value-v2 .value-matrix td:not(:first-child),
body.value-v2 .value-matrix th:not(:first-child) {
  min-width: 280px;
}

@media (max-width: 1180px) {
  body.value-v2 .val2-fit-grid,
  body.value-v2 .val2-roi-grid {
    grid-template-columns: 1fr;
  }

  body.value-v2 .val2-explain-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  body.value-v2 .val2-layout,
  body.value-v2 .val2-hero-grid {
    grid-template-columns: 1fr;
  }

  body.value-v2 .val2-rail {
    position: static;
  }
}

@media (max-width: 760px) {
  body.value-v2 .val2-hero {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-top: 1.55rem;
  }

  body.value-v2 .val2-hero-copy h1 {
    font-size: clamp(1.82rem, 8.3vw, 2.52rem);
    max-width: 100%;
  }

  body.value-v2 .val2-hero-metrics,
  body.value-v2 .val2-plan-tabs,
  body.value-v2 .fit-rank-grid,
  body.value-v2 .val2-rail-status,
  body.value-v2 .fit-form-grid {
    grid-template-columns: 1fr;
  }

  body.value-v2 .val2-hero .hero-actions,
  body.value-v2 .val2-rail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.value-v2 .val2-hero .hero-actions .button,
  body.value-v2 .val2-rail-actions .button {
    width: 100%;
  }
}

@media print {
  body.value-v2 {
    background: #ffffff !important;
  }

  body.value-v2 .site-header,
  body.value-v2 .footer,
  body.value-v2 .val2-rail,
  body.value-v2 .sticky-cta,
  body.value-v2 .hero-actions,
  body.value-v2 .nav-toggle {
    display: none !important;
  }

  body.value-v2 .val2-layout {
    grid-template-columns: 1fr;
  }

  body.value-v2 .val2-hero {
    background: #ffffff !important;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0.6rem;
  }

  body.value-v2 .val2-hero::before {
    display: none;
  }

  body.value-v2 .val2-hero-copy h1,
  body.value-v2 .val2-hero-copy p,
  body.value-v2 .val2-hero-keyline {
    color: #16233a !important;
  }

  body.value-v2 .val2-card {
    box-shadow: none;
    break-inside: avoid;
  }
}

/* Partner/Trust/Register v2 */
body.partner-v2,
body.trust-v2,
body.register-v2 {
  --pt-ink-1: #16233a;
  --pt-ink-2: #3f5574;
  --pt-line: rgba(207, 221, 241, 0.9);
  background:
    radial-gradient(68rem 40rem at 8% -12%, rgba(121, 171, 245, 0.16), rgba(121, 171, 245, 0)),
    radial-gradient(52rem 34rem at 92% -14%, rgba(83, 112, 221, 0.12), rgba(83, 112, 221, 0)),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 58%, #f8fbff 100%);
}

body.partner-v2 .pp-hero,
body.trust-v2 .tc-hero,
body.register-v2 .rd-hero {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  background:
    radial-gradient(58rem 25rem at 7% -15%, rgba(188, 102, 176, 0.2), rgba(188, 102, 176, 0)),
    radial-gradient(52rem 25rem at 92% -9%, rgba(78, 142, 255, 0.22), rgba(78, 142, 255, 0)),
    linear-gradient(133deg, #0b172b 0%, #233552 56%, #233552 100%);
  padding: clamp(1.8rem, 3.2vw, 2.55rem) 0 clamp(1.45rem, 2.6vw, 2rem);
}

body.partner-v2 .pp-hero::before,
body.trust-v2 .tc-hero::before,
body.register-v2 .rd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.26;
}

body.partner-v2 .pp-hero-grid,
body.trust-v2 .tc-hero-grid,
body.register-v2 .rd-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0.95rem;
  align-items: center;
}

body.partner-v2 .pp-hero-copy h1,
body.trust-v2 .tc-hero-copy h1,
body.register-v2 .rd-hero-copy h1 {
  color: #eff5ff;
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 3.7vw, 3.28rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

body.partner-v2 .pp-hero-copy p,
body.trust-v2 .tc-hero-copy p,
body.register-v2 .rd-hero-copy p {
  margin-bottom: 0.7rem;
  color: rgba(217, 231, 253, 0.94);
  max-width: 56ch;
}

body.partner-v2 .pp-hero .hero-actions,
body.trust-v2 .tc-hero .hero-actions,
body.register-v2 .rd-hero .hero-actions {
  margin-bottom: 0;
}

body.partner-v2 .pp-hero .button.secondary,
body.trust-v2 .tc-hero .button.secondary,
body.register-v2 .rd-hero .button.secondary {
  border: 1px solid rgba(176, 205, 246, 0.74);
  background: #ffffff;
  color: #0f4eb8;
}

body.partner-v2 .pp-hero-panel,
body.trust-v2 .tc-hero-panel,
body.register-v2 .rd-hero-panel {
  border-radius: 18px;
  border: 1px solid rgba(173, 203, 246, 0.42);
  background: rgba(8, 21, 50, 0.56);
  box-shadow: 0 24px 50px rgba(6, 17, 40, 0.42);
  padding: 0.95rem;
}

body.partner-v2 .pp-panel-kicker,
body.trust-v2 .tc-panel-kicker,
body.register-v2 .rd-panel-kicker {
  margin: 0 0 0.2rem;
  color: #b5c8e1;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

body.partner-v2 .pp-hero-panel h2,
body.trust-v2 .tc-hero-panel h2,
body.register-v2 .rd-hero-panel h2 {
  color: #eff5ff;
  margin-bottom: 0.45rem;
}

body.partner-v2 .pp-hero-panel ul,
body.trust-v2 .tc-hero-panel ul,
body.register-v2 .rd-hero-panel ul,
body.register-v2 .rd-rail ol {
  margin: 0;
  padding-left: 1rem;
}

body.partner-v2 .pp-hero-panel li,
body.trust-v2 .tc-hero-panel li,
body.register-v2 .rd-hero-panel li,
body.register-v2 .rd-rail li {
  color: #dce9ff;
  line-height: 1.5;
}

body.partner-v2 .pp-pill-row {
  margin-top: 0.74rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

body.partner-v2 .pp-pill-row span {
  border: 1px solid rgba(169, 200, 246, 0.6);
  border-radius: 999px;
  background: rgba(10, 24, 56, 0.56);
  color: #dce9ff;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.2rem 0.56rem;
}

body.partner-v2 .pp-anchor-section,
body.trust-v2 .tc-anchor-section {
  padding-top: 1.1rem;
  padding-bottom: 0.2rem;
}

body.partner-v2 .pp-anchor-strip,
body.trust-v2 .tc-anchor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  border: 1px solid var(--pt-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(9, 33, 74, 0.04);
  padding: 0.58rem;
}

body.partner-v2 .pp-anchor-strip a,
body.trust-v2 .tc-anchor-strip a {
  text-decoration: none;
  color: #3f5574;
  border: 1px solid #d6e1f2;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.66rem;
}

body.partner-v2 .pp-layout,
body.trust-v2 .tc-layout,
body.register-v2 .rd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 272px;
  gap: 0.92rem;
  align-items: start;
}

body.partner-v2 .pp-main-col,
body.trust-v2 .tc-main-col,
body.register-v2 .rd-main-col {
  display: grid;
  gap: 0.88rem;
}

body.partner-v2 .pp-card,
body.trust-v2 .tc-card,
body.register-v2 .rd-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 226, 244, 0.62);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  box-shadow: 0 10px 24px rgba(8, 28, 68, 0.05);
  padding: clamp(0.98rem, 1.6vw, 1.24rem);
}

body.partner-v2 .pp-card::before,
body.trust-v2 .tc-card::before,
body.register-v2 .rd-card::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 84, 190, 0.35), rgba(78, 164, 255, 0.08));
}

body.partner-v2 .pp-section-head,
body.trust-v2 .tc-section-head,
body.register-v2 .rd-section-head {
  margin-bottom: 0.65rem;
}

body.partner-v2 .pp-section-head h2,
body.trust-v2 .tc-section-head h2,
body.register-v2 .rd-section-head h2 {
  margin: 0.2rem 0 0.35rem;
  color: var(--pt-ink-1);
  font-size: clamp(1.2rem, 1.8vw, 1.62rem);
}

body.partner-v2 .pp-section-head p,
body.trust-v2 .tc-section-head p,
body.register-v2 .rd-section-head p,
body.partner-v2 .pp-card p,
body.trust-v2 .tc-card p,
body.register-v2 .rd-card p,
body.partner-v2 .pp-card li,
body.trust-v2 .tc-card li,
body.register-v2 .rd-card li {
  color: var(--pt-ink-2);
}

body.partner-v2 .pp-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.64rem;
}

body.partner-v2 .pp-tabs button {
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #3f5574;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: none;
  padding: 0.34rem 0.4rem;
}

body.partner-v2 .pp-tabs button.is-active,
body.partner-v2 .pp-tabs button[aria-selected='true'] {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, #1053c2 0%, #5f95f0 100%);
}

body.partner-v2 .pp-panel {
  border: 1px solid rgba(210, 224, 243, 0.72);
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.8rem;
}

body.partner-v2 .pp-grid-2,
body.trust-v2 .tc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

body.partner-v2 .pp-grid-3,
body.trust-v2 .tc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

body.partner-v2 .pp-grid-2 article,
body.partner-v2 .pp-grid-3 article,
body.trust-v2 .tc-grid-2 article,
body.trust-v2 .tc-grid-3 article {
  border-left: 3px solid #c5d4e8;
  border-radius: 12px;
  background: rgba(247, 251, 255, 0.84);
  padding: 0.78rem 0.82rem;
}

body.partner-v2 .pp-rail,
body.trust-v2 .tc-rail,
body.register-v2 .rd-rail {
  position: sticky;
  top: 90px;
  border: 1px solid rgba(216, 227, 244, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(8, 28, 68, 0.06);
  padding: 0.82rem;
}

body.partner-v2 .pp-rail h3,
body.trust-v2 .tc-rail h3,
body.register-v2 .rd-rail h3 {
  margin: 0 0 0.5rem;
  color: #0a3f96;
}

body.partner-v2 .pp-rail-nav,
body.trust-v2 .tc-rail-nav {
  display: grid;
  gap: 0.28rem;
}

body.partner-v2 .pp-rail-nav a,
body.trust-v2 .tc-rail-nav a {
  border: 1px solid #d6e1f2;
  border-radius: 9px;
  background: rgba(248, 251, 255, 0.9);
  color: #3f5574;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.46rem;
}

body.partner-v2 .pp-rail-nav a.is-active,
body.trust-v2 .tc-rail-nav a.is-active {
  border-color: #1053c2;
  background: #eff5ff;
  color: #0a3f96;
}

body.partner-v2 .pp-rail-actions,
body.trust-v2 .tc-rail-actions,
body.register-v2 .rd-rail-actions {
  margin-top: 0.66rem;
  display: grid;
  gap: 0.38rem;
}

body.partner-v2 .pp-rail-actions .button,
body.trust-v2 .tc-rail-actions .button,
body.register-v2 .rd-rail-actions .button {
  width: 100%;
}

body.register-v2 .rd-rail-box {
  margin-top: 0.7rem;
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.56rem;
}

body.register-v2 .rd-rail-box h4 {
  margin-bottom: 0.24rem;
  color: #0a3f96;
}

body.partner-v2 .pp-cta,
body.trust-v2 .tc-band {
  background:
    radial-gradient(34rem 14rem at 0% 0%, rgba(137, 183, 255, 0.2), rgba(137, 183, 255, 0)),
    linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(239, 247, 255, 0.88));
}

@media (max-width: 1120px) {
  body.partner-v2 .pp-grid-3,
  body.trust-v2 .tc-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body.partner-v2 .pp-hero-grid,
  body.trust-v2 .tc-hero-grid,
  body.register-v2 .rd-hero-grid,
  body.partner-v2 .pp-layout,
  body.trust-v2 .tc-layout,
  body.register-v2 .rd-layout {
    grid-template-columns: 1fr;
  }

  body.partner-v2 .pp-rail,
  body.trust-v2 .tc-rail,
  body.register-v2 .rd-rail {
    position: static;
  }
}

@media (max-width: 760px) {
  body.partner-v2 .pp-hero,
  body.trust-v2 .tc-hero,
  body.register-v2 .rd-hero {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-top: 1.55rem;
  }

  body.partner-v2 .pp-hero-copy h1,
  body.trust-v2 .tc-hero-copy h1,
  body.register-v2 .rd-hero-copy h1 {
    font-size: clamp(1.82rem, 8.3vw, 2.52rem);
    max-width: 100%;
  }

  body.partner-v2 .pp-tabs,
  body.partner-v2 .pp-grid-2,
  body.partner-v2 .pp-grid-3,
  body.trust-v2 .tc-grid-2,
  body.trust-v2 .tc-grid-3 {
    grid-template-columns: 1fr;
  }

  body.partner-v2 .pp-hero .hero-actions,
  body.trust-v2 .tc-hero .hero-actions,
  body.register-v2 .rd-hero .hero-actions,
  body.partner-v2 .pp-rail-actions,
  body.trust-v2 .tc-rail-actions,
  body.register-v2 .rd-rail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.partner-v2 .pp-hero .hero-actions .button,
  body.trust-v2 .tc-hero .hero-actions .button,
  body.register-v2 .rd-hero .hero-actions .button {
    width: 100%;
  }
}

/* Global inner-page benchmark layer (Maturity Engine reference) */
body.inner-benchmark {
  background:
    radial-gradient(70rem 44rem at 8% -12%, rgba(120, 168, 244, 0.16), rgba(120, 168, 244, 0)),
    radial-gradient(56rem 34rem at 92% -16%, rgba(81, 110, 221, 0.12), rgba(81, 110, 221, 0)),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 58%, #f8fbff 100%);
}

body.inner-benchmark main {
  position: relative;
}

body.inner-benchmark main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 38, 97, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 38, 97, 0.018) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.42;
}

body.inner-benchmark main > section {
  position: relative;
  z-index: 1;
}

body.inner-benchmark .hero {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  background:
    radial-gradient(56rem 25rem at 8% -14%, rgba(188, 102, 176, 0.2), rgba(188, 102, 176, 0)),
    radial-gradient(52rem 25rem at 92% -8%, rgba(78, 142, 255, 0.22), rgba(78, 142, 255, 0)),
    linear-gradient(133deg, #0b172b 0%, #233552 56%, #233552 100%);
  padding: clamp(1.8rem, 3.2vw, 2.55rem) 0 clamp(1.45rem, 2.6vw, 2rem);
}

body.inner-benchmark .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
}

body.inner-benchmark .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0.95rem;
  align-items: center;
}

body.inner-benchmark .hero h1 {
  color: #eff5ff;
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 3.65vw, 3.26rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

body.inner-benchmark .hero h2,
body.inner-benchmark .hero h3 {
  color: #f8fbff;
}

body.inner-benchmark .hero p,
body.inner-benchmark .hero li,
body.inner-benchmark .hero small,
body.inner-benchmark .hero .muted {
  color: rgba(217, 231, 253, 0.94);
}

body.inner-benchmark .hero .button.secondary {
  border: 1px solid rgba(176, 205, 246, 0.74);
  background: #ffffff;
  color: #0f4eb8;
}

body.inner-benchmark .lead-strip,
body.inner-benchmark .hero aside,
body.inner-benchmark .hero .hero-preview {
  border-radius: 18px;
  border: 1px solid rgba(173, 203, 246, 0.42);
  background: rgba(8, 21, 50, 0.56);
  box-shadow: 0 24px 50px rgba(6, 17, 40, 0.4);
  padding: 0.95rem;
}

body.inner-benchmark .lead-strip h2,
body.inner-benchmark .lead-strip h3,
body.inner-benchmark .lead-strip strong,
body.inner-benchmark .hero aside h2,
body.inner-benchmark .hero aside h3,
body.inner-benchmark .hero aside strong,
body.inner-benchmark .hero .hero-preview h2,
body.inner-benchmark .hero .hero-preview h3,
body.inner-benchmark .hero .hero-preview strong {
  color: #f8fbff;
}

body.inner-benchmark .lead-strip p,
body.inner-benchmark .lead-strip li,
body.inner-benchmark .hero aside p,
body.inner-benchmark .hero aside li,
body.inner-benchmark .hero .hero-preview p,
body.inner-benchmark .hero .hero-preview li,
body.inner-benchmark .hero .hero-preview small,
body.inner-benchmark .hero .hero-preview .muted {
  color: #dce9ff;
}

body.inner-benchmark .section {
  padding-top: clamp(1.2rem, 2.3vw, 1.85rem);
  padding-bottom: clamp(1.2rem, 2.3vw, 1.85rem);
}

body.inner-benchmark .section-head,
body.inner-benchmark .section-intro {
  margin-bottom: 0.72rem;
}

body.inner-benchmark .section-head h2,
body.inner-benchmark .section-intro h2 {
  margin: 0.2rem 0 0.32rem;
  color: #16233a;
  font-size: clamp(1.22rem, 1.85vw, 1.64rem);
}

body.inner-benchmark .section-head p,
body.inner-benchmark .section-intro p {
  color: #3f5574;
}

body.inner-benchmark .card,
body.inner-benchmark .cta-band,
body.inner-benchmark .report-box,
body.inner-benchmark .summary-card,
body.inner-benchmark .results-card,
body.inner-benchmark .scenario-card,
body.inner-benchmark .simulator-card,
body.inner-benchmark .roadmap-card,
body.inner-benchmark .aixo-fit-card,
body.inner-benchmark .report-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 226, 244, 0.62);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  box-shadow: 0 10px 24px rgba(8, 28, 68, 0.05);
  padding: clamp(0.96rem, 1.55vw, 1.22rem);
}

body.inner-benchmark .card::before,
body.inner-benchmark .cta-band::before,
body.inner-benchmark .report-box::before,
body.inner-benchmark .summary-card::before,
body.inner-benchmark .results-card::before,
body.inner-benchmark .scenario-card::before,
body.inner-benchmark .simulator-card::before,
body.inner-benchmark .roadmap-card::before,
body.inner-benchmark .aixo-fit-card::before,
body.inner-benchmark .report-card::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 84, 190, 0.35), rgba(78, 164, 255, 0.08));
}

body.inner-benchmark .card p,
body.inner-benchmark .card li,
body.inner-benchmark .cta-band p,
body.inner-benchmark .report-box p,
body.inner-benchmark .report-box li,
body.inner-benchmark .muted {
  color: #3f5574;
}

body.inner-benchmark .grid-2,
body.inner-benchmark .grid-3,
body.inner-benchmark .result-grid,
body.inner-benchmark .form-grid {
  gap: 0.82rem;
}

body.inner-benchmark .comparison-table,
body.inner-benchmark table {
  border: 1px solid #d6e1f2;
  background: #ffffff;
}

body.inner-benchmark .comparison-table th,
body.inner-benchmark th {
  background: #eff5ff;
  color: #0a3f96;
}

body.inner-benchmark .comparison-table td,
body.inner-benchmark td {
  border-bottom-color: #e3ecf8;
}

body.inner-benchmark .notice {
  border: 1px solid #d6e1f2;
  background: #f8fbff;
  color: #3f5574;
}

body.inner-benchmark .eyebrow {
  border-color: #bfd6ff;
  background: #eff5ff;
  color: #0f4eb8;
}

body.inner-benchmark .button {
  box-shadow: 0 8px 20px rgba(10, 62, 168, 0.18);
}

body.inner-benchmark .button.secondary,
body.inner-benchmark .button.ghost {
  box-shadow: none;
}

body.inner-benchmark .footer {
  margin-top: 1.4rem;
}

@media (max-width: 980px) {
  body.inner-benchmark .hero-grid,
  body.inner-benchmark .grid-2,
  body.inner-benchmark .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.inner-benchmark .hero {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-top: 1.55rem;
  }

  body.inner-benchmark .hero h1 {
    font-size: clamp(1.8rem, 8.3vw, 2.52rem);
    max-width: 100%;
  }
}

/* Global reliability and responsive hardening pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1220px, calc(100vw - 2.2rem));
}

.table-wrap,
.comparison-table-wrap,
.value-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

table.comparison-table,
table.value-matrix,
table.plan-matrix,
table {
  border-collapse: collapse;
}

table.comparison-table,
table.value-matrix,
table.plan-matrix {
  min-width: 720px;
}

@media (max-width: 1120px) {
  .container {
    width: min(1220px, calc(100vw - 1.6rem));
  }

  .site-header {
    top: 0;
  }

  .nav-shell {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.56rem;
  }

  .cta-group {
    display: none !important;
  }

  html.has-js .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  html.has-js .site-nav {
    position: fixed !important;
    left: 0.7rem !important;
    right: 0.7rem !important;
    top: 74px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    border: 1px solid #d6e1f2 !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 18px 30px rgba(7, 28, 70, 0.14) !important;
    padding: 0.38rem 0.4rem !important;
    max-height: min(72vh, calc(100vh - 92px));
    overflow-y: auto;
    z-index: 140;
  }

  html.has-js .site-nav.open {
    display: flex !important;
  }

  html.has-js .site-nav a {
    width: 100% !important;
    border-radius: 10px !important;
    padding: 0.7rem 0.75rem !important;
    font-size: 0.92rem !important;
    font-weight: 700;
    color: #233552 !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  html.has-js .site-nav a + a {
    margin-top: 0.1rem;
  }

  html.has-js .site-nav a:hover,
  html.has-js .site-nav a.active {
    color: #0f4eb8 !important;
    background: #eff5ff !important;
    border-color: #d6e1f2 !important;
  }

  .layout-12,
  .hero-grid,
  .hero-layout,
  .grid-2,
  .grid-3,
  .form-grid,
  .val2-hero-grid,
  .val2-fit-grid,
  .pp-hero-grid,
  .tc-hero-grid,
  .rd-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  body {
    line-height: 1.54;
  }

  .container {
    width: calc(100vw - 1.05rem);
  }

  .site-header {
    backdrop-filter: blur(6px);
  }

  .brand-logo {
    height: 26px;
    max-width: 148px;
  }

  .brand-tagline {
    display: none;
  }

  .hero,
  .section {
    padding-top: 1.15rem !important;
    padding-bottom: 1.15rem !important;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.28rem) !important;
    line-height: 1.05;
    max-width: 100% !important;
  }

  .hero p,
  .hero li {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

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

  .sticky-cta {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.45rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .sticky-cta .button {
    min-height: 42px;
    padding: 0.55rem 0.65rem;
    font-size: 0.92rem;
  }

  table.comparison-table,
  table.value-matrix,
  table.plan-matrix {
    min-width: 640px;
    font-size: 0.9rem;
  }

  .notice,
  .card,
  .summary-card,
  .results-card,
  .scenario-card,
  .simulator-card,
  .roadmap-card {
    padding: 0.86rem;
  }
}

@media (min-width: 1121px) {
  html.has-js .site-nav {
    display: flex !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    max-height: none !important;
    overflow: visible !important;
    border-radius: 999px !important;
    border: 1px solid rgba(16, 57, 126, 0.14) !important;
    padding: 0.24rem !important;
  }

  html.has-js .nav-toggle {
    display: none !important;
  }
}

/* Interaction hardening for Home plan snapshot toggle. */
body.home-page .hero-preview,
body.home-page .hero-preview * {
  pointer-events: auto;
}

body.home-page .hero-preview {
  position: relative;
  z-index: 6;
}

body.home-page .preview-toggle {
  position: relative;
  z-index: 7;
}

body.home-page .preview-plan {
  cursor: pointer;
  touch-action: manipulation;
}

/* Responsive Stabilization Layer (m17) */
:root {
  --rwd-gutter-tablet: 1.2rem;
  --rwd-gutter-mobile: 0.85rem;
}

* {
  min-width: 0;
}

html,
body {
  max-width: 100%;
  overflow-x: clip !important;
}

main,
section,
article,
aside {
  max-width: 100%;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
li,
a,
button,
label,
small,
strong,
span {
  overflow-wrap: anywhere;
}

.container {
  width: min(1220px, calc(100vw - (var(--rwd-gutter-tablet) * 2))) !important;
}

.table-wrap,
.comparison-table-wrap,
.value-table-wrap,
.mapping-table-wrap {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

table.comparison-table,
table.value-matrix,
table.plan-matrix,
.mapping-table {
  min-width: 720px !important;
}

@media (max-width: 1120px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: calc(100vw - (var(--rwd-gutter-tablet) * 2)) !important;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 450;
  }

  .nav-shell {
    min-height: 72px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 0.56rem !important;
  }

  .cta-group {
    display: none !important;
  }

  html.has-js .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
  }

  html.has-js .site-nav {
    position: fixed !important;
    left: var(--rwd-gutter-tablet) !important;
    right: var(--rwd-gutter-tablet) !important;
    top: 74px !important;
    bottom: auto !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0.38rem !important;
    border-radius: 14px !important;
    border: 1px solid #d6e1f2 !important;
    background: rgba(255, 255, 255, 0.99) !important;
    box-shadow: 0 18px 30px rgba(7, 28, 70, 0.14) !important;
    max-height: min(72vh, calc(100vh - 96px)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 460 !important;
  }

  html.has-js .site-nav.open {
    display: flex !important;
  }

  html.has-js .site-nav a {
    width: 100% !important;
    white-space: normal !important;
    border-radius: 10px !important;
    padding: 0.7rem 0.75rem !important;
    font-size: 0.92rem !important;
    line-height: 1.35 !important;
  }

  html.has-js .site-nav a + a {
    margin-top: 0.1rem !important;
  }

  .layout-12,
  .hero-grid,
  .hero-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .challenge-engine-hero-grid,
  .maturity-layout,
  .services-hero-grid,
  .services-layout,
  .sv2-hero-grid,
  .sv2-layout,
  .meth2-hero-grid,
  .meth2-layout,
  .val2-hero-grid,
  .val2-layout,
  .val2-fit-grid,
  .val2-roi-grid,
  .pp-hero-grid,
  .pp-layout,
  .tc-hero-grid,
  .tc-layout,
  .rd-hero-grid,
  .rd-layout,
  .pp-grid-2,
  .pp-grid-3,
  .tc-grid-2,
  .tc-grid-3,
  .services-cadence-grid,
  .services-scope-grid,
  .services-proof-grid,
  .services-definition-grid,
  .services-question-grid,
  .services-objection-grid,
  .services-coverage-grid,
  .services-path-grid,
  .services-phase-grid,
  .sv2-summary-grid,
  .sv2-scope-grid,
  .sv2-cadence-grid,
  .sv2-library-grid,
  .sv2-path-grid,
  .meth2-stage-grid,
  .meth2-principle-grid,
  .meth2-artifact-grid,
  .meth2-gate-grid,
  .meth2-activation-grid,
  .meth2-metric-grid,
  .meth2-row-grid,
  .benchmark-context-grid,
  .radar-heatmap-grid,
  .diagnostic-list-grid,
  .scenario-grid,
  .roadmap-grid,
  .score-band-grid {
    grid-template-columns: 1fr !important;
  }

  .col-7,
  .col-5,
  .col-4 {
    grid-column: auto !important;
  }

  .maturity-rail,
  .val2-rail,
  .services-rail,
  .sv2-rail,
  .meth2-rail,
  .pp-rail,
  .tc-rail,
  .rd-rail {
    position: static !important;
    top: auto !important;
    order: 99;
  }

  .site-journey-flow,
  .context-links-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .hero-actions .button {
    min-height: 42px;
  }

  body.home-page .home-hero {
    min-height: auto !important;
    padding-top: 1.3rem !important;
    padding-bottom: 1rem !important;
    border-bottom-left-radius: 22px !important;
    border-bottom-right-radius: 22px !important;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(1.9rem, 7vw, 2.9rem) !important;
    line-height: 1.06 !important;
  }

  body.home-page .hero-copy p {
    max-width: 100% !important;
  }

  body.home-page .hero-preview {
    margin-top: 0.2rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100vw - (var(--rwd-gutter-mobile) * 2)) !important;
  }

  html.has-js .site-nav {
    left: var(--rwd-gutter-mobile) !important;
    right: var(--rwd-gutter-mobile) !important;
    top: 70px !important;
    max-height: min(74vh, calc(100vh - 88px)) !important;
  }

  body {
    padding-bottom: 78px;
  }

  .hero,
  .section {
    padding-top: 1.05rem !important;
    padding-bottom: 1.05rem !important;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.28rem) !important;
    line-height: 1.06 !important;
  }

  .hero p,
  .hero li {
    font-size: 0.98rem !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

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

  body.home-page .preview-toggle {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body.home-page .preview-plan {
    font-size: 0.72rem !important;
    min-height: 34px !important;
    padding: 0.28rem 0.36rem !important;
  }

  body.home-page .graph-row {
    grid-template-columns: 5.5rem minmax(0, 1fr) 2rem !important;
  }

  .sticky-cta {
    left: var(--rwd-gutter-mobile) !important;
    right: var(--rwd-gutter-mobile) !important;
    bottom: 0.42rem !important;
    grid-template-columns: 1fr 1fr !important;
  }

  table.comparison-table,
  table.value-matrix,
  table.plan-matrix,
  .mapping-table {
    min-width: 640px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100vw - 1rem) !important;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 8.8vw, 2.1rem) !important;
  }

  body.home-page .preview-toggle {
    grid-template-columns: 1fr !important;
  }

  body.home-page .preview-plan {
    font-size: 0.78rem !important;
  }
}

@media (min-width: 1121px) {
  body {
    padding-bottom: 0;
  }
}

/* Global governance UI blocks */
.site-breadcrumb {
  padding: 0.65rem 0 0.3rem;
}

.site-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: #627da4;
  font-size: 0.82rem;
}

.site-breadcrumb a {
  color: #1053c2;
  text-decoration: none;
}

.site-breadcrumb strong {
  color: #233552;
  font-weight: 700;
}

.site-decision-strip {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-decision-shell {
  border: 1px solid #d6e1f2;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
  box-shadow: 0 10px 22px rgba(7, 27, 70, 0.05);
  padding: 1rem 1.05rem;
}

.site-decision-shell h2 {
  margin: 0 0 0.38rem;
  font-size: clamp(1.12rem, 1.8vw, 1.52rem);
  color: #16233a;
}

.site-decision-shell p {
  margin: 0.18rem 0;
  color: #3f5574;
}

.site-subnav {
  padding: 0.72rem 0;
}

.site-subnav-shell {
  position: sticky;
  top: 84px;
  z-index: 95;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border: 1px solid #d6e1f2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 20px rgba(7, 27, 70, 0.08);
  padding: 0.4rem 0.45rem;
}

.site-subnav-shell a {
  text-decoration: none;
  color: #3f5574;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.36rem 0.64rem;
}

.site-subnav-shell a.is-active,
.site-subnav-shell a:hover {
  color: #1053c2;
  background: #eff5ff;
  border-color: #d6e1f2;
}

.site-prev-next {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.site-prev-next-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.site-prev-next-shell a {
  display: block;
  border: 1px solid #d6e1f2;
  border-radius: 14px;
  background: #ffffff;
  color: #233552;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.7rem 0.78rem;
}

.site-prev-next-shell a:hover {
  border-color: #bfd6ff;
  background: #eff5ff;
  color: #0f4eb8;
}

.site-boundary-strip {
  padding-top: 0.9rem;
  padding-bottom: 0.95rem;
}

.site-boundary-shell {
  border: 1px solid #d6e1f2;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 27, 70, 0.05);
  padding: 0.92rem 1rem;
}

.site-boundary-shell h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.04rem, 1.6vw, 1.35rem);
}

.site-boundary-shell ul {
  margin: 0 0 0.48rem;
  padding-left: 1rem;
  color: #3f5574;
}

.site-boundary-shell p {
  margin: 0.28rem 0;
  color: #3f5574;
}

.page-last-updated {
  padding-top: 0.36rem;
  padding-bottom: 0.32rem;
}

.page-last-updated small {
  color: #627da4;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

@media (max-width: 1120px) {
  .site-subnav {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-prev-next-shell {
    grid-template-columns: 1fr;
  }
}

.h1-differentiation {
  margin: 0.34rem 0 0.75rem;
  max-width: 72ch;
  font-size: 0.94rem;
  line-height: 1.55;
}

.proof-policy-strip {
  padding-top: 0.8rem;
  padding-bottom: 0.9rem;
}

.proof-policy-strip .container {
  border: 1px solid #d6e1f2;
  border-radius: 14px;
  background: #f8fbff;
  box-shadow: 0 8px 18px rgba(7, 27, 70, 0.05);
  padding: 0.72rem 0.84rem;
}

.proof-policy-strip p {
  margin: 0;
  color: #3f5574;
  font-size: 0.85rem;
  line-height: 1.58;
}

/* Final responsive stabilization layer (m18) */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

main,
section,
article,
aside,
header,
footer {
  max-width: 100%;
}

.container {
  width: min(1220px, calc(100vw - 2.4rem)) !important;
}

.table-wrap,
.comparison-table-wrap,
.value-table-wrap,
.mapping-table-wrap {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1120px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: calc(100vw - 1.6rem) !important;
  }

  .site-header {
    position: sticky !important;
    top: 0;
    z-index: 500 !important;
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto !important;
    min-height: 72px !important;
    gap: 0.52rem !important;
  }

  .brand-lockup,
  .brand-stack {
    min-width: 0;
  }

  .cta-group {
    display: none !important;
  }

  html.has-js .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  html.has-js .site-nav {
    position: fixed !important;
    left: 0.8rem !important;
    right: 0.8rem !important;
    top: 74px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    border: 1px solid #d6e1f2 !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.99) !important;
    box-shadow: 0 20px 34px rgba(7, 27, 70, 0.16) !important;
    padding: 0.38rem !important;
    max-height: min(74vh, calc(100vh - 92px)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 520 !important;
  }

  html.has-js .site-nav.open {
    display: flex !important;
  }

  html.has-js .site-nav a {
    width: 100% !important;
    white-space: normal !important;
    border-radius: 10px !important;
    padding: 0.7rem 0.74rem !important;
    font-size: 0.92rem !important;
    line-height: 1.36 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  html.has-js .site-nav a.nav-solutioning {
    color: #ffffff !important;
    border: 1px solid #0f5ec9 !important;
    background: linear-gradient(135deg, #0b366f 0%, #0f57be 52%, #10a5c3 100%) !important;
    box-shadow: 0 10px 20px rgba(8, 64, 146, 0.3) !important;
    margin-bottom: 0.32rem !important;
  }

  .layout-12,
  .hero-layout,
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .val2-hero-grid,
  .val2-fit-grid,
  .val2-roi-grid,
  .sv2-hero-grid,
  .sv2-layout,
  .meth2-hero-grid,
  .meth2-layout,
  .pp-hero-grid,
  .pp-layout,
  .tc-hero-grid,
  .tc-layout,
  .rd-hero-grid,
  .rd-layout,
  .site-journey-flow,
  .context-links-grid {
    grid-template-columns: 1fr !important;
  }

  .col-7,
  .col-5,
  .col-4 {
    grid-column: auto !important;
  }

  .maturity-rail,
  .val2-rail,
  .services-rail,
  .sv2-rail,
  .meth2-rail,
  .pp-rail,
  .tc-rail,
  .rd-rail {
    position: static !important;
    top: auto !important;
  }

  body.home-page .home-hero {
    min-height: auto !important;
    padding-top: 1.3rem !important;
    padding-bottom: 1rem !important;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: calc(100vw - 1rem) !important;
  }

  html.has-js .site-nav {
    left: 0.5rem !important;
    right: 0.5rem !important;
    top: 70px !important;
  }

  .hero,
  .section {
    padding-top: 1.05rem !important;
    padding-bottom: 1.05rem !important;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8.4vw, 2.24rem) !important;
    line-height: 1.07 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

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

  .sticky-cta {
    left: 0.48rem !important;
    right: 0.48rem !important;
    bottom: 0.42rem !important;
    grid-template-columns: 1fr 1fr !important;
  }

  html.has-js .site-nav a.nav-solutioning {
    color: #ffffff !important;
    border: 1px solid #0f5ec9 !important;
    background: linear-gradient(135deg, #0b366f 0%, #0f57be 52%, #10a5c3 100%) !important;
  }
}

@media (min-width: 1121px) {
  body {
    padding-bottom: 0;
  }

  html.has-js .site-nav {
    position: relative !important;
    display: flex !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  html.has-js .nav-toggle {
    display: none !important;
  }
}

body.home-page .fork-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

body.home-page .fork-card {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(176, 205, 246, 0.46);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 245, 255, 0.9));
  box-shadow: 0 14px 28px rgba(7, 30, 76, 0.08);
  padding: 0.86rem 0.92rem;
}

body.home-page .fork-card h3 {
  margin-bottom: 0.36rem;
  color: #0a3f96;
}

body.home-page .fork-card p {
  margin: 0;
  color: #3f5574;
}

body.home-page .fork-card:hover {
  border-color: #8fb6ff;
  background: #eff5ff;
}

@media (max-width: 760px) {
  body.home-page .fork-grid {
    grid-template-columns: 1fr;
  }
}
