:root {
  --navy: #17233b;
  --blue: #2a4e7d;
  --slate: #566171;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --soft-blue: #eef3f8;
  --line: rgba(23, 35, 59, 0.14);
  --draft: #9a6400;
  --draft-bg: #fff3d8;
  --review: #6246a4;
  --review-bg: #f0ebfb;
  --pilot: #176984;
  --pilot-bg: #e4f3f7;
  --approved: #2e6c46;
  --approved-bg: #e8f4ec;
  --retired: #667085;
  --retired-bg: #eef0f3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.draft-bar {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  background: rgba(247, 244, 238, .96);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--navy);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .04em;
}

.brand-name {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--slate);
  font-size: 15px;
  font-weight: 800;
}

.header-nav a:hover { color: var(--blue); }

.hero { padding: 62px 0 38px; }
.hero-panel {
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 22px 64px rgba(23, 35, 59, .08);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero-line {
  max-width: 950px;
  margin: 24px 0 0;
  color: var(--blue);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 900;
  line-height: 1.35;
}

.hero-copy {
  max-width: 850px;
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.72;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--draft-bg);
  color: var(--draft);
  font-size: 13px;
  font-weight: 900;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--draft);
}

.status-note { color: var(--slate); font-size: 14px; }

.section { padding: 30px 0 44px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
}
.section-heading p { margin: 8px 0 0; color: var(--slate); }
.section-link { color: var(--blue); font-size: 15px; font-weight: 900; }

.featured {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(23, 35, 59, .07);
}

.featured-main { padding: clamp(28px, 5vw, 48px); }
.featured-tag {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.featured h3 {
  margin: 12px 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.featured-main > p { max-width: 700px; margin: 0; color: var(--slate); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0; }
.chip {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}
.primary-button:hover { background: var(--blue); }

.featured-side {
  padding: 34px 30px;
  background: var(--navy);
  color: #fff;
}
.featured-side h4 {
  margin: 0 0 18px;
  color: #cbd9ed;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.path-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.path-list li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
}
.path-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  font-size: 13px;
  font-weight: 900;
}
.path-title { font-size: 15px; font-weight: 800; }
.path-skill { color: #cbd9ed; font-size: 12px; font-weight: 800; }

.lifecycle {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}
.lifecycle h3 { margin: 0; font-size: 23px; }
.lifecycle > p { margin: 7px 0 22px; color: var(--slate); }
.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.lifecycle-stage {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
}
.lifecycle-stage strong { display: block; margin-bottom: 8px; font-size: 14px; }
.lifecycle-stage span { color: var(--slate); font-size: 13px; }
.stage-draft { background: var(--draft-bg); }
.stage-review { background: var(--review-bg); }
.stage-pilot { background: var(--pilot-bg); }
.stage-approved { background: var(--approved-bg); }
.stage-retired { background: var(--retired-bg); }

.department-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.department-card {
  min-height: 175px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(23, 35, 59, .05);
}
.department-code {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.department-card h3 { margin: 18px 0 8px; font-size: 21px; line-height: 1.2; }
.department-card p { margin: 0; color: var(--slate); font-size: 15px; }
.department-card.active { border: 2px solid var(--blue); }
.department-card.active .department-code { background: var(--blue); color: #fff; }

.site-footer {
  margin-top: 36px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-copy { max-width: 720px; margin: 12px 0 0; color: var(--slate); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--blue); font-size: 14px; font-weight: 800; }

@media (max-width: 920px) {
  .featured { grid-template-columns: 1fr; }
  .lifecycle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .department-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .header-inner, .section-heading, .footer-inner { align-items: flex-start; flex-direction: column; }
  .header-nav { display: none; }
  .hero { padding-top: 34px; }
  .hero-panel { padding: 28px 22px; }
  .featured-main, .featured-side { padding: 26px 22px; }
  .path-list li { grid-template-columns: 34px 1fr; }
  .path-skill { grid-column: 2; }
  .lifecycle-grid, .department-grid { grid-template-columns: 1fr; }
  .wrap { width: min(100% - 24px, 1180px); }
}
