:root {
  --ink: #153730;
  --ink-soft: #526a64;
  --forest: #143f38;
  --forest-2: #1d5a50;
  --mint: #d9eee4;
  --mint-light: #edf7f2;
  --rose: #e4a09b;
  --rose-dark: #b95f5b;
  --paper: #f8f5ee;
  --white: #fffefa;
  --line: #cedbd4;
  --shadow: 0 18px 52px rgba(20, 63, 56, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(228, 160, 155, 0.22), transparent 24rem),
    linear-gradient(135deg, var(--paper), #eef5ef 68%, #e1eee8);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(185, 95, 91, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--forest);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 25px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 44% 56%;
  color: var(--white);
  background: var(--forest);
  font-family: Georgia, serif;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 1px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-button {
  border: 0;
  padding: 9px 4px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.app-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 32px auto 70px;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(520px, 1.4fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.intro {
  position: sticky;
  top: 30px;
  padding-top: 50px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 510px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.intro-copy {
  max-width: 470px;
  margin: 28px 0 20px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.privacy-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 470px;
  margin-top: 25px;
  border: 1px solid rgba(20, 63, 56, 0.12);
  border-radius: 13px;
  padding: 12px 14px;
  color: var(--ink-soft);
  background: rgba(255, 254, 250, 0.56);
  font-size: 11px;
  line-height: 1.45;
}

.privacy-note span {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--forest-2);
  font-size: 9px;
}

.privacy-note p {
  margin: 0;
}

.privacy-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 12px;
}

.workspace {
  min-height: 660px;
  padding: clamp(23px, 4vw, 42px);
  border: 1px solid rgba(20, 63, 56, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 250, 0.89);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.steps {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  margin-bottom: 38px;
}

.step {
  display: grid;
  grid-template-columns: 28px auto;
  gap: 8px;
  align-items: center;
  border: 0;
  padding: 0;
  color: #879891;
  background: transparent;
  cursor: pointer;
}

.step:disabled {
  cursor: default;
}

.step span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.step em {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.step.is-active,
.step.is-complete {
  color: var(--forest);
}

.step.is-active span {
  border-color: var(--forest);
  color: white;
  background: var(--forest);
}

.step.is-complete span {
  border-color: var(--mint);
  background: var(--mint);
}

.step-line {
  height: 1px;
  margin: 0 10px;
  background: var(--line);
}

.screen {
  animation: rise 360ms ease both;
}

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

.screen-heading {
  margin-bottom: 26px;
}

.screen-heading h2 {
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 39px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.screen-heading p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.role-list {
  display: grid;
  gap: 10px;
}

.role-row {
  display: grid;
  grid-template-columns: 32px 1fr 35px;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.role-row:focus-within {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 3px rgba(29, 90, 80, 0.08);
}

.role-index {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint-light);
  font-size: 12px;
  font-weight: 800;
}

.role-name {
  width: 100%;
  border: 0;
  padding: 10px 4px;
  color: var(--ink);
  background: transparent;
  outline: 0 !important;
}

.role-name::placeholder {
  color: #97a69f;
}

.icon-button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #778b83;
  background: transparent;
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
}

.icon-button:hover {
  color: var(--rose-dark);
  background: #faeeec;
}

.add-role-wrap {
  display: flex;
  gap: 9px;
  margin-top: 12px;
}

.secondary-button,
.primary-button,
.quiet-button {
  min-height: 45px;
  border-radius: 999px;
  padding: 11px 19px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  border: 1px solid var(--forest);
  color: white;
  background: var(--forest);
  box-shadow: 0 10px 25px rgba(20, 63, 56, 0.18);
}

.primary-button:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #0d332d;
  box-shadow: 0 13px 28px rgba(20, 63, 56, 0.22);
}

.primary-button:disabled {
  border-color: #b8c7c0;
  color: #eef3f0;
  background: #a9b9b2;
  box-shadow: none;
  cursor: not-allowed;
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--forest);
  background: white;
}

.secondary-button:hover,
.quiet-button:hover {
  border-color: var(--forest-2);
  background: var(--mint-light);
}

.quiet-button {
  border: 1px solid transparent;
  color: var(--forest);
  background: transparent;
}

.suggestions {
  margin-top: 20px;
}

.mini-label {
  display: block;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chip-row,
.trait-cloud,
.recurring-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggestion-chip,
.trait-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 13px;
}

.suggestion-chip:hover,
.trait-chip:hover {
  border-color: var(--forest-2);
  color: var(--forest);
}

.trait-chip[aria-pressed="true"] {
  border-color: var(--forest);
  color: white;
  background: var(--forest);
}

.action-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.validation {
  min-height: 20px;
  margin: 0;
  color: var(--rose-dark);
  font-size: 13px;
}

.role-tabs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 9px;
  scrollbar-width: thin;
}

.role-tab {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink-soft);
  background: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.role-tab.is-active {
  border-color: var(--rose-dark);
  color: var(--ink);
  background: #fae7e4;
}

.trait-panel {
  margin-top: 16px;
  padding: 21px;
  border-radius: var(--radius-md);
  background: var(--mint-light);
}

.trait-panel-head {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.trait-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.trait-count {
  color: var(--ink-soft);
  font-size: 12px;
}

.custom-trait {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 16px;
}

.text-input,
.plan-field input,
.plan-field textarea,
.plan-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
}

.text-input::placeholder,
.plan-field textarea::placeholder {
  color: #94a49d;
}

.map-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at center, rgba(228, 160, 155, 0.2) 0 13%, transparent 13.4%),
    radial-gradient(circle at center, transparent 0 34%, rgba(20, 63, 56, 0.08) 34.3% 34.8%, transparent 35.1%),
    radial-gradient(circle at center, transparent 0 46%, rgba(20, 63, 56, 0.06) 46.3% 46.7%, transparent 47%),
    var(--mint-light);
}

.map-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  box-shadow: 0 9px 23px rgba(20, 63, 56, 0.23);
}

.map-role {
  position: absolute;
  width: 112px;
  min-height: 50px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(20, 63, 56, 0.16);
  border-radius: 16px;
  padding: 8px;
  text-align: center;
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 7px 19px rgba(20, 63, 56, 0.08);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.insight-block {
  margin-top: 24px;
}

.insight-block h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.insight-block > p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.recurring-pill {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--forest);
  background: var(--mint);
  font-size: 13px;
  font-weight: 750;
}

.recurring-pill small {
  opacity: 0.75;
  font-size: 10px;
  font-weight: 800;
}

.empty-insight {
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: var(--ink-soft);
  background: white;
  font-size: 13px;
  line-height: 1.5;
}

.transfer-list {
  display: grid;
  gap: 9px;
}

.transfer-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  text-align: left;
}

.transfer-card:hover,
.transfer-card.is-selected {
  border-color: var(--rose-dark);
  background: #fdf3f1;
}

.transfer-role {
  font-size: 12px;
  font-weight: 750;
}

.transfer-role small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-weight: 500;
}

.transfer-arrow {
  color: var(--rose-dark);
  font-size: 20px;
}

.transfer-card .to {
  text-align: right;
}

.plan-builder {
  margin-top: 20px;
  border: 1px solid rgba(185, 95, 91, 0.24);
  border-radius: var(--radius-md);
  padding: 20px;
  background: #fdf7f5;
}

.plan-builder h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.plan-builder > p {
  margin: 0 0 17px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.plan-fields {
  display: grid;
  gap: 13px;
}

.plan-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.plan-field textarea {
  min-height: 72px;
  resize: vertical;
}

.if-then {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.if-then strong {
  color: var(--rose-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.plan-preview {
  margin: 15px 0 0;
  border-left: 3px solid var(--rose);
  padding: 8px 0 8px 13px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
}

.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.final-report {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(20, 63, 56, 0.16);
  border-radius: 22px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 15px 38px rgba(20, 63, 56, 0.08);
}

.report-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 30px 26px;
  color: white;
  background:
    radial-gradient(circle at 86% 15%, rgba(228, 160, 155, 0.55), transparent 32%),
    var(--forest);
}

.report-kicker {
  display: block;
  margin-bottom: 8px;
  color: #bfe0d1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-header h3 {
  margin: 0;
  max-width: 390px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.report-meta {
  display: grid;
  gap: 5px;
  flex: 0 0 auto;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-align: right;
}

.report-section {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 25px 30px;
  border-bottom: 1px solid #dbe5df;
}

.report-section-number {
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.report-section-content h4 {
  margin: -3px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.report-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-role-card {
  min-width: 0;
  border-radius: 13px;
  padding: 14px;
  background: var(--mint-light);
}

.report-role-card > strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.report-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.report-traits span {
  border: 1px solid rgba(20, 63, 56, 0.13);
  border-radius: 999px;
  padding: 4px 7px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.report-recurring {
  display: grid;
  gap: 8px;
}

.report-recurring > div {
  display: grid;
  grid-template-columns: minmax(100px, 0.75fr) minmax(160px, 1.25fr);
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px dotted var(--line);
  padding: 0 0 8px;
}

.report-recurring strong {
  font-size: 13px;
}

.report-recurring span,
.report-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.report-bridge-section {
  background: #fdf4f1;
}

.report-bridge {
  display: grid;
  grid-template-columns: 1fr minmax(100px, 0.8fr) 1fr;
  gap: 13px;
  align-items: center;
}

.report-bridge > div:first-child,
.report-bridge > div:last-child {
  min-width: 0;
  border-radius: 12px;
  padding: 12px;
  background: white;
}

.report-bridge small,
.report-experiment small {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-bridge strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.report-resource {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  align-items: center;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.report-resource span {
  border-radius: 999px;
  padding: 6px 9px;
  color: #7d403d;
  background: #f3cfca;
}

.report-resource b {
  font-size: 17px;
}

.report-experiment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.report-experiment > div {
  border-left: 3px solid var(--mint);
  border-radius: 0 10px 10px 0;
  padding: 10px 12px;
  background: #f5f8f6;
}

.report-experiment .report-observe {
  grid-column: 1 / -1;
  border-left-color: var(--rose);
}

.report-experiment p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.45;
}

.report-experiment p.is-placeholder {
  color: #8c9c95;
  font-family: inherit;
  font-size: 11px;
  font-style: italic;
}

.report-footer {
  display: grid;
  gap: 8px;
  padding: 13px 30px;
  color: #789087;
  background: #f1f6f3;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-footer > div {
  display: flex;
  justify-content: space-between;
}

.report-footer p {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #d9e5df;
  color: #6f817a;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10;
  max-width: calc(100% - 32px);
  transform: translate(-50%, 20px);
  border-radius: 999px;
  padding: 11px 17px;
  color: white;
  background: var(--forest);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 13px;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (max-width: 850px) {
  .app-shell {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  .intro {
    position: static;
    padding-top: 20px;
  }

  h1 {
    max-width: 680px;
  }

  .intro-copy {
    max-width: 650px;
  }

  .workspace {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .app-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding-top: 16px;
  }

  .brand small,
  .step em {
    display: none;
  }

  .app-shell {
    gap: 24px;
    margin-bottom: 35px;
  }

  h1 {
    font-size: 42px;
  }

  .workspace {
    padding: 21px 16px;
    border-radius: 22px;
  }

  .steps {
    margin-bottom: 28px;
  }

  .step {
    grid-template-columns: 28px;
  }

  .action-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .action-bar .primary-button {
    width: 100%;
  }

  .map-card {
    min-height: 300px;
  }

  .map-role {
    width: 92px;
    font-size: 11px;
  }

  .if-then {
    grid-template-columns: auto 1fr;
  }

  .transfer-card {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 11px;
  }

  .report-header {
    display: grid;
    padding: 23px 20px;
  }

  .report-meta {
    text-align: left;
  }

  .report-section {
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding: 21px 16px;
  }

  .report-role-grid,
  .report-experiment {
    grid-template-columns: 1fr;
  }

  .report-experiment .report-observe {
    grid-column: auto;
  }

  .report-bridge {
    grid-template-columns: 1fr;
  }

  .report-resource {
    grid-template-columns: auto auto;
    justify-content: center;
  }

  .report-resource b {
    transform: rotate(90deg);
  }

  .report-recurring > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

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

  body {
    background: white;
  }

  body * {
    visibility: hidden !important;
  }

  .final-report,
  .final-report * {
    visibility: visible !important;
  }

  .final-report {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .report-header {
    padding: 20px 24px;
  }

  .report-section {
    break-inside: avoid;
    padding: 18px 24px;
  }

  .report-role-card,
  .report-recurring > div,
  .report-bridge,
  .report-experiment > div {
    break-inside: avoid;
  }
}

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