@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/PretendardVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --blue: #094d9e;
  --blue-deep: #073b79;
  --blue-soft: #edf4fb;
  --blue-pale: #f5f9fd;
  --green: #18a26d;
  --green-soft: #ebf8f2;
  --ink: #17191d;
  --ink-2: #2b3037;
  --muted: #626a74;
  --paper: #fff;
  --surface: #f6f8fa;
  --line: #d9e0e7;
  --line-soft: #e9edf1;
  --amber: #a66b00;
  --amber-soft: #fff7e5;
  --danger: #a93f46;
  --danger-soft: #fff0f1;
  --radius: 8px;
  --page: min(1380px, calc(100vw - 64px));
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body,
button,
input {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  word-break: keep-all;
}

a,
button,
input {
  -webkit-tap-highlight-color: transparent;
}

a,
button {
  color: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(9, 77, 158, .24);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 14px;
  transform: translateY(-160%);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 76px;
  align-items: center;
  gap: 36px;
  padding: 0 max(32px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid rgba(217, 224, 231, .92);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.wordmark img {
  display: block;
  width: 138px;
  height: auto;
}

.wordmark > b {
  color: #a4abb3;
  font-size: 14px;
  font-weight: 500;
}

.wordmark > span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header nav a {
  position: relative;
  color: #505761;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue);
  content: "";
  transition: transform .2s ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-label {
  color: #7a828c;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-size: 22px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  gap: 72px 64px;
  width: var(--page);
  min-height: 760px;
  align-items: center;
  margin: 0 auto;
  padding: 104px 0 54px;
}

.hero::before,
.section-band::before,
.closing::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(120deg, transparent 0 44%, rgba(9, 77, 158, .035) 44% 44.2%, transparent 44.2% 100%),
    linear-gradient(60deg, transparent 0 64%, rgba(9, 77, 158, .028) 64% 64.18%, transparent 64.18% 100%);
  background-size: 240px 160px, 300px 210px;
  content: "";
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
}

.eyebrow > i {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--blue);
}

.eyebrow > b {
  margin-left: auto;
  color: #969da5;
  font-size: 10px;
  font-weight: 700;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid #cad9e8;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.platform-pill i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #91abc7;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(51px, 5.3vw, 78px);
  font-weight: 820;
  letter-spacing: -.065em;
  line-height: 1.08;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-description {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #b8c5d1;
  box-shadow: 0 8px 24px rgba(25, 42, 62, .08);
}

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

.thread-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #cad6e2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(34, 65, 98, .13);
}

.thread-card::after {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(9, 77, 158, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(9, 77, 158, .025), 0 0 0 96px rgba(9, 77, 158, .02);
  content: "";
}

.thread-card > header {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-soft);
  background: #fafdff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.thread-card > header b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--amber);
}

.thread-card > header b i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d99b1b;
  box-shadow: 0 0 0 4px var(--amber-soft);
}

.thread-title {
  display: grid;
  gap: 5px;
  padding: 24px 22px 18px;
}

.thread-title span,
.thread-title small {
  color: #7b838c;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.thread-title strong {
  font-size: 19px;
  letter-spacing: -.025em;
}

.thread-title small {
  color: #9ca3ab;
  letter-spacing: 0;
}

.thread-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0 22px;
  padding: 0;
  list-style: none;
}

.thread-steps li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 7px 4px;
  border-top: 1px solid var(--line-soft);
}

.thread-steps li > i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid #c8d1db;
  border-radius: 50%;
  color: #7d858e;
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.thread-steps li.done > i {
  border-color: #acd8c6;
  background: var(--green-soft);
  color: var(--green);
}

.thread-steps li.active > i {
  border-color: #c9a653;
  background: var(--amber-soft);
  color: var(--amber);
}

.thread-steps li div {
  display: grid;
  gap: 1px;
}

.thread-steps li div span {
  color: #737b85;
  font-size: 11px;
}

.thread-steps li div strong {
  font-size: 14px;
}

.thread-steps li > b {
  color: #89919a;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .05em;
}

.thread-steps li.done > b {
  color: var(--green);
}

.thread-steps li.active > b {
  color: var(--amber);
}

.thread-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 16px 22px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: #fbfcfd;
}

.thread-metrics div {
  display: grid;
  gap: 1px;
  padding: 12px;
  border-right: 1px solid var(--line-soft);
}

.thread-metrics div:last-child {
  border-right: 0;
}

.thread-metrics span {
  color: #777f88;
  font-size: 10px;
}

.thread-metrics strong {
  font-family: var(--mono);
  font-size: 16px;
}

.thread-card > p {
  margin: 0;
  padding: 11px 22px;
  border-top: 1px solid var(--line-soft);
  color: #8b929a;
  font-size: 10px;
}

.hero-rails {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-rails > div {
  display: grid;
  gap: 3px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.hero-rails > div:last-child {
  border-right: 0;
}

.hero-rails span {
  color: #858d96;
  font-size: 11px;
}

.hero-rails strong {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 14px;
}

.hero-rails small {
  color: var(--muted);
  font-size: 12px;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 126px 0;
}

.section-band {
  position: relative;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}

.section-intro {
  max-width: 760px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 820;
  letter-spacing: -.055em;
  line-height: 1.12;
}

.section-intro > p:last-child {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.agenda-grid article {
  position: relative;
  min-height: 320px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.agenda-grid article > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.agenda-grid article > i {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #aac0d5;
  font-size: 27px;
}

.agenda-grid h3 {
  margin: 76px 0 14px;
  font-size: 21px;
  letter-spacing: -.03em;
  line-height: 1.35;
}

.agenda-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.thesis {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 8px 40px;
  margin-top: 80px;
  padding: 46px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thesis > span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.thesis p,
.thesis h2 {
  margin: 0;
}

.thesis p {
  color: var(--muted);
  font-size: 17px;
}

.thesis h2 {
  font-size: clamp(31px, 3.4vw, 48px);
  letter-spacing: -.045em;
  line-height: 1.2;
}

.prototype > .section {
  padding-bottom: 52px;
}

.app-shell {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  width: min(1540px, calc(100vw - 32px));
  min-height: 760px;
  margin: 0 auto 120px;
  overflow: hidden;
  border: 1px solid #cbd6e0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(32, 57, 83, .12);
}

.app-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  background: #f8fbfe;
}

.app-brand {
  display: grid;
  gap: 4px;
  padding: 0 10px 28px;
  border-bottom: 1px solid var(--line-soft);
}

.app-brand img {
  width: 142px;
  height: auto;
}

.app-brand small {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.app-sidebar nav {
  display: grid;
  gap: 5px;
  margin-top: 24px;
}

.app-nav {
  position: relative;
  display: grid;
  grid-template-columns: 23px 1fr auto;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #56616d;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
}

.app-nav:hover {
  background: #f0f5fa;
}

.app-nav.active {
  background: var(--blue-soft);
  color: var(--blue-deep);
  box-shadow: inset 3px 0 var(--blue);
}

.app-nav i {
  font-size: 20px;
}

.app-nav b {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
}

.app-sidebar-note {
  display: flex;
  gap: 9px;
  margin-top: auto;
  padding: 13px;
  border: 1px solid #cfdae5;
  border-radius: 6px;
  background: #fff;
  color: #5f6a76;
}

.app-sidebar-note i {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 18px;
}

.app-sidebar-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.app-main {
  min-width: 0;
}

.app-topbar {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(270px, 420px) auto;
  min-height: 70px;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.app-topbar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-topbar > div span {
  color: #858e98;
  font-size: 12px;
}

.app-topbar > div b {
  font-size: 14px;
}

.app-search {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fafbfc;
  color: #88919b;
}

.app-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.app-topbar > button {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-size: 18px;
}

.app-topbar > button span {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-size: 8px;
}

.app-content {
  min-height: 690px;
  padding: 26px;
  background: #f7f9fb;
}

.app-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.app-page-head > div:first-child > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.app-page-head h3 {
  margin: 4px 0 3px;
  font-size: 25px;
  letter-spacing: -.035em;
}

.app-page-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.app-actions {
  display: flex;
  gap: 7px;
}

.app-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

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

.app-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.app-kpi {
  display: grid;
  gap: 4px;
  min-height: 111px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.app-kpi span {
  color: #6e7781;
  font-size: 12px;
  font-weight: 700;
}

.app-kpi strong {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 24px;
  letter-spacing: -.03em;
}

.app-kpi small {
  color: #89919a;
  font-size: 11px;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  gap: 12px;
}

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

.app-grid + .app-grid,
.app-card + .app-card {
  margin-top: 12px;
}

.app-card,
.assistant-card,
.executive-banner {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.app-card.full {
  margin-bottom: 12px;
}

.app-card-head {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line-soft);
}

.app-card-head h4 {
  margin: 0 0 2px;
  font-size: 15px;
  letter-spacing: -.015em;
}

.app-card-head p {
  margin: 0;
  color: #7a838d;
  font-size: 11px;
}

.app-source,
.status {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid #cad9e8;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .03em;
  white-space: nowrap;
}

.status.ok {
  border-color: #b9dfcf;
  background: var(--green-soft);
  color: #0c7b50;
}

.status.warn {
  border-color: #ebd39b;
  background: var(--amber-soft);
  color: var(--amber);
}

.status.danger {
  border-color: #ecc4c7;
  background: var(--danger-soft);
  color: var(--danger);
}

.status.neutral {
  border-color: #d9dee3;
  background: #f4f6f7;
  color: #626a73;
}

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

.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: left;
}

.app-table th {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-soft);
  background: #fafbfc;
  color: #727b84;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.app-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}

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

.app-table tbody tr:hover {
  background: #fbfdff;
}

.model-code {
  display: block;
  color: #24313e;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.model-sub {
  display: block;
  margin-top: 2px;
  color: #7d8690;
  font-size: 10px;
}

.simulation-note {
  margin: 0;
  padding: 10px 14px;
  border-top: 1px solid var(--line-soft);
  background: #fcfdfe;
  color: #8a929b;
  font-size: 10px;
}

.assistant-card {
  margin-top: 12px;
  border-color: #c9d9e8;
  background: var(--blue-pale);
  padding: 16px;
}

.assistant-card header {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.assistant-card p {
  margin: 13px 0;
  color: #344556;
  font-size: 13px;
  font-weight: 700;
}

.assistant-card ul,
.roadmap-grid ul,
.capability-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.assistant-card li {
  position: relative;
  padding: 4px 0 4px 12px;
  color: #607080;
  font-size: 11px;
}

.assistant-card li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.activity-list,
.passport-list,
.risk-list,
.material-list {
  display: grid;
}

.activity-row,
.passport-row,
.risk-row,
.material-row {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
}

.activity-row:last-child,
.passport-row:last-child,
.risk-row:last-child,
.material-row:last-child {
  border-bottom: 0;
}

.activity-row > i,
.passport-row > i,
.risk-row > i,
.material-row > i {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 17px;
}

.activity-row > div,
.passport-row > div,
.risk-row > div,
.material-row > div {
  display: grid;
  flex: 1;
}

.activity-row strong,
.passport-row strong,
.risk-row strong,
.material-row strong {
  font-size: 12px;
}

.activity-row small,
.passport-row small,
.risk-row small,
.material-row small {
  color: #7d8690;
  font-size: 10px;
}

.activity-row time,
.passport-row time,
.risk-row time,
.material-row time {
  color: #7b838d;
  font-family: var(--mono);
  font-size: 10px;
  white-space: nowrap;
}

.progress-track {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #edf0f3;
}

.progress-track i {
  display: block;
  width: var(--progress);
  height: 100%;
  background: var(--blue);
}

.progress-track progress {
  display: block;
  width: 100%;
  height: 7px;
  border: 0;
  background: #edf0f3;
}

.progress-track progress::-webkit-progress-bar { background: #edf0f3; }
.progress-track progress::-webkit-progress-value { background: var(--blue); }
.progress-track progress::-moz-progress-bar { background: var(--blue); }

.program-summary {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
}

.milestone-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 20px 16px;
}

.milestone {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.milestone::before {
  position: absolute;
  top: 13px;
  right: 50%;
  left: -50%;
  height: 1px;
  background: #ccd5de;
  content: "";
}

.milestone:first-child::before {
  display: none;
}

.milestone > i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #bdc9d5;
  border-radius: 50%;
  background: #fff;
  color: #7e8791;
  font-size: 13px;
}

.milestone.done > i {
  border-color: #aad9c4;
  background: var(--green-soft);
  color: var(--green);
}

.milestone.active > i {
  border-color: #91b6d9;
  background: var(--blue-soft);
  color: var(--blue);
}

.milestone strong {
  font-size: 10px;
}

.milestone span {
  color: #7c858f;
  font-family: var(--mono);
  font-size: 9px;
}

.line-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.line-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.line-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}

.line-card header span {
  color: #747d87;
  font-size: 11px;
}

.line-card h4 {
  margin: 0 0 5px;
  font-size: 14px;
}

.line-card > p {
  margin: 0 0 13px;
  color: #7d8690;
  font-size: 10px;
}

.line-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  color: #7e8790;
  font-size: 10px;
}

.line-card footer strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
}

.passport-chain {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 18px;
}

.passport-chain > div {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.passport-chain > div + div {
  border-left: 0;
}

.passport-chain > div::after {
  position: absolute;
  top: 50%;
  right: -5px;
  z-index: 2;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #aebdcb;
  border-right: 1px solid #aebdcb;
  background: #fff;
  content: "";
}

.passport-chain > div:last-child::after {
  display: none;
}

.passport-chain span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
}

.passport-chain strong {
  font-size: 11px;
}

.passport-chain small {
  color: #7b848e;
  font-size: 9px;
}

.material-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.material-cell {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.material-cell > span {
  color: #717b85;
  font-size: 11px;
}

.material-cell > strong {
  font-family: var(--mono);
  font-size: 22px;
}

.material-cell > small {
  color: #858e97;
  font-size: 10px;
}

.inventory-bar {
  display: flex;
  height: 8px;
  overflow: hidden;
  margin-top: 7px;
  border-radius: 99px;
  background: #eef1f4;
}

.inventory-bar i:first-child {
  width: 62%;
  background: var(--blue);
}

.inventory-bar i:nth-child(2) {
  width: 22%;
  background: #85afd2;
}

.inventory-bar i:nth-child(3) {
  width: 10%;
  background: #d9a43c;
}

.executive-banner {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 20px;
  margin-bottom: 12px;
  padding: 20px;
  border-color: #c9d9e8;
  background: linear-gradient(135deg, #fff, #f3f8fd);
}

.executive-banner span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.executive-banner h4 {
  margin: 5px 0;
  font-size: 20px;
  letter-spacing: -.03em;
}

.executive-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.executive-banner > div:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.executive-banner > div:last-child b {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-family: var(--mono);
  font-size: 10px;
}

.cost-bars,
.portfolio-list {
  display: grid;
  gap: 13px;
  padding: 17px;
}

.cost-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.cost-row progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 99px;
  background: #edf0f3;
}

.cost-row progress::-webkit-progress-bar {
  background: #edf0f3;
}

.cost-row progress::-webkit-progress-value {
  background: var(--blue);
}

.cost-row progress::-moz-progress-bar {
  background: var(--blue);
}

.cost-row strong {
  font-family: var(--mono);
  text-align: right;
}

.portfolio-row {
  display: grid;
  grid-template-columns: 1.25fr .55fr .55fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px;
}

.portfolio-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.portfolio-row strong {
  font-size: 11px;
}

.portfolio-row span {
  color: #737c86;
  font-family: var(--mono);
  font-size: 10px;
}

.capability-list {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.capability-list article {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(240px, .8fr) minmax(320px, 1.3fr) 1fr 42px;
  min-height: 176px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.capability-list article > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.capability-list h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -.03em;
}

.capability-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.capability-list li {
  position: relative;
  padding: 3px 0 3px 13px;
  color: #5d6670;
  font-size: 12px;
}

.capability-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.capability-list article > i {
  color: #a8bfd4;
  font-size: 31px;
}

.value-thread {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: var(--page);
  margin: 0 auto;
  padding: 0 0 126px;
}

.value-thread article {
  position: relative;
  min-height: 270px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-right: 0;
  background: #fff;
}

.value-thread article:last-child {
  border-right: 1px solid var(--line);
}

.value-thread article::after {
  position: absolute;
  top: 58px;
  right: -9px;
  z-index: 1;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff;
  content: "";
}

.value-thread article:last-child::after {
  display: none;
}

.value-thread article > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.value-thread article > b {
  display: block;
  margin: 18px 0 28px;
  color: #d4dde6;
  font-family: var(--mono);
  font-size: 38px;
}

.value-thread h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -.025em;
}

.value-thread p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.system-map {
  display: grid;
  grid-template-columns: 1fr 40px 1.15fr 40px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 70px;
}

.system-map > i {
  color: #a8b9c9;
  font-size: 28px;
  text-align: center;
}

.system-side,
.system-core {
  display: grid;
  min-height: 290px;
  align-content: start;
  gap: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.system-side > span,
.system-core > span {
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.system-side strong {
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
}

.system-core {
  border-color: #bbd0e3;
  background: var(--blue-pale);
}

.system-core h3 {
  margin: 10px 0 32px;
  color: var(--blue-deep);
  font-size: 28px;
  line-height: 1.2;
}

.system-core > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.system-core > div b {
  padding: 10px;
  border: 1px solid #c8d8e8;
  border-radius: 4px;
  background: #fff;
  font-size: 11px;
  text-align: center;
}

.integration-caveat {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid #d8dee5;
  border-radius: 7px;
  background: #fafbfc;
}

.integration-caveat > i {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 26px;
}

.integration-caveat strong {
  font-size: 14px;
}

.integration-caveat p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--page);
  margin: 0 auto;
  padding-bottom: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.roadmap-grid article {
  min-height: 300px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.roadmap-grid article > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 800;
}

.roadmap-grid article > p {
  margin: 24px 0 6px;
  color: #78818b;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.roadmap-grid h3 {
  margin: 0 0 20px;
  font-size: 20px;
}

.roadmap-grid li {
  position: relative;
  padding: 5px 0 5px 13px;
  color: var(--muted);
  font-size: 13px;
}

.roadmap-grid li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.pilot-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--page);
  margin: 0 auto;
  padding: 0 0 126px;
}

.pilot-metrics > div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.pilot-metrics > div:first-child {
  border-left: 1px solid var(--line);
}

.pilot-metrics span {
  display: block;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pilot-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

.pilot-metrics p {
  margin: 3px 0 0;
  color: #7e8790;
  font-size: 11px;
}

.closing {
  position: relative;
  display: flex;
  width: var(--page);
  min-height: 490px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.closing-copy span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.closing-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(40px, 4.5vw, 65px);
  letter-spacing: -.055em;
  line-height: 1.13;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 104px;
  align-items: center;
  gap: 24px;
  padding: 0 max(32px, calc((100vw - 1380px) / 2));
  border-top: 1px solid var(--line);
  background: #f9fafb;
}

.footer-wordmark img {
  width: 126px;
}

footer p {
  margin: 0;
  color: #737b84;
  font-size: 12px;
}

footer > a {
  justify-self: end;
  color: #5f6871;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.copilot-launcher {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  min-width: 190px;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border: 1px solid #bfcfdf;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(37, 57, 79, .16);
  text-align: left;
}

.copilot-launcher > span,
.copilot-panel header > div > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
}

.copilot-launcher > div {
  display: grid;
}

.copilot-launcher strong {
  font-size: 12px;
}

.copilot-launcher small {
  color: #7c858e;
  font-size: 9px;
}

.copilot-panel {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 130;
  width: min(410px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid #c4d1de;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(35, 55, 78, .2);
}

.copilot-panel[hidden] {
  display: none;
}

.copilot-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  border-bottom: 1px solid var(--line);
}

.copilot-panel > header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copilot-panel > header > div > div {
  display: grid;
}

.copilot-panel header strong {
  font-size: 12px;
}

.copilot-panel header small {
  color: #7d858f;
  font-size: 9px;
}

.copilot-panel > header > button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 5px;
  background: #f3f5f7;
  font-size: 17px;
}

.copilot-context {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--blue-pale);
  font-size: 10px;
}

.copilot-context span {
  color: #6f7882;
}

.copilot-context strong {
  color: var(--blue-deep);
}

.copilot-messages {
  display: flex;
  min-height: 225px;
  max-height: 300px;
  flex-direction: column;
  gap: 9px;
  overflow-y: auto;
  padding: 14px;
  background: #fafbfc;
}

.copilot-message {
  max-width: 90%;
  align-self: flex-start;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px 8px 8px 8px;
  background: #fff;
  color: #434b55;
  font-size: 11px;
  line-height: 1.55;
}

.copilot-message.user {
  align-self: flex-end;
  border-color: #bfd1e3;
  border-radius: 8px 4px 8px 8px;
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.copilot-suggestions {
  display: flex;
  gap: 6px;
  padding: 11px 12px;
  border-top: 1px solid var(--line-soft);
}

.copilot-suggestions button {
  min-height: 32px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: #4d5660;
  font-size: 9px;
  font-weight: 750;
}

.copilot-panel > p {
  margin: 0;
  padding: 0 13px 12px;
  color: #9299a1;
  font-size: 9px;
}

.toast-region {
  position: fixed;
  top: 92px;
  right: 24px;
  z-index: 220;
  display: grid;
  gap: 8px;
}

.toast {
  display: grid;
  width: min(360px, calc(100vw - 32px));
  gap: 2px;
  padding: 13px 15px;
  border: 1px solid #bdccda;
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(32, 53, 76, .15);
  animation: toast-in .25s ease;
}

.toast strong {
  font-size: 11px;
}

.toast span {
  color: #6d7680;
  font-size: 9px;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  :root { --page: min(100% - 44px, 1100px); }
  .site-header { padding: 0 22px; }
  .header-label { display: none; }
  .hero { grid-template-columns: 1fr 430px; gap: 38px; }
  .hero h1 { font-size: clamp(48px, 5.6vw, 67px); }
  .agenda-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-list article { grid-template-columns: 110px .8fr 1.2fr 1fr 34px; gap: 20px; }
  .app-shell { grid-template-columns: 190px minmax(0, 1fr); }
  .app-content { padding: 20px; }
  .line-cards { grid-template-columns: repeat(2, 1fr); }
  .passport-chain { grid-template-columns: 1fr; }
  .passport-chain > div + div { border-top: 0; border-left: 1px solid var(--line); }
  .passport-chain > div::after { display: none; }
}

@media (max-width: 900px) {
  :root { --page: calc(100% - 36px); }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { position: fixed; top: 76px; right: 0; left: 0; display: none; padding: 16px 18px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 15px 30px rgba(31, 48, 67, .08); }
  .site-header nav.open { display: grid; }
  .menu-button { display: grid; place-items: center; }
  .wordmark img { width: 122px; }
  .hero { grid-template-columns: 1fr; padding-top: 78px; }
  .thread-card { max-width: 640px; }
  .hero-rails { grid-template-columns: repeat(2, 1fr); }
  .hero-rails > div:nth-child(2) { border-right: 0; }
  .hero-rails > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .thesis { grid-template-columns: 1fr; }
  .thesis > span { grid-row: auto; }
  .app-shell { grid-template-columns: 1fr; min-height: auto; }
  .app-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
  .app-brand, .app-sidebar-note { display: none; }
  .app-sidebar nav { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; }
  .app-nav { grid-template-columns: 21px 1fr auto; padding: 0 9px; }
  .app-topbar { grid-template-columns: 1fr auto; }
  .app-search { display: none; }
  .app-grid, .program-summary { grid-template-columns: 1fr; }
  .capability-list article { grid-template-columns: 100px 1fr 34px; gap: 16px; padding: 26px 0; }
  .capability-list article p, .capability-list article ul { grid-column: 2 / 3; }
  .capability-list article > i { grid-column: 3; grid-row: 1; }
  .value-thread { grid-template-columns: 1fr; }
  .value-thread article { min-height: auto; border-right: 1px solid var(--line); border-bottom: 0; }
  .value-thread article:last-child { border-bottom: 1px solid var(--line); }
  .value-thread article::after { display: none; }
  .system-map { grid-template-columns: 1fr; }
  .system-map > i { transform: rotate(90deg); }
  .system-side, .system-core { min-height: auto; }
  .roadmap-grid, .pilot-metrics { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
}

@media (max-width: 640px) {
  :root { --page: calc(100% - 28px); }
  body { font-size: 16px; }
  .site-header { min-height: 68px; padding: 0 14px; }
  .site-header nav { top: 68px; }
  .wordmark img { width: 112px; }
  .wordmark > span { font-size: 11px; }
  .hero { min-height: 0; gap: 48px; padding: 64px 0 32px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-description { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .thread-card > header { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; }
  .thread-metrics { grid-template-columns: 1fr; }
  .thread-metrics div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .thread-metrics div:last-child { border-bottom: 0; }
  .hero-rails { grid-template-columns: 1fr; }
  .hero-rails > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-rails > div:last-child { border-bottom: 0; }
  .section { padding: 90px 0; }
  .section-intro h2 { font-size: 39px; }
  .agenda-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .agenda-grid article { min-height: 270px; }
  .thesis { margin-top: 56px; }
  .app-shell { width: calc(100vw - 16px); margin-bottom: 90px; }
  .app-sidebar { padding: 9px; overflow-x: auto; }
  .app-sidebar nav { grid-template-columns: repeat(4, minmax(118px, 1fr)); }
  .app-nav { min-height: 44px; }
  .app-topbar { min-height: 60px; padding: 0 13px; }
  .app-content { padding: 13px; }
  .app-page-head { align-items: stretch; flex-direction: column; }
  .app-page-head h3 { font-size: 23px; }
  .app-actions { overflow-x: auto; }
  .app-kpis, .line-cards, .material-matrix { grid-template-columns: repeat(2, 1fr); }
  .app-kpi { min-height: 104px; }
  .milestone-line { grid-template-columns: 1fr; gap: 8px; }
  .milestone { grid-template-columns: 30px 1fr auto; justify-items: start; text-align: left; }
  .milestone::before { display: none; }
  .capability-list article { grid-template-columns: 1fr 36px; gap: 12px; }
  .capability-list article > span { grid-column: 1; }
  .capability-list h3 { grid-column: 1; font-size: 22px; }
  .capability-list article p, .capability-list article ul { grid-column: 1 / -1; }
  .capability-list article > i { grid-column: 2; grid-row: 1 / 3; }
  .system-map { margin-top: 48px; }
  .roadmap-grid, .pilot-metrics { grid-template-columns: 1fr; }
  .roadmap-grid article { min-height: 260px; }
  .pilot-metrics > div { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .closing { min-height: 420px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .closing-copy h2 { font-size: 38px; }
  footer { padding: 0 14px; }
  .footer-wordmark img { width: 108px; }
  .copilot-launcher { right: 12px; bottom: 12px; min-width: 0; }
  .copilot-launcher > div { display: none; }
  .copilot-panel { right: 8px; bottom: 78px; width: calc(100vw - 16px); }
  .toast-region { top: 80px; right: 8px; }
  .executive-banner { grid-template-columns: 1fr; }
  .executive-banner > div:last-child { justify-content: flex-start; flex-wrap: wrap; }
  .portfolio-row { grid-template-columns: 1fr auto; }
  .portfolio-row span { display: none; }
}

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