:root {
  --ink: #132b2d;
  --muted: #5e6f70;
  --paper: #f6f4ec;
  --card: #fffdf7;
  --line: #d9ddd6;
  --green: #164f4a;
  --green-2: #2f766d;
  --mint: #8fc7b8;
  --gold: #d9a441;
  --magenta: #9d2453;
  --blue: #3f6f8e;
  --shadow: 0 18px 45px rgba(19, 43, 45, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 4%, rgba(217, 164, 65, 0.18), transparent 24rem),
    linear-gradient(180deg, #f9f7f0, var(--paper));
  font-family: "Segoe UI", Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

.hero {
  min-height: 370px;
  padding: 64px max(5vw, 24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  color: white;
  background:
    linear-gradient(125deg, rgba(8, 47, 45, 0.98), rgba(22, 79, 74, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.03) 20px 21px);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  right: -160px;
  bottom: -310px;
  box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.04em;
}

.hero__lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__seal {
  width: 190px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.hero__seal::before,
.hero__seal::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: inherit;
}

.hero__seal::after {
  inset: 28px;
  border-style: solid;
}

.hero__seal span {
  font-family: Georgia, serif;
  font-size: 50px;
  font-weight: 700;
}

.hero__seal small {
  letter-spacing: .22em;
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}

.button--primary {
  color: var(--ink);
  background: var(--gold);
}

.button--secondary {
  color: white;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
}

.button--small {
  min-height: 38px;
  color: var(--green);
  border-color: var(--line);
  background: white;
}

main {
  width: min(1480px, calc(100% - 40px));
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
}

.information-notice {
  margin-bottom: 14px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #5b3b05;
  border: 2px solid var(--gold);
  border-radius: 7px;
  background: #fff3d4;
  box-shadow: var(--shadow);
}

.information-notice strong {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.information-notice span {
  line-height: 1.45;
}

.informative-frame {
  position: relative;
  outline: 2px solid rgba(217, 164, 65, .72);
  outline-offset: 5px;
}

.informative-frame::before {
  content: "Referencia meramente informativa · No predice ni garantiza resultados del proceso 2026";
  padding: 5px 10px;
  position: absolute;
  z-index: 8;
  top: -15px;
  right: 14px;
  color: #5b3b05;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: #fff3d4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 3px 9px rgba(91,59,5,.12);
}

.informative-frame--dark::before {
  color: var(--ink);
  background: #ffe8ac;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.kpi {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 5px solid var(--green-2);
  border-radius: 7px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.kpi--accent { border-color: var(--magenta); }
.kpi--gold { border-color: var(--gold); }
.kpi--vacancies { border-color: #b97817; }
.kpi--designated { border-color: var(--green); }
.kpi--current {
  color: white;
  border-color: var(--gold);
  background: linear-gradient(145deg, #315f7c, var(--blue));
}

.kpi--current .kpi__label,
.kpi--current small {
  color: rgba(255,255,255,.82);
}

.kpi--current strong {
  color: #fff3c8;
  text-shadow: 0 2px 0 rgba(0,0,0,.13);
}

.kpi__label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.kpi strong {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1;
}

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

.data-status {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.data-status__card {
  min-height: 210px;
  padding: 25px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-top-width: 6px;
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 35px rgba(19,43,45,.07);
}

.data-status__card--available {
  border-top-color: var(--green-2);
}

.data-status__card--pending {
  border-top-color: var(--gold);
}

.data-status__card--context {
  border-top-color: var(--blue);
}

.data-status__card--missing {
  border-top-color: var(--magenta);
}

.data-status__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--green-2);
  font-size: 24px;
  font-weight: 900;
}

.data-status__card--pending .data-status__icon {
  color: var(--ink);
  background: var(--gold);
}

.data-status__card--context .data-status__icon {
  background: var(--blue);
}

.data-status__card--missing .data-status__icon {
  background: var(--magenta);
}

.data-status__card h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 31px);
}

.data-status__card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 20px;
  margin-top: 20px;
}

.panel {
  padding: 28px;
  border: 1px solid rgba(22, 79, 74, .1);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 35px rgba(19,43,45,.07);
}

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

h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(25px, 2.5vw, 38px);
  letter-spacing: -.025em;
}

h3 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

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

.funnel__row {
  display: grid;
  grid-template-columns: minmax(160px, 1.2fr) 4fr auto;
  gap: 14px;
  align-items: center;
}

.funnel__label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.funnel__track {
  height: 32px;
  overflow: hidden;
  border-radius: 4px;
  background: #e9ece7;
}

.funnel__fill {
  height: 100%;
  min-width: 2px;
  border-radius: inherit;
  background: var(--green-2);
}

.funnel__row:nth-child(2) .funnel__fill { background: var(--mint); }
.funnel__row:nth-child(3) .funnel__fill { background: var(--magenta); }
.funnel__row:nth-child(4) .funnel__fill { background: var(--gold); }

.funnel__value {
  min-width: 72px;
  text-align: right;
  font-weight: 800;
}

.gender-layout {
  min-height: 250px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 26px;
  align-items: center;
}

.donut {
  width: 200px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: relative;
}

.donut::after {
  content: "";
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--card);
  position: absolute;
}

.donut__center {
  display: grid;
  text-align: center;
  position: relative;
  z-index: 1;
}

.donut__center strong {
  font-family: Georgia, serif;
  font-size: 28px;
}

.donut__center span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.legend {
  display: grid;
  gap: 14px;
}

.legend__item {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  align-items: center;
}

.legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

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

.panel--comparison {
  margin-top: 20px;
}

.attendance-panel {
  margin-top: 20px;
  padding: 30px;
  border: 1px solid rgba(22, 79, 74, .1);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 35px rgba(19,43,45,.07);
}

.attendance-difference {
  padding: 9px 13px;
  color: #7a260d;
  border: 1px solid #d8845e;
  border-radius: 999px;
  background: #ffe8dc;
  font-size: 12px;
  font-weight: 900;
}

.attendance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.attendance-card {
  padding: 24px;
  border-radius: 7px;
  background: #edf3ef;
}

.attendance-card--2026 {
  background: #e4eff5;
}

.attendance-card__heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.attendance-card__heading span {
  padding: 7px 11px;
  color: white;
  border-radius: 999px;
  background: var(--green);
  font-weight: 900;
}

.attendance-card--2026 .attendance-card__heading span {
  background: var(--blue);
}

.attendance-card__heading strong {
  color: var(--muted);
  font-size: 13px;
}

.attendance-card__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.attendance-card__numbers div {
  padding: 13px;
  border-radius: 5px;
  background: rgba(255,255,255,.75);
}

.attendance-card__numbers span {
  min-height: 30px;
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.attendance-card__numbers strong {
  display: block;
  margin-top: 7px;
  font-family: Georgia, serif;
  font-size: 29px;
}

.attendance-meter {
  height: 18px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9ddd6;
}

.attendance-meter__fill {
  height: 100%;
  border-radius: inherit;
  background: var(--green-2);
}

.attendance-card--2026 .attendance-meter__fill {
  background: var(--blue);
}

.attendance-card > p {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: right;
  font-size: 12px;
}

.attendance-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  color: #5b3b05;
  border-left: 5px solid var(--gold);
  background: #fff3d4;
  line-height: 1.55;
}

.attendance-source {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.attendance-source a {
  color: var(--blue);
  font-weight: 800;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  align-items: center;
  border-radius: 999px;
  color: var(--green);
  background: #e1eee9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.badge--current {
  color: white;
  background: var(--blue);
}

.panel__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.comparison-controls {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.comparison-controls > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.comparison-toggle {
  padding: 4px;
  display: flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #edf0eb;
}

.comparison-toggle__button {
  min-height: 34px;
  padding: 0 15px;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.comparison-toggle__button:hover {
  color: var(--green);
  background: white;
}

.comparison-toggle__button.is-active {
  color: white;
  background: var(--green);
  box-shadow: 0 3px 8px rgba(22,79,74,.18);
}

.chart-scroll {
  max-height: 720px;
  overflow: auto;
  padding-right: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-color: var(--blue) #e7ece9;
  scrollbar-width: thin;
}

.comparison-chart {
  min-width: 900px;
}

.comparison-chart__header {
  display: grid;
  grid-template-columns: 360px 1fr 1fr;
  gap: 12px;
  padding: 12px 8px;
  position: sticky;
  z-index: 4;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, .97);
  font-size: 12px;
}

.year-heading {
  padding: 9px 12px;
  color: white;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.year-heading b {
  margin-right: 7px;
  font-size: 16px;
}

.year-heading--2022 {
  background: var(--green);
}

.year-heading--2026 {
  background: var(--blue);
}

.comparison-chart__count {
  padding: 7px 10px;
  position: sticky;
  z-index: 3;
  top: 58px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, .97);
  text-align: right;
  font-size: 11px;
  font-weight: 800;
}

.comparison-row {
  display: grid;
  grid-template-columns: 360px 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid #eceee9;
}

.comparison-row__label {
  font-size: 12px;
  font-weight: 700;
}

.comparison-row__label small {
  margin-top: 3px;
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.comparison-row--current {
  background: rgba(63,111,142,.045);
}

.comparison-row--historic {
  background: rgba(217,164,65,.045);
}

.comparison-bar {
  height: 24px;
  border-radius: 3px;
  background: #edf0eb;
  position: relative;
  overflow: hidden;
}

.comparison-bar em {
  width: 42px;
  height: 100%;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  color: white;
  background: var(--green);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.comparison-bar i {
  margin-left: 42px;
  display: block;
  height: 100%;
  background: var(--green-2);
}

.comparison-bar--current i {
  background: linear-gradient(90deg, var(--blue), #5f96b6);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.comparison-bar--current {
  background: #dceaf2;
  outline: 1px solid rgba(63,111,142,.22);
}

.comparison-bar--current em {
  background: var(--blue);
}

.comparison-bar--current b {
  color: #0d344d;
  font-weight: 900;
}

.comparison-bar b {
  position: absolute;
  right: 7px;
  top: 4px;
  color: var(--ink);
  font-size: 11px;
}

.explorer {
  margin-top: 20px;
  padding: 32px;
  border-radius: 8px;
  color: white;
  background: var(--green);
  box-shadow: var(--shadow);
}

.explorer__controls {
  display: grid;
  grid-template-columns: 1.4fr minmax(220px, .7fr) minmax(220px, .7fr);
  gap: 18px;
  align-items: end;
}

.explorer h2 {
  color: white;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px;
  color: white;
  outline: none;
  background: rgba(255,255,255,.08);
}

.field select option {
  color: var(--ink);
  background: white;
}

.explorer__layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) 1.7fr;
  gap: 20px;
  margin-top: 24px;
}

.position-list,
.position-card {
  border-radius: 6px;
  color: var(--ink);
  background: var(--card);
  overflow: hidden;
}

.position-list__header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.position-list__body {
  max-height: 620px;
  overflow-y: auto;
}

.position-item {
  width: 100%;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  text-align: left;
  color: inherit;
  border: 0;
  border-bottom: 1px solid #eceee9;
  cursor: pointer;
  background: transparent;
}

.position-item:hover,
.position-item.is-active {
  background: #edf5f1;
}

.position-item strong {
  font-size: 13px;
  line-height: 1.35;
}

.position-item span {
  color: var(--blue);
  font-weight: 800;
}

.position-item small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.position-card {
  padding: 26px;
}

.position-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.position-card__header h2 {
  margin-top: 10px;
  max-width: 780px;
  font-size: clamp(24px, 2.3vw, 36px);
}

.position-card__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.position-card__metrics .metric--vacancy {
  border-left-color: #b97817;
  background: #fff2d8;
}

.position-card__metrics .metric--designated {
  border-left-color: var(--green);
  background: #dfede8;
}

.position-card__metrics div {
  min-height: 102px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 4px solid var(--green-2);
  background: #f0f3ee;
}

.position-card__metrics .metric--current {
  color: white;
  border-left-color: var(--gold);
  background: var(--blue);
}

.position-card__metrics .metric--current span {
  color: rgba(255,255,255,.82);
}

.position-card__metrics .metric--current strong {
  color: #fff3c8;
}

.position-card__metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.position-card__metrics strong {
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 29px;
}

.position-card__visuals {
  display: grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap: 22px;
  margin-top: 24px;
}

.funnel--compact .funnel__row {
  grid-template-columns: minmax(125px, 1fr) 2.6fr auto;
}

.funnel--compact .funnel__track {
  height: 25px;
}

.score-card {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 6px;
  color: white;
  background: var(--magenta);
}

.score-card--exam {
  background: var(--green);
}

.score-card--final {
  background: var(--magenta);
}

.score-card span {
  max-width: 260px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.score-card strong {
  margin: 12px 0;
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 1;
}

.score-card small {
  color: rgba(255,255,255,.75);
  line-height: 1.45;
}

.position-card__notice {
  margin: 22px 0 0;
  padding: 13px 15px;
  color: #5b3b05;
  border: 1px solid var(--gold);
  border-left-width: 5px;
  border-radius: 4px;
  background: #fff3d4;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.methodology {
  display: grid;
  grid-template-columns: .7fr 1.15fr 1.15fr;
  gap: 30px;
  margin: 20px 0 50px;
}

.methodology p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

footer {
  padding: 24px;
  color: rgba(255,255,255,.68);
  text-align: center;
  background: #0c3533;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .attendance-grid { grid-template-columns: 1fr; }
  .explorer__controls { grid-template-columns: 1fr 1fr; }
  .explorer__controls > div:first-child { grid-column: 1 / -1; }
  .explorer__layout { grid-template-columns: 1fr; }
  .position-list__body { max-height: 330px; }
  .methodology { grid-template-columns: 1fr; }
  .data-status { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { padding-top: 44px; }
  .hero__seal { display: none; }
  main { width: min(100% - 20px, 1480px); }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi:last-child { grid-column: 1 / -1; }
  .gender-layout { grid-template-columns: 1fr; justify-items: center; }
  .legend { width: 100%; }
  .explorer { padding: 20px; }
  .explorer__controls { grid-template-columns: 1fr; }
  .explorer__controls > div:first-child { grid-column: auto; }
  .position-card__metrics { grid-template-columns: 1fr 1fr; }
  .position-card__visuals { grid-template-columns: 1fr; }
  .data-status__card { min-height: auto; }
  .attendance-card__numbers { grid-template-columns: 1fr; }
  .position-card__header { flex-direction: column; }
  .funnel__row { grid-template-columns: 1fr auto; }
  .funnel__track { grid-column: 1 / -1; grid-row: 2; }
  .information-notice { align-items: flex-start; flex-direction: column; }
  .panel__heading { flex-direction: column; }
  .comparison-controls { width: 100%; justify-items: start; }
  .comparison-toggle { width: 100%; }
  .comparison-toggle__button { flex: 1; }
  .informative-frame::before {
    max-width: calc(100% - 28px);
    white-space: normal;
  }
}

@media print {
  body {
    background: white;
  }

  .hero {
    min-height: auto;
    padding: 28px;
  }

  .hero__actions,
  .explorer__controls,
  .position-list,
  .button,
  footer {
    display: none !important;
  }

  main {
    width: 100%;
    margin: 0;
  }

  .kpi-grid,
  .dashboard-grid,
  .explorer__layout {
    break-inside: avoid;
  }

  .panel,
  .explorer,
  .kpi {
    box-shadow: none;
  }

  .informative-frame {
    outline-color: var(--gold);
  }

  .informative-frame::before {
    position: absolute;
    top: 3px;
    right: 8px;
    font-size: 8px;
  }

  .explorer {
    color: var(--ink);
    background: white;
    padding: 0;
  }

  .explorer__layout {
    display: block;
  }

  .position-card {
    border: 1px solid var(--line);
  }

  body.print-position-only .kpi-grid,
  body.print-position-only .dashboard-grid,
  body.print-position-only .panel--comparison,
  body.print-position-only .methodology {
    display: none;
  }

  body.print-position-only .hero {
    padding: 22px;
  }

  body.print-position-only .hero__lead,
  body.print-position-only .hero__seal {
    display: none;
  }
}
