:root {
  --ink: #231f20;
  --muted: #6b6765;
  --paper: #f6f4f0;
  --panel: #ffffff;
  --line: #e2ddd9;
  --green: #F04925;
  --green-dark: #231f20;
  --gold: #F04925;
  --orange: #F04925;
  --blue: #365f7f;
  --rose: #9b5f5a;
  --shadow: 0 16px 42px rgba(30, 40, 36, 0.08);
  --site-max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Roboto, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
input,
textarea {
  font: inherit;
}

.quiz-shell {
  background: var(--paper);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease, transform 120ms ease;
}

.icon-button:hover {
  border-color: rgba(35, 31, 32, 0.22);
  background: #ffffff;
  transform: translateY(-1px);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quiz-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
  width: min(var(--site-max), calc(100% - 40px));
  min-height: 0;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0 clamp(42px, 6vw, 72px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
}

.brand-lockup img {
  display: block;
  width: 56px;
  height: auto;
  object-fit: contain;
}

.eyebrow,
.step-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.8vw, 3.35rem);
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.lede {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
}

.quiz-meta {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.start-quiz-button {
  min-width: 190px;
  min-height: 52px;
  font-size: 1rem;
}

.quiz-panel,
.lead-gate-panel,
.result-panel,
.quiz-intro-card,
.quadrant-preview {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quiz-intro-card {
  padding: clamp(20px, 3vw, 28px);
}

.quiz-intro-card h2 {
  max-width: 480px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.intro-preview-list {
  display: grid;
  gap: 4px;
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.matrix-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quiz-panel,
.lead-gate-panel,
.result-panel {
  margin-top: 22px;
  padding: clamp(26px, 3.4vw, 42px);
}

.quiz-panel {
  width: min(960px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.quiz-shell:not(.quiz-started) .quiz-panel {
  display: none;
}

.quiz-started .quiz-hero {
  display: none;
}

.quiz-started .quiz-panel {
  margin-top: 12px;
}

.quadrant-preview,
.quadrant-result {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  overflow: hidden;
}

.quadrant-preview {
  min-height: 250px;
  margin-top: 18px;
  box-shadow: none;
}

.quadrant-preview::before,
.quadrant-preview::after,
.quadrant-result::before,
.quadrant-result::after {
  content: "";
  position: absolute;
  background: rgba(23, 33, 29, 0.16);
}

.quadrant-preview::before,
.quadrant-result::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.quadrant-preview::after,
.quadrant-result::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.quad {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 22px;
  color: rgba(23, 33, 29, 0.82);
  font-weight: 800;
  text-align: center;
}

.quadrant-preview .quad {
  min-height: 125px;
  padding: 24px 18px;
  font-size: 0.92rem;
}

.q1 {
  background: rgba(54, 95, 127, 0.13);
}

.q2 {
  background: rgba(47, 111, 85, 0.14);
}

.q3 {
  background: rgba(201, 157, 67, 0.18);
}

.q4 {
  background: rgba(155, 95, 90, 0.13);
}

.axis-label {
  position: absolute;
  z-index: 3;
  color: rgba(23, 33, 29, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.axis-label.top {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.axis-label.bottom {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.axis-label.left {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.axis-label.right {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.progress-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 24px;
}

.progress-track {
  width: min(260px, 100%);
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7e8df;
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--ink));
  transition: width 160ms ease;
}

.question-copy {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--muted);
}

.options {
  display: grid;
  gap: 12px;
}

.scale-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.tradeoff-scale {
  display: block;
}

.scale-choice {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  align-items: center;
  min-height: 154px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  text-align: center;
  cursor: pointer;
  transition: border-color 120ms ease, transform 120ms ease, background 120ms ease;
}

.scale-choice:hover,
.scale-choice:focus-within,
.matrix-choice:hover,
.matrix-choice:focus-within,
.choice-card:hover,
.choice-card:focus-within {
  border-color: rgba(240, 73, 37, 0.7);
  background: #ffffff;
  transform: translateY(-1px);
}

.scale-choice input,
.matrix-choice input,
.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scale-choice:has(input:checked),
.matrix-choice:has(input:checked),
.choice-card:has(input:checked) {
  border-color: var(--green);
  background: #fff1ec;
  box-shadow: inset 0 0 0 2px rgba(240, 73, 37, 0.18);
}

.scale-choice:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.scale-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #f7e5dc;
  color: var(--ink);
  font-weight: 900;
}

.scale-label {
  display: block;
  max-width: 140px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.22;
}

.option-example {
  display: block;
  max-width: 180px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.28;
  opacity: 0;
  transition: max-height 160ms ease, margin-top 160ms ease, opacity 160ms ease;
}

.scale-choice:hover .option-example,
.scale-choice:focus-within .option-example,
.scale-choice:has(input:checked) .option-example,
.choice-card:hover .option-example,
.choice-card:focus-within .option-example,
.choice-card:has(input:checked) .option-example {
  max-height: 90px;
  margin-top: 8px;
  opacity: 1;
}

.option-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  cursor: pointer;
  transition: border-color 120ms ease, transform 120ms ease, background 120ms ease;
}

.option-card:hover,
.option-card:focus-within {
  border-color: rgba(240, 73, 37, 0.7);
  background: #ffffff;
  transform: translateY(-1px);
}

.option-card input {
  margin-top: 4px;
  accent-color: var(--green);
}

.text-field {
  display: grid;
  gap: 8px;
}

.matrix-table {
  display: grid;
  gap: 10px;
}

.matrix-head,
.matrix-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(0, 1.6fr);
  gap: 12px;
  align-items: center;
}

.matrix-head {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.matrix-scale-head {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  text-align: center;
}

.matrix-row {
  padding: 10px 0;
  border-top: 1px solid rgba(216, 221, 212, 0.7);
}

.matrix-row p {
  margin: 0;
  font-weight: 800;
}

.matrix-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(64px, 1fr));
  gap: 8px;
}

.matrix-choice {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  cursor: pointer;
  transition: border-color 120ms ease, transform 120ms ease, background 120ms ease;
}

.matrix-choice span {
  color: var(--ink);
  font-weight: 900;
}

.choice-grid {
  display: grid;
  gap: 18px;
}

.choice-row {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-row legend {
  padding: 0;
  font-weight: 900;
}

.choice-row p {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.choice-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.choice-card {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  text-align: center;
  cursor: pointer;
  transition: border-color 120ms ease, transform 120ms ease, background 120ms ease;
}

.choice-card span {
  font-size: 0.9rem;
  font-weight: 850;
}

.option-title {
  display: block;
  font-weight: 800;
}

.option-desc {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-actions,
.submit-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.turnstile-wrap {
  min-height: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

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

.button.primary:disabled,
.button.primary:disabled:hover {
  background: var(--orange);
}

.button.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.button:focus-visible,
.icon-button:focus-visible {
  outline: 3px solid rgba(240, 73, 37, 0.22);
  outline-offset: 3px;
}

.hidden {
  display: none;
}

.result-header {
  max-width: 760px;
}

.result-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.result-card,
.next-step,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 18px;
}

.result-card-wide {
  grid-column: 1 / -1;
}

.preference-map-card {
  order: -1;
}

.quadrant-result {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(54, 95, 127, 0.13) 0 50%, rgba(47, 111, 85, 0.14) 50% 100%) top / 100% 50% no-repeat,
    linear-gradient(90deg, rgba(201, 157, 67, 0.18) 0 50%, rgba(155, 95, 90, 0.13) 50% 100%) bottom / 100% 50% no-repeat;
}

.preference-map-note {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.plot-point {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 22px;
  height: 22px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(23, 33, 29, 0.26);
  transform: translate(-50%, -50%);
}

.plot-point-label {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: max-content;
  max-width: 190px;
  padding: 6px 9px;
  border: 1px solid rgba(216, 221, 212, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 8px 22px rgba(23, 33, 29, 0.14);
  transform: translateX(-50%);
}

.plot-point.label-right .plot-point-label {
  left: calc(100% + 8px);
  transform: translateX(0);
}

.plot-point.label-left .plot-point-label {
  right: calc(100% + 8px);
  left: auto;
  transform: translateX(0);
}

.plot-point.label-above .plot-point-label {
  top: auto;
  bottom: calc(100% + 8px);
}

.trait-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trait-card {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff1ec;
}

.trait-card strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.trait-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.next-step,
.lead-form,
.fine-print {
  margin-top: 16px;
}

.next-step {
  display: grid;
  gap: 14px;
}

.next-step h3,
.next-step p {
  margin: 0;
}

.next-step .button {
  width: 100%;
}

.next-step .form-status {
  margin-top: 2px;
  min-height: 1.3em;
}

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

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

.field label,
label {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.required-indicator {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 11px 12px;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(240, 73, 37, 0.15);
}

.field-error {
  min-height: 1.15em;
  margin: 0;
  color: #8b2f28;
  font-size: 0.86rem;
  font-weight: 750;
}

.field.has-error input {
  border-color: #8b2f28;
  background: #fff8f6;
}

.field.has-error input:focus {
  outline-color: rgba(139, 47, 40, 0.16);
}

.field-note {
  margin: 12px 0 14px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.full-field {
  margin-top: 14px;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  font-weight: 700;
}

.consent-row input {
  width: auto;
  margin-top: 4px;
}

.form-status,
.fine-print {
  color: var(--muted);
  font-size: 0.92rem;
}

.fine-print {
  max-width: 860px;
}

.error {
  color: #8b2f28;
}

.success {
  color: var(--ink);
}

@media (max-width: 820px) {
  .quiz-hero,
  .progress-wrap,
  .result-grid,
  .field-grid,
  .scale-options,
  .choice-options,
  .matrix-head,
  .matrix-row {
    grid-template-columns: 1fr;
  }

  .quiz-hero {
    width: min(100% - 48px, 680px);
    gap: 12px;
    align-items: start;
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .eyebrow,
  .step-kicker {
    margin-bottom: 7px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  h1 {
    max-width: 560px;
    margin-bottom: 10px;
    font-size: clamp(1.82rem, 8.7vw, 2.42rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
    line-height: 1.08;
  }

  .lede {
    margin-bottom: 0;
    font-size: 0.98rem;
  }

  .quiz-meta {
    margin-top: 14px;
    font-size: 0.8rem;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .start-quiz-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
  }

  .hero-actions .share-quiz-button {
    width: 100%;
  }

  .quiz-panel,
  .lead-gate-panel,
  .result-panel,
  .quiz-intro-card {
    box-shadow: 0 10px 28px rgba(30, 40, 36, 0.08);
  }

  .quiz-intro-card {
    padding: 12px 14px;
  }

  .quiz-intro-card h2 {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.18;
  }

  .intro-preview-list {
    gap: 4px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.88rem;
  }

  .quiz-intro-card .quadrant-preview {
    display: none;
  }

  .quiz-panel,
  .lead-gate-panel,
  .result-panel {
    width: min(100% - 48px, 680px);
    margin-right: auto;
    margin-left: auto;
    margin-top: 14px;
    padding: 16px;
    scroll-margin-top: 86px;
  }

  .quiz-started .quiz-panel {
    margin-top: 18px;
  }

  .progress-wrap {
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr);
    gap: 8px 14px;
    margin-bottom: 14px;
  }

  .progress-wrap > div {
    display: contents;
  }

  .progress-wrap .step-kicker {
    grid-column: 1;
    align-self: center;
    margin: 0;
    display: none;
  }

  .progress-wrap h2 {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .progress-track {
    grid-column: 2;
    align-self: center;
    display: none;
  }

  .progress-track {
    height: 8px;
  }

  .question-copy {
    margin-bottom: 12px;
    font-size: 0.96rem;
  }

  .tradeoff-scale {
    gap: 0;
  }

  .scale-options {
    gap: 7px;
  }

  .scale-choice {
    position: relative;
    display: grid;
    grid-template-columns: 20px 36px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    justify-items: start;
    min-height: 72px;
    padding: 10px 12px;
    text-align: left;
  }

  .scale-choice::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid rgba(35, 31, 32, 0.45);
    border-radius: 50%;
    background: #fff;
  }

  .scale-choice:hover,
  .scale-choice:focus-within {
    transform: none;
  }

  .scale-choice:active {
    background: #fff5f1;
  }

  .scale-choice:has(input:checked)::before {
    border-color: var(--orange);
    box-shadow: inset 0 0 0 4px #fff;
    background: var(--orange);
  }

  .scale-number {
    width: 34px;
    height: 34px;
    margin: 0;
    background: #fff1ec;
    color: var(--ink);
    font-size: 0.95rem;
  }

  .scale-label {
    display: block;
    min-width: 0;
    color: var(--ink);
    font-size: 0.97rem;
    font-weight: 850;
    line-height: 1.15;
  }

  .scale-choice .option-example {
    grid-column: 3;
    max-width: none;
    max-height: none;
    margin-top: 2px;
    font-size: 0.76rem;
    opacity: 1;
  }

  .choice-card .option-example {
    max-width: none;
    max-height: none;
    margin-top: 2px;
    font-size: 0.76rem;
    opacity: 1;
  }

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

  .choice-card {
    justify-items: start;
    min-height: 54px;
    padding: 10px 12px;
    text-align: left;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .form-actions .button {
    min-height: 52px;
  }

  .button.secondary {
    background: #fffdf8;
  }

  .button[disabled] {
    opacity: 0.45;
  }

  .matrix-head {
    gap: 8px;
  }

  .matrix-head > span:first-child {
    display: none;
  }

  .matrix-scale-head {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    text-align: center;
  }

  .matrix-scale-head span {
    align-items: end;
    display: flex;
    justify-content: center;
    min-height: 2.4em;
    font-size: 0.74rem;
    line-height: 1.15;
  }

  .matrix-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .matrix-choice {
    min-height: 50px;
    padding: 8px 4px;
  }

  .quadrant-preview {
    min-height: 230px;
  }

  .quad {
    min-height: 130px;
    padding: 22px 14px;
    font-size: 0.92rem;
  }

  .quadrant-preview .quad {
    min-height: 115px;
    padding: 24px 10px;
    font-size: 0.82rem;
  }

  .axis-label.left,
  .axis-label.right {
    top: auto;
    bottom: 50%;
    font-size: 0.62rem;
  }

  .plot-point-label {
    max-width: 150px;
    white-space: normal;
  }

}
