/* ==========================================================================
   PricePoint - stylesheet

   The design is deliberately blunt. These users are being told things about
   their money, and some of those things are unwelcome, so the interface is
   built to state a figure and stand behind it: heavy ink borders, hard offset
   shadows instead of soft blur, and numbers set large enough to read from
   across a stall.

   Colour is never decoration. Green means the product is carrying its weight,
   amber means it earns but thinly, vermilion means money is lost on every sale.
   ========================================================================== */

:root {
    --ink:        #14110F;
    --ink-soft:   #3D3833;
    --muted:      #6B6862;

    --paper:      #FAFAF7;
    --card:       #FFFFFF;
    --hairline:   #E8E6E1;

    --green:      #00B865;
    --green-pale: #D6FBE8;
    --vermilion:  #FF4A24;
    --verm-pale:  #FFE3DB;
    --amber:      #FFB020;
    --amber-pale: #FFF0D1;

    --edge:    2px solid var(--ink);
    --drop:    5px 5px 0 var(--ink);
    --drop-sm: 3px 3px 0 var(--ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); }

/* Figures use Archivo throughout, with tabular numerals so columns line up. */
.num, .stat-value, .vs-value, .cost-amt, .big, .row-pct,
.answer-n, .verdict-figure .n, .slider-val {
    font-family: 'Archivo', sans-serif;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.04em;
}

/* ==========================================================================
   Top bar
   ========================================================================== */

.topbar {
    border-bottom: var(--edge);
    background: var(--card);
    position: sticky;
    top: 0;
    z-index: 20;
}

.topbar-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -.05em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
}

.brand-dot {
    width: 14px;
    height: 14px;
    background: var(--green);
    border: var(--edge);
    border-radius: 50%;
}

.nav { display: flex; gap: 6px; margin-left: 6px; }

.nav a {
    padding: 7px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 7px;
}

.nav a:hover { border-color: var(--ink); }
.nav a.on { background: var(--ink); color: #fff; }

.topbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.who { font-size: 14px; font-weight: 600; color: var(--muted); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    padding: 10px 17px;
    border: var(--edge);
    border-radius: 8px;
    background: var(--card);
    color: var(--ink);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: var(--drop-sm);
    transition: transform .08s, box-shadow .08s;
}

/* The button physically moves into its own shadow when pressed. */
.btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: none; }

.btn.primary { background: var(--green); }
.btn.block   { width: 100%; }
.btn.big     { font-size: 17px; padding: 15px 28px; box-shadow: var(--drop); }
.btn.big:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn.tiny    { padding: 5px 11px; font-size: 13px; box-shadow: 2px 2px 0 var(--ink); }

.btn.plain {
    box-shadow: none;
    background: transparent;
    border-color: transparent;
}
.btn.plain:hover { transform: none; box-shadow: none; text-decoration: underline; }

.btn.danger { background: var(--verm-pale); }

/* A bare icon button, used to remove a single cost line. */
.x {
    border: none;
    background: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 18px;
    line-height: 1;
    padding: 3px 7px;
    border-radius: 6px;
}
.x:hover { background: var(--verm-pale); color: var(--vermilion); }

/* ==========================================================================
   Page scaffolding
   ========================================================================== */

.page { max-width: 1140px; margin: 0 auto; padding: 38px 28px 90px; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
    font-family: 'Archivo', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

/* The dashboard headline states the finding rather than greeting the user. */
.thesis {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.02;
    font-size: clamp(34px, 5.4vw, 60px);
    max-width: 18ch;
    margin-bottom: 14px;
}
.thesis em { font-style: normal; background: var(--amber); padding: 0 .1em; }
.thesis-sub { font-size: 17px; color: var(--ink-soft); max-width: 58ch; margin-bottom: 36px; }

.title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -.045em;
    line-height: 1;
    margin: 12px 0 6px;
}
.title-sub { font-size: 15.5px; color: var(--muted); margin-bottom: 28px; }

.back { font-size: 14.5px; font-weight: 600; color: var(--muted); text-decoration: none; }
.back:hover { color: var(--ink); }

/* ==========================================================================
   Stat tiles
   ========================================================================== */

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }

.stat {
    background: var(--card);
    border: var(--edge);
    border-radius: 14px;
    padding: 22px 22px 20px;
    box-shadow: var(--drop);
}

.stat-label {
    font-family: 'Archivo', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.stat-value { font-weight: 900; font-size: 52px; line-height: .95; }
.stat-value .unit { font-size: 26px; letter-spacing: -.02em; }
.stat-note { font-size: 13.5px; color: var(--muted); margin-top: 10px; }

.stat.good .stat-value { color: var(--green); }
.stat.warn .stat-value { color: var(--vermilion); }

/* ==========================================================================
   Section blocks
   ========================================================================== */

.block {
    background: var(--card);
    border: var(--edge);
    border-radius: 14px;
    box-shadow: var(--drop);
    margin-bottom: 26px;
    overflow: hidden;
}

.block-head {
    padding: 16px 22px;
    border-bottom: var(--edge);
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.block-title {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.block-note { font-size: 13px; color: var(--muted); }
.block-body { padding: 22px; }
.block-body.flush { padding: 22px 6px 6px; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 26px; }

/* ==========================================================================
   The verdict: the one thing this product exists to say
   ========================================================================== */

.verdict {
    border: var(--edge);
    border-radius: 16px;
    box-shadow: var(--drop);
    background: var(--green-pale);
    margin-bottom: 26px;
    overflow: hidden;
}

.verdict.loss { background: var(--verm-pale); }
.verdict.warn { background: var(--amber-pale); }
.verdict.idle { background: var(--card); }

.verdict-main { display: grid; grid-template-columns: minmax(240px, 320px) 1fr; }

.verdict-figure {
    padding: 30px 28px;
    border-right: var(--edge);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.verdict-figure .n {
    font-weight: 900;
    font-size: clamp(48px, 7vw, 80px);
    line-height: .88;
    letter-spacing: -.055em;
}

.verdict-figure .cap {
    font-family: 'Archivo', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-top: 12px;
    color: var(--ink-soft);
}

.verdict-say {
    padding: 30px;
    display: flex;
    align-items: center;
    font-size: 17px;
    line-height: 1.5;
}
.verdict-say b { font-weight: 700; }

.verdict-strip {
    border-top: var(--edge);
    background: var(--card);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.vs-cell { padding: 16px 24px; border-right: 1px solid var(--hairline); }
.vs-cell:last-child { border-right: none; }

.vs-label {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.vs-value { font-weight: 900; font-size: 27px; }
.vs-value .suffix { font-size: 15px; font-weight: 700; letter-spacing: 0; color: var(--muted); }

/* A standalone finding, used on the dashboard and comparison pages. */
.callout {
    border: var(--edge);
    border-radius: 14px;
    padding: 26px 28px;
    background: var(--amber-pale);
    box-shadow: var(--drop);
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: center;
}

.callout-figure {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: .9;
    letter-spacing: -.05em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.callout-figure span {
    display: block;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 8px;
}
.callout-text { font-size: 16.5px; line-height: 1.55; }
.callout-text b { font-weight: 700; }

/* ==========================================================================
   Tables
   ========================================================================== */

table { width: 100%; border-collapse: collapse; }

th {
    font-family: 'Archivo', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: left;
    padding: 0 16px 12px;
    border-bottom: var(--edge);
}

td {
    padding: 16px;
    border-bottom: 1px solid var(--hairline);
    font-size: 15px;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--paper); }

th.r, td.r { text-align: right; }
td strong { font-weight: 700; }

.big { font-weight: 800; font-size: 19px; }
.sub { color: var(--muted); font-size: 13px; font-weight: 500; }
.pos { color: var(--green); }
.neg { color: var(--vermilion); }

.tag {
    display: inline-block;
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 9px;
    border: var(--edge);
    border-radius: 20px;
    white-space: nowrap;
}
.tag.best  { background: var(--green-pale); }
.tag.worst { background: var(--amber-pale); }
.tag.bad   { background: var(--verm-pale); }

/* ==========================================================================
   Margin bars
   ========================================================================== */

.chart { display: grid; gap: 20px; }

.chart-row { display: grid; grid-template-columns: 190px 1fr 92px; align-items: center; gap: 18px; }
.row-name { font-weight: 700; font-size: 15px; }
.row-name a { text-decoration: none; }
.row-name a:hover { text-decoration: underline; }
.row-name small { display: block; font-weight: 500; font-size: 12.5px; color: var(--muted); }

.track {
    height: 34px;
    border: var(--edge);
    border-radius: 8px;
    background: var(--paper);
    overflow: hidden;
}

.fill { height: 100%; background: var(--green); }
.fill.low { background: var(--amber); }
.fill.neg { background: var(--vermilion); }

.row-pct { font-weight: 900; font-size: 26px; text-align: right; }

/* ==========================================================================
   Cost breakdown
   ========================================================================== */

.cost-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 15px;
}
.cost-line:first-child { padding-top: 0; }
.cost-line:last-of-type { border-bottom: none; }

.cost-amt { font-weight: 700; font-size: 16px; }

.cost-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--ink);
    color: #fff;
    border-radius: 10px;
}
.cost-total .lbl {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.cost-total .amt {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   Forms
   ========================================================================== */

label {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 7px;
}

input[type=text], input[type=email], input[type=password], input[type=number], select {
    width: 100%;
    padding: 12px 14px;
    border: var(--edge);
    border-radius: 9px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    font-variant-numeric: tabular-nums;
    background: var(--paper);
    color: var(--ink);
}

/* Names read as words, not figures, so they keep the body face. */
input[type=text], input[type=email], input[type=password] {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

select { font-family: 'Instrument Sans', sans-serif; font-weight: 600; font-size: 15px; }

input:focus, select:focus { outline: none; background: #fff; box-shadow: var(--drop-sm); }

.field { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: 12px; align-items: end; }
.form-row.simple { grid-template-columns: 2fr 1fr auto; }
.row-inline { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }

.hint { font-size: 13px; color: var(--muted); margin-top: 8px; }
.err { color: var(--vermilion); font-size: 13px; font-weight: 600; margin-top: 5px; }

.ref { margin-top: 20px; padding-top: 18px; border-top: 2px dashed #DDD9D2; }
.ref-line { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; font-size: 14.5px; }
.ref-line b {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 18px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.03em;
}
.ref-note { font-size: 13.5px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.ref-note strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   What-if simulator
   ========================================================================== */

.sim-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 26px; }
.slider-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.slider-val { font-weight: 900; font-size: 22px; }

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    background: var(--paper);
    border: var(--edge);
    border-radius: 8px;
    outline: none;
    padding: 0;
}

/* A large thumb, because this is dragged on a phone at a market stall. */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px; height: 26px;
    background: var(--green);
    border: var(--edge);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 2px 2px 0 var(--ink);
}
input[type=range]::-moz-range-thumb {
    width: 22px; height: 22px;
    background: var(--green);
    border: var(--edge);
    border-radius: 50%;
    cursor: pointer;
}

.ba { display: grid; grid-template-columns: 1fr 54px 1fr; align-items: stretch; }
.ba-side { border: var(--edge); border-radius: 12px; padding: 18px 20px; background: var(--paper); }
.ba-side.after { background: var(--card); box-shadow: var(--drop-sm); }
.ba-tag {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}
.ba-side.after .ba-tag { color: var(--ink); }
.ba-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 7px 0;
    font-size: 14px;
    color: var(--muted);
}
.ba-line b {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    letter-spacing: -.03em;
}
.ba-line.key b { font-size: 22px; }
.ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--muted);
}

.delta {
    margin-top: 22px;
    padding: 18px 22px;
    border: var(--edge);
    border-radius: 12px;
    background: var(--amber-pale);
    font-size: 16px;
    line-height: 1.5;
}
.delta.good { background: var(--green-pale); }
.delta.bad  { background: var(--verm-pale); }
.delta b { font-weight: 700; }

/* ==========================================================================
   Messages, empty states, danger zone
   ========================================================================== */

.flash {
    padding: 14px 18px;
    border: var(--edge);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 22px;
    box-shadow: var(--drop-sm);
}
.flash.ok    { background: var(--green-pale); }
.flash.error { background: var(--verm-pale); }
.flash.warn  { background: var(--amber-pale); }
.flash a { font-weight: 700; }

.empty { text-align: center; padding: 46px 20px; }
.empty h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}
.empty p { font-size: 15px; color: var(--muted); max-width: 44ch; margin: 0 auto 20px; }

.danger-zone {
    border: 2px dashed #DDD9D2;
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.danger-zone p { font-size: 14px; color: var(--muted); }

/* ==========================================================================
   Sign in and registration
   ========================================================================== */

.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card {
    width: 100%;
    max-width: 430px;
    background: var(--card);
    border: var(--edge);
    border-radius: 18px;
    padding: 34px;
    box-shadow: var(--drop);
}
.auth-card .brand { margin-bottom: 26px; }
.auth-card h1 {
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.05;
    margin-bottom: 8px;
}
.auth-card .sub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.auth-foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 2px dashed #DDD9D2;
    font-size: 14.5px;
    color: var(--muted);
    text-align: center;
}
.auth-foot a { font-weight: 700; }

/* ==========================================================================
   Landing page
   ========================================================================== */

.hero { padding: 72px 0 58px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.hero h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -.05em;
    margin-bottom: 22px;
}
.hero h1 em { font-style: normal; background: var(--amber); padding: 0 .1em; }
.hero .lede { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 46ch; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.try { border: var(--edge); border-radius: 18px; box-shadow: var(--drop); background: var(--card); overflow: hidden; }
.try-head {
    padding: 15px 22px;
    border-bottom: var(--edge);
    background: var(--ink);
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.try-body { padding: 24px; }
.try-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

.answer { margin-top: 20px; border: var(--edge); border-radius: 13px; background: var(--green-pale); padding: 22px; }
.answer.bad  { background: var(--verm-pale); }
.answer.warn { background: var(--amber-pale); }
.answer-n { font-weight: 900; font-size: clamp(42px, 5.6vw, 58px); line-height: .9; letter-spacing: -.055em; }
.answer-cap {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 10px;
}
.answer-say {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid rgba(20, 17, 15, .15);
    font-size: 15px;
    line-height: 1.5;
}
.answer-say b { font-weight: 700; }

.contrast { border-top: var(--edge); border-bottom: var(--edge); background: var(--card); padding: 60px 0; }
.contrast-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 34px; align-items: center; }
.contrast-side .eyebrow { margin-bottom: 12px; }
.contrast-side p {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.15;
    letter-spacing: -.03em;
}
.contrast-side.them p { color: var(--muted); }
.contrast-vs {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    border: var(--edge);
    border-radius: 30px;
    padding: 8px 16px;
    white-space: nowrap;
}

.does { padding: 68px 0 20px; }
.section-head {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: -.04em;
    line-height: 1.05;
    margin-bottom: 34px;
    max-width: 20ch;
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--card); border: var(--edge); border-radius: 14px; box-shadow: var(--drop); padding: 24px; }
.card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 9px;
}
.card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.card .mark {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .1em;
    color: var(--green);
    margin-bottom: 14px;
}

.closing { padding: 74px 0 94px; text-align: center; }
.closing h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: -.045em;
    line-height: 1.02;
    margin-bottom: 16px;
}
.closing p { font-size: 17.5px; color: var(--ink-soft); margin-bottom: 28px; }

footer { border-top: var(--edge); padding: 26px 0; }
.foot {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: var(--muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .stats, .grid2, .sim-controls, .cards { grid-template-columns: 1fr; }
    .verdict-main { grid-template-columns: 1fr; }
    .verdict-figure { border-right: none; border-bottom: var(--edge); }
    .verdict-strip { grid-template-columns: 1fr; }
    .vs-cell { border-right: none; border-bottom: 1px solid var(--hairline); }
    .vs-cell:last-child { border-bottom: none; }
    .ba { grid-template-columns: 1fr; gap: 14px; }
    .ba-arrow { transform: rotate(90deg); height: 40px; }
    .callout { grid-template-columns: 1fr; gap: 16px; }
    .chart-row { grid-template-columns: 1fr; gap: 8px; }
    .row-pct { text-align: left; }
    .form-row, .form-row.simple { grid-template-columns: 1fr; }
    .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 46px; }
    .contrast-grid { grid-template-columns: 1fr; gap: 22px; }
    .contrast-vs { justify-self: start; }
    .nav { display: none; }
    .topbar-inner { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 2px;
}
