/* PCCX canonical public site stylesheet.
   Legacy records-page rules are loaded first; current homepage/legal rules follow and may override shared primitives. */

/* Legacy records, contribute, security, assistant, and company-page rules. */
:root {
  color-scheme: light;
  --blue: #0057b8;
  --blue-deep: #003a70;
  --blue-mid: #00509f;
  --cyan: #1192e8;
  --teal: #007d79;
  --amber: #f1c21b;
  --orange: #ff832b;
  --green: #79d21f;
  --red: #d71920;
  --ink: #080a0f;
  --ink-2: #121722;
  --text: #111827;
  --muted: #5f6876;
  --line: #c9cfd8;
  --line-strong: #98a2af;
  --paper: #f1f3f5;
  --pale: #e7ebef;
  --white: #ffffff;
  --charcoal: #111318;
  --max: 1540px;
  --sans: Arial, Helvetica, sans-serif;
  --display: "Arial Black", Impact, Haettenschweiler, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --condensed: "Arial Narrow", "Roboto Condensed", "Aptos Narrow", Arial, sans-serif;
  --mono: "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

[id] {
  scroll-margin-top: 72px;
}

body {
  margin: 0;
  background: #eef1f4;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.52;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a:hover {
  color: var(--red);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  font-size: 56px;
  font-family: var(--display);
  font-weight: 900;
}

h3 {
  font-size: 24px;
  font-family: var(--condensed);
}

p {
  margin: 0;
}

code {
  border: 1px solid var(--line);
  background: #f8fafc;
  color: #242936;
  padding: 0.08em 0.32em;
  font-family: var(--mono);
  font-size: 0.92em;
}

.wrap {
  width: min(calc(100% - 88px), var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.mono {
  font-family: var(--mono);
}

.kicker,
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 52px;
  border-bottom: 2px solid #1f2933;
  background: #f8f9fb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 52px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  color: #000000;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.brand:hover {
  color: #000000;
}

.mark {
  display: block;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.tm {
  margin-left: 1px;
  color: #7b8490;
  font-size: 12px;
  font-weight: 700;
  vertical-align: super;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  color: #1f2937;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  border: 0;
  border-left: 1px solid var(--line);
  background: #f8f9fb;
  color: #1f2937;
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
}

.nav-item:last-child .nav-link {
  border-right: 1px solid var(--line);
}

.nav button.nav-link {
  appearance: none;
  cursor: default;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-item:focus-within > .nav-link,
.nav-item:hover > .nav-link {
  background: #101318;
  color: #ffffff;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 70;
  display: grid;
  min-width: 220px;
  border: 1px solid #101318;
  background: #ffffff;
  box-shadow: 6px 6px 0 #cbd2dc;
  opacity: 0;
  transform: translateY(-4px);
  visibility: hidden;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav-menu a,
.nav-menu span {
  display: block;
  border-bottom: 1px solid var(--line);
  color: #111827;
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-menu a:last-child,
.nav-menu span:last-child {
  border-bottom: 0;
}

.nav-menu a:hover {
  background: #f1f3f6;
  color: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  border-top: 6px solid #003a70;
  border-bottom: 2px solid #1f2933;
  background: #0b111b;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #edf0f3;
}

.hero-lines {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  pointer-events: none;
  opacity: 1;
}

.hero-lines span {
  border-left: 1px solid #dce2ea;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 68px;
  padding: 70px 0 58px;
}

.hero-copy {
  max-width: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 62px;
  font-weight: 900;
  line-height: 0.98;
  text-shadow: none;
}

.hero-lead {
  max-width: 760px;
  margin-top: 22px;
  color: #d8dee8;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  text-shadow: none;
}

.actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.button,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--blue-deep);
  padding: 0 26px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-cta {
  position: relative;
  z-index: 2;
  border-color: #101318;
  background: #ffffff;
  color: #101318;
  font-family: var(--condensed);
  font-size: 15px;
  box-shadow: none;
}

.hero-cta:first-child {
  background: #101318;
  color: #ffffff;
}

.button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-cta:hover {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.hero-status {
  border-top: 4px solid var(--red);
  background: #151d28;
  padding: 22px;
}

.hero-status p {
  color: #9fb6d8;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-status dl {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.hero-status div {
  border-top: 1px solid #3a4553;
  padding: 13px 0;
}

.hero-status div:last-child {
  border-bottom: 1px solid #3a4553;
}

.hero-status dt {
  color: #9fb6d8;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-status dd {
  margin: 6px 0 0;
  color: #ffffff;
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-news {
  border-top: 1px solid #384454;
  background: #2f3a46;
}

.hero-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-news a {
  display: grid;
  gap: 8px;
  min-height: 104px;
  border-right: 1px solid #67717f;
  color: #ffffff;
  padding: 20px 24px;
}

.hero-news a:first-child {
  border-left: 1px solid #67717f;
}

.hero-news span {
  color: #c6d4e8;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-news b {
  font-family: var(--condensed);
  font-size: 17px;
  line-height: 1.22;
}

.hero-news a:hover {
  background: #25303b;
  color: #ffffff;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.button.primary:hover {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: #ffffff;
}

.quick {
  position: static;
  z-index: 2;
  background: #ffffff;
}

.quick .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid #c5ccd6;
}

.quick a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  border-top: 1px solid #c5ccd6;
  border-right: 1px solid #c5ccd6;
  background: #ffffff;
  color: #101318;
  padding: 0 16px;
  font-weight: 700;
  box-shadow: none;
}

.quick a:last-child {
  border-right: 1px solid #c5ccd6;
}

.quick a:hover {
  background: #101318;
  color: #ffffff;
}

.quick .ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #101318;
  font-family: var(--mono);
  font-size: 14px;
}

.quick a:hover .ico {
  border-color: #ffffff;
}

.quick small {
  display: block;
  margin-bottom: 4px;
  color: #6b7280;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quick a:hover small {
  color: #c7ccd6;
}

.statement,
.section {
  border-bottom: 2px solid var(--line);
  background: #ffffff;
  padding: 54px 0 58px;
}

.statement-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.statement-grid {
  align-items: stretch;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.statement h2,
.section-head h2,
.split-head h2 {
  max-width: 860px;
  font-size: 46px;
  line-height: 1;
}

.statement-grid > div,
.statement-grid > p {
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 24px;
}

.statement p,
.split-head p,
.prose p {
  color: #4b5563;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

.blue-rule {
  width: 300px;
  height: 7px;
  margin-bottom: 28px;
  background: var(--blue);
  box-shadow: 116px 0 0 var(--red);
}

.products {
  background: #d9dde3;
  padding: 0 0 72px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid #1f2933;
  border-left: 2px solid #1f2933;
}

.product {
  position: relative;
  display: grid;
  grid-template-rows: 198px 1fr 72px;
  min-height: 492px;
  border-right: 2px solid #1f2933;
  border-bottom: 2px solid #1f2933;
  background: var(--card-bg);
  color: var(--card-fg);
}

.product-standard {
  --accent: #0047d8;
  --card-bg: #efc832;
  --card-bg-2: #f5df78;
  --card-fg: #080a0f;
  --card-muted: #252415;
  --card-foot: #11120a;
  --grid-stroke: #e5bf27;
}

.product-opencore {
  --accent: #007a44;
  --card-bg: #65bf18;
  --card-bg-2: #c7eaa0;
  --card-fg: #071107;
  --card-muted: #16300e;
  --card-foot: #0e2510;
  --grid-stroke: #9ccc73;
}

.product-lab {
  --accent: #d64b00;
  --card-bg: #f36d21;
  --card-bg-2: #f6c091;
  --card-fg: #101010;
  --card-muted: #2a1d12;
  --card-foot: #251508;
  --grid-stroke: #e5a16a;
}

.product-asic {
  --accent: #002db3;
  --card-bg: #1e99c2;
  --card-bg-2: #b9dfec;
  --card-fg: #00133e;
  --card-muted: #12324d;
  --card-foot: #071e3c;
  --grid-stroke: #87d3ee;
}

.product::after {
  position: absolute;
  top: 198px;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--accent);
  content: "";
}

.photo {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #1f2933;
  background: var(--card-bg-2);
}

.photo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.product-body {
  padding: 30px 28px 28px;
}

.product h3 {
  margin-bottom: 18px;
  color: var(--card-fg);
  font-size: 32px;
  line-height: 1;
}

.product p {
  max-width: 380px;
  color: var(--card-muted);
  font-size: 16px;
  line-height: 1.48;
}

.product-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid rgba(12, 18, 28, 0.38);
  background: rgba(255, 255, 255, 0.22);
}

.product-foot span {
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(12, 18, 28, 0.42);
  color: var(--card-foot);
  padding: 0 18px;
  font-family: var(--mono);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-foot span:last-child {
  border-right: 0;
}

.blueband {
  position: relative;
  overflow: hidden;
  border-top: 8px solid var(--red);
  border-bottom: 2px solid #000000;
  background: #0b111b;
  color: #ffffff;
}

.blueband::before {
  position: absolute;
  inset: 0;
  background: none;
  content: "";
  opacity: 0;
}

.blueband .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.15fr;
  align-items: center;
  gap: 44px;
  padding: 64px 0 70px;
}

.blueband .kicker,
.blueband h2 {
  color: #ffffff;
}

.blueband h2 {
  font-size: 48px;
  line-height: 1;
}

.blueband p {
  max-width: 650px;
  margin-top: 20px;
  color: #dce2ea;
  font-size: 18px;
  line-height: 1.45;
}

.blue-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 26px;
}

.blue-links a {
  display: inline-flex;
  align-items: center;
  height: 54px;
  border: 1px solid #ffffff;
  border-right: 0;
  background: #ffffff;
  color: #101318;
  padding: 0 26px;
  font-weight: 800;
}

.blue-links a:nth-child(2) {
  border-right: 1px solid #ffffff;
  background: #f4f5f7;
  color: #101318;
}

.blue-links a:hover {
  background: var(--red);
  color: #ffffff;
}

.platform-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 2px solid #505762;
  background: #151a22;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.platform-visual svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.resources {
  background: #f7f8fa;
  padding: 64px 0;
}

.split-head {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 36px;
}

.resource-rows {
  border-top: 2px solid var(--line-strong);
}

.res-row {
  display: grid;
  grid-template-columns: 280px 1fr 120px;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  border-bottom: 1px solid var(--line-strong);
  padding: 18px 0;
}

.res-row h3 {
  font-size: 24px;
}

.res-row p {
  color: #4b5563;
  line-height: 1.45;
}

.res-row a {
  justify-self: end;
  color: var(--blue);
  font-weight: 800;
}

.news,
.evidence {
  position: relative;
  overflow: hidden;
  background: #111722;
  color: #ffffff;
  padding: 58px 0 64px;
}

.news::before,
.evidence::before {
  position: absolute;
  inset: 0;
  background: none;
  content: "";
  opacity: 0;
}

.news .wrap,
.evidence .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.news h2,
.evidence h2 {
  color: #ffffff;
  font-size: 46px;
  line-height: 1;
}

.release-grid,
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}

.release,
.evidence-card {
  min-height: 150px;
  border-top: 8px solid var(--accent, var(--blue));
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  background: #ffffff;
  color: var(--blue-deep);
  padding: 22px 24px;
}

.release:nth-child(1),
.evidence-card:nth-child(1) {
  --accent: var(--blue);
}

.release:nth-child(2),
.evidence-card:nth-child(2) {
  --accent: var(--teal);
}

.release:nth-child(3),
.evidence-card:nth-child(3) {
  --accent: var(--orange);
}

.release time,
.evidence-card span {
  color: #111111;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.release h3,
.evidence-card h3 {
  margin-top: 14px;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.16;
}

.access {
  border-top: 1px solid #1e2732;
  border-bottom: 6px solid #003a70;
  background: #3a424c;
  color: #ffffff;
}

.access .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.access a {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 84px;
  border-right: 1px solid rgba(255, 255, 255, 0.36);
  padding: 18px 30px;
}

.access a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.access a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.access span {
  color: #f2f6fb;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access b {
  max-width: 420px;
  color: #e4eaf2;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
}

.page-head {
  border-bottom: 2px solid var(--line-strong);
  background: #eef1f4;
  padding: 58px 0 48px;
}

.page-head h1 {
  max-width: 900px;
  font-size: 52px;
  line-height: 1;
}

.lead {
  max-width: 860px;
  margin-top: 24px;
  color: #394150;
  font-size: 19px;
  line-height: 1.45;
}

.section.muted {
  background: var(--pale);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.prose {
  display: grid;
  gap: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.wide {
  max-width: 900px;
}

.side-list {
  position: sticky;
  top: 102px;
  display: grid;
  border-top: 1px solid var(--line);
}

.side-list a {
  border-bottom: 1px solid var(--line);
  color: #343946;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
}

.side-list a:hover {
  color: var(--blue);
}

.anchor-section {
  padding: 0 0 52px;
}

.anchor-section:last-child {
  padding-bottom: 0;
}

.anchor-section h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.08;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid rgba(12, 18, 28, 0.55);
  border-left: 2px solid rgba(12, 18, 28, 0.55);
}

.repo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid rgba(12, 18, 28, 0.55);
  border-left: 2px solid rgba(12, 18, 28, 0.55);
}

.repo-card,
.rule-card,
.faq-card {
  border-right: 2px solid rgba(12, 18, 28, 0.55);
  border-bottom: 2px solid rgba(12, 18, 28, 0.55);
  background: #ffffff;
  padding: 24px;
}

.repo-card {
  color: var(--ink);
}

.repo-card:hover,
.question-list a:hover {
  background: #f9fbff;
  color: var(--blue);
}

.repo-name,
.map-label {
  display: block;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.repo-copy,
.map-copy {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.rule-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.rule-list > div {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.rule-card h3,
.faq-card h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.rule-list p,
.rule-card p,
.faq-card p {
  color: #3a414e;
}

.preview-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
}

.preview-column,
.answer-column {
  display: grid;
  gap: 14px;
}

.question-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.question-list a {
  display: block;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 0;
  font-weight: 800;
}

.answer-column {
  border-top: 1px solid rgba(12, 18, 28, 0.32);
  border-left: 1px solid rgba(12, 18, 28, 0.32);
}

.faq-card {
  min-height: 130px;
}

.site-footer {
  border-top: 8px solid #003a70;
  background: #0b111b;
  color: #f3f6fb;
  padding: 52px 0 24px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 42px;
  border-bottom: 1px solid #303a46;
  padding-bottom: 42px;
}

.foot-brand {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.foot-brand p {
  max-width: 390px;
  margin-top: 18px;
  color: #b9c2cf;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.foot-col h4 {
  margin: 0 0 18px;
  color: #7fb5ff;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.foot-col a {
  display: block;
  color: #d6dde8;
  font-size: 14px;
  margin: 10px 0;
}

.foot-col a:hover {
  color: #ffffff;
}

.fine {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  color: #a8b2c0;
  font-size: 12px;
  padding-top: 24px;
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 19px;
  }

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

  .product {
    grid-template-rows: 198px 1fr 72px;
  }

  .product::after {
    top: 198px;
  }

  .blueband h2,
  .statement h2,
  .section-head h2,
  .split-head h2,
  .page-head h1 {
    font-size: 52px;
  }
}

@media (max-width: 1040px) {
  html {
    scroll-padding-top: 162px;
  }

  [id] {
    scroll-margin-top: 162px;
  }

  .wrap {
    width: min(calc(100% - 56px), var(--max));
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 16px 0;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
    overflow-x: visible;
  }

  .nav-link {
    min-height: 30px;
    border-left: 0;
    padding: 0 8px;
  }

  .nav-item:last-child .nav-link {
    border-right: 0;
  }

  .nav-menu {
    min-width: 210px;
  }

  .hero-content,
  .statement-grid,
  .blueband .wrap,
  .split-head,
  .news .wrap,
  .evidence .wrap,
  .two-column,
  .content-grid,
  .preview-shell {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 48px 0 126px;
  }

  .hero-copy {
    max-width: none;
  }

  .release-grid,
  .evidence-grid,
  .access .wrap,
  .foot-grid,
  .repo-grid,
  .rule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .side-list {
    position: static;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(calc(100% - 34px), var(--max));
  }

  .brand {
    font-size: 25px;
  }

  .mark {
    width: 30px;
    height: 30px;
  }

  .hero-content {
    padding: 32px 0 42px;
  }

  .hero-copy {
    border-top-width: 6px;
    padding: 18px;
  }

  .hero-kicker {
    font-size: 12px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.02;
  }

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

  .hero-news-grid,
  .hero-news a {
    grid-template-columns: 1fr;
  }

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

  .quick {
    display: none;
  }

  .product-grid,
  .release-grid,
  .evidence-grid,
  .access .wrap,
  .foot-grid,
  .repo-grid,
  .rule-grid {
    grid-template-columns: 1fr;
  }

  .quick a {
    min-height: 68px;
  }

  .statement,
  .section,
  .resources,
  .news,
  .evidence {
    padding: 62px 0;
  }

  .page-head {
    padding: 56px 0 42px;
  }

  .blueband .wrap {
    padding: 66px 0;
  }

  .blueband h2,
  .statement h2,
  .section-head h2,
  .split-head h2,
  .page-head h1 {
    font-size: 38px;
  }

  .blueband p,
  .lead,
  .statement p,
  .split-head p,
  .prose p {
    font-size: 17px;
  }

  .product {
    min-height: 480px;
  }

  .product h3 {
    font-size: 32px;
  }

  .res-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .res-row a {
    justify-self: start;
  }

  .platform-visual,
  .platform-visual svg {
    min-height: 330px;
  }

  .foot-grid {
    gap: 28px;
  }
}

/* 2026 homepage refresh: dark industrial base with wider corporate spacing. */
:root {
  --blue: #0b5fff;
  --blue-deep: #003a70;
  --navy: #07101b;
  --navy-2: #0d1624;
  --graphite: #151b24;
  --steel: #344150;
  --paper: #f4f6f8;
  --paper-warm: #f7f6f1;
  --text: #101722;
  --muted: #566170;
  --line: #cdd4df;
  --line-strong: #8f9aa8;
  --max: 1440px;
  --display: Arial, Helvetica, sans-serif;
  --condensed: Arial, Helvetica, sans-serif;
  --serif: Arial, Helvetica, sans-serif;
}

html {
  scroll-padding-top: 76px;
}

[id] {
  scroll-margin-top: 76px;
}

body {
  background: #eef2f5;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
}

.wrap {
  width: min(calc(100% - 88px), var(--max));
}

.site-header {
  height: 64px;
  border-bottom: 1px solid #cfd6df;
  background: #f8f9fb;
}

.header-inner {
  height: 64px;
}

.brand {
  min-width: 170px;
  gap: 13px;
  font-size: 27px;
  font-weight: 800;
}

.mark {
  width: 30px;
  height: 30px;
}

.nav {
  gap: 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.nav-link {
  min-height: auto;
  border: 0;
  background: transparent;
  color: #182130;
  padding: 0;
  font: inherit;
  white-space: nowrap;
}

.nav-item:last-child .nav-link {
  border-right: 0;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-item:focus-within > .nav-link,
.nav-item:hover > .nav-link {
  background: transparent;
  color: var(--blue);
}

.hero {
  border-top: 0;
  border-bottom: 1px solid #273446;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    radial-gradient(circle at 84% 12%, rgba(148, 164, 184, 0.18), transparent 38%),
    #07101b;
  color: #ffffff;
}

.hero::before {
  position: absolute;
  top: -20%;
  right: 18%;
  width: 1px;
  height: 140%;
  background: rgba(190, 202, 218, 0.20);
  content: "";
  transform: rotate(23deg);
  transform-origin: top;
}

.hero-content {
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 96px;
  padding: 108px 0 96px;
}

.hero-copy {
  max-width: 940px;
}

.hero-kicker {
  margin-bottom: 22px;
  color: #8bbcff;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.hero h1 {
  max-width: 930px;
  color: #ffffff;
  font-size: clamp(58px, 6.2vw, 96px);
  font-weight: 800;
  line-height: 0.98;
}

.hero-lead {
  max-width: 820px;
  margin-top: 28px;
  color: #d7dee9;
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.5;
}

.actions,
.hero-actions {
  gap: 12px;
  margin-top: 38px;
}

.button,
.hero-cta {
  min-height: 54px;
  border: 1px solid #182130;
  border-radius: 0;
  background: #ffffff;
  color: #101722;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  box-shadow: none;
}

.hero-cta.primary,
.hero-cta:first-child {
  border-color: #ffffff;
  background: #ffffff;
  color: #07101b;
}

.hero-cta.secondary {
  border-color: #6f7c8d;
  background: transparent;
  color: #ffffff;
}

.hero-cta.accent {
  border-color: #0b5fff;
  background: #0b5fff;
  color: #ffffff;
}

.button:hover,
.hero-cta:hover {
  border-color: #0b5fff;
  background: #0b5fff;
  color: #ffffff;
}

.hero-cta.secondary:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #07101b;
}

.hero-status {
  border: 1px solid #2d3b4e;
  border-top: 5px solid #0b5fff;
  background: #111b29;
  padding: 28px;
}

.hero-status p {
  color: #b4c9e9;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.hero-status div {
  border-top-color: #344255;
  padding: 18px 0;
}

.hero-status div:last-child {
  border-bottom-color: #344255;
}

.hero-status dt {
  color: #94afd6;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.hero-status dd {
  margin-top: 7px;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.quick {
  display: block;
  border-top: 1px solid #2a3545;
  border-bottom: 1px solid #cbd3de;
  background: #f9fafb;
}

.quick .wrap {
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid #cbd3de;
}

.quick a {
  align-items: flex-start;
  min-height: 118px;
  border-top: 0;
  border-right: 1px solid #cbd3de;
  background: #f9fafb;
  color: #101722;
  padding: 25px 24px;
}

.quick a:hover {
  background: #111b29;
  color: #ffffff;
}

.quick .ico {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-color: #101722;
  font-size: 13px;
  font-weight: 800;
}

.quick strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.quick small {
  margin: 10px 0 0;
  color: #5b6472;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.quick a:hover small {
  color: #cbd5e1;
}

.statement {
  border-bottom: 1px solid #cbd3de;
  background: var(--paper-warm);
  padding: 116px 0;
}

.statement-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 112px;
  border: 0;
}

.statement-grid > div,
.statement-grid > p {
  border: 0;
  padding: 0;
}

.statement h2,
.section-head h2,
.split-head h2 {
  max-width: 760px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.02;
}

.statement p,
.split-head p,
.prose p {
  color: #394352;
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1.65;
}

.blue-rule {
  width: 325px;
  height: 6px;
  margin-bottom: 34px;
  background: #0b5fff;
  box-shadow: 118px 0 0 #d71920;
}

.products {
  background: #dfe4eb;
  padding: 92px 0 112px;
}

.product-grid {
  border-top: 1px solid #1b2430;
  border-left: 1px solid #1b2430;
}

.product {
  grid-template-rows: 218px 1fr 78px;
  min-height: 560px;
  border-right: 1px solid #1b2430;
  border-bottom: 1px solid #1b2430;
}

.product::after {
  top: 218px;
  height: 5px;
}

.product-standard {
  --accent: #0b5fff;
  --card-bg: #d5bd46;
  --card-bg-2: #f2dd79;
  --card-fg: #0a0f18;
  --card-muted: #22291f;
  --card-foot: #12140c;
}

.product-opencore {
  --accent: #006e42;
  --card-bg: #7faf4b;
  --card-bg-2: #cfe6ad;
  --card-fg: #071107;
  --card-muted: #14300e;
  --card-foot: #0e2510;
}

.product-lab {
  --accent: #b55420;
  --card-bg: #c8753f;
  --card-bg-2: #e9c39f;
  --card-fg: #111111;
  --card-muted: #271a12;
  --card-foot: #251508;
}

.product-evaluation {
  --accent: #0b5fff;
  --card-bg: #4a9db7;
  --card-bg-2: #c6e5ef;
  --card-fg: #071426;
  --card-muted: #12324d;
  --card-foot: #071e3c;
}

.photo {
  border-bottom: 1px solid #1b2430;
}

.product-body {
  padding: 38px 36px 34px;
}

.product h3 {
  max-width: 260px;
  margin-bottom: 24px;
  font-size: 35px;
  font-weight: 800;
  line-height: 1.05;
}

.product p {
  max-width: 360px;
  font-size: 18px;
  line-height: 1.55;
}

.product-foot {
  border-top: 1px solid rgba(12, 18, 28, 0.38);
}

.product-foot span {
  padding: 0 24px;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.blueband {
  border-top: 6px solid #0b5fff;
  border-bottom: 1px solid #000000;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 90px 90px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 90px 90px,
    #08111d;
}

.blueband .wrap {
  grid-template-columns: 0.92fr 1.12fr;
  gap: 72px;
  padding: 108px 0;
}

.blueband h2 {
  max-width: 620px;
  font-size: clamp(46px, 4.8vw, 68px);
  line-height: 1.02;
}

.blueband p {
  max-width: 660px;
  margin-top: 26px;
  color: #d9e2ee;
  font-size: 19px;
  line-height: 1.62;
}

.blue-links {
  gap: 10px;
  margin-top: 34px;
}

.blue-links a {
  height: 54px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #07101b;
  padding: 0 24px;
  font-weight: 800;
}

.blue-links a:nth-child(2) {
  border-right: 1px solid #6f7c8d;
  border-color: #6f7c8d;
  background: transparent;
  color: #ffffff;
}

.blue-links a:hover,
.blue-links a:nth-child(2):hover {
  border-color: #0b5fff;
  background: #0b5fff;
  color: #ffffff;
}

.platform-visual {
  min-height: 408px;
  border: 1px solid #5b6675;
  background: #121a25;
  box-shadow: none;
}

.platform-visual svg {
  min-height: 408px;
}

.evidence {
  border-top: 1px solid #263242;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 110px 110px,
    #0d1624;
  padding: 108px 0;
}

.evidence .wrap {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

.evidence .kicker {
  color: #8bbcff;
}

.evidence h2 {
  max-width: 360px;
  color: #ffffff;
  font-size: clamp(46px, 4.7vw, 66px);
  line-height: 1.03;
}

.evidence-grid {
  gap: 16px;
  border: 0;
}

.evidence-card {
  min-height: 228px;
  border: 1px solid #d8dee7;
  border-top: 5px solid var(--accent, #0b5fff);
  background: #f8fafc;
  color: #0b1b31;
  padding: 30px 26px;
}

.evidence-card span {
  color: #111722;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.evidence-card h3 {
  margin-top: 22px;
  color: #0b2d70;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.resources {
  border-bottom: 1px solid #ccd4df;
  background: #f6f8fa;
  padding: 108px 0;
}

.split-head {
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 74px;
  margin-bottom: 54px;
}

.resource-rows {
  border-top: 1px solid var(--line-strong);
}

.res-row {
  grid-template-columns: 280px minmax(0, 1fr) 96px;
  gap: 32px;
  min-height: 118px;
  border-bottom: 1px solid var(--line-strong);
  padding: 24px 0;
}

.res-row h3 {
  font-size: 25px;
}

.res-row p {
  color: #475160;
  font-size: 17px;
  line-height: 1.55;
}

.res-row a {
  color: #0b5fff;
}

.partner {
  border-top: 1px solid #c9d1dc;
  border-bottom: 1px solid #c9d1dc;
  background: var(--paper-warm);
  padding: 104px 0;
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.partner h2 {
  max-width: 760px;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.04;
}

.partner p {
  max-width: 740px;
  color: #374151;
  font-size: 20px;
  line-height: 1.65;
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.partner .button.primary {
  border-color: #07101b;
  background: #07101b;
  color: #ffffff;
}

.partner .button.primary:hover,
.partner .button:hover {
  border-color: #0b5fff;
  background: #0b5fff;
  color: #ffffff;
}

.site-footer {
  border-top: 8px solid #0b5fff;
  background: #07101b;
  padding: 58px 0 28px;
}

.foot-grid {
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 44px;
}

.foot-brand p {
  max-width: 360px;
  color: #b6c1d0;
  font-size: 15px;
  line-height: 1.55;
}

.foot-col h4 {
  color: #8bbcff;
}

.foot-col a {
  color: #d8e0ea;
  line-height: 1.35;
}

.fine {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr;
  gap: 28px;
  color: #aab5c4;
}

@media (max-width: 1180px) {
  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero-content,
  .blueband .wrap,
  .statement-grid,
  .partner-panel {
    gap: 56px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 380px;
  }

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

  .quick .wrap,
  .evidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 128px;
  }

  [id] {
    scroll-margin-top: 128px;
  }

  .wrap {
    width: min(calc(100% - 56px), var(--max));
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    gap: 14px;
    padding: 16px 0;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .nav-link {
    flex: 0 0 auto;
  }

  .hero-content,
  .statement-grid,
  .blueband .wrap,
  .evidence .wrap,
  .split-head,
  .partner-panel {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: start;
    padding: 78px 0 76px;
  }

  .hero-status {
    max-width: 620px;
  }

  .resources,
  .evidence,
  .partner,
  .statement {
    padding: 86px 0;
  }

  .blueband .wrap {
    padding: 88px 0;
  }

  .resource-rows {
    margin-top: 8px;
  }

  .res-row {
    grid-template-columns: 220px minmax(0, 1fr) 90px;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 156px;
  }

  [id] {
    scroll-margin-top: 156px;
  }

  .wrap {
    width: min(calc(100% - 34px), var(--max));
  }

  .brand {
    font-size: 24px;
  }

  .hero-content {
    padding: 62px 0;
  }

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

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

  .hero-actions,
  .partner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .quick {
    display: block;
  }

  .quick .wrap,
  .product-grid,
  .evidence-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .quick a {
    min-height: 104px;
  }

  .statement h2,
  .split-head h2,
  .partner h2,
  .blueband h2,
  .evidence h2 {
    font-size: 38px;
  }

  .statement p,
  .split-head p,
  .partner p,
  .blueband p {
    font-size: 17px;
  }

  .blue-rule {
    width: 180px;
    box-shadow: 74px 0 0 #d71920;
  }

  .products {
    padding: 54px 0 72px;
  }

  .product {
    grid-template-rows: 190px 1fr 74px;
    min-height: 506px;
  }

  .product::after {
    top: 190px;
  }

  .product-body {
    padding: 30px 26px;
  }

  .product h3 {
    font-size: 31px;
  }

  .product p {
    font-size: 16px;
  }

  .platform-visual,
  .platform-visual svg {
    min-height: 310px;
  }

  .res-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 24px 0;
  }

  .res-row a {
    justify-self: start;
  }
}

/* Anti-SaaS refinement: semiconductor/IP technical-company surface. */
:root {
  --paper: #f3f1ea;
  --paper-2: #ebe7dd;
  --white: #ffffff;
  --ink: #0b0f14;
  --graphite: #1f252b;
  --graphite-2: #313941;
  --muted: #4d5965;
  --line: #b8c0c8;
  --line-dark: #7b858f;
  --pccx-blue: #0057d8;
  --pccx-red: #c9282d;
  --track-standard: #f2cc2f;
  --track-opencore: #60bd16;
  --track-lab: #f36b1d;
  --track-evaluation: #23a7c8;
  --track-standard-dark: #d2b42a;
  --track-opencore-dark: #4fa312;
  --track-lab-dark: #ce5a1a;
  --track-evaluation-dark: #1f92af;
}

html,
body {
  scroll-padding-top: 96px;
}

[id],
.scroll-section {
  scroll-margin-top: 96px;
}

body {
  background: var(--paper-2);
  color: var(--ink);
}

.wrap {
  width: min(calc(100% - 96px), 1440px);
}

.site-header {
  height: 64px;
  border-bottom: 1px solid var(--line);
  background: #f8f7f2;
}

.header-inner {
  height: 64px;
}

.brand {
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.nav {
  gap: 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.nav-link {
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: transparent;
  color: var(--pccx-blue);
}

.hero {
  border-top: 0;
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, rgba(11, 15, 20, 0.055) 1px, transparent 1px) 0 0 / 108px 108px,
    linear-gradient(0deg, rgba(11, 15, 20, 0.04) 1px, transparent 1px) 0 0 / 108px 108px,
    var(--paper);
  color: var(--ink);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-content {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.55fr);
  align-items: center;
  gap: 92px;
  padding: 112px 0 100px;
}

.hero-kicker {
  color: var(--pccx-blue);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.hero h1 {
  max-width: 960px;
  color: var(--ink);
  font-size: clamp(54px, 5.5vw, 86px);
  line-height: 1.01;
}

.hero-lead {
  max-width: 820px;
  color: #29323c;
  font-size: 22px;
  line-height: 1.55;
}

.hero-actions {
  gap: 12px;
  margin-top: 38px;
}

.button,
.hero-cta {
  min-height: 54px;
  border-radius: 0;
  padding: 0 24px;
  box-shadow: none;
}

.hero-cta.primary,
.hero-cta:first-child,
.partner .button.primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.hero-cta.secondary,
.hero-cta.accent,
.partner .button {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.hero-cta.accent {
  border-color: var(--line-dark);
}

.hero-cta:hover,
.button:hover,
.partner .button.primary:hover,
.partner .button:hover {
  border-color: var(--graphite-2);
  background: var(--graphite-2);
  color: #ffffff;
}

.hero-status {
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--pccx-blue);
  background: #f8f7f2;
  color: var(--ink);
  padding: 30px;
  box-shadow: none;
}

.hero-status p {
  color: var(--graphite);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.hero-status div {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.hero-status div:last-child {
  border-bottom: 1px solid var(--line);
}

.hero-status dt {
  color: var(--muted);
}

.hero-status dd {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.quick {
  border-top: 0;
  border-bottom: 1px solid var(--line-dark);
  background: #f8f7f2;
}

.quick .wrap {
  border-left: 1px solid var(--line);
}

.quick a {
  min-height: 116px;
  border-right: 1px solid var(--line);
  background: #f8f7f2;
  color: var(--ink);
}

.quick a:hover {
  background: #ffffff;
  color: var(--ink);
}

.quick .ico {
  border: 1px solid var(--ink);
  background: #ffffff;
  color: var(--ink);
}

.quick a:hover .ico {
  border-color: var(--pccx-blue);
  color: var(--pccx-blue);
}

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

.quick small {
  color: var(--muted);
}

.statement {
  background: #ffffff;
  padding: clamp(96px, 10vw, 150px) 0;
}

.statement-grid {
  gap: 112px;
}

.blue-rule {
  width: 300px;
  height: 5px;
  background: var(--pccx-blue);
  box-shadow: 108px 0 0 var(--pccx-red);
}

.products {
  background: #d9dee4;
  padding: 88px 0 112px;
}

.product-grid {
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}

.product,
.track-card {
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  backdrop-filter: none;
}

.product * {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  backdrop-filter: none;
}

.product-standard {
  --accent: var(--pccx-blue);
  --card-bg: var(--track-standard);
  --card-bg-2: #f7dc4e;
  --card-fg: var(--ink);
  --card-muted: #1f252b;
  --card-foot: var(--ink);
}

.product-opencore {
  --accent: #13753c;
  --card-bg: var(--track-opencore);
  --card-bg-2: #8cdc4a;
  --card-fg: var(--ink);
  --card-muted: #112414;
  --card-foot: var(--ink);
}

.product-lab {
  --accent: #9f3f12;
  --card-bg: var(--track-lab);
  --card-bg-2: #f29455;
  --card-fg: var(--ink);
  --card-muted: #26150d;
  --card-foot: var(--ink);
}

.product-evaluation {
  --accent: var(--pccx-blue);
  --card-bg: var(--track-evaluation);
  --card-bg-2: #73cfe2;
  --card-fg: #06101a;
  --card-muted: #0b2d39;
  --card-foot: var(--ink);
}

.photo,
.track-card__media {
  border-bottom: 1.5px solid var(--ink);
  background: var(--card-bg-2);
}

.product-standard .photo svg > rect:first-child {
  fill: #f7dc4e;
}

.product-standard .photo svg > path:first-of-type {
  stroke: #c9aa22;
}

.product-opencore .photo svg > rect:first-child {
  fill: #8cdc4a;
}

.product-opencore .photo svg > rect:nth-of-type(2) {
  fill: #77c737;
}

.product-opencore .photo svg > path:first-of-type {
  stroke: #59a531;
}

.product-lab .photo svg > rect:first-child {
  fill: #f29455;
}

.product-lab .photo svg > rect:nth-of-type(2) {
  fill: #de7832;
}

.product-lab .photo svg > path:first-of-type {
  stroke: #b9632f;
}

.product-evaluation .photo svg > rect:first-child {
  fill: #73cfe2;
}

.product-evaluation .photo svg > path:first-of-type {
  stroke: #3aaec8;
}

.product-body,
.track-card__body {
  background: var(--card-bg);
}

.product h3,
.product p {
  color: var(--card-fg);
}

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

.product-foot,
.track-card__footer {
  border-top: 1.5px solid rgba(11, 15, 20, 0.55);
  background: color-mix(in srgb, var(--card-bg) 82%, #ffffff);
}

.product-foot span {
  border-right: 1.5px solid rgba(11, 15, 20, 0.42);
  color: var(--ink);
}

.blueband {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid #0b0f14;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 98px 98px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 98px 98px,
    var(--graphite);
}

.blueband .wrap {
  padding: clamp(96px, 10vw, 150px) 0;
}

.platform-visual {
  border: 1px solid var(--line-dark);
  background: #2a3037;
}

.evidence {
  border-top: 0;
  background: var(--graphite);
  padding: clamp(96px, 10vw, 150px) 0;
}

.evidence .wrap {
  grid-template-columns: 400px minmax(0, 1fr);
}

.evidence .kicker {
  color: #c7d2df;
}

.evidence h2 {
  color: #ffffff;
}

.evidence-lead {
  max-width: 360px;
  margin-top: 22px;
  color: #d5dbe2;
  font-size: 17px;
  line-height: 1.62;
}

.evidence-card {
  min-height: 216px;
  border: 1px solid #d9dee4;
  border-top-width: 3px;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.evidence-card h3 {
  color: #0c2b61;
}

.resources {
  background: #f8f7f2;
  padding: clamp(104px, 10vw, 160px) 0;
}

.split-head {
  margin-bottom: 58px;
}

.res-row {
  min-height: 112px;
  padding: 26px 0;
}

.partner {
  background: #ffffff;
  padding: clamp(88px, 8vw, 126px) 0;
}

.partner-panel {
  gap: 82px;
  padding-top: 0;
}

.site-footer {
  border-top: 3px solid var(--pccx-blue);
  background: var(--ink);
}

.foot-col h4 {
  color: #b7c9e6;
}

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 54px;
  }
}

@media (max-width: 980px) {
  html,
  body {
    scroll-padding-top: 142px;
  }

  [id],
  .scroll-section {
    scroll-margin-top: 142px;
  }

  .wrap {
    width: min(calc(100% - 56px), 1440px);
  }

  .hero-content,
  .evidence .wrap {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 84px 0;
  }

  .hero-status {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    scroll-padding-top: 158px;
  }

  [id],
  .scroll-section {
    scroll-margin-top: 158px;
  }

  .wrap {
    width: min(calc(100% - 32px), 1440px);
  }

  .hero-content {
    padding: 58px 0 62px;
  }

  .hero h1 {
    font-size: 41px;
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions,
  .partner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick a {
    min-height: auto;
    padding: 22px 20px;
  }

  .statement,
  .resources,
  .evidence,
  .partner {
    padding: 72px 0;
  }

  .blueband .wrap {
    padding: 72px 0;
  }

  .statement h2,
  .split-head h2,
  .partner h2,
  .blueband h2,
  .evidence h2 {
    font-size: 36px;
  }

  .blue-rule {
    width: 170px;
    box-shadow: 70px 0 0 var(--pccx-red);
  }

  .product {
    grid-template-rows: 190px 1fr 72px;
  }

  .product::after {
    top: 190px;
  }

  .product-foot span {
    padding: 0 18px;
  }

  .evidence-lead {
    max-width: none;
  }
}

/* Research-index and route clarity pass. */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pccx-blue);
  outline-offset: 3px;
}

.nav {
  gap: 22px;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(50px, 5.2vw, 82px);
}

.hero-content {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.55fr);
}

.hero-status dd {
  font-size: 16px;
}

.quick a {
  transition: border-color 160ms ease, text-decoration-color 160ms ease;
}

.quick a:hover strong {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.quick a:hover {
  border-color: var(--line-dark);
}

.product-foot span {
  cursor: default;
}

.blueband {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 104px 104px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 104px 104px,
    #242a31;
}

.blueband h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.2vw, 58px);
}

.platform-visual svg rect[fill^="rgba(255,255,255"] {
  opacity: 0.78;
}

.evidence-card:nth-child(3) {
  --accent: #8f9aa8;
}

.research-index {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: clamp(104px, 10vw, 160px) 0;
}

.research-index .split-head {
  margin-bottom: 46px;
}

.index-rows {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.index-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 220px;
  gap: 32px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 24px 0;
}

.index-row:hover {
  color: var(--ink);
}

.index-row:hover em {
  color: var(--pccx-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.index-row span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.index-row strong {
  color: #36414d;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.index-row em {
  justify-self: end;
  color: var(--graphite);
  font-style: normal;
  font-weight: 800;
}

.resources {
  border-bottom: 1px solid var(--line);
}

.res-row {
  grid-template-columns: 260px minmax(0, 1fr) 220px;
}

.res-row a {
  justify-self: end;
  text-align: right;
}

.res-row a:hover {
  color: var(--pccx-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.partner-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.packet-box {
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line);
  padding: 24px 0 26px;
}

.packet-box h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 22px;
}

.packet-box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.packet-box li {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  color: var(--graphite);
  font-weight: 800;
}

.packet-box p {
  max-width: none;
  margin-top: 18px;
  color: #47515f;
  font-size: 15px;
  line-height: 1.6;
}

.site-footer {
  padding-bottom: 30px;
}

.fine {
  grid-template-columns: 1fr 1.3fr 1.3fr 1.2fr;
}

@media (max-width: 1180px) {
  .nav {
    gap: 16px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 370px;
  }

  .index-row,
  .res-row {
    grid-template-columns: 220px minmax(0, 1fr) 180px;
  }
}

@media (max-width: 980px) {
  .hero-content,
  .partner-panel {
    grid-template-columns: 1fr;
  }

  .hero-status {
    max-width: none;
  }

  .index-row,
  .res-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .index-row em,
  .res-row a {
    justify-self: start;
    text-align: left;
  }

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

@media (max-width: 720px) {
  .nav {
    gap: 14px;
  }

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

  .hero-status {
    padding: 26px;
  }

  .research-index {
    padding: 72px 0;
  }

  .packet-box ul {
    grid-template-columns: 1fr;
  }
}

/* Homepage finish pass: blunt, industrial, and more complete. */
:root {
  --graphite-2: #2b3035;
  --graphite-3: #313941;
}

html,
body {
  scroll-padding-top: 96px;
}

section,
[id],
.scroll-section {
  scroll-margin-top: 96px;
}

body {
  background: var(--paper-2);
}

.site-header {
  height: 66px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-3);
  box-shadow: none;
}

.header-inner {
  height: 66px;
}

.nav {
  gap: 24px;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--pccx-blue);
}

main a:not(.hero-cta):not(.button):not(.quick a):not(.index-row) {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--pccx-blue);
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

main a:not(.hero-cta):not(.button):not(.quick a):not(.index-row):hover {
  color: var(--pccx-blue);
}

.hero {
  background:
    linear-gradient(90deg, rgba(11, 15, 20, 0.045) 1px, transparent 1px) 0 0 / 108px 108px,
    linear-gradient(0deg, rgba(11, 15, 20, 0.034) 1px, transparent 1px) 0 0 / 108px 108px,
    var(--paper);
}

.hero-content {
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.58fr);
  gap: 86px;
  padding: clamp(86px, 8vw, 122px) 0 clamp(82px, 7vw, 108px);
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(58px, 6vw, 96px);
  line-height: 0.99;
}

.hero-lead {
  max-width: 840px;
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  align-items: stretch;
  margin-top: 36px;
}

.hero-cta,
.button {
  min-height: 54px;
  border-radius: 0;
  line-height: 1.2;
}

.hero-cta.secondary:hover,
.hero-cta.accent:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.hero-status {
  align-self: center;
  border-top-width: 3px;
  background: var(--paper-3);
  padding: 32px 30px;
}

.hero-status p,
.kicker,
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
}

.hero-status div {
  padding: 17px 0;
}

.hero-status dd {
  max-width: 340px;
  font-size: 16px;
}

.quick .wrap {
  align-items: stretch;
}

.quick a {
  min-height: 124px;
  padding: 25px 24px;
}

.quick a:hover {
  background: #ffffff;
  border-right-color: var(--line-dark);
}

.quick a:hover strong {
  color: var(--ink);
}

.quick small {
  max-width: 245px;
}

.statement {
  padding: clamp(110px, 10vw, 160px) 0;
}

.statement-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.88fr);
  gap: clamp(72px, 8vw, 128px);
}

.statement h2 {
  max-width: 760px;
  font-size: clamp(44px, 5vw, 70px);
}

.statement p {
  max-width: 690px;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.68;
}

.products {
  padding: clamp(76px, 8vw, 108px) 0 clamp(88px, 9vw, 124px);
}

.product {
  grid-template-rows: 218px minmax(270px, 1fr) 76px;
}

.product-body {
  display: grid;
  align-content: start;
  padding: 36px 34px 32px;
}

.product h3 {
  min-height: 76px;
  margin-bottom: 18px;
  font-size: clamp(29px, 2.2vw, 35px);
}

.product p {
  font-size: 17px;
  line-height: 1.56;
}

.product-foot span {
  align-items: center;
  min-width: 0;
  letter-spacing: 0.14em;
}

.blueband {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
}

.blueband .wrap {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(52px, 7vw, 96px);
  padding: clamp(92px, 9vw, 140px) 0;
}

.blueband .kicker {
  color: var(--muted);
}

.blueband h2 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(36px, 4.3vw, 56px);
  line-height: 1.04;
}

.blueband p {
  max-width: 650px;
  color: #38424e;
  font-size: 18px;
  line-height: 1.64;
}

.boundary-link {
  margin-top: 28px;
}

.boundary-link a {
  font-weight: 800;
}

.platform-visual {
  min-height: 380px;
  border: 1px solid var(--line-dark);
  background: var(--graphite-2);
}

.platform-visual svg {
  min-height: 380px;
}

.platform-visual svg g[fill="#0019a8"] {
  fill: var(--ink);
}

.platform-visual svg rect[fill="rgba(255,255,255,.04)"] {
  fill: rgba(255,255,255,.025);
}

.platform-visual svg rect[fill="rgba(255,255,255,.10)"],
.platform-visual svg rect[fill="rgba(255,255,255,.08)"],
.platform-visual svg rect[fill="rgba(255,255,255,.06)"] {
  opacity: 0.62;
}

.evidence {
  background: var(--graphite-2);
  padding: clamp(94px, 9vw, 138px) 0;
}

.evidence .wrap {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 76px);
}

.evidence h2 {
  font-size: clamp(38px, 4.2vw, 58px);
}

.evidence-lead {
  max-width: 390px;
  color: #d8dde4;
}

.evidence-grid {
  align-items: stretch;
  gap: 14px;
}

.evidence-card {
  min-height: 206px;
  padding: 28px 24px;
}

.evidence-card h3 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.38;
}

.research-index,
.resources {
  padding: clamp(98px, 9vw, 150px) 0;
}

.split-head {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(46px, 6vw, 78px);
}

.split-head h2 {
  max-width: 780px;
  font-size: clamp(40px, 4.6vw, 62px);
}

.split-head p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.62;
}

.index-row,
.res-row {
  min-height: 108px;
  padding: 26px 0;
}

.index-row strong,
.res-row p {
  max-width: 780px;
}

.index-row em,
.res-row a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--pccx-blue);
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.index-row:hover em,
.res-row a:hover {
  color: var(--pccx-blue);
}

.partner {
  padding: clamp(92px, 8vw, 132px) 0;
}

.partner-panel {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: clamp(54px, 7vw, 98px);
}

.partner h2 {
  max-width: 660px;
  font-size: clamp(38px, 4.4vw, 58px);
}

.partner p {
  max-width: 760px;
  font-size: 18px;
}

.packet-box {
  max-width: 780px;
}

.packet-box h3 {
  font-size: 21px;
}

.packet-box li {
  min-height: 48px;
}

.packet-box p {
  font-size: 15px;
  color: #3f4a56;
}

.partner-actions {
  margin-top: 30px;
}

.site-footer {
  border-top-width: 3px;
  background: #0b0f14;
  padding-top: 54px;
}

.foot-grid {
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(30px, 4vw, 56px);
}

.foot-col a {
  margin: 11px 0;
}

.fine {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 42px;
  line-height: 1.55;
}

@media (max-width: 1280px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 56px;
  }

  .hero h1 {
    font-size: clamp(52px, 5.7vw, 82px);
  }

  .quick a {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-body {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 1024px) {
  html,
  body {
    scroll-padding-top: 138px;
  }

  section,
  [id],
  .scroll-section {
    scroll-margin-top: 138px;
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    align-items: flex-start;
    height: auto;
    padding: 16px 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero-content,
  .split-head,
  .statement-grid,
  .blueband .wrap,
  .evidence .wrap,
  .partner-panel {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 48px;
  }

  .hero-status,
  .platform-visual,
  .packet-box {
    max-width: none;
  }

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

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

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

  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  html,
  body {
    scroll-padding-top: 156px;
  }

  section,
  [id],
  .scroll-section {
    scroll-margin-top: 156px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.4vw, 54px);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .partner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .button {
    width: 100%;
    justify-content: center;
  }

  .quick .wrap,
  .product-grid,
  .evidence-grid,
  .foot-grid,
  .fine {
    grid-template-columns: 1fr;
  }

  .quick a {
    min-height: 96px;
  }

  .statement,
  .research-index,
  .resources,
  .evidence,
  .partner {
    padding: 76px 0;
  }

  .blueband .wrap {
    padding: 76px 0;
  }

  .statement h2,
  .split-head h2,
  .partner h2,
  .blueband h2,
  .evidence h2 {
    font-size: 36px;
  }

  .split-head {
    gap: 20px;
    margin-bottom: 34px;
  }

  .product {
    grid-template-rows: 190px auto 72px;
    min-height: auto;
  }

  .product h3 {
    min-height: auto;
  }

  .platform-visual,
  .platform-visual svg {
    min-height: 300px;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(calc(100% - 28px), 1440px);
  }

  .brand {
    font-size: 23px;
  }

  .nav {
    gap: 13px;
    font-size: 13px;
  }

  .hero-content {
    padding-top: 48px;
    padding-bottom: 56px;
  }

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

  .hero-status {
    padding: 24px 22px;
  }

  .hero-status dd {
    max-width: none;
  }

  .packet-box ul {
    grid-template-columns: 1fr;
  }
}

/* Corporate records page */
.records-page {
  background: var(--paper, #f3f1ea);
  color: var(--ink, #0b0f14);
}

.records-hero {
  border-bottom: 1px solid var(--line-dark, #7b858f);
  background:
    linear-gradient(rgba(11, 15, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 15, 20, 0.045) 1px, transparent 1px),
    var(--paper, #f3f1ea);
  background-size: 54px 54px;
}

.records-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: clamp(52px, 6vw, 96px);
  align-items: start;
  padding-top: clamp(88px, 9vw, 150px);
  padding-bottom: clamp(70px, 7vw, 110px);
}

.records-hero h1 {
  max-width: 980px;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}

.records-lead {
  max-width: 820px;
  margin-top: 30px;
  color: var(--graphite-2, #2b3035);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.62;
}

.records-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.records-status,
.records-panel {
  border: 1px solid var(--line-dark, #7b858f);
  background: var(--paper-3, #f8f7f2);
}

.records-status {
  border-top: 3px solid var(--pccx-blue, #0057d8);
  padding: 30px;
}

.records-status > p {
  margin-bottom: 22px;
  color: var(--ink, #0b0f14);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.records-status dl {
  margin: 0;
}

.records-status div,
.records-meta div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) 1fr;
  gap: 20px;
  border-top: 1px solid var(--line-soft, rgba(11, 15, 20, 0.12));
  padding: 18px 0;
}

.records-status div:first-child,
.records-meta div:first-child {
  border-top: 0;
}

.records-status dt,
.records-meta dt {
  color: var(--muted, #4d5965);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.records-status dd,
.records-meta dd {
  margin: 0;
  color: var(--ink, #0b0f14);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.records-jump {
  border-bottom: 1px solid var(--line, #b8c0c8);
  background: var(--white, #ffffff);
}

.records-jump .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line, #b8c0c8);
}

.records-jump a {
  display: grid;
  min-height: 100px;
  align-content: center;
  gap: 10px;
  border-right: 1px solid var(--line, #b8c0c8);
  padding: 22px 24px;
  color: var(--ink, #0b0f14);
  text-decoration: none;
}

.records-jump a:hover,
.records-jump a:focus-visible {
  background: var(--paper-3, #f8f7f2);
  color: var(--ink, #0b0f14);
  outline: 2px solid var(--ink, #0b0f14);
  outline-offset: -2px;
}

.records-jump span {
  width: max-content;
  border-top: 2px solid var(--pccx-blue, #0057d8);
  padding-top: 5px;
  color: var(--muted, #4d5965);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.records-jump strong {
  font-size: 16px;
  line-height: 1.25;
}

.records-section {
  padding: clamp(88px, 9vw, 140px) 0;
  background: var(--paper, #f3f1ea);
}

.records-section-alt {
  border-top: 1px solid var(--line, #b8c0c8);
  border-bottom: 1px solid var(--line, #b8c0c8);
  background: var(--white, #ffffff);
}

.records-section h2 {
  max-width: 900px;
  font-size: clamp(38px, 4.4vw, 64px);
}

.records-section .split-head p,
.records-panel p,
.records-section-dark p {
  max-width: 860px;
  color: var(--graphite-2, #2b3035);
  font-size: 18px;
  line-height: 1.65;
}

.record-list {
  border-top: 1.5px solid var(--ink, #0b0f14);
}

.record-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.64fr) minmax(260px, 1fr) minmax(320px, 0.9fr);
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
  border-bottom: 1px solid var(--line-dark, #7b858f);
  padding: 30px 0;
}

.record-row span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted, #4d5965);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.record-row h3 {
  font-family: var(--condensed);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.05;
}

.record-row p {
  color: var(--graphite-2, #2b3035);
  font-size: 17px;
  line-height: 1.58;
}

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

.record-links a {
  min-height: 42px;
  border: 1px solid var(--line-dark, #7b858f);
  background: var(--paper-3, #f8f7f2);
  color: var(--ink, #0b0f14);
  padding: 10px 12px;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--pccx-blue, #0057d8);
  text-underline-offset: 4px;
  font-size: 13px;
  font-weight: 800;
}

.record-links a:hover,
.record-links a:focus-visible {
  border-color: var(--ink, #0b0f14);
  background: var(--white, #ffffff);
  color: var(--pccx-blue, #0057d8);
  outline: 2px solid var(--ink, #0b0f14);
  outline-offset: -2px;
}

.records-two-col {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: start;
}

.records-panel {
  padding: clamp(28px, 4vw, 46px);
}

.records-panel a:not(.button) {
  color: var(--ink, #0b0f14);
  text-decoration: underline;
  text-decoration-color: var(--pccx-blue, #0057d8);
  text-underline-offset: 4px;
  font-weight: 800;
}

.records-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line-dark, #7b858f);
  border-left: 1px solid var(--line-dark, #7b858f);
}

.records-contact-grid a {
  display: grid;
  gap: 8px;
  border-right: 1px solid var(--line-dark, #7b858f);
  border-bottom: 1px solid var(--line-dark, #7b858f);
  padding: 22px;
  color: var(--ink, #0b0f14);
  text-decoration: none;
}

.records-contact-grid a:hover,
.records-contact-grid a:focus-visible {
  background: var(--white, #ffffff);
  outline: 2px solid var(--ink, #0b0f14);
  outline-offset: -2px;
}

.records-contact-grid span {
  color: var(--muted, #4d5965);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.records-contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 17px;
  line-height: 1.35;
}

.packet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.records-meta {
  margin: 34px 0 0;
  border-top: 1px solid var(--line-soft, rgba(11, 15, 20, 0.12));
}

.records-section-dark {
  background: var(--graphite-2, #2b3035);
  color: var(--white, #ffffff);
}

.records-section-dark h2,
.records-section-dark p {
  color: var(--white, #ffffff);
}

.records-section-dark .kicker {
  color: #d7e2ec;
}

@media (max-width: 1180px) {
  .records-hero-grid,
  .records-two-col {
    grid-template-columns: 1fr;
  }

  .records-status,
  .records-panel {
    max-width: none;
  }

  .record-row {
    grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  }

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

@media (max-width: 768px) {
  .records-hero-grid {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .records-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .records-actions,
  .packet-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .records-jump .wrap,
  .records-contact-grid {
    grid-template-columns: 1fr;
  }

  .record-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }

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

  .records-status div,
  .records-meta div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .records-section {
    padding: 72px 0;
  }
}

/* Homepage release fix: stable sticky header and anchor offsets. */
:root {
  --paper-3: #f8f7f2;
  --header-height: 66px;
  --anchor-offset: calc(var(--header-height) + 48px);
}

html,
body {
  scroll-padding-top: var(--anchor-offset);
}

section,
[id],
.scroll-section {
  scroll-margin-top: var(--anchor-offset);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: var(--paper-3);
  box-shadow: none;
  isolation: isolate;
}

.header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-height);
  min-height: var(--header-height);
  padding: 0;
}

.brand {
  flex: 0 0 auto;
  min-width: 0;
}

.nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(14px, 1.5vw, 24px);
  min-width: 0;
  max-width: calc(100% - 150px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  scrollbar-width: thin;
}

.nav-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: var(--header-height);
  border: 0;
  background: transparent;
  padding: 0;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--pccx-blue);
  text-underline-offset: 7px;
}

.hero-content {
  padding-top: clamp(96px, 8vw, 128px);
}

.statement {
  padding-block: clamp(96px, 9vw, 142px);
}

.statement h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.03;
}

.blueband .wrap {
  padding-block: clamp(84px, 8vw, 124px);
}

.blueband h2 {
  max-width: 660px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.07;
}

.blueband p {
  font-size: 17px;
}

.platform-visual,
.platform-visual svg {
  min-height: 340px;
}

.evidence {
  padding-block: clamp(84px, 8vw, 124px);
}

.evidence h2 {
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.07;
}

.evidence-card h3 {
  color: var(--ink);
}

.split-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.06;
}

.partner {
  padding-block: clamp(104px, 9vw, 142px);
}

.partner-panel {
  align-items: start;
  gap: clamp(46px, 6vw, 76px);
}

.partner h2 {
  max-width: 600px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.07;
}

.partner p {
  font-size: 17px;
  line-height: 1.65;
}

.packet-box {
  margin-top: 32px;
  border: 1.5px solid var(--ink);
  background: var(--paper-3);
  padding: 0;
}

.packet-box h3 {
  margin: 0;
  border-bottom: 1.5px solid var(--ink);
  padding: 18px 20px;
  font-size: 22px;
}

.packet-box ul {
  border: 0;
  border-left: 0;
}

.packet-box li {
  min-height: 56px;
  border-color: rgba(11, 15, 20, 0.45);
  padding: 16px 18px;
}

.packet-box p {
  margin: 0;
  border-top: 1.5px solid var(--ink);
  background: #ffffff;
  padding: 18px 20px;
  color: var(--graphite-2);
  font-size: 15px;
}

.partner-actions {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 64px;
    --anchor-offset: calc(var(--header-height) + 48px);
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    height: var(--header-height);
    min-height: var(--header-height);
    padding: 0;
  }

  .nav {
    width: auto;
    justify-content: flex-start;
    max-width: calc(100% - 138px);
    padding: 0;
  }

  .nav-link {
    min-height: var(--header-height);
    padding: 0;
  }

  .hero-content {
    padding-top: 72px;
  }

  .blueband .wrap,
  .evidence,
  .partner {
    padding-block: 88px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --anchor-offset: calc(var(--header-height) + 44px);
  }

  .header-inner {
    gap: 14px;
  }

  .brand {
    font-size: 22px;
  }

  .mark {
    width: 26px;
    height: 26px;
  }

  .nav {
    max-width: calc(100% - 122px);
    gap: 14px;
    font-size: 13px;
  }

  .nav-link {
    min-height: var(--header-height);
  }

  .hero-content {
    padding-top: 56px;
  }

  .statement h2,
  .split-head h2,
  .partner h2,
  .blueband h2,
  .evidence h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .blueband .wrap,
  .evidence,
  .partner {
    padding-block: 76px;
  }

  .platform-visual,
  .platform-visual svg {
    min-height: 280px;
  }

  .packet-box ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  :root {
    --header-height: 58px;
    --anchor-offset: calc(var(--header-height) + 42px);
  }

  .nav {
    max-width: calc(100% - 116px);
    gap: 12px;
  }

  .nav-link {
    min-height: var(--header-height);
  }

  .hero-content {
    padding-top: 50px;
  }
}

/* Homepage IP-company depth pass. */
.hero h1 {
  max-width: 1080px;
  font-size: clamp(54px, 5.8vw, 92px);
}

.status-note {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--graphite-2);
  font-size: 14px;
  line-height: 1.5;
}

.stack-section,
.maturity,
.company-boundary {
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
  padding: clamp(88px, 8vw, 128px) 0;
}

.stack-section {
  border-top: 1px solid var(--line-dark);
  background: var(--white);
}

.stack-table {
  border-top: 2px solid var(--ink);
  border-left: 1.5px solid var(--ink);
  background: var(--paper-3);
}

.stack-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(270px, 1.3fr) minmax(150px, 0.62fr) minmax(220px, 1fr);
  min-height: 70px;
  border-bottom: 1.5px solid var(--ink);
}

.stack-row > * {
  display: flex;
  align-items: center;
  border-right: 1.5px solid rgba(11, 15, 20, 0.62);
  padding: 16px 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.42;
}

.stack-head {
  min-height: 46px;
  background: var(--graphite-2);
}

.stack-head > * {
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stack-row strong {
  font-family: var(--condensed);
  font-size: 21px;
}

.track-intro {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  margin-bottom: 34px;
}

.track-intro p {
  max-width: 720px;
  color: var(--graphite-2);
  font-size: 20px;
  line-height: 1.5;
}

.blueband {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
}

.blueband .wrap {
  align-items: start;
  padding-block: clamp(84px, 8vw, 124px);
}

.blueband .kicker,
.blueband h2 {
  color: var(--ink);
}

.blueband p {
  color: var(--graphite-2);
}

.architecture-map {
  min-height: auto;
  border: 1.5px solid var(--ink);
  background: var(--paper-3);
  padding: 24px;
}

.architecture-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}

.architecture-col {
  display: grid;
  align-content: start;
  min-height: 300px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--white);
}

.architecture-col span {
  border-bottom: 1.5px solid var(--ink);
  background: var(--graphite-2);
  color: var(--white);
  padding: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.architecture-col strong {
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 16px;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 22px;
  line-height: 1.08;
}

.architecture-col strong:last-child {
  border-bottom: 0;
}

.architecture-foot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.architecture-foot span {
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 12px 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.maturity {
  background: var(--white);
}

.maturity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}

.maturity-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 245px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper-3);
  padding: 22px;
}

.maturity-grid article:nth-child(odd) {
  background: var(--paper);
}

.maturity-grid span {
  width: max-content;
  border-top: 2px solid var(--pccx-blue);
  padding-top: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.maturity-grid h3 {
  margin-top: 22px;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 25px;
  line-height: 1.08;
}

.maturity-grid p {
  margin-top: 14px;
  color: var(--graphite-2);
  font-size: 15px;
  line-height: 1.5;
}

.maturity-grid em {
  align-self: end;
  margin-top: 20px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  color: var(--ink);
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.evidence .wrap {
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
}

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

.evidence-card {
  min-height: 238px;
}

.company-boundary {
  background: var(--paper);
}

.company-rows {
  border-top: 1.5px solid var(--ink);
}

.company-row {
  display: grid;
  grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1.4fr) minmax(180px, 0.7fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  min-height: 98px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  text-decoration: none;
}

.company-row:hover,
.company-row:focus-visible {
  color: var(--ink);
  background: var(--paper-3);
}

.company-row span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-row strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.company-row em {
  justify-self: end;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
  text-align: right;
  text-decoration: underline;
  text-decoration-color: var(--pccx-blue);
  text-underline-offset: 5px;
}

.company-note {
  max-width: 900px;
  margin-top: 28px;
  border-left: 3px solid var(--pccx-blue);
  padding-left: 18px;
  color: var(--graphite-2);
  font-size: 16px;
  line-height: 1.6;
}

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

@media (max-width: 1180px) {
  .stack-row {
    grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1.2fr) minmax(140px, 0.7fr) minmax(180px, 0.9fr);
  }

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

  .company-row {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
  }

  .company-row em {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .stack-table {
    border-right: 1.5px solid var(--ink);
  }

  .stack-row,
  .stack-row.stack-head {
    display: block;
    min-height: 0;
    border-right: 0;
  }

  .stack-head {
    display: none;
  }

  .stack-row > * {
    display: block;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .stack-row > *:last-child {
    border-bottom: 0;
  }

  .stack-row > *::before {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .stack-row strong::before {
    content: "Layer";
  }

  .stack-row span:nth-of-type(1)::before {
    content: "Current role";
  }

  .stack-row span:nth-of-type(2)::before {
    content: "Public status";
  }

  .stack-row span:nth-of-type(3)::before {
    content: "Commercial relevance";
  }

  .track-intro,
  .architecture-columns,
  .architecture-foot,
  .company-row {
    grid-template-columns: 1fr;
  }

  .architecture-col {
    min-height: 0;
  }

  .company-row {
    gap: 10px;
    padding: 24px 0;
  }

  .company-row em {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .stack-section,
  .maturity,
  .company-boundary {
    padding-block: 74px;
  }

  .maturity-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .maturity-grid article {
    min-height: auto;
  }

  .architecture-map {
    padding: 16px;
  }

  .packet-box ul {
    grid-template-columns: 1fr;
  }
}

.nav-link,
.hero-cta,
.button,
.quick a,
.records-jump a,
.record-links a,
.records-contact-grid a,
.packet-actions a,
.side-list a,
.question-list a,
.repo-card,
.index-row,
.res-row a,
.company-row,
.foot-col a{
  transition:background-color .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.hero-cta:hover,
.hero-cta:focus-visible,
.button:hover,
.button:focus-visible,
.record-links a:hover,
.record-links a:focus-visible,
.records-contact-grid a:hover,
.records-contact-grid a:focus-visible,
.packet-actions a:hover,
.packet-actions a:focus-visible,
.res-row a:hover,
.res-row a:focus-visible{
  background:#101318;
  border-color:#101318;
  color:#fff;
  transform:translateY(-1px);
}
.hero-cta.primary:hover,
.hero-cta.primary:focus-visible,
.button.primary:hover,
.button.primary:focus-visible,
.partner .button.primary:hover,
.partner .button.primary:focus-visible{
  background:#fff;
  border-color:#101318;
  color:#101318;
}
.hero-cta.secondary:hover,
.hero-cta.secondary:focus-visible,
.hero-cta.accent:hover,
.hero-cta.accent:focus-visible{
  background:#101318;
  border-color:#101318;
  color:#fff;
}
.records-contact-grid a:hover span,
.records-contact-grid a:hover strong,
.records-contact-grid a:focus-visible span,
.records-contact-grid a:focus-visible strong,
.record-links a:hover,
.record-links a:focus-visible{
  color:#fff;
}
.quick a:hover,
.quick a:focus-visible,
.records-jump a:hover,
.records-jump a:focus-visible,
.index-row:hover,
.index-row:focus-visible,
.company-row:hover,
.company-row:focus-visible{
  background:#f2f5f8;
  color:#101318;
  box-shadow:inset 4px 0 0 var(--pccx-blue);
}
.foot-col a:hover,
.foot-col a:focus-visible{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
}
button.nav-link:hover,
button.nav-link:focus-visible{
  background:#101318;
  color:#fff;
}
.brand-wordmark{
  gap:0;
  min-width:auto;
  font-family:"Arial Black",Arial,Helvetica,sans-serif;
  font-size:28px;
  font-weight:900;
  letter-spacing:-.045em;
  color:#000;
}
.brand-wordmark:hover,
.brand-wordmark:focus-visible{
  color:#000;
}


/* Current homepage, localized landing, and legal-center rules. */
:root{
  --ink:#101820; --text:#2a3540; --muted:#5d6a76; --line:#d7dee5; --line-strong:#9ea9b4;
  --blue:#005ca8; --blue-strong:#0b5fff; --green:#0b8a70; --orange:#d86b27; --red:#c9282d;
  --white:#fff; --surface:#f6f8fa; --surface-2:#eef2f6; --dark:#20262d; --dark-2:#111820;
  --max:1340px; --gutter:clamp(22px,4vw,48px);
}
*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:#fff;color:var(--ink);font-family:Arial,Helvetica,"Noto Sans KR",sans-serif;font-size:17px;line-height:1.58;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}a{color:inherit;text-decoration:none}a:hover{color:var(--blue)}img{display:block;max-width:100%;height:auto}.wrap{width:min(var(--max),calc(100% - var(--gutter)*2));margin:0 auto}.tm{font-size:.45em;vertical-align:super;margin-left:1px}.skip-link{position:absolute;left:-999px;top:auto}.skip-link:focus{left:12px;top:12px;z-index:100;background:#fff;padding:8px;border:1px solid var(--ink)}
.site-header{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.98);border-bottom:1px solid var(--line);backdrop-filter:blur(6px)}.header-inner{min-height:66px;display:flex;align-items:center;justify-content:space-between;gap:28px}.brand{display:inline-flex;align-items:center;gap:10px;font-weight:650;font-size:24px;letter-spacing:-.015em}.brand img{width:30px;height:30px}.nav{display:flex;gap:22px;align-items:center;font-size:14px;font-weight:520;white-space:nowrap}.nav a{padding:23px 0 20px;border-bottom:2px solid transparent}.nav a:hover{border-color:var(--blue)}
.eyebrow,.kicker{margin:0 0 15px;color:#244f7a;font-size:13px;font-weight:520;letter-spacing:.015em;text-transform:none}h1,h2,h3,p{margin-top:0}h1{max-width:790px;margin-bottom:24px;font-size:clamp(48px,5.2vw,78px);font-weight:520;line-height:1.07;letter-spacing:-.016em}h2{font-size:clamp(38px,3.8vw,58px);line-height:1.13;font-weight:520;letter-spacing:-.012em}h3{font-weight:560}.lead{max-width:760px;color:var(--text);font-size:19px;line-height:1.62;margin-bottom:32px}.button{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 23px;border:1px solid #111820;background:#fff;color:#111820;font-size:15px;font-weight:520;white-space:nowrap}.button.primary{background:#111820;color:#fff}.button:hover{border-color:var(--blue);color:var(--blue)}.button.primary:hover{background:var(--blue);border-color:var(--blue);color:#fff}.actions{display:flex;flex-wrap:wrap;gap:12px}
.hero{border-bottom:1px solid var(--line);background:#fff}.hero-grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(430px,1.08fr);gap:clamp(44px,6vw,86px);align-items:center;padding:clamp(76px,8vw,118px) 0 54px}.hero-media{overflow:hidden}.media-card{border:1px solid var(--line-strong);background:#fff}.media-card--photo img{width:100%;aspect-ratio:16/10;object-fit:cover;object-position:center}.media-card--diagram img{width:100%;aspect-ratio:16/10;object-fit:contain;background:#fff}.media-card figcaption,.gallery-card figcaption,.diagram-frame figcaption,.logic-grid figcaption,.feature-visual figcaption{padding:12px 15px;border-top:1px solid var(--line);font:12px/1.4 Arial,Helvetica,sans-serif;color:#526172;letter-spacing:0}
.quick-rail{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);background:#f9fbfd}.quick-rail a{min-height:112px;display:grid;grid-template-columns:auto 1fr;gap:16px;padding:25px 28px;border-right:1px solid var(--line)}.quick-rail a:last-child{border-right:0}.quick-rail span{width:30px;height:30px;display:grid;place-items:center;border:1px solid var(--ink);font-size:12px;font-weight:600}.quick-rail strong{font-size:17px;font-weight:560}.quick-rail small{display:block;margin-top:5px;color:var(--muted);font-size:13.5px;line-height:1.42}
section{scroll-margin-top:82px}.anchor-compat{display:block;position:relative;top:-82px;visibility:hidden;height:0}.section-pad{padding:clamp(86px,10vw,128px) 0}.section-head{display:grid;grid-template-columns:220px minmax(0,1fr);gap:52px;align-items:start;margin-bottom:42px}.section-head p:not(.kicker){max-width:820px;font-size:18px;line-height:1.6;color:var(--text)}.compact-head{margin-bottom:30px}
.latest{border-bottom:1px solid var(--line);background:#fff}.latest-grid{display:grid;grid-template-columns:1.15fr repeat(4,1fr);border-left:1px solid var(--line)}.latest-head,.latest-grid a{min-height:132px;padding:25px 26px;border-right:1px solid var(--line)}.latest-head h2{font-size:30px;line-height:1.1;margin:0}.latest-grid a strong{display:block;font-size:18px;font-weight:560;margin-bottom:10px}.latest-grid a span{display:block;color:var(--muted);font-size:14px;line-height:1.44}
.records-row{display:grid;grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);gap:48px;align-items:start}.record-table{border-top:2px solid #111820;border-bottom:1px solid var(--line-strong);background:#fff}.record-row{display:grid;grid-template-columns:190px minmax(0,1fr);border-bottom:1px solid var(--line)}.record-row:last-child{border-bottom:0}.record-row span,.record-row strong{padding:21px 24px}.record-row span{font-weight:560;color:#263543;border-right:1px solid var(--line)}.record-row strong{font-size:17.5px;font-weight:520;line-height:1.45}.record-note{border:1px solid var(--line);background:#f9fbfd;padding:28px}.record-note h3{font-size:21px;margin:0 0 16px}.record-note ul{margin:0;padding-left:20px;color:var(--text)}.record-note li{margin:8px 0}
.feature-pair{padding:clamp(78px,9vw,116px) 0;background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.feature-pair-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}.feature-visual{margin:0;border:1px solid var(--line-strong);background:#fff}.feature-visual img{width:100%;aspect-ratio:4/3;object-fit:contain;background:#fff}.feature-visual figcaption strong{display:block;font-size:17px;color:var(--ink);font-weight:560}.feature-visual figcaption span{display:block;margin-top:4px;color:var(--muted)}
.tracks-section{padding:clamp(90px,10vw,130px) 0;background:#eef2f6;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.product-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid #111820;background:#111820}.product{background:#fff;border-right:1px solid #111820}.product:last-child{border-right:0}.product-art{height:210px;border-bottom:1px solid #111820;overflow:hidden}.product-art svg{display:block;width:100%;height:100%;overflow:hidden}.product-body{min-height:232px;padding:30px 28px}.product h3{margin:0 0 16px;font-size:30px;line-height:1.08;letter-spacing:-.02em}.product p{margin:0;color:#13202b;font-size:16.5px}.product-foot{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid rgba(17,24,32,.55)}.product-foot span{padding:17px 20px;border-right:1px solid rgba(17,24,32,.35);font-size:12px;font-weight:600;letter-spacing:.02em}.product-foot span:last-child{border-right:0}.product-standard .product-body,.product-standard .product-foot{background:#f2cc2f}.product-opencore .product-body,.product-opencore .product-foot{background:#60bd16}.product-lab .product-body,.product-lab .product-foot{background:#f36b1d}.product-evaluation .product-body,.product-evaluation .product-foot{background:#23a7c8}
.image-band{padding:clamp(90px,10vw,130px) 0;background:#fff}.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.gallery-card{margin:0;border:1px solid var(--line-strong);background:#fff;overflow:hidden}.gallery-card img{width:100%;aspect-ratio:4/3;object-fit:cover}.gallery-card.wide{grid-column:span 2}.gallery-card.wide img{aspect-ratio:16/9}.gallery-card.contain img{object-fit:contain;background:#fff;padding:12px}
.logic-section{padding:clamp(70px,8vw,104px) 0;background:#f6f8fb;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.logic-layout{display:grid;grid-template-columns:minmax(260px,.5fr) minmax(0,1.5fr);gap:54px;align-items:start}.logic-layout p{color:var(--text);font-size:17px}.logic-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.logic-grid figure{margin:0;border:1px solid var(--line);background:#fff}.logic-grid img{width:100%;aspect-ratio:16/9;object-fit:contain;background:#fff;padding:8px}.logic-grid figcaption{font-size:11px;padding:9px 10px}
.dark-section{background:var(--dark);color:#fff}.dark-section .kicker{color:#bcd5ff}.dark-section p{color:#d8e2ee}.split-grid{display:grid;grid-template-columns:minmax(300px,.82fr) minmax(440px,1.18fr);gap:clamp(44px,7vw,86px);align-items:center}.dark-copy h2{max-width:640px}.dark-copy p{max-width:620px;font-size:18px}.dark-button{background:transparent;color:#fff;border-color:#87919d}.diagram-frame{margin:0;border:1px solid #717d89;background:#111820;overflow:hidden}.diagram-frame.light{background:#fff;border-color:var(--line-strong)}.diagram-frame img{display:block;width:100%;height:auto;max-height:560px;object-fit:contain;background:#fff}.dark-section .diagram-frame img{background:#232a31}.dark-section .diagram-frame figcaption{color:#d8e2ee;border-color:#697582}
.evidence-section{background:#fff}.evidence-section p{max-width:620px;color:var(--text);font-size:18px}.evidence-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:36px;border-top:1px solid #111820;border-left:1px solid #111820}.evidence-cards article{min-height:165px;padding:26px 28px;border-right:1px solid #111820;border-bottom:1px solid #111820}.evidence-cards span{display:block;margin-bottom:20px;color:#244f7a;font-size:13px;font-weight:600}.evidence-cards strong{font-size:18px;line-height:1.4;font-weight:560}
.rows{border-top:1px solid #111820}.rows a{display:grid;grid-template-columns:220px minmax(0,1fr) 200px;gap:30px;align-items:center;padding:25px 0;border-bottom:1px solid var(--line)}.rows span{font-size:18px;font-weight:560}.rows strong{font-weight:400;color:var(--text)}.rows em{justify-self:end;color:var(--blue);font-style:normal;font-weight:560;text-decoration:underline;text-underline-offset:4px}.company-section{background:#f9fbfd}.contact-grid{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid #111820;border-left:1px solid #111820}.contact-grid div{min-height:145px;padding:24px;border-right:1px solid #111820;border-bottom:1px solid #111820;background:#fff}.contact-grid span{display:block;margin-bottom:22px;color:#244f7a;font-weight:600}.contact-grid a{font-size:18px;font-weight:560}.contact-grid small{display:block;margin-top:6px;color:var(--muted)}
.site-footer{background:#0b1016;color:#dbe6f3;border-top:4px solid var(--blue);padding:58px 0 34px}.footer-grid{display:grid;grid-template-columns:1.35fr 1fr 1fr 1fr 1fr;gap:52px}.footer-brand strong{display:block;color:#fff;font-size:26px;margin-bottom:16px}.footer-brand p{color:#b8c6d8;font-size:14px;max-width:280px}.footer-grid h4{margin:0 0 16px;color:#c7dcff;font-size:12px;font-weight:600;letter-spacing:.06em}.footer-grid a{display:block;color:#e6eef8;margin-bottom:9px;font-size:14px}.footer-bottom{display:grid;grid-template-columns:1fr 1.25fr 1fr;gap:36px;margin-top:42px;padding-top:24px;border-top:1px solid #313a45;color:#9eb0c4;font-size:12px}
@media(max-width:1100px){.hero-grid,.split-grid,.logic-layout,.records-row{grid-template-columns:1fr}.latest-grid{grid-template-columns:repeat(2,1fr)}.latest-head{grid-column:1/-1}.quick-rail,.product-grid,.gallery-grid,.logic-grid,.evidence-cards,.footer-grid{grid-template-columns:repeat(2,1fr)}.gallery-card.wide{grid-column:auto}.section-head{grid-template-columns:1fr;gap:18px}.rows a{grid-template-columns:1fr}.rows em{justify-self:start}.footer-bottom{grid-template-columns:1fr}}
@media(max-width:700px){.wrap{width:min(100% - 34px,var(--max))}.nav{display:none}h1{font-size:42px}.lead{font-size:17px}.actions{flex-direction:column}.button{width:100%}.hero-grid{padding:60px 0 38px}.quick-rail,.latest-grid,.feature-pair-grid,.product-grid,.gallery-grid,.logic-grid,.evidence-cards,.contact-grid,.footer-grid{grid-template-columns:1fr}.quick-rail a,.latest-head,.latest-grid a{border-right:0;border-bottom:1px solid var(--line)}.product{border-right:0;border-bottom:1px solid #111820}.product:last-child{border-bottom:0}.record-row{grid-template-columns:1fr}.record-row span,.record-row strong{border-right:0}.rows a{gap:8px}.split-grid{gap:28px}.footer-bottom{grid-template-columns:1fr}}

:root{
  --charcoal:#20262d;
  --charcoal-2:#2d343c;
  --hover-surface:#f3f6f9;
  --rule:#d7dfe7;
}
html{scroll-behavior:smooth;}
body{background:#fff;}
.site-header{box-shadow:0 1px 0 rgba(17,24,32,.04);}
.nav a,.button,.latest-grid a,.quick-rail a,.rows a,.contact-grid a,.feature-visual,.gallery-card,.logic-grid figure,.product{transition:background-color .18s ease,border-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease;}
.nav a:hover{color:var(--blue);text-decoration:underline;text-underline-offset:5px;}
.button:hover{background:var(--charcoal);border-color:var(--charcoal);color:#fff;transform:translateY(-1px);}
.button.primary:hover{background:var(--charcoal-2);border-color:var(--charcoal-2);color:#fff;}
.dark-section .button:hover,.dark-button:hover{background:#fff;border-color:#fff;color:#101820;}
.quick-rail a:hover,.latest-grid a:hover,.rows a:hover,.contact-grid div:hover{background:var(--hover-surface);color:var(--ink);}
.latest-grid a:hover strong,.quick-rail a:hover strong{color:var(--blue);}
.feature-visual:hover,.gallery-card:hover,.logic-grid figure:hover{border-color:#111820;box-shadow:0 8px 18px rgba(17,24,32,.07);transform:translateY(-2px);}
.product:hover{box-shadow:0 10px 24px rgba(17,24,32,.08);transform:translateY(-2px);z-index:1;}
.media-card{overflow:hidden;}
.media-card--photo img{aspect-ratio:16/9;object-fit:cover;object-position:center;display:block;}
.media-card--diagram img{aspect-ratio:16/9;object-fit:contain;display:block;padding:12px;}
.feature-visual{overflow:hidden;}
.feature-visual img{display:block;width:100%;aspect-ratio:4/3;object-fit:contain;object-position:center;background:#fff;}
.image-band{background:#fff;}
.gallery-grid{align-items:stretch;}
.gallery-card{display:flex;flex-direction:column;overflow:hidden;}
.gallery-card img{display:block;width:100%;height:auto;object-position:center;background:#fff;}
.gallery-card--anchor img{aspect-ratio:16/9;object-fit:cover;}
.gallery-card--diagram img,.gallery-card.contain img{aspect-ratio:4/3;object-fit:contain;padding:14px;background:#fff;}
.diagram-frame{overflow:hidden;}
.diagram-frame img{display:block;width:100%;aspect-ratio:16/9;max-height:none;object-fit:contain;object-position:center;background:#fff;}
.dark-section .diagram-frame img{background:#232a31;}
.logic-section--sub{padding:62px 0;background:#fff;border-top:1px solid var(--rule);border-bottom:1px solid var(--rule);}
.logic-section--sub .logic-layout{grid-template-columns:minmax(260px,360px) minmax(0,1fr);gap:44px;align-items:start;}
.logic-section--sub h2{font-size:clamp(28px,2.8vw,42px);font-weight:500;letter-spacing:-.012em;}
.logic-section--sub p{max-width:360px;color:var(--muted);}
.logic-section--sub .logic-grid{display:grid;grid-template-columns:repeat(4,minmax(150px,220px));justify-content:end;gap:14px;}
.logic-section--sub .logic-grid figure{margin:0;border:1px solid var(--line);background:#fff;}
.logic-section--sub .logic-grid img{display:block;width:100%;aspect-ratio:16/9;object-fit:contain;object-position:center;background:#fff;padding:12px;}
.logic-section--sub .logic-grid figcaption{font-size:11.5px;color:var(--muted);padding:9px 10px;border-top:1px solid var(--line);}
.product-art svg{shape-rendering:geometricPrecision;}
.product-art text{font-family:Arial,Helvetica,sans-serif!important;letter-spacing:.4px!important;font-size:10px!important;}
.evidence-cards article:hover{background:#f7fafc;}
@media(max-width:1100px){
  .logic-section--sub .logic-layout{grid-template-columns:1fr;}
  .logic-section--sub p{max-width:760px;}
  .logic-section--sub .logic-grid{justify-content:start;grid-template-columns:repeat(4,minmax(130px,1fr));}
}
@media(max-width:700px){
  .button:hover,.feature-visual:hover,.gallery-card:hover,.logic-grid figure:hover,.product:hover{transform:none;box-shadow:none;}
  .logic-section--sub .logic-grid{grid-template-columns:repeat(2,1fr);}
  .media-card--photo img,.media-card--diagram img,.diagram-frame img{aspect-ratio:16/10;}
}


:root{--charcoal:#1f252c;--charcoal-2:#111820;--tsmc-blue:#005a9c;--asml-orange:#d46b2a;--soft-surface:#f5f7f9;--panel-line:#cfd8e1;}
body{background:#fff;}
.button,.nav a,.quick-rail a,.latest-grid a,.rows a,.contact-grid a,.feature-visual,.gallery-card,.logic-grid figure,.product{transition:background-color .16s ease,border-color .16s ease,color .16s ease,box-shadow .16s ease;}
.button:hover{background:var(--charcoal);border-color:var(--charcoal);color:#fff;}
.button.primary:hover{background:#0b1016;border-color:#0b1016;color:#fff;}
.dark-section .button:hover{background:#fff;border-color:#fff;color:#111820;}
.quick-rail a:hover,.latest-grid a:hover,.rows a:hover,.contact-grid a:hover{background:#f4f7fa;color:#111820;}
.nav a:hover{color:#111820;border-color:var(--tsmc-blue);}
/* Stop all image overflow/crop issues unless explicitly marked as a photo crop. */
.media-card,.feature-visual,.gallery-card,.diagram-frame,.logic-grid figure{overflow:hidden;}
.media-card img,.feature-visual img,.gallery-card img,.diagram-frame img,.logic-grid img{display:block;width:100%;height:auto;object-position:center;background:#fff;}
.hero-media img,.media-card--photo img{aspect-ratio:16/10;object-fit:contain!important;padding:0;background:#fff;}
.feature-visual img{aspect-ratio:4/3;object-fit:contain!important;padding:10px;}
.gallery-card img,.gallery-card--anchor img,.gallery-card--diagram img,.gallery-card.contain img{aspect-ratio:16/10;object-fit:contain!important;padding:12px;background:#fff;}
.gallery-card.wide img{aspect-ratio:16/9;object-fit:contain!important;padding:12px;}
.diagram-frame img,.dark-section .diagram-frame img{aspect-ratio:16/9;object-fit:contain!important;background:#fff;padding:0;max-height:none;}
.logic-section--sub{background:#fff;padding:56px 0;border-top:1px solid var(--panel-line);border-bottom:1px solid var(--panel-line);}
.logic-section--sub .logic-layout{grid-template-columns:minmax(260px,340px) minmax(0,1fr);gap:44px;}
.logic-section--sub h2{font-size:clamp(26px,2.5vw,38px);font-weight:500;letter-spacing:-.01em;}
.logic-section--sub p{font-size:15.5px;color:#5b6670;max-width:330px;}
.logic-section--sub .logic-grid{grid-template-columns:repeat(4,minmax(135px,1fr));gap:16px;}
.logic-section--sub .logic-grid figure{border:1px solid var(--panel-line);background:#fff;}
.logic-section--sub .logic-grid img{aspect-ratio:16/9;object-fit:contain!important;padding:8px;background:#fff;}
.logic-section--sub .logic-grid figcaption{font-size:11px;color:#526172;padding:8px 10px;border-top:1px solid var(--panel-line);}
.feature-visual:hover,.gallery-card:hover,.logic-grid figure:hover{border-color:#8f9aa5;box-shadow:0 4px 12px rgba(17,24,32,.05);}
.product:hover{box-shadow:inset 0 0 0 2px rgba(17,24,32,.18);}
.image-band{background:#fff;}
.dark-section{background:#20272e;}
.diagram-frame{background:#20272e;border-color:#8d99a6;}
.diagram-frame.light{background:#fff;border-color:#aeb9c3;}
.media-card figcaption,.gallery-card figcaption,.diagram-frame figcaption,.logic-grid figcaption,.feature-visual figcaption{text-transform:none;letter-spacing:0;}
@media(max-width:1100px){.logic-section--sub .logic-layout{grid-template-columns:1fr}.logic-section--sub p{max-width:720px}.logic-section--sub .logic-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.logic-section--sub .logic-grid{grid-template-columns:1fr}.gallery-card.wide{grid-column:auto}.hero-media img,.media-card--photo img,.diagram-frame img{aspect-ratio:16/11}}


.route-section,
.evaluation-section{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.route-columns{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid #111820;
  border-left:1px solid var(--line);
}
.route-columns article{
  min-height:190px;
  padding:26px 28px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.route-columns article:hover{background:#f5f7f9;}
.route-columns span,
.packet-list span{
  display:block;
  margin-bottom:18px;
  color:#244f7a;
  font-size:13px;
  font-weight:560;
}
.route-columns strong,
.packet-list strong{
  display:block;
  margin-bottom:12px;
  font-size:20px;
  line-height:1.28;
  font-weight:560;
  letter-spacing:-.01em;
}
.route-columns p,
.packet-list p{
  margin:0;
  color:var(--muted);
  font-size:15.5px;
  line-height:1.5;
}
.packet-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid #111820;
  border-left:1px solid var(--line);
}
.packet-list div{
  min-height:172px;
  padding:25px 24px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.packet-list div:hover{background:#f5f7f9;}
.evaluation-actions{margin-top:28px;}
.logic-section--sub{
  padding:44px 0;
  background:#f7f9fb;
}
.logic-section--sub .logic-layout{
  grid-template-columns:minmax(230px,300px) minmax(0,1fr);
  gap:34px;
}
.logic-section--sub h2{font-size:clamp(24px,2.2vw,34px);}
.logic-section--sub p{font-size:15px;line-height:1.5;max-width:300px;}
.logic-section--sub .logic-grid{
  grid-template-columns:repeat(4,minmax(140px,1fr));
  gap:12px;
}
.logic-section--sub .logic-grid figure{
  background:#fff;
  border:1px solid #d1dae3;
  box-shadow:none!important;
  transform:none!important;
}
.logic-section--sub .logic-grid img{
  aspect-ratio:16/9;
  object-fit:contain!important;
  padding:10px;
  max-height:135px;
}
.logic-section--sub .logic-grid figcaption{
  font-size:11.5px;
  color:#526172;
  padding:8px 10px;
  border-top:1px solid #d1dae3;
}
.dark-section{background:#20272e;}
#technology.dark-section,#evaluation.dark-section{background:#fff;}
@media(max-width:1100px){
  .route-columns,.packet-list{grid-template-columns:repeat(2,1fr);}
  .logic-section--sub .logic-layout{grid-template-columns:1fr;}
  .logic-section--sub .logic-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:700px){
  .route-columns,.packet-list,.logic-section--sub .logic-grid{grid-template-columns:1fr;}
  .route-columns article,.packet-list div{min-height:auto;}
}


.breadcrumb-strip{height:36px;background:#6d747b;color:#fff;font-size:13px;display:flex;align-items:center;}
.breadcrumb-strip .wrap{opacity:.88;}
.hero--image{position:relative;min-height:520px;background:#111820 url('../img/hero-silicon-clean.webp') center center/cover no-repeat;border-bottom:0;overflow:hidden;}
.hero--image::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.62) 0%,rgba(0,0,0,.46) 42%,rgba(0,0,0,.16) 76%,rgba(0,0,0,.08) 100%);}
.hero--image .hero-grid{position:relative;z-index:1;display:block;min-height:520px;padding:96px 0 86px;}
.hero--image .hero-copy{max-width:720px;color:#fff;text-shadow:0 2px 12px rgba(0,0,0,.28);}
.hero--image .eyebrow{color:#fff;opacity:.92;font-weight:500;letter-spacing:.02em;text-transform:none;}
.hero--image h1{color:#fff;font-size:clamp(44px,5.2vw,76px);line-height:1.05;font-weight:500;letter-spacing:-.018em;max-width:680px;}
.hero--image .lead{color:#fff;max-width:690px;font-size:19px;line-height:1.55;opacity:.96;}
.hero--image .button{border-color:#fff;color:#fff;background:rgba(0,0,0,.08);}
.hero--image .button.primary{background:#fff;color:#111820;border-color:#fff;}
.hero--image .button:hover{background:#20272e;border-color:#20272e;color:#fff;text-shadow:none;}
.hero--image .button.primary:hover{background:#20272e;border-color:#20272e;color:#fff;}
.hero--image .hero-media{display:none!important;}
.hero .quick-rail{background:#35424e;color:#fff;border-top:6px solid #fff;}
.hero .quick-rail a{background:transparent;color:#fff;border-color:rgba(255,255,255,.24);}
.hero .quick-rail a:hover{background:#20272e;color:#fff;}
.hero .quick-rail span,.hero .quick-rail small{color:#dbe3ea;}
.hero .quick-rail strong{color:#fff;}
.latest{background:#f1f3f5;}
.latest-grid{border-top:0;}
.latest-grid a{background:#fff;}
.logic-section--sub{display:none!important;}
.evidence-section{background:#fff;}
.evidence-head-clean{display:grid;grid-template-columns:minmax(220px,320px) minmax(0,1fr);gap:72px;align-items:start;}
.evidence-head-clean .kicker{grid-column:1;grid-row:1;color:#244f7a;}
.evidence-head-clean>div{grid-column:2;grid-row:1;}
.evidence-head-clean .diagram-frame{display:none!important;}
.evidence-section .split-grid{grid-template-columns:1fr!important;}
.evidence-section .diagram-frame{display:none!important;}
.evidence-cards{display:grid;grid-template-columns:1fr;border-top:1px solid #111820;border-left:0;border-right:0;}
.evidence-cards article{display:grid;grid-template-columns:220px 1fr;gap:28px;min-height:auto;padding:24px 0;border-left:0;border-right:0;border-bottom:1px solid #d3dce5;background:#fff;}
.evidence-cards article:hover{background:#f6f8fa;}
.evidence-cards span{display:block;font-size:16px;font-weight:500;color:#111820;}
.evidence-cards strong{font-size:18px;line-height:1.45;font-weight:500;color:#24313d;}
.route-section,.evaluation-section{background:#fff;}
.route-columns article,.packet-list div{background:#fff;}
.image-band{background:#fff;}
.gallery-grid{margin-bottom:22px;}
.gallery-card{box-shadow:none;}
.site-footer{margin-top:0;}
@media(max-width:900px){.breadcrumb-strip{display:none}.hero--image{min-height:500px}.hero--image .hero-grid{min-height:500px;padding:72px 0}.evidence-head-clean{grid-template-columns:1fr;gap:18px}.evidence-head-clean .kicker,.evidence-head-clean>div{grid-column:1}.evidence-cards article{grid-template-columns:1fr;gap:6px;padding:20px 0}.hero .quick-rail{grid-template-columns:1fr 1fr;}}
@media(max-width:640px){.hero .quick-rail{grid-template-columns:1fr}.hero--image h1{font-size:40px}.hero--image .lead{font-size:16.5px}}


:root{
  --pccx-red:#c61f2b;
  --pccx-blue:#005a9c;
  --pccx-green:#008676;
  --pccx-amber:#c69a2b;
  --pccx-charcoal:#20272e;
  --pccx-rail:#34424e;
}
.hero--image{min-height:560px;background-position:center center;}
.hero--image::before{background:linear-gradient(90deg,rgba(0,0,0,.64) 0%,rgba(0,0,0,.46) 40%,rgba(0,0,0,.18) 72%,rgba(0,0,0,.05) 100%);}
.hero--image .hero-grid{min-height:560px;padding:112px 0 96px;}
.hero--image .eyebrow{font-family:Arial,Helvetica,"Noto Sans KR",sans-serif;font-size:14px;letter-spacing:.01em;color:#e9eef4;}
.hero--image h1{font-size:clamp(48px,5.4vw,82px);font-weight:520;letter-spacing:-.018em;line-height:1.04;max-width:720px;}
.hero--image .lead{font-size:20px;line-height:1.55;max-width:740px;color:#f3f6f9;}
.front-resource-rail{background:var(--pccx-rail);color:#fff;border-top:6px solid #fff;border-bottom:6px solid #fff;}
.front-resource-grid{display:grid;grid-template-columns:repeat(4,1fr);}
.front-resource-grid a{min-height:148px;padding:29px 30px 24px;border-right:1px solid rgba(255,255,255,.25);color:#edf3f8;text-decoration:none;transition:background-color .16s ease,color .16s ease;}
.front-resource-grid a:first-child{border-left:1px solid rgba(255,255,255,.18);}
.front-resource-grid a:hover{background:#26313b;color:#fff;}
.front-resource-grid strong{display:block;margin:18px 0 13px;font-size:20px;line-height:1.25;font-weight:560;letter-spacing:-.01em;color:#fff;}
.front-resource-grid small{display:block;font-size:15px;line-height:1.42;color:#dbe4ec;}
.rail-tag{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:560;line-height:1;}
.rail-tag::after{content:'›';font-size:22px;line-height:.8;font-weight:700;}
.rail-red{color:#ff7078}.rail-blue{color:#8ec6ff}.rail-green{color:#73d8c5}.rail-amber{color:#edc86e}
.record-center-strip{background:#fff;border-bottom:1px solid var(--line);}
.record-center-grid{display:grid;grid-template-columns:1.2fr repeat(4,1fr);border-left:1px solid var(--line);}
.record-center-title,.record-center-grid a{min-height:142px;padding:28px 30px;border-right:1px solid var(--line);}
.record-center-title{background:#f4f6f8;}
.record-center-title h2{font-size:34px;line-height:1.08;font-weight:500;margin:0;letter-spacing:-.018em;}
.record-center-grid a{color:#111820;text-decoration:none;background:#fff;transition:background-color .16s ease,border-color .16s ease;}
.record-center-grid a:hover{background:#f5f8fb;}
.record-center-grid a span{display:inline-block;margin-bottom:18px;font-size:13px;font-weight:560;color:#244f7a;}
.record-center-grid a:nth-child(2) span{color:var(--pccx-red)}
.record-center-grid a:nth-child(3) span{color:var(--pccx-blue)}
.record-center-grid a:nth-child(4) span{color:var(--pccx-green)}
.record-center-grid a:nth-child(5) span{color:var(--pccx-amber)}
.record-center-grid a strong{display:block;margin:0 0 11px;font-size:19px;line-height:1.25;font-weight:560;letter-spacing:-.006em;}
.record-center-grid a small{display:block;font-size:14.5px;line-height:1.42;color:#5b6875;}
.section-head .kicker,.record-center-title .kicker{font-size:13px;color:#244f7a;font-weight:560;}
.section-head h2{font-weight:520;letter-spacing:-.014em;}
.product h3{font-size:31px;}
.rows span,.contact-grid span,.evidence-cards span{color:#244f7a;}
.evidence-cards article:nth-child(1) span{color:var(--pccx-red)}
.evidence-cards article:nth-child(2) span{color:var(--pccx-blue)}
.evidence-cards article:nth-child(3) span{color:var(--pccx-amber)}
.evidence-cards article:nth-child(4) span{color:var(--pccx-green)}
.hero .quick-rail{display:none!important;}
@media(max-width:1100px){
  .front-resource-grid{grid-template-columns:repeat(2,1fr);} .record-center-grid{grid-template-columns:1fr 1fr;} .record-center-title{grid-column:1/-1;}
}
@media(max-width:700px){
  .hero--image .hero-grid{min-height:500px;padding:80px 0;} .hero--image h1{font-size:42px}.hero--image .lead{font-size:17px}.front-resource-grid,.record-center-grid{grid-template-columns:1fr}.front-resource-grid a,.record-center-title,.record-center-grid a{min-height:auto;border-left:1px solid rgba(255,255,255,.18)}
}

.button,
.front-resource-grid a,
.record-center-grid a,
.rows a,
.contact-grid div,
.footer-grid a,
.record-table,
.feature-visual,
.gallery-card,
.product,
.route-columns article,
.packet-list div,
.evidence-cards article{
  transition:background-color .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.button:hover,
.button:focus-visible{
  background:#111820;
  border-color:#111820;
  color:#fff;
  transform:translateY(-1px);
}
.button.primary:hover,
.button.primary:focus-visible{
  background:#fff;
  border-color:#111820;
  color:#111820;
}
.hero--image .button:hover,
.hero--image .button:focus-visible{
  background:#fff;
  border-color:#fff;
  color:#111820;
  text-shadow:none;
}
.hero--image .button.primary:hover,
.hero--image .button.primary:focus-visible{
  background:#111820;
  border-color:#111820;
  color:#fff;
}
.front-resource-grid a:hover,
.front-resource-grid a:focus-visible{
  background:#20272e;
  color:#fff;
}
.record-center-grid a:hover,
.record-center-grid a:focus-visible,
.rows a:hover,
.rows a:focus-visible,
.route-columns article:hover,
.packet-list div:hover,
.evidence-cards article:hover{
  background:#f2f6fa;
  color:#111820;
}
.contact-grid div:hover,
.contact-grid div:focus-within{
  background:#111820;
  color:#fff;
}
.contact-grid div:hover span,
.contact-grid div:hover a,
.contact-grid div:hover small,
.contact-grid div:focus-within span,
.contact-grid div:focus-within a,
.contact-grid div:focus-within small{
  color:#fff;
}
.footer-grid a:hover,
.footer-grid a:focus-visible{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
}
.brand-wordmark{
  gap:0;
  font-family:"Arial Black",Arial,Helvetica,sans-serif;
  font-size:28px;
  font-weight:900;
  letter-spacing:-.045em;
  color:#000;
}
.brand-wordmark:hover,
.brand-wordmark:focus-visible{
  color:#000;
}

.lang-link{font-weight:650;color:#111820}
.legal-hero{padding:clamp(70px,8vw,112px) 0 54px;background:#f7f9fb;border-bottom:1px solid var(--line)}
.legal-hero h1{max-width:900px}
.legal-hero .lead{max-width:860px}

/* Altifigence brand swap only: preserve the PCCX site layout and visual system. */
.brand-wordmark.altifigence-brand{
  min-width:clamp(96px,9vw,122px);
  max-width:122px;
}
.brand-wordmark.altifigence-brand img{
  width:100%;
  height:auto;
}
.footer-brand.altifigence-footer-brand img,
.foot-brand.altifigence-footer-brand img{
  width:min(132px,100%);
  height:auto;
  margin-bottom:16px;
  filter:invert(1);
}
@media(max-width:700px){
  .brand-wordmark.altifigence-brand{
    min-width:92px;
    max-width:108px;
  }
}
.legal-meta{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px;color:#435160;font-size:14px}
.legal-meta span{padding:7px 10px;border:1px solid var(--line);background:#fff}
.legal-section{padding:clamp(58px,7vw,94px) 0}
.legal-section.alt{background:#f7f9fb;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.legal-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:52px;align-items:start}
.legal-nav{position:sticky;top:92px;border-top:1px solid #111820}
.legal-nav a{display:block;padding:13px 0;border-bottom:1px solid var(--line);color:#26323d;font-size:14px}
.legal-nav a:hover,.legal-nav a:focus-visible{color:#005ca8;text-decoration:underline;text-underline-offset:4px}
.policy-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.policy-card{display:flex;flex-direction:column;min-height:230px;padding:24px;border:1px solid var(--line-strong);background:#fff}
.policy-card span{display:block;margin-bottom:18px;color:#244f7a;font-size:13px;font-weight:650}
.policy-card h2,.policy-card h3{margin:0 0 12px;font-size:25px;line-height:1.18;font-weight:560}
.policy-card p{color:var(--text);font-size:15.5px;line-height:1.52}
.policy-card a{margin-top:auto;color:#005ca8;font-weight:650;text-decoration:underline;text-underline-offset:4px}
.policy-card:hover{border-color:#111820;box-shadow:0 8px 18px rgba(17,24,32,.06)}
.policy-body{max-width:920px}
.policy-body h2{margin-top:42px;font-size:clamp(28px,3vw,42px)}
.policy-body h3{margin-top:26px;font-size:22px}
.policy-body p,.policy-body li{color:#26323d;font-size:17px;line-height:1.68}
.policy-body ul,.policy-body ol{padding-left:22px}
.notice-box{padding:22px 24px;border:1px solid #111820;background:#fff}
.notice-box strong{display:block;margin-bottom:8px}
.legal-table{width:100%;border-collapse:collapse;margin:24px 0;border-top:1px solid #111820}
.legal-table th,.legal-table td{padding:14px 12px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
.legal-table th{width:30%;font-weight:650;color:#111820}
.form-list{display:grid;gap:12px;margin-top:22px}
.form-row{display:grid;grid-template-columns:minmax(220px,.8fr) minmax(0,1fr) auto;gap:18px;align-items:center;padding:16px 0;border-bottom:1px solid var(--line)}
.form-row strong{font-size:17px}
.form-row p{margin:0;color:var(--muted);font-size:14.5px}
.form-links{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.form-links a{display:inline-flex;align-items:center;min-height:36px;padding:0 12px;border:1px solid #111820;background:#fff;color:#111820;font-size:13px;font-weight:650}
.form-links a:hover,.form-links a:focus-visible{background:#111820;color:#fff}
.legal-footer-note{padding:24px 0;border-top:1px solid var(--line);color:var(--muted);font-size:13px}
@media(max-width:1100px){.legal-layout{grid-template-columns:1fr}.legal-nav{position:static}.policy-grid{grid-template-columns:repeat(2,1fr)}.form-row{grid-template-columns:1fr}.form-links{justify-content:flex-start}}
@media(max-width:700px){.policy-grid{grid-template-columns:1fr}.legal-meta{display:grid}.legal-table th,.legal-table td{display:block;width:100%}}

@media(max-width:700px){
  .site-header .header-inner{
    min-height:auto;
    padding:10px 0 0;
    gap:10px 14px;
    flex-wrap:wrap;
    align-items:center;
  }
  .site-header .brand-wordmark{
    font-size:25px;
    line-height:1;
  }
  .site-header .pccx-lang{
    order:2;
    margin-left:auto;
  }
  .site-header .nav{
    order:3;
    display:flex!important;
    width:calc(100% + 34px);
    margin:0 -17px;
    padding:0 17px;
    gap:18px;
    overflow-x:auto;
    overflow-y:hidden;
    border-top:1px solid var(--line);
    font-size:13px;
    white-space:nowrap;
    scrollbar-width:none;
  }
  .site-header .nav::-webkit-scrollbar{display:none;}
  .site-header .nav a{
    flex:0 0 auto;
    padding:12px 0 11px;
    border-bottom:2px solid transparent;
  }
  section{scroll-margin-top:112px;}
}
