:root {
  --bg: #eef3f7;
  --surface: #ffffff;
  --surface-2: #edf2f8;
  --ink: #112033;
  --muted: #40556d;
  --navy: #0d1b2a;
  --navy-2: #132a3d;
  --blue-01: #dfeaf5;
  --blue-02: #bfd7ee;
  --line: rgba(17, 32, 51, 0.12);
  --shadow: 0 18px 40px rgba(13, 27, 42, 0.08);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
}

body.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid #82b8db;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.8rem 1rem;
  z-index: 100;
}

.skip-link:focus { left: 1rem; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.alt {
  background: rgba(255,255,255,0.48);
  border-top: 1px solid rgba(17,32,51,0.04);
  border-bottom: 1px solid rgba(17,32,51,0.04);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #edf5ff, #b7cfe4);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.3rem 0;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: #dfeaf5;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: center;
}

.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }

.button, .resume-btn, .mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary, .resume-btn {
  background: var(--blue-01);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(223, 234, 245, 0.2);
}

.button.ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(17, 32, 51, 0.18);
}

.button:hover, .resume-btn:hover, .mini-button:hover, .back-top:hover {
  transform: translateY(-1px);
}

.button:focus-visible, .resume-btn:focus-visible, .mini-button:focus-visible, .menu-toggle:focus-visible, .modal-close:focus-visible, .back-top:focus-visible {
  outline: 3px solid #8bbfe0;
  outline-offset: 3px;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #0d1b2a 0%, #12263f 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.7;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero-copy, .profile-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #bfd7ee;
}

.eyebrow.dark { color: var(--muted); }

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.hero h2 {
  margin: 0 0 0.5rem;
  color: #dfeaf5;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.subtitle {
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.lead {
  margin: 0 0 1.7rem;
  max-width: 60ch;
  color: rgba(255,255,255,0.82);
  font-size: 1.04rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.location {
  margin: 0;
  color: rgba(255,255,255,0.76);
}

.panel-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
  color: #dfeaf5;
}

.panel-card h3 {
  margin: 0 0 1rem;
  font-size: 1.17rem;
  line-height: 1.55;
  color: #fff;
}

.panel-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.9);
}

.panel-card li + li { margin-top: 0.5rem; }

.section-header {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem;
  box-shadow: 0 12px 26px rgba(17, 32, 51, 0.04);
}

.big {
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
}

.stat span:last-child {
  color: var(--muted);
  font-weight: 600;
}

.story {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tag-list span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  color: var(--ink);
}

.timeline {
  display: grid;
  gap: 1.3rem;
}

.time-card {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem 1.2rem 1.2rem;
  box-shadow: 0 14px 28px rgba(17,32,51,0.04);
}

.timeline-dot {
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 6px rgba(13,27,42,0.08);
}

.time-body {
  min-width: 0;
}

.company-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.company-row h3 {
  margin: 0;
  font-size: 1.3rem;
}

.role {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.period {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
}

.time-body ul {
  margin: 0;
  padding-left: 1.2rem;
}

.time-body li + li { margin-top: 0.5rem; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 12px 24px rgba(17,32,51,0.04);
}

.case-number {
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.case-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
}

.case-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.mini-button {
  background: var(--navy);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
  margin-top: 0.4rem;
}

.demo-alert {
  margin-bottom: 1.5rem;
  background: #f7f1d4;
  border: 1px solid rgba(114, 92, 18, 0.2);
  border-left: 4px solid #b38d2d;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: #483a10;
  font-weight: 700;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}

.kpi span {
  color: var(--muted);
  font-weight: 600;
}

.kpi strong {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--navy);
}

.chart-wrap {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 12px 26px rgba(17,32,51,0.04);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.chart-header h3 {
  margin: 0;
}

.chart-header span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
  min-height: 240px;
  padding: 1rem 0 0.5rem;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
}

.bar-label {
  text-align: center;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
  min-height: 2.6rem;
}

.bar-area {
  width: 100%;
  max-width: 72px;
  height: 160px;
  display: flex;
  align-items: end;
  justify-content: center;
  background: linear-gradient(180deg, rgba(191,215,238,0.28), rgba(191,215,238,0.08));
  border: 1px solid rgba(17,32,51,0.08);
  border-radius: 12px 12px 0 0;
  padding: 0.35rem;
}

.bar {
  display: block;
  width: 100%;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #7faacd, #1b415c);
}

.bar-value {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.82rem;
}

.chart-interpretation {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.demo-note {
  margin-bottom: 1.4rem;
  padding: 0.9rem 1rem;
  background: rgba(13,27,42,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.framework-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 12px 26px rgba(17,32,51,0.04);
}

.demo-tag {
  display: inline-flex;
  background: #f2f7fb;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.framework-card h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.1rem;
}

.framework-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.framework-card li + li { margin-top: 0.45rem; }

.narrow {
  max-width: 880px;
}

.edu-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 12px 26px rgba(17,32,51,0.04);
}

.edu-box h3 {
  margin: 0 0 0.35rem;
}

.edu-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.contact-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.8));
}

.contact-wrap {
  max-width: 900px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: 0 12px 26px rgba(17,32,51,0.04);
  text-align: center;
  margin-inline: auto;
}

.contact-name {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.55rem;
}

.contact-card p {
  margin: 0 0 0.6rem;
  color: var(--muted);
}

.contact-card a {
  color: var(--navy);
  font-weight: 600;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 1.6rem 0;
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 2rem;
  text-align: center;
}

.footer-row p {
  margin: 0;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 12px 24px rgba(13,27,42,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 28, 0.7);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 200;
}

.modal[hidden] { display: none; }

.modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(17,32,51,0.09);
  box-shadow: 0 30px 60px rgba(13,27,42,0.2);
  padding: 1.1rem;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
}

.modal-inner {
  padding: 0.8rem 0.4rem 0.5rem;
}

.modal-tag {
  margin-bottom: 0.8rem;
  display: inline-flex;
}

.modal-inner h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.document-head {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.document-head > div {
  display: grid;
  gap: 0.3rem;
  padding: 0.85rem;
  background: #f8fafc;
  border-right: 1px solid var(--line);
}

.document-head > div:last-child { border-right: 0; }

.document-head span, .signoff-row span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-head strong { font-size: 0.88rem; }

.status-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

.status-chip.approved { background: #dcfce7; color: #166534; }
.status-chip.pending { background: #fef3c7; color: #92400e; }
.score-value { color: #166534; font-size: 1.15rem !important; }

.case-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.case-summary > div {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-top: 3px solid #2563a7;
  border-radius: 12px;
  background: #fff;
}

.case-summary span, .preview-title {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-summary p { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.88rem; }
.preview-title { margin: 1.2rem 0 0.7rem; }

.process-list { display: grid; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }
.process-list li {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
}
.process-list li > span, .check-icon, .alert-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}
.process-list p, .audit-list p, .event-flow p { margin: 0; }
.process-list p, .audit-list small, .event-flow small { display: block; color: var(--muted); font-size: 0.82rem; }
.process-list b { color: #2563a7; font-size: 0.72rem; text-transform: uppercase; }

.signoff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.signoff-row > div { display: grid; gap: 0.3rem; }

.audit-list { display: grid; gap: 0.6rem; }
.audit-list > div {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.check-icon { background: #166534; }
.alert-icon { background: #d97706; }

.event-flow { margin: 0.25rem 0 1rem; }
.event-flow > div {
  display: grid;
  grid-template-columns: 52px 14px 1fr;
  gap: 0.7rem;
  min-height: 55px;
}
.event-flow time { padding-top: 0.05rem; color: #2563a7; font-weight: 800; }
.event-flow div > span { position: relative; width: 10px; height: 10px; margin-top: 0.25rem; border-radius: 50%; background: #2563a7; }
.event-flow div > span::after { content: ""; position: absolute; top: 10px; left: 4px; width: 2px; height: 45px; background: var(--line); }
.event-flow div:last-child > span::after { display: none; }
.action-banner { display: flex; gap: 0.75rem; padding: 0.85rem; border-radius: 12px; background: #eaf4ff; color: var(--navy); }
.action-banner strong { white-space: nowrap; }

.report-card {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.report-card p {
  margin: 0 0 0.7rem;
  color: var(--ink);
}

.report-card p:last-child { margin-bottom: 0; }

.table-wrap {
  overflow-x: auto;
  margin: 0 0 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #f9fbfd;
  border: 1px solid var(--line);
}

th, td {
  padding: 0.8rem 0.7rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th { background: #edf5fe; }

.checklist {
  display: grid;
  gap: 0.75rem;
}

.check-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fbfd;
}

.check-row strong {
  color: var(--navy);
}

@media (max-width: 980px) {
  .hero-grid, .case-grid, .framework-grid, .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .framework-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 0.7rem 0.5rem;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 999px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(13,27,42,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .nav.is-open { display: flex; }

  .nav-shell { position: relative; }

  .button, .resume-btn, .mini-button {
    width: 100%;
  }

  .cta-row, .contact-actions {
    flex-direction: column;
  }

  .stats-grid, .kpi-grid, .framework-grid, .case-grid {
    grid-template-columns: 1fr;
  }

  .company-row {
    flex-direction: column;
  }

  .chart {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bar-area {
    max-width: 100%;
    height: 120px;
  }

  .footer-row {
    flex-direction: column;
  }

  .document-head, .case-summary { grid-template-columns: 1fr; }
  .document-head > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .document-head > div:last-child { border-bottom: 0; }
  .process-list li, .audit-list > div { grid-template-columns: 38px 1fr; }
  .process-list li > b, .audit-list .status-chip { grid-column: 2; }
  .signoff-row { grid-template-columns: 1fr; }
  .action-banner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .button, .resume-btn, .mini-button, .back-top, .nav-link::after { transition: none; }
}
