:root {
  --runway: #78D64B;
  --ink: #13180F;
  --paper: #F4F3EC;
  --leaf: #B7ED93;
  --forest: #1E7A43;
  --white: #FFFFFF;
  --graphite: #3A4034;
  --grey: #777D72;
  --danger: #A92D22;
  --line: rgba(19, 24, 15, .20);
  --line-strong: rgba(19, 24, 15, .56);
  --line-dark: rgba(255, 255, 255, .20);
  --sans: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  --mono: "SFMono-Regular", "Roboto Mono", Consolas, "Liberation Mono", monospace;
  --max: 1280px;
  --page-pad: clamp(24px, 4.2vw, 64px);
  --grid-gap: clamp(16px, 1.9vw, 28px);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  font-feature-settings: "kern" 1, "liga" 1, "tnum" 1;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--runway); color: var(--ink); }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .24em; }
img { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; }
p, li { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

:focus-visible {
  outline: 3px solid var(--runway);
  outline-offset: 4px;
}

.skip, .skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 200;
  transform: translateY(-180%);
  background: var(--runway);
  color: var(--ink);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.skip:focus, .skip-link:focus { transform: none; }

.wrap {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  margin-inline: auto;
}

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums slashed-zero;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font: 750 11px/1.35 var(--sans);
  letter-spacing: .155em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 28px;
  height: 2px;
  background: var(--runway);
}

.eyebrow.on-dark { color: var(--leaf); }

/* Masthead: the same 12-column baseline used by every page section. */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 243, 236, .975);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  min-height: 80px;
  align-items: center;
}

.brand {
  grid-column: 1 / 5;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  text-decoration: none;
}

.brand img { width: 102px; flex: none; }

.brand-copy {
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  line-height: 1.15;
}

.brand-copy strong, .brand-copy span { display: block; }
.brand-copy strong { font-size: 12px; letter-spacing: .10em; }
.brand-copy span { margin-top: 5px; color: var(--graphite); font-size: 10px; letter-spacing: .025em; }

.nav {
  grid-column: 5 / 13;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(13px, 1.55vw, 24px);
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 79px;
  white-space: nowrap;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--runway);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav .workspace-link {
  min-height: auto;
  align-self: center;
  margin-left: 2px;
  padding: 10px 13px;
  border: 1px solid var(--ink);
}

.nav .workspace-link::after { display: none; }
.nav .workspace-link:hover { background: var(--ink); color: var(--white); }

.nav-toggle {
  display: none;
  justify-self: end;
  min-width: 64px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 9px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

/* Landing hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-bottom: 8px solid var(--runway);
}

.hero::before {
  content: "";
  position: absolute;
  top: -19%;
  right: 5.2%;
  width: 8px;
  height: 142%;
  background: var(--runway);
  transform: rotate(34deg);
  transform-origin: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 31.5% 0 auto;
  width: 1px;
  background: var(--line-dark);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  min-height: 620px;
  align-items: end;
}

.hero-main {
  grid-column: 1 / 9;
  padding: 112px 0 88px;
}

.hero h1 {
  max-width: 10.7em;
  margin: 22px 0 24px;
  font-size: clamp(56px, 6.05vw, 96px);
  font-weight: 660;
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 .accent { color: var(--runway); }

.hero .lead {
  max-width: 42em;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
}

.hero-aside {
  grid-column: 10 / 13;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 112px 0 88px 0;
}

.hero-stat {
  min-height: 112px;
  padding: 20px 0 16px;
  border-top: 1px solid var(--line-dark);
}

.hero-stat strong {
  display: block;
  color: var(--runway);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.045em;
}

.hero-stat span {
  display: block;
  max-width: 18em;
  margin-top: 10px;
  color: rgba(255, 255, 255, .60);
  font-size: 12px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 11px 15px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

a.button::after { content: "↗"; font: 600 14px/1 var(--mono); }
.button.primary { background: var(--runway); border-color: var(--runway); color: var(--ink); }
.button.ghost { color: var(--white); }
.button.dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button:hover { background: var(--leaf); border-color: var(--leaf); color: var(--ink); }

/* Editorial section system */
.section { padding: clamp(88px, 8vw, 120px) 0; border-bottom: 1px solid var(--line); }
.section.white { background: var(--white); }
.section.dark { background: var(--ink); color: var(--white); }

.section-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  align-items: start;
  margin-bottom: clamp(48px, 5vw, 72px);
}

.section-head > :first-child { grid-column: 1 / 7; }
.section-head > .section-intro { grid-column: 8 / 13; }

.section h2, .status-register h2 {
  max-width: 12em;
  margin: 14px 0 0;
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -.052em;
}

.section-intro {
  max-width: 38em;
  margin: 2px 0 0;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.78;
}

.dark .section-intro { color: rgba(255, 255, 255, .68); }

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

.principle {
  min-height: 300px;
  padding: 28px 24px 36px 0;
  border-right: 1px solid var(--line);
}

.principle + .principle { padding-left: 24px; }
.principle:last-child { border-right: 0; }
.principle-num { color: var(--forest); font-size: 11px; font-weight: 750; letter-spacing: .04em; }
.principle h3 { margin: 76px 0 12px; font-size: 20px; line-height: 1.32; }
.principle p { max-width: 24em; margin: 0; color: var(--graphite); font-size: 14px; }

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.program-card {
  grid-column: span 6;
  min-height: 360px;
  padding: 32px 34px 36px 0;
  border-right: 1px solid var(--line);
}

.program-card + .program-card { padding-left: 34px; }
.program-card:last-child { border-right: 0; }
.program-card.dark-card { background: var(--ink); color: var(--white); padding-right: 34px; }
.program-card .kicker { color: var(--forest); font-size: 11px; font-weight: 750; letter-spacing: .13em; }
.dark-card .kicker { color: var(--leaf); }
.program-card h3 { max-width: 16em; margin: 22px 0 16px; font-size: clamp(26px, 2.3vw, 34px); line-height: 1.12; letter-spacing: -.035em; }
.program-card p { max-width: 32em; margin: 0; color: var(--graphite); }
.dark-card p { color: rgba(255, 255, 255, .67); }
.program-grid.report-layers > .program-card { grid-column: span 4; }
.program-grid.report-states > .program-card { grid-column: span 3; min-height: 330px; padding-left: 22px; padding-right: 22px; }
.program-grid.report-states > .program-card:first-child { padding-left: 0; }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--line); }
.dark-card .metric-row { border-color: var(--line-dark); }
.metric { padding: 18px 12px 0 0; }
.metric strong { display: block; color: var(--forest); font-size: 28px; font-weight: 650; line-height: 1; letter-spacing: -.04em; }
.dark-card .metric strong { color: var(--runway); }
.metric span { display: block; margin-top: 6px; color: var(--grey); font-size: 11px; }

.journey {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.journey-step {
  position: relative;
  grid-column: span 2;
  min-height: 250px;
  padding: 26px 20px 32px 0;
  border-right: 1px solid var(--line);
}

.journey-step + .journey-step { padding-left: 20px; }
.journey-step:last-child { border-right: 0; }
.journey-step::after { content: ""; position: absolute; top: 30px; right: -1px; width: 16px; height: 2px; background: var(--runway); }
.journey-step:last-child::after { display: none; }
.journey-step .n { color: var(--forest); font-size: 11px; font-weight: 750; }
.journey-step h3 { margin: 76px 0 10px; font-size: 16px; line-height: 1.35; }
.journey-step p { margin: 0; color: var(--graphite); font-size: 13px; }

.statement { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.statement > div { min-height: 220px; padding: 32px 40px 32px 0; border-right: 1px solid var(--line-dark); }
.statement > div + div { padding-left: 40px; border-right: 0; }
.statement strong { display: block; margin-bottom: 22px; color: var(--runway); font-size: 18px; }
.statement p { max-width: 35em; margin: 0; color: rgba(255, 255, 255, .67); }

/* Inner-page lead: headline and summary share the grid rather than stacking as a banner. */
.subhero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 8vw, 120px) 0 clamp(72px, 7vw, 104px);
  background: var(--ink);
  color: var(--white);
  border-bottom: 8px solid var(--runway);
}

.subhero::before { content: ""; position: absolute; inset: 0 31.5% 0 auto; width: 1px; background: var(--line-dark); }
.subhero::after { content: ""; position: absolute; top: -33%; right: 6%; width: 7px; height: 155%; background: var(--runway); transform: rotate(34deg); opacity: .8; }
.subhero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--grid-gap); }
.subhero .eyebrow { grid-column: 1 / 8; }
.subhero h1 { grid-column: 1 / 9; max-width: 11em; margin: 22px 0 0; font-size: clamp(52px, 5.5vw, 84px); font-weight: 650; line-height: .99; letter-spacing: -.06em; }
.subhero p { grid-column: 9 / 13; align-self: end; max-width: 27em; margin: 0 0 6px; color: rgba(255, 255, 255, .68); font-size: 16px; line-height: 1.78; }

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-inline: max(var(--page-pad), calc((100vw - var(--max)) / 2));
  background: var(--runway);
}

.fact { min-height: 120px; padding: 24px 24px 20px 0; border-right: 1px solid rgba(19, 24, 15, .30); }
.fact + .fact { padding-left: 24px; }
.fact:last-child { border-right: 0; }
.fact strong { display: block; font-size: 30px; font-weight: 650; line-height: 1; letter-spacing: -.045em; }
.fact span { display: block; margin-top: 12px; font-size: 11px; font-weight: 750; letter-spacing: .02em; }

.module-list { border-top: 1px solid var(--ink); }
.module { display: grid; grid-template-columns: 1fr 2.3fr 4fr 2fr; gap: var(--grid-gap); align-items: start; padding: 28px 0 30px; border-bottom: 1px solid var(--line); }
.module-id { color: var(--forest); font-size: 12px; font-weight: 750; }
.module h3 { margin: 0; font-size: 18px; line-height: 1.35; }
.module p { max-width: 38em; margin: 0; color: var(--graphite); font-size: 14px; }
.module-output { padding-left: 16px; border-left: 2px solid var(--runway); color: var(--graphite); font-size: 12px; }

.learning-cycle { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.cycle { min-height: 270px; padding: 32px 28px 32px 0; border-right: 1px solid var(--line-dark); }
.cycle + .cycle { padding-left: 28px; }
.cycle:last-child { border-right: 0; }
.cycle strong { display: block; color: var(--runway); font-size: 38px; font-weight: 650; line-height: 1; }
.cycle h3 { margin: 72px 0 10px; font-size: 17px; }
.cycle p { margin: 0; color: rgba(255, 255, 255, .63); font-size: 13px; }

.table-wrap { overflow-x: auto; border-top: 1px solid var(--ink); }
.data-table { width: 100%; min-width: 760px; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.data-table th, .data-table td { padding: 18px 16px 20px 0; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.data-table th { color: var(--forest); font-size: 10px; font-weight: 800; line-height: 1.4; letter-spacing: .11em; text-transform: uppercase; }
.data-table td { color: var(--graphite); font-size: 13px; line-height: 1.68; }
.data-table td strong { display: block; color: var(--ink); margin-bottom: 4px; }
.data-table tbody tr:hover td { background: rgba(183, 237, 147, .22); }

.gate-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.gate { grid-column: span 3; min-height: 300px; padding: 28px 24px 34px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gate + .gate { padding-left: 24px; }
.gate:nth-child(4n) { border-right: 0; }
.gate .score { color: var(--forest); font-size: 34px; font-weight: 650; line-height: 1; letter-spacing: -.04em; }
.gate h3 { margin: 66px 0 11px; font-size: 17px; }
.gate p { max-width: 25em; margin: 0; color: var(--graphite); font-size: 13px; }

.report-gates { border-color: var(--line-dark); }
.report-gates .gate { grid-column: span 4; min-height: 280px; background: transparent; color: var(--white); border-color: var(--line-dark); }
.report-gates .gate:nth-child(4n) { border-right: 1px solid var(--line-dark); }
.report-gates .gate:nth-child(3n) { border-right: 0; }
.report-gates .gate .score { color: var(--runway); }
.report-gates .gate p { color: rgba(255, 255, 255, .67); }

.alert { padding: 28px 32px; border-left: 6px solid var(--runway); background: var(--ink); color: var(--white); }
.alert h3 { margin: 0 0 8px; font-size: 19px; }
.alert p { max-width: 66em; margin: 0; color: rgba(255, 255, 255, .70); }
.alert--offset { margin-top: 32px; }
.report-alert { margin-top: 32px; }

.check-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 22px; border-top: 1px solid var(--line); }
.check-list li::before { content: "/"; position: absolute; left: 2px; color: var(--forest); font-weight: 900; }
.dark .check-list li { border-color: var(--line-dark); }
.dark .check-list li::before { color: var(--runway); }

.sop-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.sop-card { min-height: 340px; padding: 30px 38px 36px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sop-card:nth-child(even) { padding-left: 38px; padding-right: 0; border-right: 0; }
.sop-id { color: var(--forest); font-size: 11px; font-weight: 800; letter-spacing: .10em; }
.sop-card h3 { margin: 58px 0 12px; font-size: 22px; line-height: 1.25; }
.sop-card p { margin: 0 0 18px; color: var(--graphite); font-size: 14px; }
.sop-card ul { margin: 0; padding-left: 18px; color: var(--graphite); font-size: 13px; }

.flow { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.flow > div { min-height: 230px; padding: 28px 24px 32px 0; border-right: 1px solid var(--line-dark); }
.flow > div + div { padding-left: 24px; }
.flow > div:last-child { border-right: 0; }
.flow .letter { color: var(--runway); font-size: 40px; font-weight: 700; line-height: 1; }
.flow strong { display: block; margin: 64px 0 8px; font-size: 15px; }
.flow span { display: block; color: rgba(255, 255, 255, .62); font-size: 12px; }

.course-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.course-card { display: grid; grid-template-columns: 92px 1fr; min-height: 270px; padding: 30px 34px 34px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: background 160ms ease; }
.course-card:nth-child(even) { padding-left: 34px; padding-right: 0; border-right: 0; }
.course-card:hover { background: var(--leaf); }
.course-code strong { display: block; color: var(--forest); font-size: 28px; font-weight: 650; line-height: 1; }
.course-code span { display: block; margin-top: 8px; color: var(--grey); font-size: 10px; }
.course-body h3 { max-width: 20em; margin: 0 0 12px; font-size: 20px; line-height: 1.32; }
.course-body p { max-width: 38em; margin: 0; color: var(--graphite); font-size: 13px; }
.course-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.tag { padding: 4px 7px; border: 1px solid var(--line); background: transparent; font-size: 10px; font-weight: 700; }

.release { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.release-step { min-height: 230px; padding: 26px 20px 30px 0; border-right: 1px solid var(--line); }
.release-step + .release-step { padding-left: 20px; }
.release-step:last-child { border-right: 0; }
.release-step .n { color: var(--forest); font-size: 11px; font-weight: 800; }
.release-step h3 { margin: 68px 0 10px; font-size: 15px; }
.release-step p { margin: 0; color: var(--graphite); font-size: 12px; }

.cta { padding: clamp(72px, 7vw, 104px) 0; background: var(--runway); }
.cta-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--grid-gap); align-items: end; }
.cta-grid > :first-child { grid-column: 1 / 9; }
.cta h2 { max-width: 11em; margin: 14px 0 0; font-size: clamp(44px, 4.8vw, 72px); font-weight: 650; line-height: 1; letter-spacing: -.058em; }
.cta p { max-width: 44em; margin: 20px 0 0; }
.cta-actions { grid-column: 10 / 13; display: flex; flex-direction: column; gap: 8px; align-items: stretch; }

.footer { padding: 56px 0 64px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--grid-gap); align-items: end; }
.footer-grid > :first-child { grid-column: 1 / 6; }
.footer img { width: 104px; }
.footer p { margin: 18px 0 0; color: rgba(255, 255, 255, .54); font-size: 11px; letter-spacing: .03em; }
.footer-links { grid-column: 7 / 13; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; font-size: 11px; }
.footer-links a { color: rgba(255, 255, 255, .68); }
.page-note { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--grey); font-size: 12px; }
.page-note--on-dark { border-color: var(--line-dark); }
.cta-actions--offset { margin-top: 24px; }

/* Credential sample: institutional document, not a decorative award mock-up. */
.sample-alert { padding: 12px var(--page-pad); background: var(--danger); color: var(--white); text-align: center; font-size: 12px; font-weight: 800; letter-spacing: .055em; }
.certificate-stage { padding: 72px 0 96px; background: var(--paper); }
.certificate-sheet { position: relative; overflow: hidden; aspect-ratio: 297 / 210; width: min(100%, 1180px); margin: auto; padding: 5.8% 6.3%; background: var(--white); border: 1px solid var(--ink); box-shadow: 0 18px 48px rgba(19, 24, 15, .08); }
.certificate-sheet::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 8px; background: var(--runway); }
.certificate-sheet::after { content: ""; position: absolute; top: -18%; right: 3%; width: 6px; height: 78%; background: var(--runway); transform: rotate(34deg); transform-origin: center; }
.cert-top { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.cert-top img { width: 112px; }
.cert-state { padding: 7px 10px; border: 1px solid var(--danger); color: var(--danger); font: 800 10px/1.2 var(--mono); letter-spacing: .08em; }
.cert-kicker { margin: 5.2% 0 1.1%; color: var(--forest); font: 800 10px/1.3 var(--mono); letter-spacing: .14em; }
.certificate-sheet .cert-title { max-width: 15em; margin: 0; font-size: clamp(28px, 3.35vw, 50px); font-weight: 650; line-height: 1.07; letter-spacing: -.043em; }
.cert-en { margin: .8% 0 0; color: var(--grey); font: 600 clamp(9px, 1.1vw, 15px)/1.45 var(--sans); }
.cert-scope-tag { display: inline-block; margin-top: 1.7%; padding: 5px 8px; border-left: 3px solid var(--forest); background: var(--leaf); font: 800 clamp(8px, .84vw, 11px)/1.35 var(--mono); }
.cert-award { width: 72%; margin: 3% 0 0; color: var(--graphite); font-size: clamp(11px, 1.25vw, 18px); line-height: 1.78; }
.cert-name { display: inline-block; min-width: 8em; border-bottom: 2px solid var(--runway); color: var(--ink); font-size: 1.18em; font-weight: 800; text-align: center; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; width: 74%; margin-top: 2.1%; border-top: 1px solid var(--line-strong); }
.cert-grid div { padding: 1.35% 2.4% 1.35% 0; border-bottom: 1px solid var(--line); }
.cert-grid div:nth-child(even) { padding-left: 3%; border-left: 1px solid var(--line); }
.cert-grid span { display: block; color: var(--grey); font: 750 clamp(7px, .69vw, 9px)/1.3 var(--mono); letter-spacing: .045em; }
.cert-grid strong { display: block; margin-top: 4px; font-size: clamp(9px, .98vw, 13px); }
.cert-bottom { position: absolute; right: 6.3%; bottom: 5.4%; left: 6.3%; display: grid; grid-template-columns: 1fr 14%; gap: 4%; align-items: end; }
.cert-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 22px; }
.cert-meta span { display: block; color: var(--grey); font: 750 clamp(6px, .61vw, 8px)/1.2 var(--mono); letter-spacing: .03em; }
.cert-meta strong { font-size: clamp(8px, .80vw, 11px); }
.cert-disclaimer { grid-column: 1 / -1; margin: 6px 0 0; padding-top: 8px; border-top: 1px solid var(--line); color: var(--grey); font-size: clamp(6px, .64vw, 9px); line-height: 1.55; }
.verify-box { aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--ink); background: var(--paper); font: 800 clamp(7px, .76vw, 10px)/1.45 var(--mono); text-align: center; }
.status-register { padding: clamp(88px, 8vw, 120px) 0; background: var(--white); }
.status-register .data-table td:first-child { color: var(--ink); font-weight: 800; }
.sample-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

@media (max-width: 1180px) {
  .brand { grid-column: 1 / 4; }
  .brand-copy { display: none; }
  .nav { grid-column: 4 / 13; gap: 14px; font-size: 12px; }
  .hero-main { grid-column: 1 / 9; }
  .hero-aside { grid-column: 10 / 13; }
  .module { grid-template-columns: 88px 1.5fr 2.5fr; }
  .module-output { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .topbar-inner { min-height: 72px; }
  .brand { grid-column: 1 / 8; }
  .nav-toggle { grid-column: 11 / 13; display: inline-flex; align-items: center; justify-content: center; }
  .nav { grid-column: 1 / 13; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 18px; border-top: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { min-height: 44px; padding: 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav .workspace-link { align-self: stretch; justify-content: center; margin: 10px 0 0; }
  .hero::after, .subhero::before { display: none; }
  .hero-grid { min-height: auto; }
  .hero-main { grid-column: 1 / 10; padding: 88px 0 56px; }
  .hero-aside { grid-column: 1 / 13; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); padding: 0 0 56px; border-top: 1px solid var(--line-dark); }
  .hero-stat { min-height: 0; border-top: 0; }
  .section-head > :first-child { grid-column: 1 / 8; }
  .section-head > .section-intro { grid-column: 8 / 13; font-size: 15px; }
  .subhero h1 { grid-column: 1 / 9; }
  .subhero p { grid-column: 9 / 13; font-size: 14px; }
  .principles { grid-template-columns: 1fr 1fr; }
  .principle:nth-child(2) { border-right: 0; }
  .principle:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .program-grid.report-states > .program-card { grid-column: span 6; }
  .program-grid.report-states > .program-card:nth-child(odd) { padding-left: 0; }
  .program-grid.report-states > .program-card:nth-child(even) { border-right: 0; }
  .journey-step { grid-column: span 4; }
  .journey-step:nth-child(3n) { border-right: 0; }
  .journey-step:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .gate { grid-column: span 6; }
  .gate:nth-child(odd) { padding-left: 0; }
  .gate:nth-child(even) { border-right: 0; }
  .report-gates .gate { grid-column: span 6; }
  .report-gates .gate:nth-child(3n) { border-right: 1px solid var(--line-dark); }
  .report-gates .gate:nth-child(even) { border-right: 0; }
  .release { grid-template-columns: repeat(3, 1fr); }
  .release-step:nth-child(3n) { border-right: 0; }
  .release-step:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .cta-grid > :first-child { grid-column: 1 / 9; }
  .cta-actions { grid-column: 9 / 13; }
}

@media (max-width: 700px) {
  :root { --page-pad: 20px; }
  body { font-size: 15px; }
  .brand img { width: 94px; }
  .hero::before, .subhero::after { right: -6%; opacity: .55; }
  .hero-main { grid-column: 1 / 13; padding: 72px 0 44px; }
  .hero h1 { max-width: 9.4em; margin-top: 18px; font-size: clamp(46px, 13.2vw, 64px); }
  .hero .lead { font-size: 16px; }
  .hero-aside { grid-template-columns: 1fr; gap: 0; padding-bottom: 40px; }
  .hero-stat { display: grid; grid-template-columns: 96px 1fr; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
  .hero-stat span { margin-top: 0; }
  .section { padding: 72px 0; }
  .section-head { row-gap: 24px; margin-bottom: 40px; }
  .section-head > :first-child, .section-head > .section-intro { grid-column: 1 / 13; }
  .section h2, .status-register h2 { font-size: 40px; }
  .section-intro { font-size: 15px; }
  .principles, .statement, .learning-cycle, .sop-grid, .course-grid { grid-template-columns: 1fr; }
  .principle, .principle + .principle { min-height: 0; padding: 24px 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle h3 { margin-top: 44px; }
  .program-card, .program-grid.report-layers > .program-card, .program-grid.report-states > .program-card { grid-column: span 12; min-height: 0; padding: 28px 0 34px; border-right: 0; border-bottom: 1px solid var(--line); }
  .program-card + .program-card, .program-grid.report-states > .program-card:nth-child(even) { padding-left: 0; }
  .program-card.dark-card { padding: 28px; }
  .metric-row { margin-top: 28px; }
  .journey-step { grid-column: span 6; min-height: 230px; }
  .journey-step:nth-child(3n) { border-right: 1px solid var(--line); }
  .journey-step:nth-child(even) { border-right: 0; }
  .journey-step:nth-child(-n + 4) { border-bottom: 1px solid var(--line); }
  .statement > div, .statement > div + div { min-height: 0; padding: 28px 0 32px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .subhero { padding: 72px 0 64px; }
  .subhero .eyebrow, .subhero h1, .subhero p { grid-column: 1 / 13; }
  .subhero h1 { margin-bottom: 28px; font-size: 48px; }
  .subhero p { max-width: 38em; }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n + 2) { border-bottom: 1px solid rgba(19, 24, 15, .30); }
  .module { grid-template-columns: 76px 1fr; gap: 16px; }
  .module p, .module-output { grid-column: 2; }
  .learning-cycle .cycle, .learning-cycle .cycle + .cycle { min-height: 0; padding: 28px 0 32px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .cycle h3 { margin-top: 42px; }
  .check-list { grid-template-columns: 1fr; }
  .sop-card, .sop-card:nth-child(even) { min-height: 0; padding: 28px 0 34px; border-right: 0; border-bottom: 1px solid var(--line); }
  .sop-card h3 { margin-top: 42px; }
  .flow { grid-template-columns: 1fr; }
  .flow > div, .flow > div + div { min-height: 0; display: grid; grid-template-columns: 48px 112px 1fr; gap: 14px; align-items: center; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .flow strong { margin: 0; }
  .course-card, .course-card:nth-child(even) { min-height: 0; padding: 26px 0 30px; border-right: 0; }
  .release { grid-template-columns: 1fr 1fr; }
  .release-step:nth-child(3n) { border-right: 1px solid var(--line); }
  .release-step:nth-child(even) { border-right: 0; }
  .release-step:nth-child(-n + 4) { border-bottom: 1px solid var(--line); }
  .cta-grid > :first-child, .cta-actions { grid-column: 1 / 13; }
  .cta-actions { margin-top: 40px; }
  .footer-grid > :first-child, .footer-links { grid-column: 1 / 13; }
  .footer-links { justify-content: flex-start; margin-top: 32px; }
  .certificate-stage { padding: 40px 0 64px; }
  .certificate-sheet { aspect-ratio: auto; min-height: 790px; padding: 42px 28px; }
  .certificate-sheet::after { top: -8%; right: -7%; height: 45%; }
  .cert-top img { width: 96px; }
  .cert-kicker { margin-top: 76px; }
  .certificate-sheet .cert-title { font-size: 32px; }
  .cert-award, .cert-grid { width: 100%; }
  .cert-award { margin-top: 28px; font-size: 13px; }
  .cert-grid { grid-template-columns: 1fr; margin-top: 24px; }
  .cert-grid div:nth-child(even) { padding-left: 0; border-left: 0; }
  .cert-grid div { padding: 10px 0; }
  .cert-bottom { position: static; grid-template-columns: 1fr; margin-top: 36px; }
  .cert-meta { grid-template-columns: 1fr 1fr; }
  .cert-disclaimer { font-size: 9px; }
  .verify-box { width: 112px; }
}

@media (max-width: 440px) {
  .hero h1 { font-size: 44px; }
  .hero-actions, .sample-actions { flex-direction: column; align-items: stretch; }
  .principles, .facts { grid-template-columns: 1fr; }
  .fact, .fact + .fact { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(19, 24, 15, .30); }
  .metric-row { grid-template-columns: 1fr; }
  .metric { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .journey-step { grid-column: span 12; min-height: 0; padding: 24px 0 28px; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .journey-step + .journey-step { padding-left: 0; }
  .journey-step::after { display: none; }
  .journey-step h3 { margin-top: 38px; }
  .gate, .report-gates .gate { grid-column: span 12; min-height: 0; padding: 26px 0 32px !important; border-right: 0 !important; }
  .gate h3 { margin-top: 42px; }
  .course-card { grid-template-columns: 70px 1fr; }
  .release { grid-template-columns: 1fr; }
  .release-step, .release-step + .release-step { min-height: 0; padding: 24px 0 28px; border-right: 0 !important; }
  .release-step h3 { margin-top: 40px; }
  .flow > div, .flow > div + div { grid-template-columns: 42px 1fr; }
  .flow span { grid-column: 2; }
}

@media print {
  :root { --page-pad: 0; }
  * { box-shadow: none !important; text-shadow: none !important; }
  body { background: #fff; color: #000; font-size: 10pt; }
  .topbar, .footer, .cta, .nav-toggle, .sample-alert, .sample-actions, .button { display: none !important; }
  .hero, .subhero, .section.dark { background: #fff !important; color: #000 !important; border-color: var(--runway); }
  .hero::before, .hero::after, .subhero::before, .subhero::after { display: none; }
  .hero-grid { min-height: 0; }
  .hero-main, .hero-aside { padding: 18mm 0 10mm; }
  .hero h1, .subhero h1 { color: #000; font-size: 32pt; }
  .hero .lead, .subhero p, .dark .section-intro, .statement p, .cycle p, .flow span, .report-gates .gate p { color: #333 !important; }
  .hero-stat strong, .cycle strong, .flow .letter, .report-gates .gate .score { color: var(--forest); }
  .section, .status-register { padding: 14mm 0; }
  .program-card.dark-card { background: #fff; color: #000; }
  .program-card.dark-card p { color: #333; }
  .principle, .program-card, .journey-step, .gate, .sop-card, .course-card, .module, table { break-inside: avoid; }
  .data-table tbody tr:hover td { background: transparent; }
  a { text-decoration: none; }
  .certificate-page .subhero, .certificate-page .status-register { display: none !important; }
  .certificate-page .certificate-stage { padding: 0; background: #fff; }
  .certificate-page .certificate-stage > .wrap { width: auto; max-width: none; }
  .certificate-page .certificate-sheet { page: certificate; width: 297mm; height: 210mm; aspect-ratio: auto; margin: 0; border: 0; }
  .certificate-page .cert-state { color: var(--danger) !important; }
  @page { size: A4; margin: 16mm; }
  @page certificate { size: A4 landscape; margin: 0; }
}

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