:root {
  --hrc-bg: #f6f3ee;
  --hrc-bg-soft: #fffdf9;
  --hrc-panel: rgba(255, 255, 255, 0.97);
  --hrc-panel-strong: rgba(255, 255, 255, 1);
  --hrc-line: rgba(17, 17, 17, 0.07);
  --hrc-line-strong: rgba(17, 17, 17, 0.12);
  --hrc-text: #111111;
  --hrc-text-soft: #6a625c;
  --hrc-accent: #d96938;
  --hrc-accent-strong: #bc5528;
  --hrc-accent-shadow: rgba(217, 105, 56, 0.12);
  --hrc-danger: #c34747;
  --hrc-radius-xl: 26px;
  --hrc-radius-lg: 18px;
  --hrc-radius-md: 14px;
  --hrc-shadow: 0 14px 34px rgba(17, 17, 17, 0.05);
  --hrc-font: "Satoshi", "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
}

.hrc-app-shell {
  position: relative;
  font-family: var(--hrc-font);
  color: var(--hrc-text);
  width: 100%;
  overflow-x: clip;
}

header.wp-block-template-part,
footer.wp-block-template-part {
  display: none;
}

h1.wp-block-post-title,
main .entry-content > h1:first-child,
main .entry-content > .wp-block-post-title:first-child,
main .wp-block-post-content > h1:first-child,
main .wp-block-post-content > .wp-block-post-title:first-child {
  display: none;
}

.hrc-app-shell,
.hrc-app-shell *,
.hrc-app-shell *::before,
.hrc-app-shell *::after {
  box-sizing: border-box;
}

.hrc-calculator-root,
.hrc-shell {
  position: relative;
  z-index: 1;
}

.hrc-shell {
  min-height: min(100vh, 1200px);
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding-inline: clamp(28px, 4vw, 48px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.hrc-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 2vw, 28px) 20px;
  backdrop-filter: blur(10px);
  background: rgba(246, 243, 238, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

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

.hrc-brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #111111, var(--hrc-accent));
  box-shadow: 0 6px 18px var(--hrc-accent-shadow);
}

.hrc-brand h1 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: 0.01em;
}

.hrc-brand-eyebrow,
.hrc-eyebrow,
.hrc-kicker {
  color: var(--hrc-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 600;
}

.hrc-progress {
  min-width: min(380px, 45vw);
}

.hrc-progress-head,
.hrc-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hrc-progress-head {
  color: var(--hrc-text-soft);
  font-size: 0.92rem;
}

.hrc-progress-track {
  margin-top: 10px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.hrc-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #111111, var(--hrc-accent));
  transition: width 320ms ease;
}

.hrc-step-dots {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.hrc-step-dots span {
  height: 4px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  transition: background 220ms ease, transform 220ms ease;
}

.hrc-step-dots span.is-active {
  background: var(--hrc-accent);
  transform: scaleX(1.02);
}

.hrc-body {
  padding: 34px 0 132px;
}

.hrc-step {
  max-width: 1120px;
  margin: 0 auto;
  animation: hrc-fade 300ms ease;
  min-width: 0;
}

.hrc-intro {
  display: grid;
  place-items: start center;
  min-height: clamp(420px, 72vh, 760px);
  padding-top: clamp(12px, 4vw, 40px);
}

.hrc-step-copy {
  max-width: 820px;
  margin-bottom: 30px;
}

.hrc-step-copy h2,
.hrc-summary-main h3,
.hrc-summary-side h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hrc-step-copy p,
.hrc-hero p,
.hrc-summary-side p,
.hrc-role-panel p,
.hrc-field-error,
.hrc-error-banner {
  color: var(--hrc-text-soft);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.hrc-panel {
  position: relative;
  background: var(--hrc-panel);
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: var(--hrc-radius-xl);
  box-shadow: var(--hrc-shadow);
}

.hrc-hero {
  max-width: 980px;
  padding: clamp(30px, 4vw, 46px);
}

.hrc-hero h2 {
  margin: 10px 0 14px;
  font-size: clamp(2.3rem, 4.2vw, 4.4rem);
  line-height: 0.93;
  letter-spacing: -0.03em;
  max-width: 820px;
}

.hrc-mini-card {
  padding: 18px;
  border-radius: var(--hrc-radius-md);
  background: rgba(248, 245, 240, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.hrc-mini-card span,
.hrc-summary-level span,
.hrc-summary-row span,
.hrc-dashboard-score {
  display: block;
  color: var(--hrc-text-soft);
  font-size: 0.84rem;
}

.hrc-mini-card strong,
.hrc-summary-level strong,
.hrc-summary-row strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  overflow-wrap: anywhere;
  line-height: 1.55;
}

.hrc-card-grid,
.hrc-choice-grid,
.hrc-dashboard-grid,
.hrc-summary-grid,
.hrc-results-grid,
.hrc-lead-grid {
  display: grid;
  gap: 16px;
}

.hrc-card-grid--trip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hrc-option-card,
.hrc-choice-card,
.hrc-choice-pill,
.hrc-primary-link {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.hrc-option-card:hover,
.hrc-choice-card:hover,
.hrc-choice-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 105, 56, 0.22);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
}

.hrc-option-card {
  padding: 24px;
  border-radius: var(--hrc-radius-lg);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hrc-option-eyebrow {
  display: block;
  color: var(--hrc-accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hrc-option-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.36rem;
}

.hrc-option-card small {
  display: block;
  margin-top: 8px;
  color: var(--hrc-text-soft);
  line-height: 1.5;
}

.hrc-option-card input,
.hrc-choice-card input,
.hrc-choice-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.is-selected {
  border-color: rgba(217, 105, 56, 0.42);
  background: rgba(254, 249, 246, 1);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
  transform: translateY(-1px);
}

.hrc-option-card.is-selected,
.hrc-choice-card.is-selected,
.hrc-choice-pill.is-selected {
  border-color: rgba(217, 105, 56, 0.5);
  background: rgba(254, 249, 246, 1);
  box-shadow:
    0 12px 28px rgba(17, 17, 17, 0.05),
    0 0 0 1px rgba(217, 105, 56, 0.12) inset;
}

.hrc-option-card.is-selected::after,
.hrc-choice-card.is-selected::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--hrc-accent);
  box-shadow: 0 0 0 3px rgba(217, 105, 56, 0.1);
}

.hrc-choice-pill.is-selected::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hrc-accent);
  box-shadow: 0 0 0 2px rgba(217, 105, 56, 0.08);
}

.hrc-form-stack {
  display: grid;
  gap: 18px;
}

.hrc-form-panel {
  padding: 24px;
}

.hrc-field,
.hrc-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hrc-honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.hrc-label {
  font-size: 0.92rem;
  color: var(--hrc-text-soft);
}

.hrc-field input,
.hrc-field select {
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hrc-text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  appearance: none;
}

.hrc-field input:focus,
.hrc-field select:focus {
  border-color: rgba(227, 106, 58, 0.5);
  box-shadow: 0 0 0 4px rgba(227, 106, 58, 0.1);
}

.hrc-field input::-webkit-outer-spin-button,
.hrc-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hrc-choice-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hrc-choice-pill {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hrc-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hrc-choice-card {
  min-height: 86px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hrc-choice-grid--hybrid .hrc-choice-card {
  min-height: 0;
  padding: 14px 16px;
}

.hrc-choice-card strong {
  display: block;
  margin-top: 8px;
}

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

.hrc-hybrid-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.85fr);
  gap: 32px;
  align-items: start;
}

.hrc-step-main,
.hrc-summary-main,
.hrc-summary-side,
.hrc-panel,
.hrc-dashboard,
.hrc-role-panel,
.hrc-field,
.hrc-choice-card,
.hrc-option-card {
  min-width: 0;
}

.hrc-role-panel {
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.hrc-role-head {
  min-width: 0;
}

.hrc-role-head p {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.55;
}

.hrc-role-head strong {
  display: block;
  font-size: 1.28rem;
}

.hrc-choice-grid--hybrid {
  grid-template-columns: 1fr;
  gap: 12px;
  align-self: stretch;
}

.hrc-choice-grid--hybrid .hrc-choice-card strong {
  margin-top: 0;
  font-size: 1.02rem;
  text-align: center;
}

.hrc-choice-grid--hybrid .hrc-choice-card {
  display: grid;
  place-items: center;
  min-height: 58px;
}

.hrc-dashboard {
  position: sticky;
  top: 132px;
}

.hrc-dashboard-panel {
  padding: 24px;
}

.hrc-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.hrc-dashboard-head h3 {
  margin: 8px 0 0;
  font-size: 1.8rem;
}

.hrc-gauge-wrap {
  margin: 24px auto 18px;
}

.hrc-gauge {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 1.45;
  margin: 0 auto;
}

.hrc-gauge-inner {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  text-align: center;
  width: 128px;
  height: 128px;
  padding: 24px 18px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 30%), #2f2f2f;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.2);
}

.hrc-gauge-inner span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.hrc-gauge-inner strong {
  display: block;
  margin-top: 8px;
  font-size: 1.82rem;
}

.hrc-gauge-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 12px 22px rgba(17, 17, 17, 0.08));
}

.hrc-gauge-track,
.hrc-gauge-segment {
  fill: none;
  stroke-linecap: round;
  stroke-width: 28;
}

.hrc-gauge-track {
  stroke: rgba(17, 17, 17, 0.08);
}

.hrc-gauge-needle {
  stroke: #111111;
  stroke-width: 8;
  stroke-linecap: round;
}

.hrc-gauge-pivot-shadow {
  fill: rgba(17, 17, 17, 0.08);
}

.hrc-gauge-pivot {
  fill: #3b3b3b;
}

.hrc-gauge-pin {
  fill: #ffffff;
  stroke: #111111;
  stroke-width: 4;
}

.hrc-gauge-scale-labels {
  position: relative;
  height: 18px;
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--hrc-text-soft);
}

.hrc-gauge-scale-label {
  position: absolute;
  top: 0;
  white-space: nowrap;
  line-height: 1.2;
}

.hrc-treiber ul,
.hrc-value-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.hrc-treiber li,
.hrc-value-list li {
  margin-bottom: 10px;
  color: var(--hrc-text-soft);
}

.hrc-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hrc-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(247, 231, 224, 0.9);
  border: 1px solid rgba(227, 106, 58, 0.16);
  color: var(--hrc-accent-strong);
  font-size: 0.82rem;
}

.hrc-summary-grid {
  grid-template-columns: 1fr;
}

.hrc-results-grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.hrc-summary-main,
.hrc-summary-side {
  padding: 28px;
}

.hrc-summary-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.hrc-summary-hero h3 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hrc-summary-section {
  margin-top: 18px;
}

.hrc-results-recommendation {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.hrc-results-recommendation p {
  margin: 10px 0 0;
  color: var(--hrc-text-soft);
  line-height: 1.65;
}

.hrc-results-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.hrc-print-sheet {
  display: none;
}

.hrc-shell.is-print-preview .hrc-header,
.hrc-shell.is-print-preview .hrc-footer,
.hrc-shell.is-print-preview .hrc-step-copy,
.hrc-shell.is-print-preview .hrc-results-grid {
  display: none;
}

.hrc-shell.is-print-preview .hrc-body {
  padding-bottom: 40px;
}

.hrc-shell.is-print-preview .hrc-print-sheet {
  display: block;
}

.hrc-print-topline,
.hrc-print-brand,
.hrc-print-cards,
.hrc-print-grid,
.hrc-print-scale-head,
.hrc-print-scale-labels,
.hrc-print-definition-list div {
  display: grid;
  gap: 14px;
}

.hrc-print-topline {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.hrc-print-brand {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.hrc-print-logo {
  width: auto;
  max-width: 180px;
  max-height: 42px;
  object-fit: contain;
}

.hrc-print-brand strong,
.hrc-print-meta strong {
  display: block;
  margin-top: 4px;
}

.hrc-print-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 22px;
  align-items: start;
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at top left, rgba(214, 111, 52, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(250, 247, 243, 0.98), rgba(255, 255, 255, 0.98));
}

.hrc-print-hero-copy {
  max-width: 620px;
}

.hrc-print-hero h2 {
  margin: 10px 0 14px;
  font-size: 3.2rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hrc-print-hero p,
.hrc-print-panel p,
.hrc-print-driver-list li,
.hrc-print-definition-list dt,
.hrc-print-definition-list dd,
.hrc-print-highlight span {
  color: var(--hrc-text-soft);
}

.hrc-print-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hrc-print-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(214, 111, 52, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--hrc-accent);
  font-size: 0.82rem;
  font-weight: 600;
}

.hrc-print-highlight {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 220px;
  padding: 22px 22px 20px;
  border-radius: var(--hrc-radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.hrc-print-highlight > strong {
  font-size: 2.1rem;
  line-height: 0.95;
}

.hrc-print-highlight > p {
  margin: 0;
  color: var(--hrc-text);
}

.hrc-print-highlight-meta {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.hrc-print-highlight-meta > div {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.hrc-print-highlight-meta > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.hrc-print-highlight-meta strong {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
}

.hrc-print-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.hrc-print-stat,
.hrc-print-panel {
  border-radius: var(--hrc-radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.hrc-print-stat {
  padding: 18px 20px;
  background: rgba(250, 247, 243, 0.88);
}

.hrc-print-stat span,
.hrc-print-meta span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hrc-text-soft);
}

.hrc-print-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.hrc-print-scale {
  margin-top: 14px;
}

.hrc-print-scale-card {
  margin-top: 18px;
  padding: 18px 20px 16px;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.hrc-print-scale-head {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.hrc-print-scale-head strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.hrc-print-scale-bar {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b33f2c 0%, #d46e35 35%, #d9aa39 68%, #5a9c59 100%);
  overflow: hidden;
}

.hrc-print-scale-marker {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #111111;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.16);
  transform: translate(-50%, -50%);
}

.hrc-print-scale-labels {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--hrc-text-soft);
}

.hrc-print-grid {
  grid-template-columns: 1.08fr 0.92fr;
  margin-top: 24px;
}

.hrc-print-panel {
  padding: 22px;
}

.hrc-print-subsection {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.hrc-print-panel-wide {
  grid-column: 1 / -1;
}

.hrc-print-summary {
  margin: 12px 0 18px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--hrc-text);
}

.hrc-print-assessment {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--hrc-text);
}

.hrc-print-callout {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(248, 245, 240, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.hrc-print-driver-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.hrc-print-driver-list li + li {
  margin-top: 10px;
}

.hrc-print-definition-list {
  margin: 12px 0 0;
}

.hrc-print-definition-list div {
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  padding: 10px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.hrc-print-definition-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.hrc-print-definition-list dt,
.hrc-print-definition-list dd {
  margin: 0;
  line-height: 1.45;
}

.hrc-print-definition-list dd,
.hrc-print-panel-wide p {
  color: var(--hrc-text);
}

.hrc-print-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.hrc-print-role-grid--staffing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hrc-print-role-card {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(248, 245, 240, 0.82);
}

.hrc-print-role-card span {
  display: block;
  font-size: 0.76rem;
  color: var(--hrc-text-soft);
}

.hrc-print-role-card strong {
  display: block;
  margin-top: 6px;
  line-height: 1.3;
  color: var(--hrc-text);
}

.hrc-print-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 22px;
  background: #111111;
  color: #ffffff;
}

.hrc-print-footer strong {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.hrc-print-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.hrc-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.hrc-link-button,
.hrc-secondary-button,
.hrc-primary-button,
.hrc-primary-link {
  border: 0;
  border-radius: 999px;
  font: inherit;
  text-decoration: none;
}

.hrc-link-button {
  padding: 0;
  background: transparent;
  color: var(--hrc-accent);
  cursor: pointer;
}

.hrc-checkbox {
  margin-top: 20px;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.hrc-checkbox span {
  color: var(--hrc-text-soft);
  line-height: 1.5;
}

.hrc-checkbox-copy a {
  color: var(--hrc-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hrc-checkbox input {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  opacity: 1;
  inset: auto;
  border-radius: 6px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  appearance: none;
  margin: 2px 0 0;
  cursor: pointer;
}

.hrc-checkbox input:checked {
  background: var(--hrc-accent);
  border-color: var(--hrc-accent);
}

.hrc-checkbox input:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #061017;
  border-bottom: 2px solid #061017;
  transform: rotate(45deg);
}

.hrc-field-error,
.hrc-error-banner {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--hrc-danger);
}

.hrc-error-banner {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 123, 143, 0.1);
  border: 1px solid rgba(255, 123, 143, 0.22);
}

.hrc-footer {
  position: sticky;
  bottom: 0;
  z-index: 12;
  padding: 16px 0 22px;
  background: linear-gradient(180deg, rgba(246, 243, 238, 0), rgba(246, 243, 238, 0.94) 24%);
}

.hrc-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 0 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: transparent;
  backdrop-filter: none;
}

.hrc-footer-hint {
  color: var(--hrc-text-soft);
  font-size: 0.9rem;
}

.hrc-secondary-button,
.hrc-primary-button,
.hrc-primary-link {
  padding: 14px 22px;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

.hrc-secondary-button {
  background: rgba(255, 255, 255, 0.9);
  color: var(--hrc-text);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hrc-primary-button,
.hrc-primary-link {
  background: #111111;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(17, 17, 17, 0.12);
}

.hrc-primary-button:hover,
.hrc-primary-link:hover,
.hrc-secondary-button:hover {
  transform: translateY(-2px);
}

.hrc-primary-button[disabled] {
  opacity: 0.66;
  cursor: wait;
}

.hrc-primary-button.is-loading {
  position: relative;
}

@keyframes hrc-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hrc-header,
  .hrc-summary-hero,
  .hrc-footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hrc-progress {
    min-width: 0;
  }

  .hrc-card-grid--trip,
  .hrc-choice-grid,
  .hrc-staffing-grid,
  .hrc-lead-grid,
  .hrc-summary-grid,
  .hrc-results-grid,
  .hrc-hybrid-layout {
    grid-template-columns: 1fr;
  }

  .hrc-role-panel {
    grid-template-columns: 1fr;
  }

  .hrc-choice-grid--hybrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hrc-dashboard {
    position: static;
  }

  .hrc-body {
    padding-bottom: 32px;
  }

  .hrc-header,
  .hrc-footer {
    position: static;
  }

  .hrc-footer-hint {
    order: 3;
  }
}

@media (max-width: 640px) {
  .hrc-shell {
    min-height: auto;
    padding-inline: 16px;
  }

  .hrc-header,
  .hrc-body,
  .hrc-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .hrc-body {
    padding-top: 20px;
  }

  .hrc-hero h2 {
    font-size: 2.15rem;
  }

  .hrc-footer-inner {
    gap: 12px;
  }

  .hrc-summary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hrc-results-actions {
    flex-direction: column;
  }

  .hrc-summary-row strong {
    width: 100%;
  }

  .hrc-link-button {
    font-weight: 600;
  }

  .hrc-gauge {
    width: min(220px, 100%);
  }

  .hrc-gauge-inner {
    bottom: 12px;
    width: 104px;
    height: 104px;
    padding: 18px 14px 14px;
  }

  .hrc-gauge-inner strong {
    font-size: 1.5rem;
  }

  .hrc-gauge-track,
  .hrc-gauge-segment {
    stroke-width: 24;
  }

  .hrc-gauge-scale-labels {
    height: 16px;
    font-size: 0.68rem;
  }

  .hrc-choice-grid--hybrid {
    grid-template-columns: 1fr;
  }

  .hrc-footer-inner > div:last-child,
  .hrc-results-actions > * ,
  .hrc-primary-button,
  .hrc-secondary-button,
  .hrc-primary-link {
    width: 100%;
    text-align: center;
  }

  .hrc-summary-main,
  .hrc-summary-side,
  .hrc-dashboard-panel,
  .hrc-role-panel,
  .hrc-form-panel,
  .hrc-hero {
    padding: 20px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 6mm;
  }

  body {
    background: #ffffff;
    margin: 0 !important;
  }

  .hrc-header,
  .hrc-footer,
  .hrc-results-actions,
  .hrc-link-button,
  .hrc-step-copy,
  .hrc-results-grid {
    display: none !important;
  }

  .hrc-body {
    padding: 0;
  }

  .hrc-shell,
  .hrc-panel,
  .hrc-app-shell {
    box-shadow: none !important;
    border: 0 !important;
    background: #ffffff !important;
  }

  .hrc-step {
    max-width: none;
  }

  .hrc-shell,
  .hrc-body,
  .hrc-step,
  main,
  .wp-site-blocks,
  .wp-block-group,
  .entry-content {
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hrc-print-sheet {
    display: block !important;
    width: 100%;
    min-height: 0;
    box-sizing: border-box;
    padding: 0 2mm 0 4.8mm;
    zoom: 0.97;
    color: #111111;
  }

  .hrc-print-topline,
  .hrc-print-hero,
  .hrc-print-cards {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .hrc-print-topline {
    margin-bottom: 3mm;
  }

  .hrc-print-hero {
    margin-top: 0;
    padding: 4.4mm;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background:
      radial-gradient(circle at top left, rgba(214, 111, 52, 0.11), transparent 36%),
      #faf7f3 !important;
  }

  .hrc-print-hero h2 {
    font-size: 21pt;
  }

  .hrc-print-hero p,
  .hrc-print-panel p,
  .hrc-print-driver-list li,
  .hrc-print-definition-list dt,
  .hrc-print-definition-list dd {
    font-size: 8.2pt;
  }

  .hrc-print-badges {
    gap: 5px;
    margin-top: 10px;
  }

  .hrc-print-badges span {
    min-height: 22px;
    padding: 0 8px;
    font-size: 6.7pt;
  }

  .hrc-print-stat {
    padding: 3mm 3.5mm;
    background: #faf7f3 !important;
  }

  .hrc-print-stat strong {
    font-size: 14pt;
  }

  .hrc-print-scale-card {
    margin-top: 2.6mm;
    padding: 2.8mm 3.2mm 2.6mm;
    background: #ffffff !important;
  }

  .hrc-print-scale-head strong {
    font-size: 9pt;
  }

  .hrc-print-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2.6mm;
    margin-top: 2.6mm;
  }

  .hrc-print-panel {
    padding: 3mm;
    background: #ffffff !important;
  }

  .hrc-print-panel-wide {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .hrc-print-summary {
    margin: 5px 0 7px;
    font-size: 8.5pt;
  }

  .hrc-print-assessment {
    font-size: 8pt;
    margin-top: 4px;
  }

  .hrc-print-callout {
    margin-top: 6px;
    padding: 2.4mm 2.8mm;
  }

  .hrc-print-logo {
    max-width: 52mm;
    max-height: 12mm;
  }

  .hrc-print-highlight {
    min-width: 58mm;
    padding: 3mm;
  }

  .hrc-print-highlight > strong {
    font-size: 15pt;
  }

  .hrc-print-cards {
    margin-top: 2.6mm;
  }

  .hrc-print-scale {
    margin-top: 2mm;
  }

  .hrc-print-scale-labels {
    margin-top: 4px;
    font-size: 7.2pt;
  }

  .hrc-print-driver-list {
    margin-top: 5px;
    padding-left: 14px;
  }

  .hrc-print-driver-list li + li {
    margin-top: 3px;
  }

  .hrc-print-definition-list {
    margin-top: 6px;
  }

  .hrc-print-definition-list div {
    padding: 5px 0;
  }

  .hrc-print-subsection {
    margin-top: 7px;
    padding-top: 7px;
  }

  .hrc-print-role-grid {
    gap: 5px;
    margin-top: 5px;
  }

  .hrc-print-role-grid--staffing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hrc-print-role-card {
    padding: 5px 6px;
    border-radius: 10px;
  }

  .hrc-print-role-card span {
    font-size: 6.4pt;
  }

  .hrc-print-role-card strong {
    margin-top: 3px;
    font-size: 7.6pt;
  }

  .hrc-print-footer {
    grid-template-columns: 1fr 1.25fr;
    gap: 4mm;
    margin-top: 3mm;
    padding: 3mm 3.5mm;
    background: #111111 !important;
  }

  .hrc-print-footer strong {
    font-size: 9pt;
  }

  .hrc-print-footer p {
    font-size: 8.1pt;
  }
}
