:root {
  color-scheme: dark;
  --bg: #04101d;
  --bg-deep: #020a12;
  --surface: #081a2b;
  --surface-2: #0c2237;
  --surface-3: #102b43;
  --line: rgba(133, 177, 210, 0.18);
  --line-strong: rgba(32, 201, 224, 0.36);
  --text: #edf7ff;
  --muted: #94aabd;
  --cyan: #20c9e0;
  --cyan-soft: #8cebf6;
  --blue: #1d64a6;
  --green: #38d894;
  --amber: #ffbd5b;
  --red: #ff6f7d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --radius-small: 12px;
  --max-width: 1180px;
  font-family: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg-deep);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(18, 100, 165, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 10%, rgba(24, 198, 222, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 52%, #061321 100%);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(91, 151, 194, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 151, 194, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

button,
input,
select {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(32, 201, 224, 0.5);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #001018;
  background: var(--cyan);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(22px, calc((100vw - var(--max-width)) / 2));
  background: rgba(3, 13, 23, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 172px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.brand-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.brand-product {
  overflow: hidden;
  color: #cceafa;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-state {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.875rem;
}

.state-indicator {
  width: 9px;
  height: 9px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 189, 91, 0.09);
}

.service-state[data-state="online"] .state-indicator {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(56, 216, 148, 0.09);
}

.service-state[data-state="offline"] .state-indicator {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 111, 125, 0.09);
}

.shell {
  width: min(calc(100% - 44px), var(--max-width));
  min-height: calc(100vh - 152px);
  margin: 0 auto;
  padding: 54px 0 64px;
}

.view {
  animation: view-in 320ms ease-out both;
}

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

.intro-row,
.run-header,
.result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 9px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.3vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.trust-chip,
.duration {
  flex: 0 0 auto;
  padding: 9px 12px;
  color: var(--cyan-soft);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(18, 151, 181, 0.09);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.path-map {
  display: grid;
  grid-template-columns: minmax(125px, 1fr) 46px minmax(125px, 1fr) 46px minmax(125px, 1fr) 46px minmax(125px, 1fr);
  align-items: center;
  margin-bottom: 28px;
  padding: 18px;
  background: linear-gradient(90deg, rgba(10, 35, 56, 0.94), rgba(5, 21, 35, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.path-node {
  position: relative;
  min-height: 83px;
  padding: 14px 14px 12px 48px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.path-node-active {
  background: rgba(18, 159, 190, 0.08);
  border-color: var(--line-strong);
}

.path-index {
  position: absolute;
  top: 16px;
  left: 13px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
}

.path-node strong,
.path-node small {
  display: block;
}

.path-node strong {
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.path-node small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.path-line {
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), rgba(32, 201, 224, 0.06));
}

.setup-grid,
.run-grid,
.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 22px;
}

.panel {
  background: linear-gradient(145deg, rgba(10, 31, 50, 0.97), rgba(7, 23, 38, 0.97));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-panel,
.privacy-panel,
.test-sequence,
.live-panel,
.findings-panel,
.connection-panel,
.send-panel,
.legal-section {
  padding: 28px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.panel-heading h2 {
  margin-bottom: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  display: flex;
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 8px;
}

.field-half {
  grid-column: span 1;
}

.field > span {
  color: #c9dae7;
  font-size: 0.875rem;
  font-weight: 650;
}

.field em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(1, 11, 19, 0.62);
  border: 1px solid rgba(121, 166, 199, 0.28);
  border-radius: 10px;
}

input::placeholder {
  color: #668096;
}

input:hover,
select:hover,
input:focus,
select:focus {
  border-color: rgba(32, 201, 224, 0.65);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.input-unit {
  position: relative;
}

.input-unit input {
  padding-right: 66px;
}

.input-unit span {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--muted);
  font-size: 0.8rem;
  transform: translateY(-50%);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  cursor: pointer;
}

.consent-row input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
}

.primary-button,
.secondary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 160ms ease;
}

.primary-button {
  width: 100%;
  color: #00131b;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #57ddec);
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(18, 183, 210, 0.16);
}

.primary-button:hover {
  background: linear-gradient(135deg, #46d8ea, #83e8f2);
  transform: translateY(-1px);
}

.primary-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.primary-button.compact {
  width: auto;
  min-width: 154px;
}

.secondary-button {
  color: #dcecf6;
  background: rgba(13, 39, 61, 0.8);
  border: 1px solid var(--line);
}

.secondary-button:hover {
  background: var(--surface-3);
  border-color: var(--line-strong);
}

.text-button {
  min-height: 40px;
  padding: 0 8px;
  color: var(--cyan-soft);
  background: transparent;
  border: 0;
}

.inline-error {
  margin: 0 0 16px;
  padding: 11px 13px;
  color: #ffd9dd;
  font-size: 0.86rem;
  background: rgba(151, 35, 51, 0.18);
  border: 1px solid rgba(255, 111, 125, 0.35);
  border-radius: 9px;
}

.scope-list {
  display: grid;
  gap: 18px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.scope-list strong {
  color: var(--text);
}

.scope-mark {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-weight: 800;
}

.privacy-note,
.measurement-boundary {
  padding: 16px;
  background: rgba(9, 57, 82, 0.24);
  border: 1px solid rgba(58, 158, 201, 0.22);
  border-radius: 12px;
}

.privacy-note strong,
.measurement-boundary strong {
  color: #cbeafa;
  font-size: 0.88rem;
}

.privacy-note p,
.measurement-boundary p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan-soft);
  font-size: 0.87rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.run-header {
  align-items: center;
}

.progress-orbit {
  display: grid;
  flex: 0 0 auto;
  width: 112px;
  height: 112px;
  place-items: center;
  background:
    radial-gradient(circle at center, var(--bg) 58%, transparent 59%),
    conic-gradient(var(--cyan) var(--progress, 0%), rgba(120, 167, 201, 0.15) 0);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(32, 201, 224, 0.1);
}

.progress-orbit span {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 1.1rem;
  font-weight: 800;
}

.step-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 15px;
  min-height: 70px;
  color: var(--muted);
}

.step-list li:not(:last-child)::after {
  position: absolute;
  top: 25px;
  bottom: 0;
  left: 7px;
  width: 1px;
  content: "";
  background: var(--line);
}

.step-state {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  margin-top: 4px;
  background: #142b3d;
  border: 2px solid #526e83;
  border-radius: 50%;
}

.step-list li[data-status="running"] .step-state {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 6px rgba(32, 201, 224, 0.1);
  animation: pulse 1.2s ease-in-out infinite;
}

.step-list li[data-status="done"] .step-state {
  background: var(--green);
  border-color: var(--green);
}

.step-list li[data-status="error"] .step-state {
  background: var(--red);
  border-color: var(--red);
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 11px rgba(32, 201, 224, 0); }
}

.step-list strong,
.step-list small {
  display: block;
}

.step-list strong {
  color: #c9dbe8;
  font-size: 0.94rem;
}

.step-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.step-list li[data-status="running"] strong,
.step-list li[data-status="done"] strong {
  color: var(--text);
}

.live-panel {
  align-self: start;
}

.live-metrics {
  margin: 18px 0 24px;
}

.live-metrics > div,
.detail-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.live-metrics dt,
.detail-list dt {
  color: var(--muted);
  font-size: 0.84rem;
}

.live-metrics dd,
.detail-list dd {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.live-panel .secondary-button {
  width: 100%;
}

.result-heading {
  align-items: center;
}

.result-seal {
  display: grid;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--green);
  font-size: 1.6rem;
  font-weight: 900;
  background: rgba(56, 216, 148, 0.1);
  border: 1px solid rgba(56, 216, 148, 0.38);
  border-radius: 20px;
}

.result-seal[data-level="warning"] {
  color: var(--amber);
  background: rgba(255, 189, 91, 0.1);
  border-color: rgba(255, 189, 91, 0.38);
}

.result-seal[data-level="critical"] {
  color: var(--red);
  background: rgba(255, 111, 125, 0.1);
  border-color: rgba(255, 111, 125, 0.38);
}

.result-heading > div:nth-child(2) {
  flex: 1;
}

.result-heading h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
}

.result-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.75rem;
  text-align: right;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.metric-card {
  min-width: 0;
  padding: 20px;
  background: linear-gradient(145deg, rgba(10, 34, 54, 0.96), rgba(6, 22, 36, 0.96));
  border: 1px solid var(--line);
  border-radius: 15px;
}

.metric-card span,
.metric-card strong,
.metric-card small {
  display: block;
}

.metric-card span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-card strong {
  overflow: hidden;
  margin-bottom: 4px;
  color: var(--cyan-soft);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  letter-spacing: -0.04em;
  text-overflow: ellipsis;
}

.metric-card small {
  color: var(--muted);
  font-size: 0.76rem;
}

.findings-list {
  display: grid;
  gap: 12px;
}

.finding {
  display: grid;
  grid-template-columns: 7px 1fr;
  gap: 13px;
  padding: 15px;
  background: rgba(1, 12, 21, 0.35);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.finding::before {
  width: 7px;
  height: 7px;
  margin-top: 8px;
  content: "";
  background: var(--cyan);
  border-radius: 2px;
}

.finding[data-severity="ok"]::before { background: var(--green); }
.finding[data-severity="warning"]::before { background: var(--amber); }
.finding[data-severity="critical"]::before { background: var(--red); }

.finding strong,
.finding span {
  display: block;
}

.finding strong {
  margin-bottom: 3px;
  font-size: 0.91rem;
}

.finding span {
  color: var(--muted);
  font-size: 0.83rem;
}

.detail-list {
  margin: 10px 0 0;
}

.measurement-boundary {
  margin-top: 22px;
}

.action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.action-bar .primary-button {
  margin-left: auto;
}

.send-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 1fr);
  gap: 22px 34px;
  margin-top: 18px;
  border-color: var(--line-strong);
}

.send-panel .consent-row {
  margin: 0;
}

.send-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.send-status {
  align-self: center;
  color: var(--cyan-soft);
  font-size: 0.88rem;
}

.support-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  padding: 13px 17px;
  color: #001118;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 18px max(22px, calc((100vw - var(--max-width)) / 2));
  color: var(--muted);
  font-size: 0.78rem;
  background: rgba(2, 9, 16, 0.55);
  border-top: 1px solid var(--line);
}

.footer strong {
  color: #c8dce9;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  max-width: min(380px, calc(100vw - 44px));
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.88rem;
  background: #102d43;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  box-shadow: var(--shadow);
}

.legal-shell {
  width: min(calc(100% - 44px), 840px);
  min-height: calc(100vh - 152px);
  margin: 0 auto;
  padding: 50px 0 70px;
}

.legal-shell > .text-link {
  margin: 0 0 38px;
}

.legal-shell h1 {
  margin-bottom: 14px;
}

.legal-section {
  margin-top: 16px;
}

.legal-section p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 940px) {
  .path-map {
    grid-template-columns: 1fr 20px 1fr;
    gap: 10px 0;
  }

  .path-node:nth-of-type(3) {
    grid-column: 1;
  }

  .path-line:nth-of-type(2) {
    display: none;
  }

  .setup-grid,
  .run-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .privacy-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }

  .privacy-panel > .section-kicker,
  .privacy-panel > h2,
  .privacy-panel > .text-link {
    grid-column: 1 / -1;
  }

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

@media (max-width: 680px) {
  .topbar {
    min-height: 66px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 125px;
    height: 34px;
  }

  .brand-divider,
  .service-state span:not(.state-indicator) {
    display: none;
  }

  .brand-product {
    font-size: 0.84rem;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max-width));
    min-height: calc(100vh - 136px);
    padding: 34px 0 50px;
  }

  .intro-row,
  .run-header,
  .result-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .path-map {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
  }

  .path-node {
    min-height: 72px;
  }

  .path-line {
    display: block !important;
    width: 1px;
    height: 18px;
    margin-left: 28px;
  }

  .form-panel,
  .privacy-panel,
  .test-sequence,
  .live-panel,
  .findings-panel,
  .connection-panel,
  .send-panel,
  .legal-section {
    padding: 21px;
  }

  .field-grid,
  .privacy-panel,
  .send-panel {
    grid-template-columns: 1fr;
  }

  .field-half,
  .privacy-panel > * {
    grid-column: 1;
  }

  .progress-orbit {
    width: 90px;
    height: 90px;
  }

  .result-seal {
    width: 62px;
    height: 62px;
  }

  .result-meta {
    align-items: flex-start;
    text-align: left;
  }

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

  .metric-card {
    padding: 16px;
  }

  .action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .action-bar button,
  .action-bar .primary-button {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .send-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    min-height: 70px;
  }

  .support-button {
    position: static;
    display: block;
    width: 100%;
    margin-top: 18px;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .metric-grid,
  .action-bar {
    grid-template-columns: 1fr;
  }
}

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

@media print {
  :root {
    color-scheme: light;
    --text: #101820;
    --muted: #53616d;
    --line: #cad5dd;
    --surface: #ffffff;
  }

  body,
  body::before {
    color: #101820;
    background: #ffffff;
  }

  .topbar,
  .footer,
  .setup-view,
  .running-view,
  .action-bar,
  .send-panel,
  .support-button,
  .toast {
    display: none !important;
  }

  .shell {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .results-view {
    display: block !important;
  }

  .panel,
  .metric-card,
  .measurement-boundary,
  .finding {
    color: #101820;
    background: #ffffff;
    border-color: #cad5dd;
    box-shadow: none;
    break-inside: avoid;
  }

  .metric-card strong,
  .detail-list dd,
  .finding strong,
  .result-heading h1 {
    color: #101820;
  }

  .eyebrow,
  .section-kicker {
    color: #09667b;
  }

  .results-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}
