:root {
  --bg: #f7f4ec;
  --surface: #fffaf0;
  --surface-strong: #fffdf7;
  --ink: #191714;
  --muted: #6f695f;
  --line: #ded6c7;
  --brand: #252525;
  --brand-soft: #ece7dd;
  --accent: #c78f45;
  --danger: #b0473f;
  --shadow: 0 18px 50px rgba(29, 25, 19, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
}

.landing-page {
  min-height: 100vh;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 236, 0.94);
  border-bottom: 1px solid rgba(222, 214, 199, 0.76);
  backdrop-filter: blur(18px);
}

.landing-brand,
.landing-links button,
.landing-menu,
.landing-footer button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  font-weight: 800;
}

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--surface);
  letter-spacing: 0;
}

.landing-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.landing-links button,
.landing-footer button {
  padding: 8px 10px;
  color: var(--muted);
  font-weight: 650;
}

.landing-links button.active,
.landing-links button:hover,
.landing-footer button:hover {
  color: var(--ink);
}

.landing-menu {
  display: none;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.landing-hero,
.landing-section,
.landing-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 54px 0 42px;
}

.score-hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.landing-hero h1,
.landing-section h1,
.landing-section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.landing-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.score-hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
}

.landing-section h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.landing-section h2 {
  max-width: 840px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero-subhead,
.landing-section > p,
.section-intro p,
.feature-card p,
.flow-card p,
.demo-card p,
.result-card p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-subhead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.2rem;
}

.hero-support {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-bullets {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-bullets span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: var(--surface);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.btn.secondary,
.btn.ghost {
  background: transparent;
  color: var(--brand);
}

.btn.ghost {
  border-color: var(--line);
}

.hero-product-visual,
.panel,
.card,
.demo-card,
.result-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-product-visual {
  padding: 18px;
}

.demo-os-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  min-height: calc(100vh - 88px);
  padding: 54px 0 42px;
}

.demo-os-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.wine-os-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.wine-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.demo-metric,
.pipeline-column {
  display: grid;
  gap: 5px;
  min-height: 120px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fffdf8;
}

.demo-metric strong,
.pipeline-column strong {
  font-size: 2rem;
  line-height: 1;
}

.demo-metric span,
.pipeline-column span {
  font-weight: 850;
}

.demo-metric small,
.pipeline-column small {
  color: var(--muted);
}

.wine-capture-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(220px, 0.5fr) minmax(320px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.qr-card,
.lead-magnet-list,
.demo-lead-form,
.demo-table-card,
.demo-story-panel,
.pipeline-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 12px 36px rgba(29, 25, 19, 0.08);
}

.qr-card {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
}

.qr-card h3 {
  margin: 16px 0 6px;
}

.qr-card p {
  color: var(--muted);
  line-height: 1.55;
}

.fake-qr {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.fake-qr span {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: var(--brand);
}

.fake-qr span:nth-child(2),
.fake-qr span:nth-child(4),
.fake-qr span:nth-child(8) {
  background: var(--brand-soft);
}

.lead-magnet-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.lead-magnet-list button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  cursor: default;
  font-weight: 850;
  text-align: left;
}

.lead-magnet-list button.selected {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.demo-lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.demo-lead-form input[readonly] {
  color: var(--muted);
}

.demo-consent {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.demo-consent input {
  width: auto;
}

.demo-table-card {
  overflow: auto;
}

.demo-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.demo-table th,
.demo-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.demo-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.score-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.score-pill.high {
  background: #f5d8df;
  color: #7a2f43;
}

.score-pill.medium {
  background: #f9e8c8;
  color: #7b5627;
}

.timeline-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.timeline-list div,
.ai-demo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fffdf8;
}

.timeline-list div {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}

.timeline-list small {
  color: var(--accent);
  font-weight: 900;
}

.ai-demo-card {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.ai-demo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ai-demo-card h3 {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.pipeline-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

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

.mockup-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.score-preview {
  display: grid;
  gap: 12px;
  padding: 18px 0 0;
}

.score-row {
  display: grid;
  grid-template-columns: 88px 1fr 44px;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 750;
}

.track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--brand-soft);
}

.track i {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.landing-section {
  padding: 74px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.4fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.flow-grid,
.feature-grid,
.demo-grid,
.results-grid,
.framework-grid,
.stage-grid,
.ecosystem-home-grid,
.impact-landing-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.impact-landing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.framework-grid,
.stage-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.flow-card,
.feature-card,
.demo-card,
.result-card,
.form-panel,
.panel,
.impact-landing-card,
.price-card,
.custom-os-module {
  padding: 22px;
}

.impact-landing-card,
.price-card,
.custom-os-module {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.flow-card .number {
  color: var(--accent);
  font-weight: 900;
}

.flow-card h3,
.feature-card h3,
.demo-card h3,
.result-card h3,
.form-panel h3 {
  margin: 10px 0 8px;
  font-size: 1.08rem;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 20px;
  align-items: stretch;
}

.custom-os-stack {
  display: grid;
  gap: 14px;
}

.custom-os-module {
  box-shadow: 0 12px 36px rgba(29, 25, 19, 0.08);
}

.custom-os-module h3,
.impact-landing-card h3,
.price-card h3 {
  margin: 0 0 8px;
}

.custom-os-module p,
.impact-landing-card p,
.price-card li,
.small-note {
  color: var(--muted);
  line-height: 1.65;
}

.custom-os-preview {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

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

.custom-os-intake-section .section-intro {
  align-items: start;
}

.panel ul,
.feature-card ul,
.result-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.mission-panel {
  max-width: 900px;
  box-shadow: none;
}

.mission-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.mission-panel p + p {
  margin-top: 14px;
}

.bolld-stands {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.bolld-stands span,
.card-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: var(--surface);
  font-weight: 900;
}

.bolld-stands span {
  min-height: 38px;
  padding: 8px 12px;
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--surface);
}

.transformation-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(29, 25, 19, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.transformation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 37, 37, 0.35);
  box-shadow: var(--shadow);
}

.transformation-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.transformation-card strong {
  margin-bottom: 12px;
  color: var(--accent);
}

.transformation-card p {
  color: var(--muted);
  line-height: 1.65;
}

.outcome-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.outcome-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
  font-weight: 900;
}

.card-cta {
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand);
  font-weight: 900;
}

.final-cta {
  padding: 58px clamp(20px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.assessment-form,
.request-form {
  display: grid;
  gap: 18px;
}

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

.full-field {
  grid-column: 1 / -1;
}

.field,
.question {
  display: grid;
  gap: 8px;
}

label,
.question strong {
  font-weight: 800;
}

.required-star {
  color: #b3261e;
}

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

textarea {
  min-height: 120px;
  resize: vertical;
}

.question {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

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

.scale label {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  color: var(--muted);
}

.scale input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scale input:checked + span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: var(--brand);
  color: var(--surface);
}

.score-wheel {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: conic-gradient(var(--brand) calc(var(--score) * 1%), var(--brand-soft) 0);
  color: var(--surface);
  font-size: 2.4rem;
  font-weight: 900;
}

.notice {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--brand-soft);
}

.notice.error {
  border-color: rgba(176, 71, 63, 0.5);
  color: var(--danger);
  background: #fff5f2;
}

.landing-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.landing-footer strong {
  color: var(--ink);
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .landing-hero,
  .demo-os-hero,
  .section-intro,
  .split-band {
    grid-template-columns: 1fr;
  }

  .flow-grid,
  .feature-grid,
  .demo-grid,
  .results-grid,
  .framework-grid,
  .stage-grid,
  .ecosystem-home-grid,
  .impact-landing-grid,
  .pricing-grid,
  .process-grid,
  .wine-capture-grid,
  .pipeline-board,
  .member-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .landing-menu {
    display: inline-flex;
  }

  .landing-links {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .landing-nav.menu-open .landing-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .landing-links button {
    text-align: left;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .landing-hero h1,
  .landing-section h1 {
    font-size: 3rem;
  }

  .flow-grid,
  .feature-grid,
  .demo-grid,
  .results-grid,
  .framework-grid,
  .stage-grid,
  .ecosystem-home-grid,
  .impact-landing-grid,
  .pricing-grid,
  .process-grid,
  .wine-dashboard-grid,
  .wine-capture-grid,
  .pipeline-board,
  .member-dashboard-grid,
  .field-grid,
  .choice-grid,
  .repeatable-row,
  .repeatable-row.three-col,
  .scale {
    grid-template-columns: 1fr;
  }

  .demo-os-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .demo-os-hero h1 {
    font-size: 3rem;
  }

  .timeline-list div {
    grid-template-columns: 1fr;
  }

  .problem-rating-row,
  .repeatable-header {
    display: grid;
    justify-items: stretch;
  }

  .score-row {
    grid-template-columns: 78px 1fr 38px;
  }

  .landing-footer {
    display: grid;
  }
}

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

.discovery-step {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.62);
}

.step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-heading span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
}

.step-heading h3 {
  margin: 0;
}

.choice-grid label,
.problem-rating-row {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 10px 12px;
}

.choice-grid input,
.radio-row input,
.rating-row input {
  width: auto;
}

.radio-row,
.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-row label,
.rating-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  cursor: pointer;
}

.rating-row label {
  min-width: 42px;
  justify-content: center;
}

.radio-row input,
.rating-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-row input:checked + span,
.rating-row input:checked + span {
  color: var(--brand);
  font-weight: 900;
}

.radio-row label:has(input:checked),
.rating-row label:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.problem-rating-grid {
  display: grid;
  gap: 10px;
}

.problem-rating-row strong,
.problem-rating-row span {
  display: block;
}

.problem-rating-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.problem-rating-row {
  align-items: flex-start;
}

.repeatable-block {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

.repeatable-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.repeatable-row {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.repeatable-row.three-col {
  grid-template-columns: minmax(0, 160px) minmax(0, 180px) minmax(0, 1fr) auto;
}

.btn.mini {
  min-height: 38px;
  padding: 8px 12px;
}

.module-recommendation-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: 18px;
}

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

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

.recommendation-savings div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 12px;
}

.recommendation-savings span,
.recommendation-savings p {
  color: var(--muted);
}

.recommendation-savings span {
  display: block;
  font-size: 0.88rem;
}

.recommendation-savings strong {
  display: block;
  font-size: 1.25rem;
  margin-top: 4px;
}

.recommendation-savings p {
  grid-column: 1 / -1;
  margin: 0;
}

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

.recommendation-columns li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding-top: 10px;
}

.recommendation-columns li span {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .choice-grid,
  .recommendation-columns,
  .recommendation-savings,
  .repeatable-row,
  .repeatable-row.three-col {
    grid-template-columns: 1fr;
  }

  .problem-rating-row,
  .repeatable-header {
    align-items: stretch;
    flex-direction: column;
  }
}
