/* Lead-magnet pages (scorecard, leaks guide, apply, stats) + shared components.
   Builds on the Workshop tokens in styles.css. */

.funnel {
  min-height: calc(100vh - var(--header-h));
  background: var(--bone);
}

.funnel__wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 4.5rem) var(--gutter) 5rem;
}

.funnel__wrap--wide {
  max-width: 68rem;
}

.funnel h1 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(2.5rem, 6.4vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--graphite);
  text-wrap: balance;
}

.funnel h2 {
  margin: 0 0 0.6rem;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--graphite);
  text-wrap: balance;
}

.funnel h3 {
  margin: 0 0 0.4rem;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--graphite);
}

.lede {
  margin: 1.25rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  color: var(--muted);
  max-width: 38rem;
}

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

.promise {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--graphite);
}

.promise li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.75rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-2);
}

.promise li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45em;
  width: 0.75rem;
  height: 2px;
  background: var(--ember);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 2rem;
}

button[data-action="start"] {
  width: min(100%, 24rem);
  min-height: 4.25rem;
  padding: 0 2.25rem;
  font-size: 1.25rem;
}

button[data-action="start"]::after {
  position: relative;
  top: -0.06em;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.fine {
  font-size: 0.9rem;
  color: var(--muted);
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

button.btn {
  font-family: inherit;
}

.byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--rule);
}

.byline img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.byline p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.byline strong {
  color: var(--graphite);
  font-weight: 600;
}

/* Two-column funnel intro with an illustration */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.intro-grid__media {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

/* Steps */
.step[hidden] {
  display: none !important;
}

.progress {
  position: sticky;
  top: var(--header-h);
  z-index: 5;
  margin: 0 calc(var(--gutter) * -1) 1.75rem;
  padding: 0.85rem var(--gutter);
  background: rgba(245, 243, 238, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.progress__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.progress__bar {
  height: 4px;
  background: var(--stone);
  border-radius: 2px;
  overflow: hidden;
}

.progress__fill {
  height: 100%;
  width: 0;
  background: var(--graphite);
  border-right: 4px solid var(--ember);
  transition: width 0.35s var(--ease);
}

/* Form fields */
.field {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.field > span,
.field legend {
  font-weight: 600;
  color: var(--graphite);
  font-size: 1rem;
  padding: 0;
}

.field small {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 400;
}

fieldset.field {
  border: 0;
  padding: 0;
  margin-inline: 0;
  min-width: 0;
}

.input,
select.input {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  color: var(--graphite);
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--radius);
  appearance: none;
  transition: border-color 0.15s var(--ease);
}

.input:hover {
  border-color: var(--muted-2);
}

select.input {
  background-image: linear-gradient(45deg, transparent 50%, var(--graphite) 50%),
    linear-gradient(135deg, var(--graphite) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.input:focus {
  outline: 2px solid var(--ember);
  outline-offset: 1px;
  border-color: var(--graphite);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  position: relative;
}

.chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--rule-2);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 0.95rem;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
}

.chip:hover span {
  border-color: var(--graphite);
}

.chip input:checked + span {
  background: var(--graphite);
  border-color: var(--graphite);
  color: var(--bone);
  font-weight: 600;
}

.chip input:focus-visible + span {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Questions */
.area-head {
  margin: 0 0 0.5rem;
}

.area-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.q {
  margin: 1.1rem 0 0;
  padding: 1.25rem 1.25rem 1.35rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s var(--ease);
}

.q.is-answered {
  border-color: var(--rule-2);
  box-shadow: inset 3px 0 0 var(--ember);
}

.q legend,
fieldset.field legend {
  float: left;
  width: 100%;
}

.q legend + *,
fieldset.field legend + * {
  clear: both;
}

.q legend {
  font-weight: 500;
  color: var(--graphite);
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 0.9rem;
  padding: 0;
}

.scale {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.scale .chip span {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 0.88rem;
  padding-inline: 0.4rem;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.error {
  margin: 1rem 0 0;
  color: #9b2c12;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Gate */
.gate {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}

.gate__teaser {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 1.1rem 0 0.5rem;
  padding: 1rem 1.1rem;
  background: var(--stone-2);
  border-radius: var(--radius);
}

.gate__score {
  font-weight: 600;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--graphite);
  flex-shrink: 0;
}

.blur {
  filter: blur(7px);
  user-select: none;
}

/* Results */
.score-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--graphite);
  color: var(--bone);
  border-radius: var(--radius-lg);
}

.score-hero h1,
.score-hero h2 {
  color: var(--bone);
}

.score-hero .lede,
.score-hero .muted {
  color: #d6d2c9;
}

.score-hero .eyebrow {
  color: #a9a59c;
}

.dial {
  position: relative;
  width: clamp(8.5rem, 26vw, 11rem);
  aspect-ratio: 1;
}

.dial svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dial__track {
  stroke: #3a3b3d;
}

.dial__value {
  stroke: var(--ember);
  transition: stroke-dashoffset 1.1s var(--ease);
}

.dial__num {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.dial__num strong {
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bone);
}

.dial__num span {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #a9a59c;
  margin-top: 0.35rem;
}

.band {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ember);
}

.cost {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.cost > div {
  padding: 1.25rem 1.35rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}

.cost strong {
  display: block;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--graphite);
}

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

.areas {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.areas li {
  display: grid;
  grid-template-columns: minmax(9rem, 13rem) 1fr 3rem;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.97rem;
}

.areas__bar {
  height: 10px;
  background: var(--stone);
  border-radius: 5px;
  overflow: hidden;
}

.areas__bar i {
  display: block;
  height: 100%;
  background: var(--graphite);
  border-radius: 5px;
  transition: width 0.9s var(--ease);
}

.areas li.is-weak .areas__bar i {
  background: var(--ember);
}

.areas li.is-weak > span:first-child {
  font-weight: 600;
}

.areas b {
  text-align: right;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  color: var(--graphite);
  font-weight: 500;
}

.leak-card {
  margin-top: 1rem;
  padding: 1.4rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 3px 0 var(--ember);
}

.leak-card p {
  margin: 0.45rem 0 0;
  color: var(--ink-2);
}

.leak-card .label {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--ember-deep);
}

.offer {
  margin-top: 2.5rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  background: var(--graphite);
  color: #d6d2c9;
  border-radius: var(--radius-lg);
}

.offer h2,
.offer h3,
.offer strong {
  color: var(--bone);
}

.offer .eyebrow,
.offer .fine,
.offer .muted {
  color: #a9a59c;
}

.offer a:not(.btn) {
  color: var(--bone);
  text-decoration-color: var(--ember);
}

.offer .btn--primary {
  background: var(--bone);
  color: var(--graphite);
}

.offer .btn--primary:hover {
  background: #fff;
}

.offer .btn--ghost {
  color: var(--bone);
  border-color: rgba(245, 243, 238, 0.3);
}

.offer .btn--ghost:hover {
  border-color: var(--bone);
}

.offer .field > span,
.offer .field legend,
.offer .check-field {
  color: var(--bone);
}

.offer .field small {
  color: #a9a59c;
}

.offer .input {
  background: #242526;
  border-color: #3a3b3d;
  color: var(--bone);
}

.offer .input:focus {
  border-color: var(--bone);
}

.offer ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.offer li + li {
  margin-top: 0.45rem;
}

.offer p + p {
  margin-top: 0.8rem;
}

.offer--candid {
  background: var(--paper);
  color: var(--ink-2);
  border: 1px solid var(--rule-2);
}

.offer--candid h2,
.offer--candid h3,
.offer--candid strong {
  color: var(--graphite);
}

.offer--candid .eyebrow,
.offer--candid .fine,
.offer--candid .muted {
  color: var(--muted);
}

.offer--candid a:not(.btn) {
  color: var(--graphite);
}

.offer--candid .btn--primary {
  background: var(--graphite);
  color: var(--bone);
}

.offer--candid .btn--primary:hover {
  background: var(--ink-2);
}

.offer--candid .btn--ghost {
  color: var(--graphite);
  border-color: var(--rule-2);
}

.slots {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--ink-2);
}

.slots::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ember);
}

.offer .slots {
  color: #d6d2c9;
  border-color: rgba(245, 243, 238, 0.25);
}

.offer--candid .slots {
  color: var(--ink-2);
  border-color: var(--rule-2);
}

.slots[hidden] {
  display: none;
}

.assumptions {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.assumptions summary {
  cursor: pointer;
  color: var(--graphite);
  text-decoration: underline;
  text-decoration-color: var(--ember);
  text-underline-offset: 0.2em;
}

.section-gap {
  margin-top: 3rem;
}

/* Guide content */
.guide article {
  padding: 2rem 0;
  border-top: 1px solid var(--rule-2);
}

.guide article:first-of-type {
  border-top: 2px solid var(--graphite);
  margin-top: 2rem;
}

.guide .num {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ember-deep);
  margin-bottom: 0.5rem;
}

.guide p {
  margin: 0.7rem 0 0;
  color: var(--ink-2);
}

.guide dl {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

.guide dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--muted);
}

.guide dd {
  margin: 0.2rem 0 0;
  color: var(--graphite);
}

.check {
  margin-top: 1.25rem;
  padding: 0.95rem 1.1rem;
  background: var(--stone-2);
  border-radius: var(--radius);
  box-shadow: inset 3px 0 0 var(--ember);
  font-size: 0.97rem;
}

/* Homepage tool card */
.tool {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s var(--ease);
}

.tool:hover {
  border-color: var(--graphite);
}

.tool picture {
  display: block;
}

.tool__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.tool__body {
  padding-right: clamp(0rem, 3vw, 2rem);
}

.tool h3 {
  margin: 0 0 0.85rem;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--graphite);
  text-wrap: balance;
}

.tool p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.tool__go {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--graphite);
  text-decoration: underline;
  text-decoration-color: var(--ember);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.3em;
}

.tool__go::after {
  content: "→";
  color: var(--ember);
}

/* Stats */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}

.table-scroll {
  overflow-x: auto;
}

.stats-table th,
.stats-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--rule);
  text-align: right;
  white-space: nowrap;
}

.stats-table th:first-child,
.stats-table td:first-child {
  text-align: left;
}

.stats-table th {
  font-family: var(--mono);
  color: var(--muted);
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--graphite);
}

.stats-table td.best {
  color: var(--ember-deep);
  font-weight: 700;
}

/* ==========================================================================
   Scorecard v2: options, recognition, archetype, filter
   ========================================================================== */

.familiar {
  margin-top: 2.25rem;
  padding: 1.35rem 1.5rem;
  background: var(--stone-2);
  border-radius: var(--radius-lg);
}

.familiar .eyebrow {
  color: var(--muted);
}

.familiar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.familiar li {
  font-family: var(--serif);
  color: var(--graphite);
  font-size: 1.15rem;
  line-height: 1.4;
}

.opts {
  display: grid;
  gap: 0.45rem;
}

.opt {
  position: relative;
  display: block;
}

.opt input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.opt span {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 50px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--rule-2);
  border-radius: var(--radius);
  background: var(--bone);
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.4;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}

.opt span::before {
  content: "";
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  border: 1.5px solid var(--muted-2);
}

.opt:hover span {
  border-color: var(--graphite);
}

.opt input:checked + span {
  border-color: var(--graphite);
  background: #fff;
  color: var(--graphite);
  box-shadow: inset 0 0 0 1px var(--graphite);
}

.opt input:checked + span::before {
  border-color: var(--graphite);
  background: radial-gradient(circle, var(--ember) 0 42%, transparent 48%);
}

.opt input:focus-visible + span {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

.archetype {
  font-size: clamp(2.25rem, 5.4vw, 3.5rem) !important;
  margin-top: 0.1rem !important;
}

.archetype__line {
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink-2);
}

.score-hero .archetype__line {
  color: #d6d2c9;
}

.archetype__trap {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.score-hero .archetype__trap {
  color: #a9a59c;
}

.archetype__trap strong {
  color: var(--ember-deep);
}

.score-hero .archetype__trap strong {
  color: var(--ember);
}

.mirror {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--graphite);
}

.mirror li {
  position: relative;
  padding: 1rem 0 1rem 2.25rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  color: var(--graphite);
  font-size: 1.15rem;
  line-height: 1.4;
}

.mirror li::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 0.6rem;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--ember);
}

.mirror--small li {
  padding: 0.7rem 0 0.7rem 1.35rem;
  font-family: var(--font);
  font-size: 0.98rem;
}

.mirror--small li::before {
  content: "";
  top: 1.25rem;
  width: 0.6rem;
  height: 2px;
  background: var(--graphite);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.tiles > div {
  padding: 1.25rem 1.35rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}

.tiles strong {
  display: block;
  font-weight: 600;
  font-size: clamp(1.9rem, 4.8vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--graphite);
  margin-bottom: 0.35rem;
}

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

textarea.input {
  min-height: 5.75rem;
  resize: vertical;
  line-height: 1.5;
}

.check-field {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.35rem;
  color: var(--ink-2);
  font-size: 0.97rem;
  cursor: pointer;
}

.check-field input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--ember);
}

.apply .field > span {
  font-weight: 500;
}

/* Offer: stack, promise, quote */
.contact__stack {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  border-top: 1px solid var(--graphite);
  max-width: 38rem;
}

.contact__stack li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.6rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-2);
}

.contact__stack li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45em;
  width: 0.7rem;
  height: 2px;
  background: var(--ember);
}

.contact__promise,
.guarantee {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: inset 3px 0 0 var(--ember);
  color: var(--ink-2);
}

.contact__promise strong,
.guarantee strong {
  color: var(--graphite);
}

.contact__side .contact__promise {
  margin-top: 0;
}

.contact__quote {
  margin: 2rem 0 0;
  padding: 0;
}

.contact__quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--graphite);
}

.contact__quote cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--muted);
}

.offer__quote {
  margin: 1.75rem 0 0;
  padding: 0 0 0 1.25rem;
  border-left: 2px solid var(--ember);
}

.offer__quote blockquote {
  margin: 0;
}

.offer__quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--graphite);
}

.offer .offer__quote p {
  color: var(--bone);
}

.offer--candid .offer__quote p {
  color: var(--graphite);
}

.offer__quote figcaption {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.offer .offer__quote figcaption {
  color: #a9a59c;
}

/* Media */
.sample-shot,
.cover-shot,
.media-shot {
  margin: 2rem 0 0;
}

.sample-shot img,
.cover-shot img,
.media-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.sample-shot img {
  border: 1px solid var(--rule);
}

.sample-shot figcaption,
.media-shot figcaption {
  margin-top: 0.65rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--muted);
}

.cover-shot {
  max-width: 300px;
}

.testimonial figcaption:has(.testimonial__photo) {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 0.9rem;
  align-items: center;
}

.testimonial__photo {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.9);
}

/* ==========================================================================
   Responsive + print
   ========================================================================== */

@media (max-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid__media {
    position: static;
    max-width: 26rem;
  }

  .tool {
    grid-template-columns: 1fr;
  }

  .tool picture {
    max-width: 22rem;
  }
}

@media (max-width: 680px) {
  .score-hero {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cost,
  .tiles {
    grid-template-columns: 1fr;
  }

  .areas li {
    grid-template-columns: 1fr 2.5rem;
    gap: 0.35rem 0.75rem;
  }

  .areas li > span:first-child {
    grid-column: 1 / -1;
  }

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

  .step-nav .btn {
    flex: 1;
  }

  .cta-row .btn {
    width: 100%;
  }
}

@media print {
  .site-header,
  .site-footer,
  .offer .cta-row,
  .progress {
    display: none !important;
  }

  body,
  .funnel {
    background: #fff !important;
    color: #111 !important;
  }

  .score-hero,
  .offer {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #ccc;
  }

  .score-hero *,
  .offer * {
    color: #111 !important;
  }
}

/* Split funnel: wide two-column intro, narrow steps after it */
.funnel__wrap--split {
  max-width: 76rem;
}

.funnel__wrap--split > .step:not([data-step="intro"]) {
  max-width: 48rem;
  margin-inline: auto;
}

.funnel__wrap--split .intro-grid > div:first-child {
  max-width: 44rem;
}

.cover-shot.intro-grid__media {
  max-width: none;
  margin: 0;
}

.intro-grid__media.shot {
  margin: 0;
}

.media-shot--banner {
  margin: 2rem 0 0;
  max-width: 26rem;
}
