/* ==========================================================================
   Analytics CC — site.css (Design System v1)

   Source of truth: Branding/NewDesignSystem/design/Design System.dc.html.
   Montserrat only (400–800). Nine colors, no others. Hard rules instead of
   shadows, square corners everywhere except pills.

   Reflow: two-column bands are wrapping flex rows whose children carry a
   flex-basis, so they stack when the content runs out of room rather than
   at a device width. No media queries; side padding scales with clamp().

   Rule weights: 3px ink between sections, 2px ink above a figure pair,
   1px #E0E0E0 hairline for everything else.
   ========================================================================== */

:root {
    --ink: #414042;
    --body: #5C5558;
    --muted: #6E6669;
    --rule: #E0E0E0;
    --panel: #F8F9FA;
    --plum: #8B1A5C;
    --mid: #A9216E;
    --magenta: #EC008C;
    --pale: #F5B8D9;
    --white: #FFFFFF;
    --plum-rule: rgba(255, 255, 255, 0.28);
    --plum-line: rgba(255, 255, 255, 0.5);

    /* Side padding: 40px section bodies, 34px filled panels, 26px cells */
    --gut: clamp(20px, 4.2vw, 40px);
    --gut-panel: clamp(20px, 3.6vw, 34px);
    --gut-cell: clamp(20px, 3vw, 26px);
    --gut-nav: clamp(16px, 2.6vw, 30px);
}

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

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

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Montserrat, sans-serif;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--mid); text-decoration: none; }
a:hover { color: var(--magenta); }

/* Links inside running text carry an underline as well as color, so they
   don't rely on the mid/body color difference alone (WCAG 1.4.1). */
.prose a, .lead a, .cell__text a, .side-item__text a, .case__block a, .doc p a, .doc li a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
:focus-visible { outline: 2px solid var(--magenta); outline-offset: 2px; }

/* Zero-specificity resets so component classes always win */
:where(.site) :where(h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote) { margin: 0; }
:where(.site) :where(h1, h2, h3, h4) { font-weight: inherit; font-size: inherit; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 10;
    background: var(--ink);
    color: var(--white);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
}
.skip-link:focus { left: 8px; color: var(--white); }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

/* The 1180px container with 1px side rules. overflow-x: clip trims the
   extra pixel that card rows push past the right edge (see .cells). */
.site {
    max-width: 1180px;
    margin: 0 auto;
    border-left: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
    color: var(--ink);
    overflow-x: clip;
}

.pretty { text-wrap: pretty; }

/* Numeral ramp: 01 plum, middle mid, last ink */
.c-plum { color: var(--plum); }
.c-mid { color: var(--mid); }
.c-ink { color: var(--ink); }
.c-signal { color: var(--magenta); }

/* ---------- Section rules ---------- */
.rule-top { border-top: 3px solid var(--ink); }
.hair-top { border-top: 1px solid var(--rule); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 20px;
    padding: 16px var(--gut-nav);
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
}
.nav__logo { display: block; }
.nav__logo img { width: 190px; height: auto; display: block; }
.nav__links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pill {
    display: inline-block;
    border: 1px solid var(--ink);
    border-radius: 999px;
    white-space: nowrap;
    padding: 8px 17px;
    color: var(--ink);
}
.pill:hover { border-color: var(--magenta); color: var(--magenta); }
.pill[aria-current="page"] { border-width: 2px; padding: 7px 16px; font-weight: 700; }
.pill[aria-current="page"]:hover { border-color: var(--plum); color: var(--plum); }
/* Resting fill is plum, not magenta: white on #EC008C is 4.25:1, under AA for 11px. */
.pill--cta { border: 0; padding: 9px 19px; background: var(--plum); color: var(--white); font-weight: 700; }
.pill--cta:hover,
.pill--cta:focus-visible { background: var(--ink); color: var(--white); }

/* Phones: once the links drop below the logo, lay them out as an even
   two-column grid with "Book a call" full width, instead of ragged rows.
   (The only media query in the system; flex-wrap alone can't equalize.) */
@media (max-width: 600px) {
    .nav { padding-bottom: 18px; }
    .nav > nav { flex: 1 1 100%; }
    .nav__links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .nav__links .pill { display: block; text-align: center; }
    .nav__links li:last-child { grid-column: 1 / -1; }
}

/* ==========================================================================
   Buttons — actions are square, navigation is round
   ========================================================================== */
.btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 16px 26px;
    font-family: inherit;
    cursor: pointer;
}
.btn-primary { background: var(--plum); color: var(--white); border: 0; }
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--ink); color: var(--white); }
.btn-secondary { color: var(--ink); border: 1px solid var(--ink); padding: 15px 25px; background: transparent; }
.btn-secondary:hover { border-color: var(--magenta); color: var(--magenta); }
/* Sits on plum bands (.book, .plum). A plum fill would vanish into the band.
   Hover stays off magenta (white on #EC008C is 4.25:1) and off ink (ink on
   plum is 1.18:1, so the control disappears). Pale on plum is 5.31:1. */
.btn-light { background: var(--white); color: var(--plum); padding: 16px 28px; }
.btn-light:hover,
.btn-light:focus-visible { background: var(--pale); color: var(--plum); }
.btn-light:focus-visible { outline-color: var(--white); }
.btn-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn-row--calc { margin-top: 26px; }

.link-caps {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
}
.link-caps:hover { color: var(--magenta); }

.link-on-plum {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid var(--plum-line);
    padding-bottom: 3px;
}
.link-on-plum:hover { color: var(--white); border-color: var(--white); }
.link-on-plum--bold { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; padding-bottom: 4px; align-self: flex-start; }

/* ==========================================================================
   Labels
   ========================================================================== */
/* Full-width label band: "Four ways in", "What you get" */
.band-label {
    padding: 14px var(--gut);
    border-bottom: 1px solid var(--rule);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum);
}
.band-label--panel { background: var(--panel); }
.band-label--cell { padding-left: var(--gut-cell); padding-right: var(--gut-cell); }
.band-label--wide { padding-left: var(--gut-panel); padding-right: var(--gut-panel); }

/* Kicker above a heading or figure pair */
.kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
}
.kicker--sm { font-size: 10px; }
.kicker--quiet { color: var(--muted); letter-spacing: 0.16em; }
.kicker--band { font-size: 10px; letter-spacing: 0.2em; }

/* "01  SERVICE" eyebrow on page heads */
.eyebrow { display: flex; align-items: baseline; gap: 12px; }
.eyebrow__num { font-size: 13px; font-weight: 800; }
.eyebrow__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ==========================================================================
   Split bands: main column + side column
   ========================================================================== */
.split { display: flex; flex-wrap: wrap; }
.split--top { align-items: flex-start; }

.split__main {
    flex: 1.35 1 470px;
    min-width: 0;
    padding: 40px var(--gut) 38px;
}
/* The second column carries the dividing rule and overlaps the first by
   1px, so when the band stacks the rule falls on the container's own
   border and never doubles. */
.split__side {
    flex: 1 1 330px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--panel);
    border-left: 1px solid var(--rule);
    margin-left: -1px;
}
.split__side--white { background: var(--white); }
.split__side--plum { background: var(--plum); border-left-color: var(--plum); }

/* Page heads */
.page-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-top: 14px;
    text-wrap: pretty;
}
.page-title--flush { margin-top: 0; }
.hero-title {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 520px;
    color: var(--ink);
    text-wrap: pretty;
}
.standfirst {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--ink);
    margin-top: 16px;
    max-width: 520px;
    text-wrap: pretty;
}
.lead {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    margin-top: 14px;
    max-width: 520px;
    text-wrap: pretty;
}

/* Side column items */
.side-item {
    padding: 20px var(--gut-cell);
    border-bottom: 1px solid var(--rule);
}
.side-item--white { background: var(--white); }
.side-item__title { font-size: 14px; font-weight: 700; color: var(--ink); }
.side-item__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--body);
    margin-top: 6px;
    text-wrap: pretty;
}
.side-foot {
    padding: 18px var(--gut-cell);
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.side-foot__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
.side-foot__row { display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: baseline; }
.side-foot__strong { font-size: 15px; font-weight: 800; color: var(--ink); }
.side-foot__sub { font-size: 13px; font-weight: 600; color: var(--body); }

/* At a glance: label left, value right */
.glance {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    flex-wrap: wrap;
    padding: 20px var(--gut-cell);
    border-bottom: 1px solid var(--rule);
}
.glance--white { background: var(--white); }
.glance dt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.glance dd { margin-left: auto; text-align: right; }
.glance__value { font-size: 19px; font-weight: 800; color: var(--ink); }
.glance__stack { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.glance__strong { font-size: 15px; font-weight: 700; color: var(--ink); }
.glance__strong--sm { font-size: 14px; }
.glance__sub { font-size: 12px; font-weight: 500; line-height: 1.5; color: var(--body); }
.glance__gap { margin-top: 5px; }

/* ==========================================================================
   Plum panel — one per page, the sentence you'd want remembered
   ========================================================================== */
.plum {
    background: var(--plum);
    padding: 24px var(--gut-cell);
    color: var(--white);
}
.split__side > .plum { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.plum__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pale);
}
.plum__text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--white);
    margin-top: 11px;
    text-wrap: pretty;
}

/* ==========================================================================
   Figure pair — before in quiet grey, arrow at ink, after in signal
   ========================================================================== */
.pair { margin-top: 28px; border-top: 2px solid var(--ink); padding-top: 20px; }
.pair__row { display: flex; align-items: baseline; gap: 20px; margin-top: 12px; flex-wrap: wrap; }
.pair__before, .pair__after {
    font-size: clamp(40px, 10.5vw, 58px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
}
.pair__before { color: var(--muted); }
.pair__after { color: var(--magenta); }
.pair__arrow { font-size: 34px; font-weight: 600; line-height: 1; color: var(--ink); }
.pair__caption {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--muted);
    margin-top: 12px;
    max-width: 420px;
}

/* Homepage hero scale */
.pair--lg { padding-top: 22px; }
.pair--lg .pair__row { gap: 22px; margin-top: 14px; flex-wrap: nowrap; }
.pair--lg .pair__before, .pair--lg .pair__after { font-size: clamp(28px, 9vw, 62px); white-space: nowrap; }
.pair--lg .pair__arrow { font-size: 38px; }

/* Words rather than numbers ("Proprietary tech → Now yours") */
.pair--words .pair__row { gap: 18px; margin-top: 14px; }
.pair--words .pair__before, .pair--words .pair__after {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.015em;
}
.pair--words .pair__arrow { font-size: 30px; }
.pair--words .pair__caption { margin-top: 13px; max-width: 440px; }

/* A statement in place of a pair (About) */
.pair__statement {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    margin-top: 14px;
    max-width: 480px;
    text-wrap: pretty;
}
.pair__note {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    margin-top: 12px;
    max-width: 470px;
    text-wrap: pretty;
}

/* ==========================================================================
   Ledger — evidence in series; values weld into a group pinned right
   ========================================================================== */
.ledger { margin-top: 28px; border-top: 1px solid var(--rule); }
.ledger__row {
    display: flex;
    align-items: baseline;
    gap: 14px 20px;
    padding: 13px 0 12px;
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
}
.ledger__row--head {
    padding: 10px 0 9px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.ledger__item { flex: 1 1 150px; min-width: 0; font-size: 14px; font-weight: 500; color: var(--ink); }
.ledger__row--head .ledger__item { font-size: inherit; font-weight: inherit; color: inherit; }
.ledger__vals { display: flex; align-items: baseline; gap: 14px; flex: none; margin-left: auto; }
.ledger__before, .ledger__after { width: 88px; text-align: right; line-height: 1; }
.ledger__before { font-size: 18px; font-weight: 700; color: var(--muted); }
.ledger__after { font-size: 21px; font-weight: 800; color: var(--ink); }
.ledger__arrow { width: 18px; text-align: center; font-size: 15px; font-weight: 600; color: var(--ink); }
.ledger__row--head .ledger__before, .ledger__row--head .ledger__after { font-size: inherit; font-weight: inherit; color: inherit; line-height: inherit; }

/* ==========================================================================
   Statement band: big sentence left, prose right
   ========================================================================== */
.statement {
    padding: 46px var(--gut) 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 26px 40px;
}
.statement--problem { padding: 38px var(--gut) 36px; }
.statement__head { flex: 1 1 360px; min-width: 0; }
.statement__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.24;
    color: var(--ink);
    text-wrap: pretty;
}
.statement__title--sm { font-size: 28px; margin-top: 14px; }
.statement__body { flex: 1 1 360px; min-width: 0; }
.statement--problem .statement__head,
.statement--problem .statement__body { flex-basis: 340px; }

.prose p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--body);
    text-wrap: pretty;
}
.prose p + p { margin-top: 16px; }
.prose--tight p + p { margin-top: 14px; }
.prose strong { font-weight: 600; color: var(--ink); }

/* ==========================================================================
   Section intro: heading + sentence above a row of cells
   ========================================================================== */
.intro { padding: 32px var(--gut) 8px; }
.intro--home { padding: 34px var(--gut) 10px; }
.intro__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    max-width: 640px;
    color: var(--ink);
    text-wrap: pretty;
}
.intro__title--wide { max-width: 680px; }
.intro__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    margin-top: 12px;
    max-width: 600px;
    text-wrap: pretty;
}

/* ==========================================================================
   Card rows — flex, never grid auto-fit. The row is 1px wider than its
   parent so the last column's right rule lands under the parent's edge.
   Any parent that isn't full-bleed needs .clip.
   ========================================================================== */
.clip { overflow: hidden; }
.cells { display: flex; flex-wrap: wrap; margin-right: -1px; }
.cells--ruled { border-top: 1px solid var(--rule); margin-top: 24px; }
.cells--ruled-home { border-top: 1px solid var(--rule); margin-top: 26px; }

.cell {
    flex: 1 1 300px;
    min-width: 0;
    padding: 24px 30px 28px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.cell--4 { flex-basis: 260px; }
.cell--3 { flex-basis: 220px; }
.cell--phase { flex-basis: 260px; padding: 24px 26px 26px; }
.cell--tier { flex-basis: 220px; padding: 24px 28px 26px; }
.cell--panel { background: var(--panel); }
.cell__title { font-size: 16px; font-weight: 700; color: var(--ink); }
.cell__title--sm { font-size: 15px; }
.cell__title--xs { font-size: 14px; }
.cell__text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--body);
    margin-top: 8px;
    text-wrap: pretty;
}
.cell__text--tight { margin-top: 7px; }

.phase__head { display: flex; align-items: baseline; gap: 9px; }
.phase__num { font-size: 17px; font-weight: 800; line-height: 1; }
.phase__num--lg { font-size: 19px; }
.phase__when {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.phase__when--end { color: var(--plum); }
.cell--phase .cell__title { margin-top: 11px; }
.cell--phase .cell__text { margin-top: 7px; line-height: 1.6; }

.tier__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.tier__price { font-size: 17px; font-weight: 800; color: var(--ink); }
.cell--tier .cell__text { margin-top: 9px; line-height: 1.6; }

/* ==========================================================================
   Listed rows — services, phases, anything priced
   ========================================================================== */
.listed__row {
    display: flex;
    align-items: flex-start;
    gap: 16px 30px;
    padding: 26px var(--gut);
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
}
.listed__row--panel { background: var(--panel); }
.listed__num { font-size: 13px; font-weight: 800; width: 26px; flex: none; }
.listed__body { flex: 1 1 240px; min-width: 0; }
.listed__title { font-size: 20px; font-weight: 700; color: var(--ink); }
.listed__title a { color: var(--ink); }
.listed__title a:hover { color: var(--magenta); }
.listed__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--body);
    margin-top: 8px;
    max-width: 560px;
    text-wrap: pretty;
}
.listed__price { text-align: right; min-width: 130px; margin-left: auto; }
.listed__amount { font-size: 17px; font-weight: 800; color: var(--ink); }
.listed__unit {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 5px;
}

/* ==========================================================================
   Proof band — plum story left, "On record" figures right
   ========================================================================== */
.proof { display: flex; flex-wrap: wrap; }
.proof__story {
    flex: 1 1 360px;
    min-width: 0;
    background: var(--plum);
    padding: 34px var(--gut-panel) 30px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}
.proof__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pale);
}
.proof__body { flex: 1; display: flex; align-items: center; padding: 18px 0; }
.proof__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
    text-wrap: pretty;
}
.proof__metric { font-size: 26px; font-weight: 800; color: var(--white); line-height: 1.1; }
.proof__note { font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--pale); }

.proof__record {
    flex: 1.1 1 400px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.proof__record .band-label { padding-left: var(--gut-panel); padding-right: var(--gut-panel); }

/* Figure cells: a number and the sentence that qualifies it */
.figs { display: flex; flex-wrap: wrap; flex: 1; margin-right: -1px; }
.fig {
    flex: 1 1 max(40%, 190px);
    min-width: 0;
    padding: 22px var(--gut-cell);
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.fig__num {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1;
}
.fig__num--signal { color: var(--magenta); }
.fig__text {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--body);
    margin-top: 9px;
}
.figs--compact .fig { padding: 20px 24px; }
.figs--compact .fig__num { font-size: 28px; }
.figs--compact .fig__text { margin-top: 8px; }

/* Provenance: sits under every On record grid. Figures without it don't ship. */
.provenance {
    padding: 20px var(--gut-cell);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--muted);
}
.provenance--row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}
.provenance--row > p { max-width: 380px; }
.provenance--ruled { padding: 18px 26px; border-bottom: 1px solid var(--rule); }

/* Homepage case carousel */
.carousel__ticks { display: flex; gap: 5px; margin-bottom: 22px; }
.carousel__tick {
    flex: 1;
    padding: 7px 0;
    border: 0;
    background: none;
    cursor: pointer;
}
.carousel__tick span { display: block; height: 3px; background: rgba(255, 255, 255, 0.3); }
.carousel__tick[aria-current="true"] span { background: var(--white); }
.carousel__case { display: flex; flex-direction: column; flex: 1; }
.carousel__case[hidden] { display: none; }
.carousel__progress { height: 2px; background: var(--plum-rule); margin-top: 20px; }
.carousel__bar { height: 100%; width: 0; background: var(--magenta); }

/* ==========================================================================
   Calculator band (homepage) and compact strip (articles)
   ========================================================================== */
.calc { display: flex; flex-wrap: wrap; }
.calc__main { flex: 1.2 1 420px; min-width: 0; padding: 40px var(--gut) 38px; }
.calc__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.24;
    color: var(--ink);
    margin-top: 14px;
    max-width: 520px;
    text-wrap: pretty;
}
.calc__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    margin-top: 13px;
    max-width: 500px;
    text-wrap: pretty;
}
.calc__side {
    flex: 1 1 200px;
    min-width: 0;
    background: var(--panel);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--rule);
    margin-left: -1px;
}
.calc__asks-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.calc__asks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.calc__asks li { font-size: 14px; font-weight: 500; line-height: 1.4; color: var(--ink); }

.strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
    padding: 26px var(--gut) 28px;
}
.strip__text { flex: 1 1 380px; min-width: 0; }
.strip__title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ink);
    margin-top: 9px;
    text-wrap: pretty;
}
.strip .btn { margin-left: auto; white-space: nowrap; }

/* ==========================================================================
   FAQ — the homepage questions, same words as the FAQPage JSON-LD
   ========================================================================== */
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 16px var(--gut);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; flex: none; font-weight: 600; color: var(--plum); }
.faq__item[open] summary::after { content: "\2013"; }
.faq__a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--body);
    padding: 0 var(--gut) 18px;
    max-width: 740px;
}

/* ==========================================================================
   Book band — plum CTA before the footer
   ========================================================================== */
.book {
    background: var(--plum);
    padding: 44px var(--gut);
    display: flex;
    flex-wrap: wrap;
    gap: 28px 34px;
    align-items: center;
}
.book__text { flex: 1.3 1 400px; min-width: 0; }
.book__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.24;
    color: var(--white);
    text-wrap: pretty;
}
.book__sub {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--pale);
    margin-top: 14px;
    max-width: 520px;
    text-wrap: pretty;
}
.book__actions {
    flex: 1 1 220px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
}
.book__actions--end { flex: none; margin-left: auto; align-items: flex-end; text-align: right; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--rule);
    padding: 30px var(--gut) 34px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.footer--rule { border-top: 3px solid var(--ink); }
.footer__logo img { width: 160px; height: auto; display: block; }
.footer__tag {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--muted);
    margin-top: 12px;
    max-width: 280px;
}
.footer__cols {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 500;
    line-height: 2;
}
.footer__head {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 7px;
    line-height: 1.6;
}
.footer__cols ul { list-style: none; padding: 0; }
.footer__cols a { display: block; color: var(--body); }
.footer__cols a:hover { color: var(--magenta); }
.footer__legal {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    font-size: 11px;
    line-height: 1.6;
    color: var(--muted);
}
.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--magenta); }
.footer__legal p + p { margin-left: auto; }

/* ==========================================================================
   Case studies
   ========================================================================== */
.case__bar {
    padding: 13px var(--gut);
    border-bottom: 1px solid var(--rule);
    background: var(--panel);
    display: flex;
    gap: 10px 24px;
    align-items: baseline;
    flex-wrap: wrap;
}
.case__no {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum);
}
.case__shape, .case__type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--body);
}
.case__type { color: var(--muted); margin-left: auto; white-space: nowrap; }
.case__main { padding: 32px var(--gut) 36px; }
.case__title {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.24;
    color: var(--ink);
    max-width: 520px;
    text-wrap: pretty;
}
.case__block { margin-top: 20px; }
.case__title + .case__block { margin-top: 24px; }
.case__block p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    margin-top: 8px;
    max-width: 520px;
    text-wrap: pretty;
}
.case .split__side .figs { flex: none; }
.case__quote-body { flex: 1; display: flex; align-items: center; padding: 28px var(--gut-cell); }
.case__quote {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--white);
    text-wrap: pretty;
}
.case__cite {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pale);
    margin-top: 18px;
    font-style: normal;
}
.band-label--plum { color: var(--pale); border-bottom-color: var(--plum-rule); }
.provenance--plum { color: var(--pale); border-top: 1px solid var(--plum-rule); padding: 16px var(--gut-cell); }

/* ==========================================================================
   About
   ========================================================================== */
.portrait { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--rule); }
.fit__col { flex: 1 1 340px; min-width: 0; padding: 32px var(--gut-panel) 34px; }
.fit__col--panel { flex-basis: 300px; background: var(--panel); border-left: 1px solid var(--rule); margin-left: -1px; }
.fit__list { display: flex; flex-direction: column; gap: 18px; margin-top: 18px; }
.fit__title { font-size: 15px; font-weight: 700; color: var(--ink); }
.fit__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--body);
    margin-top: 6px;
    text-wrap: pretty;
}
.aside-pair {
    padding: 26px var(--gut) 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
}
.aside-pair__lead {
    flex: 1 1 340px;
    min-width: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--ink);
    text-wrap: pretty;
}
.aside-pair__body { flex: 1 1 340px; min-width: 0; }
.bg__main { flex: 1.2 1 400px; min-width: 0; padding: 34px var(--gut) 36px; }
.bg__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    margin-top: 14px;
    max-width: 500px;
    text-wrap: pretty;
}
.bg__main .prose { margin-top: 14px; max-width: 500px; }
.bg__main .prose p + p { margin-top: 14px; }
.cred { padding: 22px var(--gut-cell); border-bottom: 1px solid var(--rule); }
.cred--white { background: var(--white); }
.cred__title { font-size: 15px; font-weight: 700; color: var(--ink); }
.cred__text { font-size: 13px; font-weight: 500; line-height: 1.55; color: var(--body); margin-top: 5px; }
.cred--link { flex: 1; display: flex; align-items: center; border-bottom: 0; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__main { flex: 1.2 1 430px; }
.contact__main .page-title { line-height: 1.12; max-width: 480px; }
.contact__lead {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    margin-top: 16px;
    max-width: 480px;
    text-wrap: pretty;
}
.contact__side { flex-basis: 340px; }
.steps { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.steps__num { font-size: 13px; font-weight: 800; width: 22px; flex: none; }
.steps__body { flex: 1 1 200px; min-width: 0; }
.steps__title { font-size: 15px; font-weight: 700; color: var(--ink); }
.steps__text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--body);
    margin-top: 5px;
    text-wrap: pretty;
}
.scheduler {
    flex: 1;
    min-height: 440px;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
}
.scheduler .meetings-iframe-container { min-height: 440px; }
.scheduler__fallback {
    padding: 20px var(--gut-cell);
    font-size: 13px;
    line-height: 1.6;
    color: var(--body);
}
.contact-row { font-size: 15px; font-weight: 700; color: var(--mid); margin-left: auto; }
.prep__main { flex: 1.2 1 430px; min-width: 0; padding: 30px var(--gut) 34px; }
.prep__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    max-width: 440px;
    text-wrap: pretty;
}
.prep__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    margin-top: 11px;
    max-width: 440px;
    text-wrap: pretty;
}
.prep__main .btn { margin-top: 20px; padding: 14px 24px; }
.prep__side { flex: 1 1 340px; min-width: 0; padding: 30px var(--gut-panel) 34px; background: var(--panel); border-left: 1px solid var(--rule); margin-left: -1px; }
.prep__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; margin-top: 14px; }
.prep__list li { font-size: 14px; font-weight: 500; line-height: 1.5; color: var(--ink); }
.prep__note { font-size: 12px; font-weight: 400; line-height: 1.6; color: var(--body); margin-top: 16px; text-wrap: pretty; }
.reassure {
    background: var(--panel);
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    padding: 28px var(--gut) 32px;
}
.reassure > div { flex: 1 1 260px; min-width: 0; padding: 0 0 12px; }

/* ==========================================================================
   Legal pages and the calculator: nav, footer, type and container only
   ========================================================================== */
.doc { padding: 40px var(--gut) 48px; }
.doc__inner { max-width: 760px; }
.doc h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.doc__meta { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
.doc h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
}
.doc h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-top: 22px; }
.doc p, .doc li { font-size: 15px; font-weight: 400; line-height: 1.75; color: var(--body); }
.doc p { margin-top: 12px; }
.doc ul, .doc ol { margin-top: 12px; padding-left: 22px; }
.doc li + li { margin-top: 6px; }
.doc strong { font-weight: 600; color: var(--ink); }

/* ==========================================================================
   Articles (Astro blog)
   ========================================================================== */
.article-col { max-width: 760px; margin: 0 auto; }

.article-head { padding: 34px var(--gut) 32px; border-bottom: 3px solid var(--ink); }
.article-meta {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
    align-items: baseline;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.article-meta a { color: var(--plum); }
.article-meta a:hover { color: var(--magenta); }
.article-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-top: 18px;
    text-wrap: pretty;
}
.article-dek {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--body);
    margin-top: 16px;
    text-wrap: pretty;
}

.toc {
    padding: 14px var(--gut) 15px;
    border-bottom: 1px solid var(--rule);
    background: var(--panel);
    display: flex;
    gap: 12px 26px;
    align-items: baseline;
    flex-wrap: wrap;
}
.toc__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
    white-space: nowrap;
}
.toc ol { list-style: none; padding: 0; display: contents; }
.toc a { font-size: 13px; font-weight: 500; color: var(--body); }
.toc a:hover { color: var(--magenta); }

.article-hero { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--rule); }

.article-body { padding: 36px var(--gut) 48px; }

/* Markdown prose. Scoped to the body's own children so the long-form
   components (.pullquote, .pair, .verdict) keep their own type. */
.article-body > p,
.article-body > ul > li,
.article-body > ol > li,
.article-body > blockquote p,
.article-body li > p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--body);
    text-wrap: pretty;
}
.article-body > * + * { margin-top: 18px; }
.article-body > p:first-child {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--ink);
}
.article-body > h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
    margin-top: 40px;
    padding-top: 22px;
    border-top: 2px solid var(--ink);
    text-wrap: pretty;
    scroll-margin-top: 16px;
}
.article-body > h2 + * { margin-top: 16px; }
.article-body > h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    margin-top: 32px;
    text-wrap: pretty;
}
.article-body > h3 + * { margin-top: 10px; }
.article-body > h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin-top: 24px; }
.article-body strong { font-weight: 600; color: var(--ink); }
.article-body em { font-style: italic; }
.article-body > ul, .article-body > ol { padding-left: 24px; }
.article-body > ul > li + li, .article-body > ol > li + li { margin-top: 8px; }
.article-body li::marker { color: var(--plum); }
.article-body li > p + p { margin-top: 10px; }
.article-body > p a, .article-body li a, .article-body blockquote a, .article-body td a {
    color: var(--mid);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.article-body > p a:hover, .article-body li a:hover, .article-body blockquote a:hover, .article-body td a:hover { color: var(--magenta); }
.article-body > blockquote {
    margin-top: 24px;
    padding: 4px 0 4px 22px;
    border-left: 2px solid var(--ink);
}
.article-body > blockquote p { color: var(--ink); font-weight: 500; }
.article-body > blockquote p + p { margin-top: 12px; }
.article-body > hr { border: 0; border-top: 1px solid var(--rule); margin-top: 40px; }
.article-body > hr + * { margin-top: 28px; }
.article-body img { max-width: 100%; height: auto; display: block; border: 1px solid var(--rule); }
.article-body > p:has(> img:only-child) { margin-top: 28px; }
.article-body > table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 26px;
    border: 1px solid var(--ink);
    display: block;
    overflow-x: auto;
}
.article-body thead th {
    background: var(--panel);
    padding: 12px 18px;
    border-bottom: 1px solid var(--rule);
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
    vertical-align: bottom;
}
.article-body tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--rule);
    vertical-align: top;
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
}
.article-body tbody td:first-child { font-weight: 500; color: var(--ink); }
.article-body tbody tr:last-child td { border-bottom: 0; }
.article-body code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.88em;
    background: var(--panel);
    border: 1px solid var(--rule);
    padding: 1px 5px;
}

/* Long-form parts (Astro components in blog-src/src/components/) */
.article-body > .pullquote,
.article-body > .pair,
.article-body > .verdict { margin-top: 28px; }
.article-body > .pullquote + *,
.article-body > .pair + *,
.article-body > .verdict + * { margin-top: 24px; }

.pullquote { background: var(--plum); padding: 28px 30px; }
.pullquote__cite {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pale);
    font-style: normal;
}
.pullquote__text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin-top: 12px;
    text-wrap: pretty;
}

.article-body .pair { padding-top: 20px; }
.article-body .pair__row { gap: 18px; margin-top: 14px; }
.article-body .pair__before, .article-body .pair__after { font-size: clamp(38px, 10vw, 52px); }
.article-body .pair__arrow { font-size: 32px; }
.article-body .pair__caption { font-size: 12px; max-width: 440px; margin-top: 12px; }

.verdict { border: 1px solid var(--ink); }
.verdict__title {
    padding: 13px 22px;
    border-bottom: 1px solid var(--rule);
    background: var(--panel);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
}
.verdict__row {
    display: flex;
    align-items: baseline;
    gap: 6px 14px;
    padding: 13px 22px;
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
}
.verdict__row:last-child { border-bottom: 0; }
.verdict__claim { flex: 1 1 200px; min-width: 0; font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--ink); }
.verdict__verdict {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-left: auto;
    white-space: nowrap;
}

/* Author block */
.author {
    max-width: 760px;
    margin: 0 auto;
    padding: 30px var(--gut) 34px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}
.author__img { width: 74px; height: 74px; object-fit: cover; display: block; flex: none; }
.author__body { flex: 1 1 280px; min-width: 0; }
.author__name { font-size: 18px; font-weight: 700; color: var(--ink); margin-top: 8px; }
.author__bio {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    margin-top: 7px;
    text-wrap: pretty;
}
.author .link-caps { display: inline-block; font-size: 10px; margin-top: 12px; }

/* Related reading and the blog index share the card link */
.card-link {
    flex: 1 1 260px;
    min-width: 0;
    display: block;
    padding: 24px 30px 28px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    color: var(--ink);
}
.card-link:hover { background: var(--panel); color: var(--ink); }
.card-link__meta {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plum);
}
.card-link__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    margin-top: 9px;
    text-wrap: pretty;
}
.card-link:hover .card-link__title { color: var(--magenta); }
.card-link__text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--body);
    margin-top: 7px;
    text-wrap: pretty;
}

/* Blog index */
.post-list { list-style: none; padding: 0; }
.post-row { border-bottom: 1px solid var(--rule); }
.post-row a {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
    padding: 24px var(--gut) 26px;
    color: var(--ink);
}
.post-row a:hover { background: var(--panel); color: var(--ink); }
.post-row a:hover .post-row__title { color: var(--magenta); }
.post-row__meta {
    flex: 0 0 150px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.8;
}
.post-row__body { flex: 1 1 320px; min-width: 0; }
.post-row__title { font-size: 20px; font-weight: 700; line-height: 1.3; color: var(--ink); text-wrap: pretty; }
.page-head { padding: 40px var(--gut) 38px; }
.page-head .lead { max-width: 600px; }
.post-row__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--body);
    margin-top: 8px;
    max-width: 640px;
    text-wrap: pretty;
}

/* ==========================================================================
   Drag calculator (tools/reporting-drag.html). The page script depends on
   element ids only; line rows are shown/hidden via inline display.
   ========================================================================== */
.calc-field { display: flex; flex-direction: column; gap: 8px; padding: 22px 20px 24px; }
.calc-field label { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.calc-field input, .calc-field select, .onboard-inline {
    width: 100%;
    font: 500 16px/1.3 Montserrat, sans-serif;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--muted);
    border-radius: 0;
    padding: 11px 12px;
    font-variant-numeric: tabular-nums;
}
.calc-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 32px; }
.calc-field input:focus, .calc-field select:focus, .onboard-inline:focus { outline: 2px solid var(--magenta); outline-offset: -1px; border-color: var(--magenta); }
.calc-hint { font-size: 12px; line-height: 1.5; color: var(--muted); }
.calc-range { display: flex; align-items: center; gap: 10px; }
.calc-range input { flex: 1; min-width: 0; }
.calc-range span { flex: none; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.drag-headline {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.24;
    color: var(--ink);
    margin-top: 14px;
    max-width: 620px;
    text-wrap: pretty;
}
.drag-headline strong { font-weight: 800; color: var(--magenta); white-space: nowrap; }
.drag-subline { font-size: 13px; line-height: 1.6; color: var(--muted); margin-top: 10px; }
.drag-lines { margin-top: 24px; border-top: 1px solid var(--rule); }
.drag-lines .line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 6px 20px;
    flex-wrap: wrap;
    padding: 13px 0 12px;
    border-bottom: 1px solid var(--rule);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}
.drag-lines .val { font-size: 18px; font-weight: 800; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; margin-left: auto; }
.drag-formula {
    margin-top: 20px;
    padding: 14px 18px;
    background: var(--panel);
    border: 1px solid var(--rule);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.drag-note { font-size: 13px; line-height: 1.65; color: var(--body); margin-top: 18px; max-width: 620px; text-wrap: pretty; }
.drag-note strong { font-weight: 700; color: var(--ink); }
.onboard-inline { display: inline-block; width: 72px; padding: 4px 6px; font-size: 13px; margin: 2px 2px; }
.drag-cta { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.drag-cta .plum__text { margin-top: 0; }
.drag-actions { gap: 12px; }
.drag-actions__row { display: flex; flex-wrap: wrap; gap: 10px; }
.drag-actions .btn-secondary { padding: 12px 18px; background: var(--white); }
.copy-confirm { display: none; font-size: 12px; font-weight: 600; color: var(--plum); }
.print-meta { display: none; font-size: 11px; color: var(--muted); margin-top: 20px; }

@media print {
    .nav, .footer, .skip-link, .drag-actions, .drag-cta, .split__side:has(.glance) { display: none !important; }
    .site { border: 0 !important; }
    .print-meta { display: block !important; }
}
