/* ============================================================
   eslimbound.com - Fern Ledger
   Warm ledger paper, deep fern rules, rust action colour.
   Blocks: ribbon masthead hero sec facts price ledger qa rev foot dock
   ============================================================ */

:root {
    --paper:      #f5f2ea;
    --sheet:      #fffdf8;
    --tint:       #edeade;
    --ink:        #16201b;
    --ink-soft:   #4c574f;
    --fern:       #1d4636;
    --fern-deep:  #112b21;
    --moss:       #4d7c63;
    --rust:       #b0432a;
    --rust-deep:  #8d3320;
    --clay:       #8a6a3a;
    --rule:       #d5cfbe;
    --rule-soft:  #e6e1d3;
    --shell:      72rem;
    --step:       clamp(1.6rem, 4vw, 3.2rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Trispace", "Segoe UI", system-ui, sans-serif;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.68;
    letter-spacing: -0.004em;
}

body.has-dock { padding-bottom: 8.6rem; }

img { max-width: 100%; height: auto; }

a { color: var(--fern); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--rust); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }

h1, h2, h3, h4 {
    margin: 0 0 0.6rem;
    font-family: "Solway", Georgia, serif;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.015em;
    color: var(--fern-deep);
}

h1 { font-size: clamp(1.95rem, 4.6vw, 3.05rem); }
h2 { font-size: clamp(1.42rem, 3vw, 2.05rem); }
h3 { font-size: 1.16rem; }
h4 { font-size: 1rem; }

p, ul, ol, table { margin: 0 0 1rem; }

b, strong { font-weight: 700; }

.skip {
    position: absolute;
    left: -999px;
    padding: 0.7rem 1.1rem;
    background: var(--fern);
    color: #fff;
}
.skip:focus { left: 0.6rem; top: 0.6rem; z-index: 90; }

.wrap { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 1.15rem; }

/* ---------- ribbon + masthead ---------- */

.ribbon {
    background: var(--fern-deep);
    color: #dfe8de;
    font-size: 0.735rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.ribbon__inner { display: flex; gap: 0.55rem; align-items: center; justify-content: center; padding: 0.44rem 1.15rem; }
.ribbon__inner p { margin: 0; text-align: center; }
.ribbon__dot { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--rust); }

.masthead {
    position: relative;
    border-bottom: 1px solid var(--rule);
    background: var(--sheet);
}
.masthead__inner { display: flex; gap: 1rem; align-items: center; padding-top: 0.72rem; padding-bottom: 0.72rem; }

.brand { display: flex; gap: 0.6rem; align-items: center; margin-right: auto; text-decoration: none; }
.brand__mark { display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name { font-family: "Solway", Georgia, serif; font-size: 1.27rem; font-weight: 800; color: var(--fern-deep); }
.brand__sub { font-size: 0.63rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-soft); }

.nav { display: none; }
.nav__list { display: flex; gap: 1.15rem; margin: 0; padding: 0; list-style: none; }
.nav__link { font-size: 0.85rem; font-weight: 500; color: var(--ink); text-decoration: none; }
.nav__link:hover, .nav__link.is-on { color: var(--rust); }
.nav__link.is-on { text-decoration: underline; text-underline-offset: 5px; }

.nav__cta {
    display: none;
    padding: 0.52rem 0.98rem;
    border-radius: 2px;
    background: var(--rust);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
}
.nav__cta:hover { background: var(--rust-deep); color: #fff; }

.burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    width: 42px;
    height: 40px;
    padding: 0 9px;
    border: 1px solid var(--rule);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
}
.burger__bar { display: block; height: 2px; background: var(--fern-deep); }

.mobile {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    padding: 0.4rem 1.15rem 0.9rem;
    border-bottom: 1px solid var(--rule);
    background: var(--sheet);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
.mobile.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s; }
.mobile__link { padding: 0.62rem 0; border-bottom: 1px solid var(--rule-soft); font-size: 0.95rem; text-decoration: none; }

/* ---------- breadcrumb ---------- */

.crumb { border-bottom: 1px solid var(--rule-soft); background: var(--sheet); font-size: 0.78rem; }
.crumb__list { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0.55rem 0; list-style: none; }
.crumb__list li + li::before { margin-right: 0.45rem; color: var(--ink-soft); content: "/"; }
.crumb__list span { color: var(--ink-soft); }

/* ---------- hero ---------- */

.hero { border-bottom: 2px solid var(--fern); background: var(--sheet); }
.hero__grid { display: grid; gap: 1.7rem; align-items: center; padding: var(--step) 0; }
.hero__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--rust);
}
.hero__title { margin-bottom: 0.85rem; }
.hero__copy { min-width: 0; }
.hero__lede { max-width: 34rem; font-size: 1.06rem; color: var(--ink-soft); }
.hero__canon {
    max-width: 36rem;
    margin: 0 0 1.1rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--rust);
    background: var(--tint);
    font-size: 0.95rem;
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 1.15rem; padding: 0; list-style: none; }
.badge {
    padding: 0.24rem 0.6rem;
    border: 1px solid var(--rule);
    border-radius: 2px;
    background: var(--paper);
    font-size: 0.71rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.hero__art { position: relative; text-align: center; }
.hero__art img { display: block; width: 100%; max-width: 430px; margin: 0 auto; }
.hero__stamp {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.28rem 0.7rem;
    border: 1px dashed var(--moss);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--moss);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--rule);
}
.stat { padding: 0.9rem 0.4rem; border-bottom: 1px solid var(--rule-soft); text-align: center; }
.stat__num { display: block; font-family: "Solway", Georgia, serif; font-size: 1.5rem; font-weight: 800; color: var(--fern); }
.stat__lab { display: block; font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- sections ---------- */

.sec { padding: var(--step) 0; border-bottom: 1px solid var(--rule); }
.sec--tint { background: var(--tint); }
.sec--sheet { background: var(--sheet); }
.sec__head { max-width: 46rem; margin-bottom: 1.4rem; }
.sec__num {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    color: var(--rust);
}
.sec__intro { max-width: 44rem; color: var(--ink-soft); }
.sec__more { margin-top: 1.2rem; font-size: 0.92rem; }

.lede { max-width: 44rem; font-size: 1.05rem; }
.prose { max-width: 44rem; }
.prose h2 { margin-top: 1.9rem; }
.prose h3 { margin-top: 1.3rem; }
.prose ul, .prose ol { padding-left: 1.15rem; }
.prose li { margin-bottom: 0.4rem; }

/* ---------- tl;dr + takeaways ---------- */

.tldr { padding: 1rem 1.15rem; border: 1px solid var(--fern); border-left-width: 4px; background: var(--sheet); }
.tldr__label {
    margin: 0 0 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--fern);
}
.tldr__body { margin: 0; }

.take { padding: var(--step) 0; border-bottom: 1px solid var(--rule); background: var(--fern-deep); color: #e5ece3; }
.take h2 { color: #fff; }
.take__list { max-width: 46rem; margin: 0; padding: 0; list-style: none; counter-reset: keep; }
.take__list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 2.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    counter-increment: keep;
}
.take__list li::before {
    position: absolute;
    left: 0;
    font-family: "Solway", Georgia, serif;
    font-size: 0.86rem;
    color: var(--rust);
    content: counter(keep, decimal-leading-zero);
}
.take__list a { color: #fff; }

/* ---------- tables ---------- */

.tablewrap { overflow-x: auto; margin-bottom: 1rem; }

/* Tables reflow inside the viewport by default. Only the genuinely wide ones (the
   six-column price list, the four-column buyer checklist) opt into a min-width and
   scroll inside .tablewrap; everything else must fit a 360px phone without swiping. */
.facts, .ledger {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.ledger--wide { min-width: 34rem; }
.facts caption, .ledger caption {
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    color: var(--ink-soft);
}
.facts th, .ledger th, .facts td, .ledger td {
    padding: 0.62rem 0.8rem;
    border-bottom: 1px solid var(--rule);
    text-align: left;
    vertical-align: top;
}
.facts thead th, .ledger thead th {
    border-bottom: 2px solid var(--fern);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fern);
}
.facts tbody tr:nth-child(odd), .ledger tbody tr:nth-child(odd) { background: var(--sheet); }
.facts__k, .ledger__k { width: 38%; font-weight: 600; color: var(--fern-deep); }
.ledger__v { font-variant-numeric: tabular-nums; }
.ledger__na { color: var(--rust); font-weight: 600; }
.ledger tfoot td {
    border-bottom: 0;
    border-top: 2px solid var(--fern);
    background: var(--tint);
    font-size: 0.86rem;
}
.ledger__foot b { color: var(--rust); }

/* ---------- generic grid + cards ---------- */

.grid { display: grid; gap: 1rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

.card { padding: 1.1rem 1.15rem; border: 1px solid var(--rule); border-top: 3px solid var(--fern); background: var(--sheet); }
.card--flat { border-top-width: 1px; }
.card__eyebrow { margin: 0 0 0.3rem; font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--rust); }
.card p:last-child { margin-bottom: 0; }

/* ---------- pricing ---------- */

.prices { align-items: start; }
.price {
    padding: 1.1rem 1.15rem 1.3rem;
    border: 1px solid var(--rule);
    background: var(--sheet);
    text-align: center;
}
.price--best { border: 2px solid var(--fern); box-shadow: 0 2px 0 var(--rust); }
.price__head { padding-bottom: 0.6rem; border-bottom: 1px dashed var(--rule); }
.price__flag {
    display: inline-block;
    margin-bottom: 0.4rem;
    padding: 0.2rem 0.62rem;
    background: var(--fern);
    color: #fff;
    font-size: 0.67rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.price__qty { margin: 0; font-size: 1.28rem; }
.price__days { margin: 0; font-size: 0.8rem; color: var(--ink-soft); }
.price__art { display: block; width: 100%; max-width: 190px; margin: 0.6rem auto 0.3rem; }
.price__num { margin: 0; font-variant-numeric: tabular-nums; }
.price__num b { font-family: "Solway", Georgia, serif; font-size: 2.6rem; line-height: 1; color: var(--fern-deep); }
.price__per { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.price__was { margin: 0.45rem 0 0.75rem; font-size: 0.86rem; color: var(--ink-soft); }
.price__was s { color: var(--ink-soft); }
.price__total { margin: 0.7rem 0 0.15rem; font-size: 0.93rem; font-variant-numeric: tabular-nums; }
.price__ship { margin: 0 0 0.3rem; font-size: 0.83rem; color: var(--moss); font-weight: 600; }
.price__note { margin: 0 0 0.15rem; font-size: 0.78rem; color: var(--ink-soft); }
.price__guar { margin: 0.45rem 0 0; font-size: 0.76rem; color: var(--ink-soft); }
.price__foot { max-width: 44rem; margin-top: 1.2rem; font-size: 0.88rem; color: var(--ink-soft); }

.pill {
    display: inline-block;
    padding: 0.13rem 0.5rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.pill--save { background: var(--rust); color: #fff; }
.pill--ok { background: var(--moss); color: #fff; }

.savehead { margin-bottom: 0.4rem; }

/* ---------- buttons ---------- */

.btn {
    display: inline-block;
    padding: 0.72rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: "Trispace", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
}
.btn--buy { background: var(--rust); color: #fff; }
.btn--buy:hover { background: var(--rust-deep); color: #fff; }
.btn--ghost { border-color: var(--fern); background: transparent; color: var(--fern); }
.btn--ghost:hover { background: var(--fern); color: #fff; }
.btn--wide { display: block; width: 100%; }

/* ---------- steps + numbered blocks ---------- */

.steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps__item {
    position: relative;
    padding: 0.95rem 0 0.95rem 3.1rem;
    border-bottom: 1px solid var(--rule);
    counter-increment: step;
}
.steps__item::before {
    position: absolute;
    top: 0.95rem;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid var(--fern);
    font-family: "Solway", Georgia, serif;
    font-size: 0.86rem;
    color: var(--fern);
    content: counter(step, decimal-leading-zero);
}
.steps__item h3 { margin-bottom: 0.25rem; }
.steps__item p:last-child { margin-bottom: 0; }

/* ---------- q and a ---------- */

.qa { max-width: 46rem; }
.qa__item { padding: 1rem 0; border-bottom: 1px solid var(--rule); }
.qa__q { margin-bottom: 0.35rem; font-size: 1.08rem; }
.qa__a { margin: 0; }
.qa__a + .qa__a { margin-top: 0.6rem; }

/* ---------- reviews ---------- */

.ratingbig { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: baseline; padding-bottom: 0.6rem; }
.ratingbig__num { font-family: "Solway", Georgia, serif; font-size: 3.6rem; font-weight: 800; line-height: 1; color: var(--fern); }
.ratingbig__meta { font-size: 0.92rem; color: var(--ink-soft); }
.stars { color: var(--rust); letter-spacing: 0.1em; }

.snap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); }
.snap__item { padding: 0.9rem 0.8rem; background: var(--sheet); }
.snap__num { display: block; font-family: "Solway", Georgia, serif; font-size: 1.6rem; font-weight: 700; color: var(--fern-deep); }
.snap__lab { display: block; font-size: 0.74rem; letter-spacing: 0.05em; color: var(--ink-soft); }

.bars { margin: 0; padding: 0; list-style: none; }
.bar { display: grid; grid-template-columns: 8.6rem 1fr 3.2rem; gap: 0.6rem; align-items: center; margin-bottom: 0.42rem; font-size: 0.86rem; }
.bar__lab { color: var(--ink-soft); }
.bar__track { height: 9px; background: var(--rule-soft); }
.bar__fill { display: block; height: 9px; background: var(--moss); }
.bar__fill--alt { background: var(--clay); }
.bar__val { font-variant-numeric: tabular-nums; text-align: right; }

.rev { padding: 1.05rem 1.1rem; border: 1px solid var(--rule); border-left: 3px solid var(--moss); background: var(--sheet); }
.rev--low { border-left-color: var(--clay); }
.rev__head { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: baseline; margin-bottom: 0.35rem; }
.rev__name { font-family: "Solway", Georgia, serif; font-weight: 700; }
.rev__meta { font-size: 0.78rem; color: var(--ink-soft); }
.vbadge { padding: 0.1rem 0.42rem; background: var(--tint); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--moss); }
.rev__body { margin: 0; font-size: 0.94rem; }

/* ---------- references, byline, notes ---------- */

.byline { margin: 0 0 1.15rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--rule); font-size: 0.82rem; color: var(--ink-soft); }
.ref-mark { font-size: 0.66rem; }
.ref-mark a { text-decoration: none; }
.refs { padding: var(--step) 0; border-bottom: 1px solid var(--rule); background: var(--tint); }
/* Bare source URLs have no break opportunities and push the page sideways on a phone. */
.refs__list { max-width: 48rem; margin: 0; padding: 0; list-style: none; font-size: 0.85rem; overflow-wrap: anywhere; }
.refs__list li { margin-bottom: 0.5rem; padding-left: 2.4rem; text-indent: -2.4rem; }
.refs__n { display: inline-block; width: 2rem; color: var(--rust); font-weight: 600; }
.refs__list cite { font-style: italic; }

.inline { font-weight: 600; white-space: normal; }
.note { padding: 0.9rem 1.05rem; border: 1px dashed var(--rule); background: var(--sheet); font-size: 0.88rem; }
.note--warn { border-color: var(--rust); }
.disc { max-width: 46rem; margin-top: 1.2rem; font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- cta band ---------- */

.ctaband { padding: var(--step) 0; border-bottom: 1px solid var(--rule); background: var(--sheet); text-align: center; }
.ctaband__inner { max-width: 40rem; margin: 0 auto; }
.ctaband__row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1rem; }
.ctaband__trust { margin-top: 1rem; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- form ---------- */

.form { max-width: 34rem; }
.form__row { margin-bottom: 0.8rem; }
.form__row label { display: block; margin-bottom: 0.25rem; font-size: 0.83rem; font-weight: 600; }
.form__row input, .form__row textarea, .form__row select {
    width: 100%;
    min-height: 44px;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--rule);
    border-radius: 2px;
    background: var(--sheet);
    font-family: inherit;
    font-size: 0.94rem;
}
.form__row textarea { min-height: 8rem; }

/* ---------- footer ---------- */

.foot { padding: var(--step) 0 1.6rem; background: var(--fern-deep); color: #ccd8cd; font-size: 0.88rem; }
.foot a { color: #eef3ec; text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot__grid { display: grid; gap: 1.5rem; }
.foot__brandline { margin: 0 0 0.4rem; font-family: "Solway", Georgia, serif; font-size: 1.35rem; font-weight: 800; color: #fff; }
.foot__col { min-width: 0; }
.foot__co p { margin-bottom: 0.55rem; }
.foot__addr { font-size: 0.82rem; line-height: 1.75; }
.foot__h { margin-bottom: 0.55rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: #9fbaa6; }
.foot__list { margin: 0; padding: 0; list-style: none; }
.foot__list li { margin-bottom: 0.32rem; }
.foot__legal { margin-top: 1.7rem; padding-top: 1.1rem; border-top: 1px solid rgba(255, 255, 255, 0.16); font-size: 0.78rem; color: #a8bcac; }
.updated { margin-top: 1.4rem; font-size: 0.78rem; letter-spacing: 0.05em; color: #9fbaa6; }

/* ---------- rebrand bridge (continue.html) ---------- */

body.is-bare { padding-bottom: 0; }

.bridge {
    display: grid;
    min-height: 100vh;
    padding: 2rem 1.3rem;
    place-items: center;
    background: var(--tint);
}
.bridge__card {
    width: 100%;
    max-width: 39rem;
    padding: 2.1rem 1.9rem;
    border: 1px solid var(--rule);
    border-top: 4px solid var(--fern);
    background: var(--sheet);
    text-align: center;
}
.bridge__flag {
    display: inline-block;
    margin-bottom: 1.1rem;
    padding: 0.28rem 0.8rem;
    background: var(--rust);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.bridge__card h1 { margin-bottom: 0.85rem; font-size: clamp(1.5rem, 4.2vw, 2.05rem); }
.bridge__lede { max-width: 46ch; margin: 0 auto 1.35rem; color: var(--ink-soft); }
.bridge__shot { margin: 0 auto 1.25rem; }
.bridge__shot img { width: min(230px, 62vw); }
.bridge__same {
    max-width: 44ch;
    margin: 0 auto 1.6rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--rule);
    background: var(--paper);
    font-size: 0.93rem;
    text-align: left;
}
.bridge__same li { margin-bottom: 0.3em; }
.bridge__same li:last-child { margin-bottom: 0; }
.bridge__foot { margin: 1.1rem 0 0; font-size: 0.8rem; color: var(--ink-soft); }
.bridge__foot a { color: var(--ink-soft); }

/* ---------- sticky offer dock ---------- */

.dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    border-top: 2px solid var(--rust);
    background: var(--fern-deep);
    color: #eef3ec;
}
.dock__inner { display: flex; gap: 0.55rem; align-items: center; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.dock__link { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-right: auto; color: inherit; text-decoration: none; }
.dock__long { display: none; }
.dock__chip {
    padding: 0.24rem 0.6rem;
    background: var(--rust);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: dockpulse 2.6s ease-in-out infinite;
}
.dock__msg { font-size: 0.86rem; }
.dock__msg b { color: #fff; }
.dock__cta { padding: 0.46rem 0.95rem; border: 1px solid #eef3ec; border-radius: 2px; font-size: 0.83rem; font-weight: 600; }
.dock__link:hover .dock__cta { background: #eef3ec; color: var(--fern-deep); }
.dock__x {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 2px;
    background: transparent;
    color: #eef3ec;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}
.dock.is-gone { display: none; }

@keyframes dockpulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.66; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .dock__chip { animation: none; }
    .mobile { transition: none; }
}

/* ---------- breakpoints ---------- */

@media (max-width: 39.99rem) {
    .facts, .ledger { font-size: 0.83rem; }
    .facts th, .ledger th, .facts td, .ledger td { padding: 0.5rem 0.5rem; }
    .facts__k, .ledger__k { width: 42%; }
    .bar { grid-template-columns: 7rem 1fr 2.6rem; gap: 0.45rem; font-size: 0.79rem; }
    .dock__msg { font-size: 0.79rem; line-height: 1.35; }
    .dock__chip { padding: 0.2rem 0.45rem; font-size: 0.7rem; }
    .dock__cta { padding: 0.4rem 0.7rem; font-size: 0.78rem; }
}

@media (min-width: 40rem) {
    body.has-dock { padding-bottom: 5.6rem; }
    .dock__long { display: inline; }
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
    .hero__stats { grid-template-columns: repeat(4, 1fr); }
    .snap { grid-template-columns: repeat(4, 1fr); }
    .foot__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 60rem) {
    body { font-size: 17px; }
    .nav { display: block; }
    .nav__cta { display: inline-block; }
    .burger { display: none; }
    .mobile { display: none; }
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .hero__grid { grid-template-columns: 1.08fr 0.92fr; gap: 2.6rem; }
    .foot__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}
