/* Easy Startup — site styles. Desktop-first, adapts down. Light + dark via tokens. */

:root {
  --bg: #f6f5f1;
  --surface: #ffffff;
  --surface-2: #eeece6;
  --text: #15181c;
  --text-2: #464c55;
  --muted: #6f757f;
  --line: #dedbd3;
  --line-strong: #c9c5ba;
  --accent: #164a63;
  --accent-strong: #0f3547;
  --accent-soft: #e3edf2;
  --accent-text: #ffffff;
  --good: #2c6b4c;
  --warn: #8a5a12;
  --shadow: 0 1px 2px rgba(20, 24, 28, .06), 0 8px 24px -12px rgba(20, 24, 28, .18);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Noto Sans Arabic", sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Charter, Georgia, "Noto Naskh Arabic", serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --maxw: 1200px;
  --maxw-wide: 1360px;
  --prose: 68ch;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 6px;
  --radius-lg: 10px;
  --section: clamp(56px, 8vw, 112px);

  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #0f1214;
  --surface: #171b1f;
  --surface-2: #1f2429;
  --text: #e9e7e1;
  --text-2: #b7bcc4;
  --muted: #8b929c;
  --line: #2a3037;
  --line-strong: #3a424b;
  --accent: #7fb3d1;
  --accent-strong: #a7cde3;
  --accent-soft: #17303d;
  --accent-text: #0b1419;
  --good: #7fc7a1;
  --warn: #d9a75a;
  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 8px 24px -12px rgba(0, 0, 0, .6);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f1214;
    --surface: #171b1f;
    --surface-2: #1f2429;
    --text: #e9e7e1;
    --text-2: #b7bcc4;
    --muted: #8b929c;
    --line: #2a3037;
    --line-strong: #3a424b;
    --accent: #7fb3d1;
    --accent-strong: #a7cde3;
    --accent-soft: #17303d;
    --accent-text: #0b1419;
    --good: #7fc7a1;
    --warn: #d9a75a;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 8px 24px -12px rgba(0, 0, 0, .6);
    color-scheme: dark;
  }
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; text-underline-offset: .15em; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; color: var(--text); }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }
h4 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1em; }
ul, ol { padding-inline-start: 1.3em; margin: 0 0 1em; }
li { margin-bottom: .35em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
code, kbd { font-family: var(--font-mono); font-size: .9em; background: var(--surface-2); padding: .1em .35em; border-radius: 4px; }
table { border-collapse: collapse; width: 100%; font-size: .95rem; }
th, td { text-align: start; padding: .6em .75em; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 600; color: var(--text-2); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.table-wrap { overflow-x: auto; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; inset-inline-start: 8px; top: -60px; background: var(--accent); color: var(--accent-text); padding: .5em 1em; border-radius: var(--radius); z-index: 100; }
.skip-link:focus { top: 8px; }

/* ---------- layout ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--maxw-wide); }
.section { padding-block: var(--section); }
.section-tight { padding-block: calc(var(--section) * .6); }
.section + .section { padding-top: 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-alt + .section { padding-top: var(--section); }
.prose { max-width: var(--prose); }
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; }
.prose p, .prose li { color: var(--text); }
.prose blockquote { margin: 1.5em 0; padding-inline-start: 1.2em; border-inline-start: 3px solid var(--line-strong); color: var(--text-2); font-style: italic; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--text-2); max-width: 60ch; line-height: 1.55; }
.eyebrow { font-family: var(--font-sans); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .9em; }
.grid { display: grid; gap: clamp(20px, 2.5vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stack > * + * { margin-top: 1rem; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.tag { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .03em; padding: .2em .6em; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--text-2); background: transparent; }
.tag-good { color: var(--good); border-color: color-mix(in srgb, var(--good) 50%, transparent); }
.tag-warn { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 50%, transparent); }
.tag-accent { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 50%, transparent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .7em 1.25em; border-radius: var(--radius);
  font-weight: 600; font-size: .98rem; line-height: 1.2;
  border: 1px solid var(--line-strong); color: var(--text); background: var(--surface);
  cursor: pointer; text-decoration: none; transition: background .15s, border-color .15s, color .15s;
}
.btn:hover { text-decoration: none; border-color: var(--text-2); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--accent-text); }
.btn-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.btn-ghost { background: transparent; }
.btn-sm { padding: .5em .95em; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 64px; }
.brand { font-family: var(--font-serif); font-size: 1.25rem; color: var(--text); letter-spacing: -.01em; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand small { display: block; font-family: var(--font-sans); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }
.nav { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.6rem); }
.nav a { color: var(--text-2); font-weight: 500; font-size: .96rem; }
.nav a[aria-current="page"] { color: var(--text); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.nav a:hover { color: var(--text); text-decoration: none; }
.nav a.btn-primary, .nav a.btn-primary:hover { color: var(--accent-text); border-bottom: 1px solid var(--accent); padding-bottom: .5em; }
.header-tools { display: flex; align-items: center; gap: .5rem; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius); border: 1px solid var(--line); background: transparent; color: var(--text-2); cursor: pointer; }
.icon-btn:hover { border-color: var(--line-strong); color: var(--text); }
.icon-btn svg { width: 18px; height: 18px; }
.theme-toggle .sun, :root[data-theme="dark"] .theme-toggle .moon { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .moon { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .sun { display: block; }
}
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { padding-block: clamp(56px, 9vw, 128px) clamp(40px, 6vw, 88px); }
.hero h1 { max-width: 18ch; margin-bottom: .6em; }
.hero .lede { margin-bottom: 1.8em; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: end; }
.hero-aside { border-inline-start: 1px solid var(--line); padding-inline-start: clamp(20px, 3vw, 40px); color: var(--text-2); font-size: .98rem; }
.hero-aside dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .35em 1em; }
.hero-aside dt { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; padding-top: .15em; }
.hero-aside dd { margin: 0; }

/* ---------- proof strip ---------- */
.proof { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.proof > div { background: var(--surface); padding: 1.25rem 1.4rem; }
.proof strong { display: block; font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; line-height: 1.1; margin-bottom: .25em; }
.proof span { color: var(--muted); font-size: .9rem; }

/* ---------- cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; gap: .6rem; }
.card h3 { margin-bottom: .2em; }
.card p { color: var(--text-2); margin: 0; }
.card .card-foot { margin-top: auto; padding-top: 1rem; }
.card-link { transition: border-color .15s, box-shadow .15s; }
.card-link:hover { border-color: var(--line-strong); box-shadow: var(--shadow); }
.path-card { min-height: 100%; }
.path-card .eyebrow { margin-bottom: .4em; }
.path-card ul { margin: .4rem 0 0; padding-inline-start: 1.1em; color: var(--text-2); }
.path-card .btn { align-self: flex-start; }

/* ---------- steps / lists ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 2.5vw, 32px); }
.steps > div { position: relative; padding-top: 2.6rem; border-top: 1px solid var(--line); }
.steps > div::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; top: .6rem; inset-inline-start: 0; font-family: var(--font-serif); font-size: 1.4rem; color: var(--muted); }
.steps h3 { font-size: 1.15rem; }
.steps p { color: var(--text-2); font-size: .96rem; margin: 0; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.checklist li { padding-inline-start: 1.6em; position: relative; }
.checklist li::before { content: ""; position: absolute; inset-inline-start: 0; top: .55em; width: .9em; height: .9em; border-radius: 50%; border: 1.5px solid var(--good); background: linear-gradient(var(--good), var(--good)) center / 50% 50% no-repeat; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.2rem; }
.feature-list li strong { display: block; margin-bottom: .2em; }
.feature-list li { color: var(--text-2); }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.two-col-narrow { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
.sticky { position: sticky; top: 88px; }

/* ---------- package tables ---------- */
.packages { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 2.5vw, 32px); align-items: stretch; }
.package { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; }
.package .eyebrow { margin-bottom: .3em; }
.package h3 { margin-bottom: .3em; }
.package .duration { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }
.package ul { padding-inline-start: 1.1em; color: var(--text-2); margin: 0 0 1.2rem; }
.package .btn { margin-top: auto; align-self: flex-start; }
.package.featured { border-color: var(--accent); box-shadow: var(--shadow); }

/* ---------- cta band ---------- */
.cta-band { border-top: 1px solid var(--line); background: var(--surface); }
.cta-band .inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: center; padding-block: clamp(40px, 6vw, 80px); }
.cta-band h2 { margin-bottom: .3em; }
.cta-band p { color: var(--text-2); margin: 0; }
.cta-band .btn-row { justify-content: flex-end; }

/* ---------- forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field .hint { color: var(--muted); font-size: .85rem; margin: .3rem 0 0; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--text); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: var(--radius); padding: .65em .8em;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.field-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--text-2); }
.field-check input { margin-top: .3em; }
.form-status { font-size: .95rem; padding: .8em 1em; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.form-status.ok { border-color: var(--good); color: var(--good); }
.form-status.err { border-color: var(--warn); color: var(--warn); }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; opacity: 0; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); margin-top: var(--section); font-size: .93rem; color: var(--text-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 56px); padding-block: clamp(36px, 4vw, 56px) 1.5rem; }
.footer-grid h4 { margin: 0 0 .7rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .4rem; }
.footer-grid a { color: var(--text-2); }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem 1.5rem; padding-block: 1rem 1.6rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }

/* ---------- notice ---------- */
.notice { border: 1px solid var(--line-strong); border-inline-start: 4px solid var(--accent); background: var(--surface); padding: .9rem 1.1rem; border-radius: var(--radius); color: var(--text-2); font-size: .95rem; }
.notice strong { color: var(--text); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid-4, .proof, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; inset-inline: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: .5rem var(--gutter) 1rem; }
  .nav.open { display: flex; }
  .nav a { padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a[aria-current="page"] { border-bottom: 1px solid var(--line); color: var(--accent); }
  .nav .btn { margin-top: .8rem; justify-content: center; border-bottom: 1px solid var(--accent); }
  .hero-grid, .two-col, .two-col-narrow, .cta-band .inner { grid-template-columns: 1fr; }
  .hero-aside { border-inline-start: 0; border-top: 1px solid var(--line); padding-inline-start: 0; padding-top: 1.2rem; }
  .grid-2, .grid-3, .packages { grid-template-columns: 1fr; }
  .sticky { position: static; }
  .cta-band .btn-row { justify-content: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid-4, .proof, .steps, .footer-grid { grid-template-columns: 1fr; }
  .proof strong { font-size: 1.45rem; }
  .btn-row .btn { width: 100%; justify-content: center; }
}
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .theme-toggle { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- commercial model: ladder ---------- */
.ladder { display: flex; gap: 3px; margin: 1.5rem 0 1.2rem; border-radius: var(--radius-lg); overflow: hidden; }
.ladder-seg { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: .9rem .7rem; background: var(--accent-soft); color: var(--text); border-top: 4px solid var(--accent); }
.ladder-seg strong { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1; }
.ladder-seg span { font-size: .75rem; color: var(--text-2); line-height: 1.25; margin-top: .3rem; overflow: hidden; text-overflow: ellipsis; }
.ladder-seg.seg-transfer { background: var(--accent); color: var(--accent-text); border-top-color: var(--accent-strong); }
.ladder-seg.seg-transfer span { color: color-mix(in srgb, var(--accent-text) 80%, transparent); }
.ladder-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; counter-reset: step; }
.ladder-step { background: var(--surface); padding: 1.1rem 1.1rem 1.2rem; margin: 0; }
.ladder-step::before { counter-increment: step; content: "Stage " counter(step); display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.ladder-step .pct { font-family: var(--font-serif); font-size: 2rem; line-height: 1.1; margin: .2rem 0 .3rem; }
.ladder-step .pct span { font-size: 1rem; color: var(--muted); }
.ladder-step h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; margin-bottom: .3rem; }
.ladder-step p { font-size: .88rem; color: var(--text-2); margin: 0; }
.callout { background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); border-radius: var(--radius-lg); padding: clamp(20px, 2.4vw, 32px); }
.callout .eyebrow { color: var(--accent); }
.callout p:last-child { margin: 0; color: var(--text); }

/* ---------- retainer tiers ---------- */
.tiers { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.tiers th, .tiers td { padding: .9rem 1rem; }
.tiers thead th { background: var(--surface-2); text-transform: none; letter-spacing: 0; font-size: 1rem; color: var(--text); vertical-align: bottom; }
.tiers thead th:first-child { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.tier-head { width: 22%; }
.tier-name { display: block; font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; }
.tier-stack { display: block; font-size: .78rem; color: var(--accent); font-weight: 600; margin-top: .2rem; }
.tiers tbody th { font-weight: 500; text-transform: none; letter-spacing: 0; font-size: .96rem; color: var(--text); }
.tiers td.yes { color: var(--good); font-weight: 700; text-align: center; font-size: 1.1rem; }
.tiers td.yes.inherited { color: color-mix(in srgb, var(--good) 60%, transparent); }
.tiers td.no { color: var(--muted); text-align: center; }
.tiers tr.price td { background: var(--surface-2); vertical-align: top; }
.rules { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem 2rem; color: var(--text-2); font-size: .95rem; }
.rules li { padding-inline-start: 1.2em; position: relative; }
.rules li::before { content: "·"; position: absolute; inset-inline-start: .2em; font-weight: 700; color: var(--accent); }
.credits { font-size: .95rem; }
.credits th { font-size: .78rem; }

/* ---------- quote wizard ---------- */
.wizard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 2.6vw, 36px); }
.wizard-progress { height: 4px; background: var(--surface-2); border-radius: 2px; overflow: hidden; margin-bottom: .6rem; }
.wizard-progress span { display: block; height: 100%; width: 0; background: var(--accent); transition: width .3s; }
.wizard-title { font-size: clamp(1.4rem, 2vw, 1.8rem); margin: .2rem 0 .6rem; }
.options { display: grid; gap: .6rem; margin-top: 1rem; }
.option { display: flex; gap: .8rem; align-items: flex-start; padding: .85rem 1rem; border: 1px solid var(--line-strong); border-radius: var(--radius); cursor: pointer; background: var(--bg); transition: border-color .15s, background .15s; }
.option:hover { border-color: var(--accent); }
.option.on { border-color: var(--accent); background: var(--accent-soft); }
.option input { margin-top: .3em; flex: none; }
.option strong { display: block; font-weight: 600; }
.option small { display: block; color: var(--text-2); font-size: .88rem; margin-top: .1rem; }
.wizard-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.wizard-nav [data-next] { margin-inline-start: auto; }
.wizard .form-status { margin-top: 1rem; }
.result h2 { margin-top: 0; }
.estimate-head { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
.estimate-head > div { border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem; }
.estimate-head span { display: block; }
.estimate-head strong { display: block; font-family: var(--font-serif); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 500; line-height: 1.15; margin-top: .2rem; }
.estimate-table { font-size: .95rem; }
.estimate-table td { padding: .5rem .6rem; }
.estimate-table td.pct { color: var(--muted); width: 3.5em; }
.estimate-table td.num { text-align: end; white-space: nowrap; }
.result h3 { margin-top: 1.6rem; font-size: 1.1rem; }

@media (max-width: 1080px) {
  .ladder-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .ladder { flex-direction: column; gap: 2px; }
  .ladder-seg { flex-basis: auto !important; flex-direction: row; align-items: center; gap: .8rem; border-top: 0; border-inline-start: 4px solid var(--accent); }
  .ladder-seg strong { min-width: 3.2em; }
  .ladder-seg span { font-size: .9rem; margin: 0; }
  .rules, .estimate-head { grid-template-columns: 1fr; }
  .tiers { font-size: .9rem; min-width: 640px; }
}
@media (max-width: 520px) {
  .ladder-steps { grid-template-columns: 1fr; }
}
