:root {
  color-scheme: light;
  --navy: #023347;
  --navy-2: #0a465d;
  --ink: #17262d;
  --muted: #5d6c75;
  --teal: #087985;
  --teal-2: #0d97a3;
  --mist: #e9f7f7;
  --mist-2: #f4fbfb;
  --line: #d5e3e6;
  --line-strong: #b9d0d5;
  --paper: #f4f8f9;
  --white: #fff;
  --gold: #a67312;
  --gold-soft: #fff8e8;
  --shadow-sm: 0 1px 2px rgb(3 51 71 / .05), 0 8px 24px rgb(3 51 71 / .05);
  --shadow-md: 0 18px 55px rgb(3 51 71 / .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; }

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 1rem/1.5 Inter, "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
  overflow-wrap: break-word;
}

.page-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgb(13 151 163 / .12), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgb(2 51 71 / .08), transparent 30rem),
    linear-gradient(rgb(255 255 255 / .76), rgb(244 248 249 / .94)),
    linear-gradient(rgb(8 121 133 / .045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(8 121 133 / .045) 1px, transparent 1px);
  background-size: auto, auto, auto, 32px 32px, 32px 32px;
}

button, input, select { font: inherit; }
button { min-height: 44px; cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid #c58b19; outline-offset: 3px; }
a { color: var(--navy); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; top: -80px; }
.skip:focus { top: 8px; left: 8px; background: #fff; z-index: 50; padding: 12px 16px; border-radius: 9px; }
[hidden] { display: none !important; }

.labs-navigation {
  position: relative;
  z-index: 12;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-color: rgb(3 51 71 / .1);
  background: rgb(255 255 255 / .86);
  backdrop-filter: blur(16px);
  font-family: inherit;
  font-size: .8125rem;
}
.labs-navigation a { display: inline-flex; align-items: center; padding: 5px 9px; border-radius: 7px; text-decoration: none; }
.labs-navigation a:hover { background: var(--mist); }
.labs-navigation a[aria-current="page"] { background: var(--navy); color: #fff; }

.shell { position: relative; width: min(calc(100% - 28px), 940px); min-width: 0; margin: 26px auto 64px; }
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgb(255 255 255 / .8);
  border-radius: 22px 22px 0 0;
  background: rgb(255 255 255 / .82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.masthead-brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.masthead img { width: 142px; height: auto; }
.masthead span { padding-left: 16px; border-left: 1px solid var(--line); color: var(--teal); font-size: .6875rem; font-weight: 750; letter-spacing: .14em; white-space: nowrap; }

.builder-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 14px 14px;
  border: 1px solid rgb(255 255 255 / .8);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background: rgb(255 255 255 / .82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.builder-steps a { display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 42px; border-radius: 9px; color: var(--muted); font-size: .75rem; font-weight: 650; text-decoration: none; transition: background .16s ease, color .16s ease, transform .16s ease; }
.builder-steps a:hover { background: var(--mist); color: var(--navy); transform: translateY(-1px); }
.builder-steps span { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid var(--line); border-radius: 999px; color: var(--teal); font-size: .625rem; }

.totalbar {
  position: sticky;
  top: 10px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 16px 0 18px;
  padding: 15px 18px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #0b4d63);
  box-shadow: var(--shadow-md);
  color: #fff;
}
.totalbar::after { position: absolute; right: -40px; top: -70px; width: 180px; height: 180px; border: 28px solid rgb(255 255 255 / .045); border-radius: 50%; content: ""; pointer-events: none; }
.tb-main { display: flex; align-items: baseline; gap: 13px; flex-wrap: wrap; min-width: 0; }
.tb-label { color: #aed0db; font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.tb-total { font-size: clamp(1.65rem, 5vw, 2.15rem); line-height: 1; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }
.tb-toggle { position: relative; z-index: 1; min-height: 38px; padding: 7px 12px; border: 1px solid rgb(255 255 255 / .24); border-radius: 8px; background: rgb(255 255 255 / .08); color: #e8f7fb; font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.tb-toggle:hover { border-color: rgb(255 255 255 / .5); background: rgb(255 255 255 / .14); color: #fff; }
.tb-detail { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding-top: 12px; border-top: 1px solid rgb(255 255 255 / .16); font-size: .875rem; font-variant-numeric: tabular-nums; }
.tb-detail span { padding: 9px 10px; border-radius: 8px; background: rgb(255 255 255 / .065); }
.tb-detail i { display: block; color: #9fc4d1; font-size: .625rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }

main { display: grid; gap: 18px; }
section { position: relative; min-width: 0; padding: clamp(24px, 5vw, 38px); overflow: hidden; border: 1px solid rgb(185 208 213 / .72); border-radius: 22px; background: rgb(255 255 255 / .94); box-shadow: var(--shadow-sm); scroll-margin-top: 108px; }
section::before { position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-2), transparent 72%); content: ""; opacity: .78; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 14px; color: var(--teal); font-size: .6875rem; font-weight: 750; letter-spacing: .13em; }
.eyebrow b { display: grid; width: 29px; height: 29px; place-items: center; flex-shrink: 0; border: 1px solid #b7d6da; border-radius: 8px; background: var(--mist-2); letter-spacing: 0; box-shadow: inset 0 0 0 1px rgb(255 255 255 / .7); }
h1, h2 { max-width: 650px; margin: 0 0 22px; color: var(--navy); font-size: clamp(1.65rem, 5vw, 2.15rem); font-weight: 680; letter-spacing: -.045em; line-height: 1.08; }
h3 { margin: 0; color: var(--navy); font-size: 1.125rem; letter-spacing: -.025em; }
.hint, .assumption { margin: 17px 0 0; color: var(--muted); font-size: .875rem; }
.hint { display: flex; gap: 8px; align-items: flex-start; padding: 11px 13px; border: 1px solid #d9eaec; border-radius: 10px; background: var(--mist-2); }
.hint::before { color: var(--teal); content: "i"; font-weight: 800; }
.micro { margin: 13px 0 0; color: #829298; font-size: .6875rem; letter-spacing: .07em; text-transform: uppercase; }
.empty { margin: 0; padding: 25px; color: var(--muted); font-size: .9375rem; text-align: center; }

.offer-grid { display: grid; gap: 12px; }
.offer { position: relative; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto auto 1fr; gap: 5px 12px; min-height: 176px; padding: 16px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 1px 1px rgb(3 51 71 / .03); color: var(--ink); text-align: left; transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease, background .16s ease; }
.offer:hover { border-color: #9dcdd1; box-shadow: 0 12px 26px rgb(3 51 71 / .09); transform: translateY(-2px); }
.offer[aria-pressed="true"] { border-color: var(--teal); background: linear-gradient(145deg, #fff, var(--mist-2)); box-shadow: 0 0 0 2px rgb(8 121 133 / .11), 0 13px 28px rgb(3 51 71 / .08); }
.offer-icon { display: grid; grid-row: 1 / span 3; width: 42px; height: 42px; place-items: center; border: 1px solid #d4e7e9; border-radius: 11px; background: var(--mist-2); color: var(--teal); }
.offer-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.offer-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.offer-badge { padding: 3px 7px; border: 1px solid #dbe7e9; border-radius: 999px; background: #f5f8f9; color: var(--muted); font-size: .625rem; font-weight: 750; letter-spacing: .08em; }
.offer[aria-pressed="true"] .offer-badge { border-color: #b8dfe1; background: var(--mist); color: var(--teal); }
.offer-tick { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid var(--line); border-radius: 999px; color: transparent; font-size: .75rem; font-weight: 800; }
.offer[aria-pressed="true"] .offer-tick { border-color: var(--teal); background: var(--teal); color: #fff; }
.offer strong { color: var(--navy); font-size: 1.0625rem; letter-spacing: -.025em; line-height: 1.25; }
.offer-tag { color: var(--muted); font-size: .8125rem; line-height: 1.4; }
.offer-price { grid-column: 1 / -1; align-self: end; padding-top: 13px; border-top: 1px solid #edf2f3; color: var(--navy); font-size: .9375rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.offer-price i { color: var(--muted); font-size: .75rem; font-style: normal; font-weight: 450; }

.qgroup { margin-bottom: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, #fff, #fbfdfd); }
.qgroup:last-child { margin-bottom: 0; }
.qgroup-inc { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 20px; }
.qgroup-inc span { padding: 4px 8px; border: 1px solid #d6e9eb; border-radius: 999px; background: var(--mist-2); color: var(--teal); font-size: .6875rem; font-weight: 650; }
.qblock { margin-bottom: 22px; }
.qblock:last-child { margin-bottom: 0; }
.qlabel { display: block; margin-bottom: 10px; color: var(--navy); font-size: .875rem; font-weight: 700; }
.qlabel i { color: var(--muted); font-size: .8125rem; font-style: normal; font-weight: 450; }
.opts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.opt { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 3px 10px; min-width: 0; min-height: 64px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--navy); text-align: left; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
.opt:hover { border-color: #9dcdd1; background: #fcfefe; }
.opt[aria-pressed="true"], .opt[aria-checked="true"] { border-color: var(--teal); background: var(--mist-2); box-shadow: inset 0 0 0 1px rgb(8 121 133 / .15); }
.opt-l { align-self: end; font-size: .875rem; font-weight: 650; line-height: 1.25; }
.opt-n { align-self: start; color: var(--muted); font-size: .6875rem; line-height: 1.35; }
.opt-n.is-paid { color: var(--gold); font-weight: 700; }
.control-mark { display: grid; grid-column: 2; grid-row: 1 / span 2; width: 20px; height: 20px; place-items: center; align-self: center; border: 1px solid var(--line-strong); border-radius: 6px; color: transparent; font-size: .6875rem; font-weight: 800; }
.opt[role="radio"] .control-mark { border-radius: 999px; }
.opt[aria-pressed="true"] .control-mark, .opt[aria-checked="true"] .control-mark { border-color: var(--teal); background: var(--teal); color: #fff; }

.range-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
input[type="range"] { width: 100%; min-width: 0; height: 32px; margin: 0; appearance: none; background: transparent; cursor: pointer; }
input[type="range"]::-webkit-slider-runnable-track { height: 6px; border-radius: 999px; background: linear-gradient(90deg, #a8dadd, #dce9eb); }
input[type="range"]::-moz-range-track { height: 6px; border-radius: 999px; background: linear-gradient(90deg, #a8dadd, #dce9eb); }
input[type="range"]::-webkit-slider-thumb { width: 20px; height: 20px; margin-top: -7px; appearance: none; border: 3px solid #fff; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 1px var(--teal), 0 3px 8px rgb(3 51 71 / .2); }
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border: 3px solid #fff; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 1px var(--teal), 0 3px 8px rgb(3 51 71 / .2); }
.range-row output { min-width: 4.5em; padding: 5px 8px; border-radius: 7px; background: var(--mist); color: var(--navy); font-size: 1rem; font-weight: 750; font-variant-numeric: tabular-nums; letter-spacing: -.025em; text-align: center; }
.pilot-note, .pilot-banner { margin: 0 0 16px; padding: 12px 14px; border: 1px solid #ead49e; border-left: 4px solid var(--gold); border-radius: 10px; background: var(--gold-soft); color: #684b17; font-size: .875rem; }
.pilot-banner { margin: 14px; }

.buy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.buy { display: grid; grid-template-columns: 1fr auto; gap: 3px 10px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.buy-bar { grid-column: 1 / -1; height: 6px; margin-bottom: 7px; overflow: hidden; border-radius: 4px; background: #e9f0f1; }
.buy-bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal), var(--teal-2)); transition: width .25s; }
.buy strong { grid-column: 2; grid-row: 2 / span 2; align-self: center; color: var(--navy); font-size: 1.35rem; font-variant-numeric: tabular-nums; letter-spacing: -.045em; line-height: 1; }
.buy-l { color: var(--navy); font-size: .8125rem; font-weight: 700; }
.buy-n { color: var(--muted); font-size: .6875rem; }

.quote-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .875rem; }
th, td { padding: 12px 14px; border-bottom: 1px solid #e8eff0; text-align: left; vertical-align: top; }
thead { background: #f5f9fa; }
thead th { color: var(--muted); font-size: .625rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
tbody tr:hover { background: var(--mist-2); }
td.n { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
td.lab { color: var(--navy); font-weight: 700; }
.row-note { display: block; margin-top: 3px; color: var(--muted); font-size: .6875rem; font-weight: 450; }
tfoot { background: #f1f7f8; }
tfoot td { border-bottom: 0; border-top: 2px solid var(--navy); color: var(--navy); font-weight: 750; }
tbody tr:last-child td { border-bottom: 0; }

.controls { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.primary-button, .ghost-button { min-height: 46px; padding: 11px 18px; border-radius: 10px; font-size: .875rem; font-weight: 700; transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.primary-button { border: 1px solid var(--teal); background: var(--teal); box-shadow: 0 7px 16px rgb(8 121 133 / .2); color: #fff; }
.primary-button:hover { background: #066b75; box-shadow: 0 9px 20px rgb(8 121 133 / .25); transform: translateY(-1px); }
.ghost-button { border: 1px solid var(--line); background: #fff; color: var(--navy); }
.ghost-button:hover { border-color: var(--teal); background: var(--mist-2); }
.closing { padding: 22px 4px; font-size: .875rem; }
.closing a { display: inline-flex; min-height: 44px; align-items: center; padding: 0 12px; border-radius: 8px; font-weight: 650; text-decoration: none; }
.closing a:hover { background: rgb(255 255 255 / .8); }

@media (min-width: 620px) { .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 820px) {
  .buy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .buy:last-child:nth-child(3n + 2) { grid-column: span 2; }
}
@media (max-width: 640px) {
  html { scroll-padding-top: 100px; }
  .labs-navigation { display: flex; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; }
  .labs-navigation a { flex: 0 0 auto; }
  .shell { width: min(calc(100% - 18px), 940px); margin-top: 12px; }
  .masthead { padding: 18px; }
  .masthead-brand { width: 100%; justify-content: space-between; gap: 10px; }
  .masthead span { padding-left: 10px; }
  .builder-steps { grid-template-columns: repeat(5, 84px); justify-content: start; overflow-x: auto; padding-inline: 8px; }
  .builder-steps a { flex-direction: column; gap: 3px; min-height: 52px; font-size: .6875rem; }
  .totalbar { top: 7px; padding: 13px 14px; }
  .tb-detail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  section { padding: 24px 18px; border-radius: 18px; }
  .opts, .buy-grid { grid-template-columns: 1fr; }
  .offer { min-height: 0; }
  .range-row { gap: 8px; padding-inline: 10px; }
  .controls > button { flex: 1 1 140px; }
}
@media (max-width: 380px) {
  .shell { width: calc(100% - 12px); }
  .masthead img { width: 126px; }
  .masthead span { font-size: .6rem; }
  .totalbar { grid-template-columns: 1fr; }
  .tb-toggle { justify-self: start; }
  section { padding-inline: 14px; }
  .offer { grid-template-columns: 36px 1fr; padding: 13px; }
  .offer-icon { width: 36px; height: 36px; }
  .qgroup { padding: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* ---- tier ladder ---- */
.tier-grid { display: grid; gap: 12px; }
@media (min-width: 620px) { .tier-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }
.tier-card { border: 1px solid var(--line, #cbdfe2); border-radius: 13px; background: #fff; padding: 14px 16px; }
.tier-card h3 { font-size: .9375rem; margin: 0 0 12px; color: var(--navy, #023347); letter-spacing: -.01em; }
.tier-row { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; align-items: baseline; padding: 8px 0; border-top: 1px solid #eef3f4; }
.tier-row:first-of-type { border-top: 0; }
.tier-bar { grid-column: 1 / -1; height: 5px; background: #eef4f5; border-radius: 3px; overflow: hidden; margin-bottom: 5px; }
.tier-bar i { display: block; height: 100%; background: #b9d0d4; }
.tier-row.is-on .tier-bar i { background: var(--teal, #087985); }
.tier-n { font-size: .8125rem; color: var(--muted, #566570); }
.tier-row strong { font-size: .9375rem; color: var(--navy, #023347); font-variant-numeric: tabular-nums; }
.tier-row.is-on .tier-n, .tier-row.is-on strong { color: var(--teal, #087985); font-weight: 700; }
.tier-note { margin: 12px 0 0; font-size: .75rem; color: var(--muted, #566570); }
.opts.is-tiers .opt { flex: 1 1 90px; text-align: center; }
.opts.is-tiers .opt-l { font-variant-numeric: tabular-nums; }

/* ---- row-wise quote ---- */
.lines { display: grid; gap: 14px; }
.line-group { border: 1px solid var(--line, #cbdfe2); border-radius: 13px; background: #fff; padding: 14px 16px; }
.line-group h3 { font-size: .9375rem; margin: 0 0 4px; color: var(--navy, #023347); letter-spacing: -.01em; }
.line {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 10px 0; border-top: 1px solid #eef3f4;
}
.line-l { display: grid; gap: 2px; font-size: .9375rem; color: var(--ink, #17262d); min-width: 0; }
.line-l i {
  font-style: normal; font-size: .75rem; color: var(--muted, #566570); line-height: 1.3;
}
.line b {
  font-size: 1rem; color: var(--navy, #023347);
  font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 700;
}
.line.is-sub { border-top: 1px solid var(--line, #cbdfe2); margin-top: 2px; }
.line.is-sub .line-l { font-weight: 700; color: var(--navy, #023347); }
.grand {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: var(--navy, #023347); color: #fff; border-radius: 13px; padding: 16px 18px;
}
.grand span { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: #9fc4d1; font-weight: 650; }
.grand strong {
  font-size: 2.25rem; line-height: 1; letter-spacing: -.05em; font-variant-numeric: tabular-nums;
}

/* ---- upgrade ladder ---- */
.ladder { display: grid; gap: 10px; align-items: stretch; margin-bottom: 14px; }
@media (min-width: 720px) { .ladder { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; } }
.ladder-arrow { display: none; color: #9dcdd1; font-size: 1.25rem; text-align: center; }
@media (min-width: 720px) { .ladder-arrow { display: block; } }
.standalones { display: grid; gap: 10px; }
@media (min-width: 560px) { .standalones { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); } }
.offer.is-step[aria-pressed="true"] { border-color: var(--teal, #087985); }
.offer.is-carried { opacity: .92; }
.offer.is-carried .offer-badge { background: var(--teal, #087985); color: #fff; }
.offer.is-carried .offer-tag { color: var(--teal, #087985); font-weight: 650; }

/* The offer grid now holds two rows of its own, so it stops being a grid. */
.offer-grid { display: block; }
@media (min-width: 620px) { .offer-grid { grid-template-columns: none; } }

/* Ladder becomes a row earlier, since the builder is often read at half width. */
@media (min-width: 560px) {
  .ladder { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; }
  .ladder-arrow { display: grid; place-items: center; align-self: center; }
  .ladder .offer { padding: 12px; }
  .ladder .offer strong { font-size: .9375rem; letter-spacing: -.02em; }
  .ladder .offer-tag { font-size: .75rem; }
  .ladder .offer-icon { width: 30px; height: 30px; }
}

/* Step cards are narrow, so the icon sits above the text rather than beside
   it, with the tick opposite. */
.ladder .offer { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: 9px; }
.ladder .offer-icon { grid-row: 1; grid-column: 1; justify-self: start; }
.ladder .offer-top { grid-row: 1; grid-column: 1; justify-self: end; align-self: center; }
.ladder .offer strong, .ladder .offer-tag { grid-column: 1; }
.offer.is-carried .offer-tag { color: var(--muted); font-weight: 450; }

/* Standalones share the step row's three-up rhythm. */
@media (min-width: 560px) { .standalones { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Three-up standalones are as narrow as the steps, so they stack the same way. */
@media (min-width: 560px) {
  .standalones .offer { grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; row-gap: 9px; }
  .standalones .offer-icon { grid-row: 1; grid-column: 1; justify-self: start; }
  .standalones .offer-top { grid-row: 1; grid-column: 1; justify-self: end; align-self: center; }
  /* The row already says these stand alone, so the badge would only crowd the icon. */
  .standalones .offer-badge { display: none; }
  .standalones .offer strong, .standalones .offer-tag { grid-column: 1; }
}

/* ---- lead capture ---- */
.lead-fields { display: grid; gap: 10px; margin-top: 18px; }
@media (min-width: 520px) { .lead-fields { grid-template-columns: 1fr 1fr; } }
.lead-fields label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: .8125rem;
  font-weight: 650;
}
.lead-fields input {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 400;
}
.lead-fields input:focus { border-color: var(--teal); outline: 3px solid #c58b19; outline-offset: 2px; }
.lead-fields input::placeholder { color: #9aa9af; }
.saved-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--mist-2);
  color: var(--muted);
  font-size: .8125rem;
}
.link-button {
  min-height: 32px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--teal);
  font-size: .8125rem;
  font-weight: 650;
  text-decoration: underline;
  cursor: pointer;
}
.link-button:hover { color: var(--navy); }
.link-button.is-danger { color: #9d3027; }
