:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --panel: #ffffff;
  --text: #1f2933;
  --muted: #627183;
  --line: #d8dee6;
  --accent: #176b87;
  --accent-dark: #0f4f63;
  --ok: #166534;
  --bad: #a32020;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 14px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 2;
}

.account-signout {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #f8fafc;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.account-signout:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: #e8f7fb;
}

.account-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #dff3f8;
}

.account-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1 {
  font-size: 20px;
  margin-bottom: 2px;
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted);
}

header p {
  margin-bottom: 0;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

nav a,
.button,
button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 7px 11px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

nav a {
  background: #ffffff;
  color: var(--accent-dark);
}

.nav-separator {
  width: 1px;
  min-height: 34px;
  margin: 0 3px;
  background: var(--line);
}

button.secondary,
.button.secondary {
  background: #ffffff;
  color: var(--accent-dark);
}

button:hover,
.button:hover,
nav a:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
}

article,
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  min-width: 0;
}

body.landing-mode {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0b0b0b;
  --text: #f3f1ec;
  --muted: #aaa59b;
  --line: rgba(243, 241, 236, 0.13);
  --accent: #b8ffcf;
  --accent-dark: #8de8ad;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--bg);
  color: var(--text);
  text-rendering: geometricPrecision;
}

body.landing-mode header {
  border-bottom-color: var(--line);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

body.landing-mode header h1 {
  color: var(--text);
}

body.landing-mode header p,
body.landing-mode nav a {
  color: var(--muted);
}

body.landing-mode nav a {
  min-height: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
}

body.landing-mode nav a:hover {
  background: transparent;
  color: var(--accent);
}

body.landing-mode main {
  max-width: none;
  padding: 0;
}

.landing-page {
  min-height: calc(100svh - 71px);
}

.landing-section {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 88px) clamp(20px, 4vw, 56px);
}

.landing-hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(38px, 8vw, 96px);
  align-items: center;
  padding-bottom: clamp(30px, 4vw, 54px);
}

.landing-eyebrow,
.landing-step-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-page h2 {
  max-width: 940px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: 0;
}

.landing-summary {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.12;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.landing-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 241, 236, 0.26);
  padding: 0 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.landing-button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #050505;
}

.landing-button:hover {
  transform: translateY(-1px);
}

.landing-facts {
  border-top: 1px solid rgba(243, 241, 236, 0.26);
  padding-top: 26px;
}

.landing-facts dl {
  display: grid;
  gap: 28px;
  margin: 0;
}

.landing-facts dt {
  color: #6e6a63;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.landing-facts dd {
  margin: 7px 0 0;
  color: var(--text);
  font-size: 14px;
}

.landing-workflow {
  border-top: 1px solid var(--line);
}

.landing-section-heading {
  margin-bottom: clamp(34px, 6vw, 72px);
}

.landing-section-heading h2 {
  max-width: 780px;
  font-size: clamp(34px, 5.2vw, 74px);
}

.landing-steps {
  border-top: 1px solid var(--line);
}

.landing-step {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 4vw, 38px) 0;
}

.landing-step-number {
  color: var(--accent);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 620;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.landing-step h3 {
  max-width: 680px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 620;
  line-height: 1.04;
}

.landing-step p:last-child {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
}

body.journey-mode {
  --bg: #eef2f4;
  --panel: #fffdf8;
  --text: #17212b;
  --muted: #5f6f7d;
  --line: #c9d3dc;
  --accent: #176b87;
  --accent-dark: #0f4f63;
  background:
    linear-gradient(90deg, rgba(15, 79, 99, 0.045) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(180deg, rgba(15, 79, 99, 0.04) 1px, transparent 1px) 0 0 / 46px 46px,
    var(--bg);
}

body.journey-mode main {
  max-width: none;
  padding: 0;
}

.journey-page {
  min-height: calc(100svh - 71px);
}

.journey-hero,
.journey-close {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(42px, 8vw, 96px) clamp(22px, 5vw, 72px);
}

.journey-eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-hero h2,
.journey-close h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7.2vw, 108px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.94;
}

.journey-summary {
  max-width: 780px;
  color: #33414d;
  font-size: clamp(18px, 2.1vw, 27px);
  line-height: 1.25;
}

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.journey-legend {
  align-self: end;
  display: grid;
  gap: 12px;
}

.journey-legend div {
  border: 2px solid #17212b;
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 5px 5px 0 #c8d9df;
}

.journey-legend span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-legend p,
.journey-close p {
  margin-bottom: 0;
  color: var(--muted);
}

.journey-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 72px) clamp(48px, 8vw, 96px) clamp(52px, 7vw, 104px);
}

.journey-bottom-actions {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.journey-rail {
  position: absolute;
  top: 0;
  bottom: clamp(48px, 8vw, 96px);
  left: clamp(22px, 5vw, 72px);
  width: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(23, 107, 135, 0.18);
}

.journey-rail span {
  display: block;
  width: 100%;
  height: 22%;
  border-radius: inherit;
  background: var(--accent);
}

.journey-panel {
  position: relative;
  grid-column: auto;
  min-height: 250px;
  border: 2px solid #17212b;
  border-radius: 8px;
  padding: clamp(18px, 3vw, 30px) clamp(18px, 3vw, 34px) 82px;
  background:
    linear-gradient(135deg, rgba(23, 107, 135, 0.06) 0 18%, transparent 18% 100%),
    #fffdf8;
  box-shadow: 7px 7px 0 #c8d9df;
}

.journey-panel.actor-you {
  background:
    linear-gradient(135deg, rgba(23, 107, 135, 0.1) 0 18%, transparent 18% 100%),
    #e9f6fb;
  box-shadow: 7px 7px 0 #b7d7e3;
}

.journey-panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-panel-number {
  color: #17212b;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.84;
}

.journey-actor {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(23, 33, 43, 0.32);
  border-radius: 999px;
  padding: 4px 9px;
  background: #ffffff;
  color: #17212b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-panel h3 {
  margin-bottom: 10px;
  color: #17212b;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 760;
  line-height: 1.05;
}

.journey-panel p:not(.journey-actor) {
  color: #3a4854;
}

.journey-result {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.journey-close {
  align-items: end;
  border-top: 2px solid rgba(23, 33, 43, 0.12);
  background: #fffdf8;
}

.journey-close h2 {
  max-width: 850px;
  font-size: clamp(34px, 5vw, 74px);
}

@media (prefers-reduced-motion: no-preference) {
  .journey-panel {
    animation: storyboard-rise 560ms ease both;
    animation-delay: calc(var(--panel-index) * 55ms);
  }

  .journey-rail span {
    animation: journey-flow 5.5s linear infinite;
  }
}

@keyframes storyboard-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes journey-flow {
  from {
    transform: translateY(-105%);
  }
  to {
    transform: translateY(470%);
  }
}

@media (max-width: 980px) {
  .landing-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .landing-facts {
    max-width: 620px;
  }

  .journey-hero,
  .journey-close {
    grid-template-columns: 1fr;
  }

  .journey-legend {
    max-width: 680px;
  }

}

@media (max-width: 760px) {
  body.landing-mode header {
    align-items: flex-start;
  }

  body.landing-mode nav,
  body.journey-mode nav {
    justify-content: flex-start;
  }

  .landing-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .landing-page h2 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .landing-summary {
    font-size: clamp(20px, 6vw, 28px);
  }

  .landing-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .landing-step-number {
    font-size: 44px;
  }

  .journey-hero,
  .journey-close,
  .journey-map {
    padding-left: 20px;
    padding-right: 20px;
  }

  .journey-hero h2 {
    font-size: clamp(42px, 13vw, 70px);
  }

  .journey-panel {
    min-height: 270px;
  }

  .journey-rail {
    display: none;
  }
}

a,
td,
pre.markdown,
code {
  overflow-wrap: anywhere;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
}

.dashboard-guidance {
  border-left: 4px solid var(--accent);
}

.dashboard-guidance .section-heading {
  margin-bottom: 12px;
}

.dashboard-guidance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.dashboard-guidance-card {
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfd;
}

.dashboard-guidance-card h3,
.dashboard-guidance-card p {
  margin: 0;
}

.dashboard-guidance-card h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.dashboard-guidance-card .button {
  width: fit-content;
  margin-top: 4px;
}

.dashboard-tips {
  border-left: 4px solid var(--line);
  max-width: 688px;
}

.dashboard-tip-group {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.dashboard-tip-group-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.dashboard-tip-group-header > h3 {
  margin-bottom: 0;
}

.dashboard-tip-stage {
  min-height: 220px;
}

.dashboard-tip-card {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  align-items: stretch;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #ffffff;
}

.dashboard-tip-card[hidden] {
  display: none;
}

.dashboard-tip-card h3,
.dashboard-tip-card p {
  margin: 0;
}

.dashboard-tip-copy {
  display: grid;
  align-content: start;
  gap: 7px;
}

.dashboard-tip-copy p {
  font-size: 14px;
  line-height: 1.45;
}

.dashboard-tip-source {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-tip-visual {
  display: grid;
  min-height: 190px;
  border: 1px solid #cfdbe3;
  border-radius: 8px;
  background:
    linear-gradient(rgba(14, 115, 141, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 115, 141, 0.035) 1px, transparent 1px),
    #fbfdfe;
  background-size: 18px 18px;
  overflow: hidden;
}

.mini-window {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
}

.mini-window-bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mini-textarea,
.mini-list-row,
.mini-question,
.mini-answer,
.mini-table-row {
  border: 1px solid #d6e1e8;
  border-radius: 6px;
  background: #ffffff;
}

.mini-textarea {
  display: grid;
  gap: 4px;
  padding: 9px;
}

.mini-textarea p,
.mini-muted {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.mini-window button {
  justify-self: start;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-size: 11px;
}

.mini-list-row,
.mini-table-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  color: var(--muted);
  font-size: 11px;
}

.mini-list-row strong,
.mini-table-row strong {
  color: var(--ink);
}

.mini-list-row span,
.mini-table-row span,
.mini-pill-row span {
  color: #145c35;
  font-weight: 800;
}

.mini-question,
.mini-answer {
  padding: 8px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.35;
}

.mini-answer {
  color: var(--muted);
}

.mini-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mini-pill-row span {
  border-radius: 999px;
  background: #dff2e8;
  padding: 4px 7px;
  font-size: 10px;
}

.mini-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce8ee;
}

.mini-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.tip-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tip-controls .compact {
  min-height: 30px;
  padding: 5px 9px;
  font-size: 12px;
}

.tip-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tip-dot {
  width: 9px;
  height: 9px;
  min-height: 9px;
  padding: 0;
  border: 1px solid #9cb2bf;
  border-radius: 999px;
  background: #dfe9ee;
}

.tip-dot.active {
  width: 20px;
  background: var(--accent);
  border-color: var(--accent);
}

.stack {
  display: grid;
  gap: 16px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.application-page-nav {
  border-left: 4px solid var(--line);
  background: #fbfcfd;
}

.page-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-nav-links .button {
  margin: 0;
}

.inline {
  display: inline-flex;
}

.form {
  display: grid;
  gap: 10px;
}

.row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

textarea {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  resize: vertical;
}

.settings-table td:first-child {
  width: 52%;
}

.settings-table select {
  min-width: 340px;
}

.settings-controls {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(116px, 0.3fr) minmax(126px, 0.32fr);
  gap: 8px;
}

.settings-controls label {
  color: var(--muted);
  font-size: 12px;
}

.settings-controls select,
.settings-controls input {
  display: block;
  margin-top: 4px;
}

.settings-controls label:nth-child(2) select {
  min-width: 116px;
}

.settings-model-note {
  margin: 5px 0 0;
  font-size: 12px;
}

.settings-section-card {
  scroll-margin-top: 96px;
}

.settings-section-card > .eyebrow {
  display: none;
}

.settings-section-card > h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.settings-section-card > .settings-panel {
  margin-top: 12px;
}

.settings-stack {
  display: grid;
  gap: 10px;
}

.settings-panel,
.settings-subsection {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.settings-panel summary,
.settings-subsection summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 13px 15px;
  font-weight: 700;
}

.settings-summary-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.profile-file-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.profile-file-header p {
  margin-bottom: 0;
}

.settings-note {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.settings-note p {
  margin-bottom: 7px;
}

.settings-rule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 18px;
}

.settings-rule-grid > div {
  display: grid;
  align-content: start;
  gap: 9px;
  border-left: 3px solid var(--line);
  padding-left: 12px;
}

.settings-rule-grid h3,
.settings-rule-grid p {
  margin-bottom: 0;
}

.settings-rule-grid h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.settings-rule-grid textarea {
  display: block;
  margin-top: 4px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
}

.checkbox-row input {
  width: auto;
  margin-top: 3px;
}

.profile-memory-review {
  border-left: 4px solid var(--accent);
}

.profile-suggestions {
  display: grid;
  gap: 14px;
}

.profile-suggestions section {
  display: grid;
  gap: 7px;
}

.profile-suggestion {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  background: #fbfcfd;
  font-weight: 400;
}

.profile-suggestion input {
  width: auto;
  margin-top: 3px;
}

.profile-builder-start input[type="file"] {
  padding: 8px;
}

.profile-builder-question {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin: 12px 0;
  background: #fbfcfd;
}

.profile-builder-question h3 {
  color: var(--text);
}

.profile-builder-final-progress {
  margin: 14px 0 16px;
}

.profile-builder-final-generate {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.profile-builder-final-generate button {
  position: relative;
  z-index: 1;
}

.profile-builder-question dl {
  display: grid;
  grid-template-columns: minmax(130px, 0.22fr) minmax(0, 1fr);
  gap: 8px 14px;
  margin: 10px 0 0;
}

.profile-builder-question dt {
  color: var(--muted);
  font-weight: 700;
}

.profile-builder-question dd {
  margin: 0;
}

.profile-builder-statuses {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.profile-evidence-strength {
  border-left: 4px solid var(--accent);
}

.evidence-score {
  color: var(--accent-dark);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.evidence-score span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.evidence-strength-progress {
  margin-bottom: 14px;
}

.evidence-dimensions,
.evidence-deficiencies {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.evidence-dimensions {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.evidence-dimension,
.evidence-deficiency {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  background: #fbfcfd;
}

.evidence-dimension-heading,
.evidence-deficiency-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
}

.evidence-dimension-heading span,
.evidence-deficiency-heading span {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.evidence-dimension p,
.evidence-deficiency p {
  margin-bottom: 0;
}

.evidence-deficiency.high {
  border-left: 4px solid #a32020;
}

.evidence-deficiency.medium {
  border-left: 4px solid #b7791f;
}

.evidence-deficiency.low {
  border-left: 4px solid var(--accent);
}

.evidence-action {
  margin-top: 6px;
  color: var(--muted);
}

.final-review-review {
  border-left: 4px solid var(--accent);
}

.final-review-suggestions {
  display: grid;
  gap: 9px;
}

.final-review-suggestion {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  background: #fbfcfd;
  font-weight: 400;
}

.final-review-suggestion-body {
  display: grid;
  gap: 6px;
  font-weight: 400;
}

.final-review-suggestion.critical {
  border-color: #e1a2a2;
  background: #fff7f7;
}

.final-review-suggestion.artifact-repair {
  border-left: 4px solid #b7791f;
  background: #fffbeb;
}

.final-review-suggestion.critical.artifact-repair {
  border-color: #e1a2a2;
  border-left-color: #c53030;
  background: #fff7f7;
}

.final-review-suggestion.evidence-submitted,
.final-review-suggestion.critical.evidence-submitted,
.final-review-suggestion.critical.artifact-repair.evidence-submitted {
  border-color: #8bbbe8;
  border-left-color: #2b6cb0;
  background: #eef7ff;
}

.final-review-suggestion.selected {
  border-color: #0f4f63;
  background: #eef7f9;
}

.final-review-suggestion input {
  width: auto;
  margin-top: 3px;
}

.final-review-suggestion-body {
  display: grid;
  gap: 3px;
}

.final-review-repair-actions {
  display: grid;
  gap: 8px;
  margin: 10px 0 0 28px;
  padding: 10px;
  border: 1px solid #efd0d0;
  border-radius: 6px;
  background: #fff;
}

.final-review-repair-actions p {
  margin: 0;
}

.final-review-submitted-chip {
  display: inline-flex;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: #dbeafe;
  color: #174a7c;
  font-size: 12px;
  font-weight: 700;
}

.final-review-submitted-evidence {
  padding: 8px;
  border: 1px solid #8bbbe8;
  border-radius: 6px;
  background: #f5fbff;
  color: #174a7c;
}

.final-review-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.final-review-actions-row button.selected {
  border-color: #0f4f63;
  background: #0f4f63;
  color: #ffffff;
}

.final-review-evidence-details {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.final-review-evidence-details summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 700;
}

.final-review-evidence-form {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.final-review-evidence-form textarea {
  width: 100%;
  min-height: 88px;
}

.claim-strength-custom-rewrite {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
}

.claim-strength-custom-rewrite[hidden] {
  display: none;
}

.claim-strength-custom-rewrite textarea {
  min-height: 92px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 7px 8px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-weight: 600;
}

pre.markdown {
  max-height: 720px;
  overflow: auto;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  white-space: pre-wrap;
  font: 12px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

code {
  background: #eef3f6;
  border-radius: 4px;
  padding: 2px 4px;
}

.notice {
  margin-bottom: 16px;
  border: 1px solid #b7d7b9;
  border-radius: 6px;
  padding: 10px 12px;
  background: #f1faf2;
  color: #14532d;
}

.ok {
  color: var(--ok);
  font-weight: 700;
}

.bad {
  color: var(--bad);
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.muted {
  color: var(--muted);
}

body.journey-mode main {
  max-width: none;
  padding: 0;
}

body.journey-mode > header.home-menu-shell {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 60;
  display: block;
  width: auto;
  border: 0;
  padding: 0;
  background: transparent;
}

.home-menu-details {
  position: relative;
}

.home-menu-button {
  display: grid;
  gap: 5px;
  place-content: center;
  width: 38px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  padding: 0;
  background: rgba(251, 250, 246, 0.82);
  box-shadow: none;
  cursor: pointer;
  list-style: none;
}

.home-menu-button:hover {
  background: rgba(23, 33, 43, 0.08);
}

.home-menu-button::-webkit-details-marker {
  display: none;
}

.home-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #17212b;
}

.home-menu-panel {
  position: absolute;
  top: 46px;
  right: 0;
  display: grid;
  gap: 14px;
  width: min(360px, calc(100vw - 36px));
  border: 1px solid #d8dee6;
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(23, 33, 43, 0.18);
}

.home-menu-brand strong {
  display: block;
  color: #17212b;
  font-size: 19px;
  font-weight: 850;
}

.home-menu-brand span {
  color: #5f6f7d;
  font-size: 13px;
}

.home-menu-panel .account-signout {
  width: max-content;
}

.home-menu-panel nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.home-menu-panel nav a {
  justify-content: flex-start;
  min-height: 38px;
}

.home-menu-panel .nav-separator {
  width: 100%;
  min-height: 1px;
  margin: 4px 0;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}

.summary-item {
  display: grid;
  gap: 2px;
  min-height: 72px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
}

.summary-item .summary-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.summary-item strong {
  font-size: 22px;
}

.summary-help {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border: 1px solid #9aa8b5;
  border-radius: 50%;
  color: #526173;
  background: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.summary-help::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 20;
  width: min(300px, 72vw);
  padding: 9px 10px;
  border: 1px solid #c6d2dd;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  color: var(--text);
  content: attr(data-tooltip);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.summary-help:hover::after,
.summary-help:focus::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.section-heading .summary-help::after,
.settings-subsection .summary-help::after {
  left: auto;
  right: 0;
  transform: translate(0, 4px);
}

.section-heading .summary-help:hover::after,
.section-heading .summary-help:focus::after,
.settings-subsection .summary-help:hover::after,
.settings-subsection .summary-help:focus::after {
  transform: translate(0, 0);
}

.summary-item-link {
  color: inherit;
  text-decoration: none;
}

.summary-item-link:hover {
  border-color: var(--accent);
  background: #f3f8fa;
}

.summary-item.active-filter {
  background: #edf8fb;
  box-shadow: inset 0 0 0 2px var(--accent), 0 8px 18px rgba(15, 79, 99, 0.08);
}

.summary-item.active-filter .summary-label {
  color: var(--accent-dark);
  font-size: 12.5px;
  font-weight: 800;
}

.summary-item.active-filter strong {
  color: var(--accent-dark);
  font-size: 24px;
  font-weight: 850;
}

.application-integrity {
  border-left: 4px solid var(--accent);
}

.integrity-summary {
  margin: 14px 0;
}

.integrity-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.integrity-details-grid details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
}

.integrity-details-grid summary {
  cursor: pointer;
  padding: 11px 12px;
  color: var(--accent-dark);
  font-weight: 700;
}

.integrity-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0 12px 12px;
  list-style: none;
}

.integrity-list li {
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

.integrity-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
}

.integrity-list p {
  margin-bottom: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.filter-dropdown {
  position: relative;
}

.filter-dropdown > summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 11px;
  background: #ffffff;
  color: var(--accent-dark);
  font-weight: 700;
}

.filter-dropdown > summary::-webkit-details-marker {
  display: none;
}

.filter-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  width: min(360px, calc(100vw - 42px));
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 12px;
}

.filter-options {
  display: grid;
  gap: 5px;
  max-height: 260px;
  overflow: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 8px 0;
  padding: 8px 0;
}

.company-option {
  font-weight: 500;
}

.company-option.all-option {
  font-weight: 800;
}

.summary-item.recommend {
  border-color: #9bc6a5;
}

.summary-item.maybe,
.summary-item.needs_job_description {
  border-color: #e5c46a;
}

.summary-item.reject {
  border-color: #e1a2a2;
}

.summary-item.found {
  border-color: #93bfcf;
}

.table-panel {
  padding: 0;
}

.table-scroll {
  overflow-x: auto;
  max-width: 100%;
}

.screening-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.screening-table .col-status {
  width: 7%;
}

.screening-table .col-seen {
  width: 6%;
}

.screening-table .col-role {
  width: 16%;
}

.screening-table .col-location {
  width: 8%;
}

.applications-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.applications-table .col-application {
  width: 0;
}

.applications-table .col-company {
  width: 18%;
}

.applications-table .col-role {
  width: 24%;
}

.applications-table .col-lead-status {
  width: 13%;
}

.applications-table .col-candidate-status {
  width: 18%;
}

.applications-table .col-applied-date {
  width: 9%;
}

.applications-table .col-fit {
  width: 5%;
}

.applications-table .col-generated {
  width: 13%;
}

.status-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.status-link:hover,
.status-link:focus {
  text-decoration: none;
}

.status-edit-form {
  display: grid;
  grid-template-columns: minmax(128px, 1fr) auto;
  gap: 6px;
  align-items: center;
}

.status-edit-form select {
  min-width: 128px;
  padding: 7px 8px;
}

.status-edit-form button {
  padding: 7px 9px;
}

.tracker-table:not(.applications-table) .status-edit-form {
  grid-template-columns: minmax(104px, 1fr) auto;
  gap: 4px;
}

.tracker-table:not(.applications-table) .status-edit-form select {
  min-width: 104px;
  padding: 6px 6px;
  font-size: 13px;
}

.tracker-table:not(.applications-table) .status-edit-form button {
  min-width: 36px;
  padding: 6px 6px;
  font-size: 12px;
  line-height: 1.1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screening-table .col-jd {
  width: 11%;
}

.screening-table .col-salary {
  width: 10%;
}

.screening-table .col-fit {
  width: 4%;
}

.screening-table .col-priority {
  width: 5%;
}

.screening-table .col-reason {
  width: 33%;
}

.screening-table .reason {
  min-width: 0;
}

.tracker-summary-heading {
  margin-top: 16px;
}

.tracker-summary-title {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.tracker-filter-note {
  margin: 16px 0 0;
  border-left: 3px solid var(--accent);
  padding: 8px 10px;
  background: #f3f8fa;
}

.tracker-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.tracker-table .col-lead-status {
  width: 7%;
}

.tracker-table .col-candidate-status {
  width: 14%;
}

.tracker-table .col-role {
  width: 16%;
}

.tracker-table .col-location {
  width: 8%;
}

.tracker-table .col-salary {
  width: 9%;
}

.tracker-table .col-fit {
  width: 4%;
}

.tracker-table .col-priority {
  width: 5%;
}

.tracker-table .col-dates {
  width: 10%;
}

.tracker-table .col-reason {
  width: 27%;
}

.tracker-table .role {
  min-width: 0;
}

.tracker-table .reason {
  min-width: 0;
}

.tracker-table.applications-table .col-application {
  width: 0;
}

.tracker-table.applications-table .col-company {
  width: 18%;
}

.tracker-table.applications-table .col-role {
  width: 24%;
}

.tracker-table.applications-table .col-lead-status {
  width: 13%;
}

.tracker-table.applications-table .col-candidate-status {
  width: 18%;
}

.tracker-table.applications-table .col-applied-date {
  width: 9%;
}

.tracker-table.applications-table .col-fit {
  width: 5%;
}

.tracker-table.applications-table .col-generated {
  width: 13%;
}

.plain-row-link {
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: normal;
}

.plain-row-link:hover,
.plain-row-link:focus {
  color: inherit;
  text-decoration: none;
}

.tracker-table td:nth-child(1),
.tracker-table td:nth-child(2),
.tracker-table td:nth-child(4),
.tracker-table td:nth-child(6),
.tracker-table td:nth-child(7),
.tracker-table td:nth-child(8),
.screening-table td:nth-child(1),
.screening-table td:nth-child(2),
.screening-table td:nth-child(4),
.screening-table td:nth-child(7),
.screening-table td:nth-child(8) {
  overflow-wrap: normal;
  word-break: normal;
}

.tracker-table td:nth-child(1),
.tracker-table td:nth-child(2),
.tracker-table td:nth-child(6),
.tracker-table td:nth-child(7),
.tracker-table td:nth-child(8),
.screening-table td:nth-child(1),
.screening-table td:nth-child(2),
.screening-table td:nth-child(7),
.screening-table td:nth-child(8) {
  white-space: nowrap;
}

.seen-date {
  white-space: nowrap;
}

.tracker-table.applications-table td:nth-child(1) {
  white-space: normal;
  overflow-wrap: anywhere;
}

.date-stack {
  display: grid;
  gap: 3px;
}

.date-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px;
  align-items: baseline;
  white-space: nowrap;
}

.date-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .tracker-table th,
  .tracker-table td,
  .screening-table th,
  .screening-table td {
    padding-left: 5px;
    padding-right: 5px;
  }

  .tracker-table td:nth-child(8) {
    white-space: normal;
  }

  .date-item {
    grid-template-columns: 1fr;
    gap: 0;
    white-space: normal;
  }
}

.reason-action {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.reason-action .button,
.reason-action button {
  max-width: 100%;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .reason-action .button,
  .reason-action button {
    justify-content: center;
    white-space: normal;
  }
}

.screening-decisions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

button.reject-action {
  border-color: #b42318;
  background: #ffffff;
  color: #991b1b;
}

button.reject-action:hover {
  background: #991b1b;
  color: #ffffff;
}

button.danger,
.button.danger {
  border-color: #b42318;
  background: #b42318;
  color: #ffffff;
}

button.danger:hover,
.button.danger:hover {
  border-color: #7f1d1d;
  background: #7f1d1d;
}

.screening-workspace {
  display: grid;
  gap: 14px;
}

.screening-role {
  display: grid;
  gap: 9px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.screening-role-header,
.screening-role-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.screening-role h3,
.screening-role p {
  margin-bottom: 0;
}

.source-reference {
  overflow-wrap: anywhere;
  padding: 8px 10px;
  border-left: 3px solid #93bfcf;
  background: #f3f8fa;
  font-size: 12px;
}

.screening-role:target textarea {
  border-color: #c43d3d;
  background: #fff1f1;
  box-shadow: 0 0 0 3px rgba(196, 61, 61, 0.16);
}

.screening-submit {
  position: sticky;
  bottom: 0;
  padding: 12px 0 2px;
  background: var(--bg);
}

.error-text {
  margin-bottom: 0;
  color: var(--bad);
}

article[id],
section[id],
details[id] {
  scroll-margin-top: 126px;
  outline: 0;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.journey {
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 0 14px;
}

.journey-step {
  display: grid;
  grid-template-columns: 40px minmax(150px, 1fr);
  gap: 10px;
  min-width: 230px;
  min-height: 112px;
  align-items: start;
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  color: var(--muted);
}

.journey-step strong,
.journey-step span {
  display: block;
}

.journey-step div span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.journey-step.done {
  border-color: #9dd5e8;
  background: #eef9fd;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(15, 93, 122, 0.07);
}

.journey-step.current {
  border-color: #60b7d7;
  background: #e8f6fb;
  color: var(--text);
  box-shadow: 0 10px 28px rgba(15, 93, 122, 0.1);
}

.journey-step.done strong,
.journey-step.current strong {
  color: var(--accent-strong);
  font-weight: 800;
}

.journey-step.done div span,
.journey-step.current div span {
  color: var(--text);
  font-weight: 650;
}

.journey-step .journey-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e9eef2;
  color: var(--muted);
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}

.journey-step.done .journey-number {
  background: #d7f0f8;
  color: var(--accent-strong);
}

.journey-step.current .journey-number {
  background: var(--accent);
  color: #ffffff;
}

.journey-arrow {
  align-self: center;
  color: var(--muted);
  font-size: 20px;
}

.next-step-panel {
  margin-top: 4px;
  border-left: 4px solid var(--accent);
  padding: 12px 14px;
  background: #f3f8fa;
  scroll-margin-top: 126px;
  outline: 0;
}

.attention-pulse {
  animation: attention-pulse 1.25s ease-out 1;
}

@keyframes attention-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 107, 135, 0.28);
    transform: translateY(-2px);
  }

  55% {
    box-shadow: 0 0 0 8px rgba(23, 107, 135, 0.11);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(23, 107, 135, 0);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .attention-pulse {
    animation: none;
  }
}

.application-workspace-shell .eyebrow {
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0;
}

.application-workspace-shell .next-step-panel .eyebrow {
  font-size: 21px;
  font-weight: 800;
}

.application-workspace-shell .next-step-panel h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.12;
}

.next-step-panel h3,
.next-step-panel p:last-of-type {
  margin-bottom: 8px;
}

.requirement-coverage {
  border-left: 4px solid var(--accent);
}

.role-fit-summary {
  border-left: 4px solid var(--accent);
}

.role-fit-summary .section-heading {
  align-items: flex-start;
}

.role-fit-score {
  min-width: 145px;
  text-align: right;
}

.role-fit-score strong {
  display: block;
  color: var(--accent-dark);
  font-size: 34px;
  line-height: 1;
}

.role-fit-score strong span {
  color: var(--muted);
  font-size: 15px;
}

.role-fit-score small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.role-fit-summary-body {
  max-width: 980px;
}

.role-fit-summary-body h3 {
  margin: 14px 0 7px;
  font-size: 17px;
}

.role-fit-summary-body p {
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.55;
}

.role-fit-summary-body ul {
  margin: 0 0 10px 20px;
}

.role-fit-summary-body li {
  margin-bottom: 5px;
}

.evidence-fit {
  border-left: 4px solid var(--accent);
}

.evidence-fit-heading {
  align-items: flex-start;
}

.fit-score-display {
  min-width: 170px;
  text-align: right;
}

.fit-score-display strong {
  display: block;
  color: var(--accent-dark);
  font-size: 42px;
  line-height: 1;
}

.fit-score-display strong span {
  color: var(--muted);
  font-size: 17px;
}

.fit-score-display p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.fit-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 5px;
  background: #dbe4e8;
}

.fit-bar div {
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.fit-overall-bar {
  height: 14px;
  margin: 14px 0 16px;
}

.fit-cap-note {
  border-left: 3px solid #b7791f;
  padding: 8px 10px;
  background: #fffbeb;
}

.fit-cap-reasons {
  margin-top: -8px;
  margin-bottom: 14px;
  border-left: 3px solid #b7791f;
  padding: 0 10px 8px 28px;
  background: #fffbeb;
}

.fit-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 20px;
}

.fit-meta-grid > div {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  background: #fbfcfd;
}

.fit-meta-grid span,
.fit-meta-grid small {
  color: var(--muted);
}

.fit-meta-grid strong {
  font-size: 20px;
}

.fit-category-list {
  display: grid;
  gap: 13px;
  margin-bottom: 20px;
}

.fit-category-row {
  display: grid;
  gap: 5px;
}

.fit-category-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.fit-category-heading span {
  color: var(--muted);
  font-weight: 700;
}

.fit-category-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.fit-category-row.unassessed .fit-bar div {
  width: 0 !important;
}

.fit-explanations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.fit-explanations h3 {
  margin-bottom: 7px;
}

.fit-explanations ul {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .fit-score-display {
    text-align: left;
  }

  .fit-meta-grid,
  .fit-explanations {
    grid-template-columns: 1fr;
  }
}

.requirement-summary {
  margin: 16px 0;
}

.requirement-overall-summary {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.requirement-overall-summary p {
  margin: 5px 0 0;
}

.requirement-groups {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.requirement-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.requirement-group summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
  color: #1f2933;
  font-weight: 800;
}

.requirement-group[open] summary {
  border-bottom: 1px solid var(--line);
}

.requirement-group-count {
  min-width: 28px;
  border-radius: 999px;
  padding: 3px 8px;
  background: #e7edf2;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

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

.requirement-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--muted);
  border-radius: 6px;
  padding: 13px 14px;
  background: #fbfcfd;
}

.requirement-card.direct {
  border-left-color: var(--ok);
}

.requirement-card.adjacent {
  border-left-color: #b7791f;
}

.requirement-card.uncertain,
.requirement-card.missing {
  border-left-color: var(--bad);
}

.requirement-card-heading,
.requirement-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.requirement-card-heading {
  justify-content: space-between;
  margin-bottom: 8px;
}

.requirement-id,
.requirement-category,
.requirement-badge {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.requirement-category::before {
  content: " / ";
  color: var(--line);
}

.requirement-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 7px;
  background: #ffffff;
}

.requirement-badge.importance-must_have,
.requirement-badge.evidence-missing,
.requirement-badge.evidence-uncertain {
  border-color: #e1a2a2;
  color: var(--bad);
}

.requirement-badge.evidence-direct {
  border-color: #9ac6a4;
  color: var(--ok);
}

.requirement-badge.evidence-adjacent {
  border-color: #dfbd7b;
  color: #8a5a12;
}

.requirement-card h3 {
  margin-bottom: 6px;
}

.requirement-fit-summary {
  margin-bottom: 12px;
  font-weight: 600;
}

.requirement-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.requirement-detail-grid ul {
  margin-bottom: 0;
}

.requirement-source {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.requirement-interview-focus {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.requirement-interview-focus p {
  margin: 4px 0 0;
}

.requirement-footer {
  margin-top: 16px;
}

@media (max-width: 760px) {
  .requirement-detail-grid {
    grid-template-columns: 1fr;
  }
}

.advanced-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.advanced-panel summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
}

.advanced-body {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
}

.cv-draft {
  scroll-margin-top: 100px;
}

.cv-draft-empty {
  border-color: #b8cbd3;
  background: #f8fbfc;
}

.cv-experience {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.cv-experience h3,
.cv-experience p {
  margin-bottom: 4px;
}

.draft-next-action {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.draft-actions,
.draft-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.cv-draft .draft-actions {
  justify-content: flex-end;
}

.cv-template-panel {
  scroll-margin-top: 100px;
}

.cv-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.cv-template-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfd;
}

.cv-template-card input {
  width: auto;
}

.template-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.template-card-actions .button {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.cv-template-card-title {
  color: var(--text);
  font-weight: 800;
}

.cv-template-card-copy {
  min-height: 44px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.cv-template-card iframe {
  width: 100%;
  height: 360px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.cv-template-preview-link {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.cv-template-preview-link:hover,
.cv-template-preview-link:focus {
  text-decoration: underline;
}

.back-to-top-row {
  display: flex;
  justify-content: flex-start;
}

.advanced-export-link {
  margin-top: 8px;
  font-size: 13px;
}

.advanced-export-link a {
  color: var(--muted);
}

.advanced-export-link a:hover,
.advanced-export-link a:focus {
  color: var(--accent-dark);
}

.cover-template-card {
  align-content: start;
}

.cover-template-grid {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.cover-preview {
  min-height: 285px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  padding: 18px;
  color: var(--text);
  overflow: hidden;
}

.cover-preview-head {
  display: grid;
  gap: 3px;
  margin-bottom: 14px;
}

.cover-preview-head strong {
  font-size: 17px;
  line-height: 1.05;
  text-transform: uppercase;
}

.cover-preview-head span,
.cover-preview-head small,
.cover-preview-meta {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.cover-preview-meta {
  margin-bottom: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cover-preview-body p {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.cover-preview-modern_accent {
  border-top: 7px solid var(--accent);
}

.cover-preview-modern_accent .cover-preview-head strong,
.cover-preview-modern_accent .cover-preview-meta {
  color: var(--accent-strong);
}

.cover-preview-executive_block {
  padding: 0;
}

.cover-preview-executive_block .cover-preview-head {
  margin: 0 0 16px;
  padding: 18px;
  background: #1f2933;
  color: #ffffff;
}

.cover-preview-executive_block .cover-preview-head span,
.cover-preview-executive_block .cover-preview-head small {
  color: #d7e4ea;
}

.cover-preview-executive_block .cover-preview-meta,
.cover-preview-executive_block .cover-preview-body {
  padding: 0 18px;
}

.cover-preview-minimal_editorial {
  text-align: center;
}

.cover-preview-minimal_editorial .cover-preview-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cover-preview-minimal_editorial .cover-preview-head strong {
  letter-spacing: 0.05em;
}

.draft-editor-shell {
  display: grid;
  max-width: 920px;
  gap: 16px;
  margin: 0 auto;
}

.compact-list {
  columns: 2;
  padding-left: 18px;
}

.interview-shell {
  display: grid;
  max-width: 760px;
  gap: 16px;
  margin: 0 auto;
}

.interview-question p {
  font-size: 16px;
}

.suggested-answers {
  margin: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.suggested-answers h3,
.suggested-answers p {
  margin-bottom: 7px;
}

.suggested-answers > div {
  display: grid;
  gap: 8px;
}

button.suggested-answer {
  width: 100%;
  justify-content: flex-start;
  border-color: #9ab7c2;
  padding: 9px 11px;
  background: #f3f8fa;
  color: var(--accent-dark);
  text-align: left;
  white-space: normal;
}

button.suggested-answer:hover,
button.suggested-answer.selected {
  border-color: var(--accent);
  background: #e5f1f5;
  color: var(--accent-dark);
}

.question-progress,
.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 4px;
  background: #dbe4e8;
}

.question-progress div,
.progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width 300ms ease;
}

.progress-fill {
  width: 0;
}

.progress-fill.running {
  animation: approximate-progress var(--progress-duration, 150s) cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.job-progress {
  margin: 14px 0 8px;
}

.job-progress div {
  height: 100%;
  border-radius: 4px;
  background: var(--accent);
}

.job-status-shell .toolbar {
  margin-top: 16px;
}

@keyframes approximate-progress {
  0% {
    width: 8%;
  }
  12% {
    width: 20%;
  }
  28% {
    width: 38%;
  }
  46% {
    width: 58%;
  }
  68% {
    width: 76%;
  }
  86% {
    width: 88%;
  }
  100% {
    width: 94%;
  }
}

.progress-overlay {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 41, 51, 0.38);
}

.progress-overlay[hidden] {
  display: none;
}

.progress-panel {
  width: min(540px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(31, 41, 51, 0.2);
}

.progress-panel .muted {
  margin: 10px 0 0;
  font-size: 12px;
}

.progress-fact-card {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #d7e7ef;
  border-radius: 8px;
  background: #f7fbfd;
}

.progress-fact-kicker {
  margin: 0 0 7px;
  color: #587084;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-fact-card h3 {
  margin: 0 0 6px;
  color: #1f2933;
  font-size: 16px;
  line-height: 1.3;
}

.progress-fact-card p {
  margin: 0;
}

.progress-fact-source {
  margin-top: 9px !important;
  color: #607181;
  font-size: 12px;
}

.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status.recommend {
  background: #e4f4e8;
  color: #166534;
}

.status.maybe,
.status.needs_job_description {
  background: #fff6d8;
  color: #7a5410;
}

.status.reject,
.status.rejected {
  background: #fae8e8;
  color: #991b1b;
}

.status.approved,
.status.preparing_application,
.status.applied {
  background: #e1f1f6;
  color: #0f4f63;
}

.status.active,
.status.interview {
  background: #e4f4e8;
  color: #166534;
}

.status.not_applied,
.status.not_recorded,
.status.blank {
  background: #eef1f4;
  color: #52606d;
}

.status.rejected_by_employer {
  background: #fae8e8;
  color: #991b1b;
}

.status.critical {
  background: #fae8e8;
  color: #991b1b;
}

.status.review {
  background: #fff6d8;
  color: #7a5410;
}

.status.safe {
  background: #eef1f4;
  color: #52606d;
}

.status.queued {
  background: #eef1f4;
  color: #52606d;
}

.status.running {
  background: #e1f1f6;
  color: #0f4f63;
}

.status.succeeded {
  background: #e4f4e8;
  color: #166534;
}

.status.failed {
  background: #fae8e8;
  color: #991b1b;
}

.cleanup-summary-table td {
  vertical-align: top;
}

.profile-cleanup-file .markdown {
  max-height: 520px;
  overflow: auto;
}

.cleanup-side-by-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cleanup-diff {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.diff-line {
  min-width: max-content;
  border-bottom: 1px solid rgba(216, 222, 230, 0.45);
  padding: 2px 8px;
  white-space: pre;
}

.diff-line.added {
  background: #fff7bf;
}

.diff-line.removed {
  background: #ffe0e0;
  color: #7f1d1d;
}

.diff-line.meta {
  background: #edf2f7;
  color: var(--muted);
  font-weight: 700;
}

.diff-line.context {
  background: #ffffff;
}

.claim-strength-review {
  border-top: 4px solid #0f4f63;
}

.claim-strength-summary {
  margin: 18px 0;
}

.claim-blocker-note {
  border-color: #ef9a9a;
  background: #fff5f5;
  color: #7f1d1d;
}

.claim-overview {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.claim-overview-table {
  min-width: 860px;
}

.claim-overview-table th,
.claim-overview-table td {
  vertical-align: top;
}

.claim-overview-table th:nth-child(1),
.claim-overview-table td:nth-child(1) {
  width: 38%;
}

.claim-overview-table th:nth-child(2),
.claim-overview-table td:nth-child(2) {
  width: 18%;
}

.claim-overview-table th:nth-child(3),
.claim-overview-table td:nth-child(3) {
  width: 22%;
}

.claim-overview-row.critical td {
  background: #fff7f7;
}

.claim-overview-row.review td {
  background: #fffbeb;
}

.claim-watchlist {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 12px;
  border: 1px solid #fde68a;
  border-radius: 6px;
  background: #fffbeb;
}

.claim-watchlist-table {
  min-width: 920px;
}

.claim-watchlist-table th,
.claim-watchlist-table td {
  vertical-align: top;
}

.claim-watchlist-table th:nth-child(1),
.claim-watchlist-table td:nth-child(1) {
  width: 30%;
}

.claim-watchlist-table th:nth-child(2),
.claim-watchlist-table td:nth-child(2) {
  width: 18%;
}

.claim-strength-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.claim-strength-item {
  border: 1px solid var(--line);
  border-left: 4px solid #d69e2e;
  border-radius: 6px;
  padding: 14px;
  background: #ffffff;
}

.claim-strength-item.critical {
  border-color: #ef9a9a;
  border-left-color: #c53030;
  background: #fffafa;
}

.claim-strength-item.evidence-submitted,
.claim-strength-item.critical.evidence-submitted {
  border-color: #93c5fd;
  border-left-color: #2563eb;
  background: #eff6ff;
}

.claim-strength-item-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.claim-strength-item h3 {
  margin: 12px 0 6px;
  font-size: 15px;
}

.claim-strength-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 14px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.claim-strength-details div {
  min-width: 0;
  padding: 10px;
  background: #ffffff;
}

.claim-strength-details dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.claim-strength-details dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-weight: 700;
  text-transform: capitalize;
}

.claim-strength-action {
  margin-top: 10px;
  border-left: 2px solid #9fb3c8;
  padding-left: 10px;
}

.claim-strength-action p {
  margin: 3px 0 0;
}

.claim-strength-submitted-chip {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1e3a8a;
  font-size: 0.82rem;
  font-weight: 800;
}

.claim-strength-submitted-evidence {
  margin: 0;
  color: #1d4ed8;
}

.claim-strength-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.claim-strength-actions legend {
  padding: 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.claim-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px;
}

.claim-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  min-height: 74px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f9fbfc;
}

.claim-choice input {
  margin-top: 3px;
}

.claim-choice span {
  display: grid;
  gap: 3px;
}

.claim-choice small {
  color: var(--muted);
  line-height: 1.35;
}

.claim-choice:has(input:checked) {
  border-color: #0f4f63;
  background: #eef7f9;
}

.claim-strength-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.claim-strength-evidence-details {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.claim-strength-evidence-details summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 700;
}

.claim-strength-evidence-form {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.claim-strength-evidence-form textarea {
  min-height: 88px;
}

.claim-strength-evidence-batch {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.claim-strength-evidence-batch label {
  font-size: 12px;
  font-weight: 800;
}

.claim-strength-evidence-batch textarea {
  min-height: 90px;
}

.claim-strength-submit-panel {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #c8d8e4;
  border-radius: 8px;
  background: #f8fbfd;
}

.claim-strength-submit-panel h3 {
  margin: 0;
}

.claim-strength-next-action {
  margin-top: 16px;
  border: 1px solid #9dd5e8;
  border-radius: 8px;
  background: #eef9fd;
  padding: 14px;
}

.claim-strength-next-action h3 {
  margin: 0 0 4px;
}

.manual-application-shell {
  max-width: 920px;
  margin: 0 auto;
}

.usage-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin: 12px 0;
  border-block: 1px solid var(--line);
}

.usage-metrics div {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 112px;
  padding: 14px;
  border-right: 1px solid var(--line);
}

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

.usage-metrics span,
.usage-metrics small {
  color: var(--muted);
}

.usage-metrics strong {
  font-size: 17px;
}

.usage-note {
  font-size: 12px;
}

.usage-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 22px;
  margin-top: 18px;
}

@media (max-width: 760px) {
  header {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-signout {
    align-self: flex-start;
  }

  main {
    padding: 14px;
  }

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

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

  .settings-controls {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 6px;
  }

  .nav-separator {
    flex-basis: 100%;
    width: 100%;
    min-height: 1px;
  }

  .settings-table select {
    min-width: 260px;
  }

  .section-heading {
    display: grid;
  }

  .dashboard-tip-card {
    grid-template-columns: 1fr;
  }

  .dashboard-tips {
    max-width: none;
  }

  .compact-list {
    columns: 1;
  }

  .usage-breakdown {
    grid-template-columns: 1fr;
  }

  .cleanup-side-by-side {
    grid-template-columns: 1fr;
  }

  .usage-metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .usage-metrics div:last-child {
    border-bottom: 0;
  }

  .claim-strength-details {
    grid-template-columns: 1fr 1fr;
  }

  .claim-strength-item-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
