:root {
  color-scheme: light;
  --bg: #f6faf8;
  --surface: #ffffff;
  --surface-soft: #edf6f2;
  --ink: #10231d;
  --muted: #5f716a;
  --line: #cfe0d8;
  --primary: #087b69;
  --primary-dark: #056153;
  --accent: #246b9b;
  --warning: #8a5a00;
  --warning-bg: #fff4d6;
  --shadow: 0 18px 50px rgba(16, 35, 29, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(246, 250, 248, 0.9);
  border-bottom: 1px solid rgba(207, 224, 216, 0.78);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero-actions,
.signal-strip,
.assessment-actions,
.site-footer,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 20px rgba(8, 123, 105, 0.18);
}

.brand-mark::after {
  position: absolute;
  right: -3px;
  top: -3px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: #efc75d;
  content: "";
}

.main-nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--primary-dark);
}

.header-action {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 28px;
  align-items: stretch;
  min-height: calc(100vh - 76px);
  padding: 58px 0 34px;
}

.intro-panel,
.status-panel,
.assessment-panel,
.result-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 64px);
}

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

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

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

h3 {
  margin: 0;
  font-size: 1.15rem;
}

h4 {
  margin: 0 0 10px;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.text-button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

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

.button.primary:hover {
  background: var(--primary-dark);
}

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

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

.signal-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.signal-strip span,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
}

.signal-strip span {
  padding: 9px 12px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-size: 0.88rem;
}

.status-panel {
  align-self: center;
  padding: 24px;
}

.status-panel h2 {
  font-size: 1.35rem;
}

.readiness-meter,
.progress-track {
  height: 10px;
  overflow: hidden;
  background: #dbe9e3;
  border-radius: 999px;
}

.readiness-meter {
  margin-top: 22px;
}

.readiness-meter span,
.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: inherit;
}

.meter-label {
  margin: 10px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist li {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--muted);
}

.checklist .done {
  color: var(--primary-dark);
  background: var(--surface-soft);
}

.section {
  padding: 62px 0;
}

.mosaic-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 76px 18px 82px;
  background: #f8f2ec;
}

.mosaic-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.mosaic-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.mosaic-inner p {
  margin: 18px auto 34px;
  color: #6a6f78;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.category-pill {
  --chip: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--chip);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(16, 35, 29, 0.12);
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.category-pill:hover,
.category-pill.active {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(16, 35, 29, 0.16);
  filter: saturate(1.08);
}

.category-pill svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.category-pill.memory {
  --chip: #55bb75;
}

.category-pill.personality {
  --chip: #4f7fdc;
}

.category-pill.archetypes {
  --chip: #efc75d;
}

.category-pill.mental {
  --chip: #e08578;
}

.category-pill.career {
  --chip: #f0b86c;
}

.category-pill.autism {
  --chip: #f4c985;
}

.category-pill.adhd {
  --chip: #9a7be3;
}

.category-pill.love {
  --chip: #67c6d4;
}

.category-pill.intimacy {
  --chip: #d96fa3;
}


.category-pill.business {
  --chip: #23a27f;
}

.category-pill.leadership {
  --chip: #6c80a0;
}

.category-pill.parenting {
  --chip: #d782ad;
}

.category-pill.relationship {
  --chip: #7891b3;
}

.mobile-category-preview {
  display: none;
}

.review-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 54px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(237, 246, 242, 0.96), rgba(255, 244, 214, 0.82)),
    var(--bg);
}

.review-heading {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto 26px;
  text-align: center;
}

.review-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-marquee {
  position: relative;
  overflow: hidden;
}

.review-marquee::before,
.review-marquee::after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: min(120px, 12vw);
  height: 100%;
  content: "";
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(246, 250, 248, 0));
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff4d6, rgba(255, 244, 214, 0));
}

.review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 4px 16px;
  animation: review-scroll 46s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  display: grid;
  width: min(360px, 82vw);
  min-height: 210px;
  align-content: space-between;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(8, 123, 105, 0.2);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(16, 35, 29, 0.08);
}

.stars {
  color: #d89512;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 750;
  line-height: 1.55;
}

.review-card span {
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    width: auto;
    overflow-x: auto;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .review-card {
    flex: 0 0 min(360px, 82vw);
    scroll-snap-align: center;
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 560px;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.featured-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 22px;
}

.featured-strip article {
  padding: 18px;
  border: 1px solid rgba(35, 162, 127, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 232, 184, 0.62), rgba(237, 248, 243, 0.9)),
    var(--surface);
}

.featured-strip span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.featured-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.filter-button {
  --filter: var(--surface);
  --filter-ink: var(--muted);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--filter);
  color: var(--filter-ink);
  cursor: pointer;
  font-weight: 800;
}

.filter-button.active {
  background: var(--filter);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(16, 35, 29, 0.12);
}

.filter-button[data-filter="all"] {
  --filter: #55bb75;
  --filter-ink: white;
}

.filter-button[data-filter="personality"] {
  --filter: #4f7fdc;
  --filter-ink: white;
}

.filter-button[data-filter="business"] {
  --filter: #23a27f;
  --filter-ink: white;
}

.filter-button[data-filter="leadership"] {
  --filter: #6c80a0;
  --filter-ink: white;
}

.filter-button[data-filter="career"] {
  --filter: #f0b86c;
  --filter-ink: white;
}

.filter-button[data-filter="relationship"] {
  --filter: #67c6d4;
  --filter-ink: white;
}

.filter-button[data-filter="family"] {
  --filter: #d782ad;
  --filter-ink: white;
}

.filter-button[data-filter="wellbeing"] {
  --filter: #efc75d;
  --filter-ink: white;
}

.filter-button[data-filter="screener"] {
  --filter: #9a7be3;
  --filter-ink: white;
}

.test-grid,
.pricing-grid,
.trust-grid,
.steps {
  display: grid;
  gap: 16px;
}

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

.test-card,
.price-card,
.trust-grid article,
.steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.test-card {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.test-card[data-depth="deep"] {
  border-color: rgba(35, 162, 127, 0.36);
  background:
    linear-gradient(145deg, rgba(244, 201, 133, 0.16), rgba(103, 198, 212, 0.12)),
    var(--surface);
}

.test-card[data-depth="quick"] {
  background:
    linear-gradient(145deg, rgba(79, 127, 220, 0.08), rgba(85, 187, 117, 0.08)),
    var(--surface);
}

.test-card.hidden {
  display: none;
}

.test-card p,
.price-card p,
.trust-grid p,
.steps p,
.question-copy,
.result-panel p,
.report-block li {
  color: var(--muted);
  line-height: 1.62;
}

.tag {
  margin-bottom: 14px;
  padding: 7px 10px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-size: 0.76rem;
}

.tag.warning {
  background: var(--warning-bg);
  color: var(--warning);
}

.text-button {
  align-self: flex-start;
  padding: 0;
  background: transparent;
  color: var(--primary-dark);
}

.text-button:hover {
  color: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.assessment-panel,
.result-panel {
  padding: 24px;
}

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

.progress-label {
  white-space: nowrap;
  color: var(--muted);
  font-weight: 800;
}

.progress-track {
  margin: 22px 0;
}

.progress-track span {
  width: 0%;
  transition: width 180ms ease;
}

.answer-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.micro-reveal {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(35, 162, 127, 0.22);
  border-radius: 8px;
  background: #edf8f3;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.5;
}

.answer-option {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.answer-option:hover,
.answer-option.selected {
  border-color: var(--primary);
  background: var(--surface-soft);
}

.assessment-actions {
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.hidden {
  display: none !important;
}

.score-bars {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.score-row {
  display: grid;
  gap: 8px;
}

.score-row div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 800;
}

.score-track {
  height: 9px;
  overflow: hidden;
  background: #dbe9e3;
  border-radius: 999px;
}

.score-track span {
  display: block;
  height: 100%;
  background: var(--primary);
}

.report-block {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.report-block ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

.report-block .report-heading {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.report-block .report-heading:first-child {
  margin-top: 0;
}

.locked-preview {
  position: relative;
  padding: 11px 12px;
  border: 1px dashed rgba(16, 35, 29, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink) !important;
  font-weight: 750;
}

.locked-preview::before {
  content: "Locked";
  display: inline-block;
  margin-right: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #ffe8b8;
  color: #735320;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recommendation-item {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.recommendation-item .text-button {
  font-weight: 900;
}

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

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  padding: 20px;
}

.steps span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 18px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  border-radius: 8px;
  font-weight: 900;
}

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

.price-card {
  padding: 22px;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.price {
  margin: 18px 0 8px;
  color: var(--ink) !important;
  font-size: 2.2rem;
  font-weight: 900;
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid article {
  padding: 20px;
}

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

.profile-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.profile-card.featured {
  background:
    linear-gradient(135deg, rgba(237, 248, 243, 0.9), rgba(255, 244, 214, 0.74)),
    var(--surface);
}

.profile-card span {
  display: grid;
  min-width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-weight: 900;
}

.profile-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.idea-table [role="row"] {
  display: grid;
  grid-template-columns: 0.8fr repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.idea-table strong,
.idea-table span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  line-height: 1.35;
}

.idea-table strong {
  background: var(--surface-soft);
  color: var(--primary-dark);
}

.source-list a {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.source-list a:hover {
  border-color: var(--primary);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  max-width: 680px;
  margin: 0;
}

.site-footer div {
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.mobile-toolbar {
  display: none;
}

@media (max-width: 900px) {
  .app-shell,
  .split,
  .test-grid,
  .featured-strip,
  .pricing-grid,
  .profile-grid,
  .steps,
  .trust-grid,
  .source-list,
  .idea-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .app-shell {
    min-height: auto;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 88px;
  }

  main {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding: 12px;
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: 2.2rem;
  }

  .intro-panel,
  .status-panel,
  .assessment-panel,
  .result-panel {
    padding: 20px;
  }

  .assessment-top,
  .assessment-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mobile-category-preview {
    display: grid;
    gap: 14px;
    margin: 28px auto 0;
    padding: 16px;
    border: 1px solid rgba(8, 123, 105, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 36px rgba(16, 35, 29, 0.12);
    text-align: left;
  }

  .mobile-category-preview.hidden {
    display: none !important;
  }

  .mobile-category-preview h3 {
    color: var(--ink);
    font-size: 1.08rem;
  }

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

  .mobile-preview-card {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
  }

  .mobile-preview-card h4 {
    margin: 0;
    font-size: 1rem;
  }

  .mobile-preview-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
  }

  .mobile-preview-card .text-button {
    min-height: 34px;
  }

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

  .profile-card span {
    min-width: 44px;
    width: 44px;
    height: 44px;
  }

  .mobile-toolbar {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(8, 123, 105, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(16, 35, 29, 0.22);
    backdrop-filter: blur(18px);
  }

  .mobile-toolbar a {
    display: grid;
    gap: 3px;
    min-height: 54px;
    place-items: center;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-toolbar a:hover,
  .mobile-toolbar a:focus {
    background: var(--surface-soft);
    color: var(--primary-dark);
    outline: none;
  }

  .mobile-toolbar span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--primary-dark);
    font-size: 0.92rem;
  }
}
