@font-face {
font-family: 'Nunito';
src: url('fonts/nunito-400.ttf') format('truetype');
font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
font-family: 'Nunito';
src: url('fonts/nunito-700.ttf') format('truetype');
font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
font-family: 'Nunito';
src: url('fonts/nunito-800.ttf') format('truetype');
font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
font-family: 'Fraunces';
src: url('fonts/fraunces-600.ttf') format('truetype');
font-weight: 400 900; font-style: normal; font-display: swap;
}
:root {
--bg:          #e8ecef;
--bg-alt:      #dde1e5;
--shadow-out:  6px 6px 14px #c5c9cc, -6px -6px 14px #ffffff;
--shadow-in:   inset 4px 4px 10px #c5c9cc, inset -4px -4px 10px #ffffff;
--shadow-sm:   4px 4px 9px #c5c9cc, -4px -4px 9px #ffffff;
--shadow-lg:   10px 10px 24px #bbbfc2, -10px -10px 24px #ffffff;
--ink:         #2d3340;
--ink-2:       #56606e;
--ink-3:       #8a929e;
--accent:      #0f7b8c;
--accent-hi:   #13a3b8;
--accent-lo:   #0a5c6b;
--accent-bg:   rgba(15,123,140,.10);
--accent-glow: 0 0 0 3px rgba(15,123,140,.22);
--green:       #1a8c52;
--green-bg:    rgba(26,140,82,.10);
--amber:       #b06c00;
--amber-bg:    rgba(176,108,0,.10);
--red:         #c0392b;
--red-bg:      rgba(192,57,43,.10);
--font-body:   'Nunito', ui-sans-serif, system-ui, sans-serif;
--font-head:   'Fraunces', Georgia, serif;
--font-mono:   'Share Tech Mono', ui-monospace, monospace;
--r-sm: 10px; --r: 16px; --r-lg: 24px;
}
:root[data-theme="dark"] {
--bg:          #1c2025;
--bg-alt:      #23282e;
--shadow-out:  6px 6px 14px #12161a, -6px -6px 14px #262d34;
--shadow-in:   inset 4px 4px 10px #12161a, inset -4px -4px 10px #262d34;
--shadow-sm:   4px 4px 9px #12161a, -4px -4px 9px #262d34;
--shadow-lg:   10px 10px 24px #10141a, -10px -10px 24px #28303a;
--ink:         #d8dde5;
--ink-2:       #9aa3b0;
--ink-3:       #606878;
--accent:      #13b8d0;
--accent-hi:   #4dd0e8;
--accent-lo:   #0f8fa4;
--accent-bg:   rgba(19,184,208,.10);
--accent-glow: 0 0 0 3px rgba(19,184,208,.22);
--green:       #26c470;
--green-bg:    rgba(38,196,112,.10);
--amber:       #f0a830;
--amber-bg:    rgba(240,168,48,.10);
--red:         #e05a4a;
--red-bg:      rgba(224,90,74,.10);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--font-body);
color: var(--ink);
background: var(--bg);
min-height: 100vh;
transition: background .35s ease, color .35s ease;
}
h1,h2,h3,h4 { font-family: var(--font-head); letter-spacing: -.01em; margin: 0; }
a { color: inherit; }
em { font-style: italic; color: var(--accent); }
.wrap        { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 820px;  margin: 0 auto; padding: 0 20px; }
.theme-toggle {
appearance: none; border: none; cursor: pointer;
width: 40px; height: 40px; border-radius: 50%;
background: var(--bg); color: var(--ink);
box-shadow: var(--shadow-sm);
display: inline-flex; align-items: center; justify-content: center;
font-size: 1.05rem;
transition: box-shadow .14s ease, transform .1s ease;
}
.theme-toggle:active { box-shadow: var(--shadow-in); transform: scale(.93); }
.theme-toggle .ic-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .ic-sun  { display: inline; }
:root[data-theme="dark"] .theme-toggle .ic-moon { display: none; }
header.site { position: sticky; top: 14px; z-index: 50; padding: 0 20px; margin-top: 14px; }
.navbar {
display: flex; align-items: center; justify-content: space-between; gap: 14px;
padding: 10px 16px;
border-radius: var(--r-lg);
background: var(--bg);
box-shadow: var(--shadow-out);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-dot {
width: 10px; height: 10px; border-radius: 50%;
background: linear-gradient(135deg, var(--accent-hi), var(--accent-lo));
box-shadow: 0 0 8px var(--accent); flex-shrink: 0;
}
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; color: var(--ink); }
nav.links { display: flex; gap: 2px; align-items: center; }
nav.links > a,
nav.links > .navdrop > button {
text-decoration: none; color: var(--ink-2); font-weight: 700; font-size: .84rem;
padding: 8px 12px; border-radius: var(--r-sm);
background: none; border: none; cursor: pointer; font-family: inherit;
transition: background .15s ease, color .15s ease;
}
nav.links > a:hover, nav.links > .navdrop > button:hover { background: var(--accent-bg); color: var(--accent); }
nav.links > a.is-active { background: var(--accent-bg); color: var(--accent); font-weight: 800; }
.navdrop { position: relative; }
.navdrop-menu {
position: absolute; top: calc(100% + 10px); left: 0; min-width: 220px;
background: var(--bg); border-radius: var(--r); padding: 8px;
box-shadow: var(--shadow-lg); display: none; flex-direction: column; gap: 2px; z-index: 100;
}
.navdrop.open .navdrop-menu { display: flex; }
.navdrop-menu a {
display: flex; align-items: center; gap: 9px; padding: 9px 11px;
border-radius: var(--r-sm); text-decoration: none; color: var(--ink-2);
font-size: .85rem; font-weight: 700; transition: background .15s ease, color .15s ease;
}
.navdrop-menu a:hover { background: var(--accent-bg); color: var(--accent); }
.navdrop-menu a .ic { font-size: 1rem; }
.burger { display: none; }
@media (max-width: 900px) { nav.links { display: none; } .burger { display: inline-flex; } }
.mnav { display: none; margin-top: 8px; padding: 12px; border-radius: var(--r-lg); background: var(--bg); box-shadow: var(--shadow-out); }
.mnav.open { display: block; }
.mnav a { display: block; padding: 10px 12px; margin-bottom: 3px; border-radius: var(--r-sm); text-decoration: none; color: var(--ink-2); font-weight: 700; transition: background .15s ease, color .15s ease; }
.mnav a:hover { background: var(--accent-bg); color: var(--accent); }
.mnav .mnav-heading { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); padding: 10px 12px 4px; }
.breadcrumb { font-size: .78rem; color: var(--ink-3); margin: 18px auto 0; max-width: 1180px; padding: 0 20px; }
.breadcrumb a { text-decoration: none; color: var(--accent); font-weight: 700; }
.breadcrumb span { margin: 0 6px; opacity: .5; }
.btn, .key {
appearance: none; border: none; cursor: pointer;
font-family: var(--font-body); font-weight: 800; font-size: .9rem;
padding: .72rem 1.4rem; border-radius: var(--r-sm);
color: var(--ink-2); background: var(--bg);
box-shadow: var(--shadow-sm);
display: inline-flex; align-items: center; justify-content: center; gap: 6px;
text-decoration: none;
transition: box-shadow .14s ease, transform .1s ease, color .14s ease;
}
.btn:hover, .key:hover { color: var(--accent); }
.btn:active, .key:active { box-shadow: var(--shadow-in); transform: translateY(1px); }
.btn-primary, .key-brass {
color: #fff;
background: linear-gradient(135deg, var(--accent-hi), var(--accent-lo));
box-shadow: 4px 4px 10px rgba(15,123,140,.35), -2px -2px 6px rgba(255,255,255,.15);
}
.btn-primary:hover, .key-brass:hover { box-shadow: 5px 5px 14px rgba(15,123,140,.45), -2px -2px 6px rgba(255,255,255,.2); color: #fff; }
.btn-primary:active, .key-brass:active { transform: translateY(1px); box-shadow: var(--shadow-in); }
.btn-ghost, .key-ghost { background: transparent; box-shadow: none; color: var(--ink-2); border: 1.5px solid var(--ink-3); }
.btn-ghost:hover, .key-ghost:hover { background: var(--accent-bg); color: var(--accent); border-color: var(--accent); box-shadow: none; }
.btn-ghost:active, .key-ghost:active { box-shadow: none; }
.btn:disabled, .key:disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
.hero { text-align: center; max-width: 760px; margin: 44px auto 30px; }
.eyebrow {
display: inline-block; margin-bottom: 14px; font-size: .72rem; font-weight: 800;
text-transform: uppercase; letter-spacing: .12em; color: var(--accent);
background: var(--accent-bg); padding: 5px 14px; border-radius: 999px;
}
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); font-weight: 900; line-height: 1.06; color: var(--ink); }
.hero p { margin-top: 14px; font-size: 1.08rem; color: var(--ink-2); line-height: 1.6; }
.privacy-badge {
display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center;
margin-top: 18px; padding: 10px 18px; border-radius: 999px;
background: var(--bg); box-shadow: var(--shadow-sm); font-size: .85rem; color: var(--ink-2);
}
.privacy-badge strong { color: var(--accent); font-weight: 800; }
.privacy-badge a { color: var(--accent); font-weight: 700; text-decoration: none; white-space: nowrap; }
.privacy-badge a:hover { text-decoration: underline; }
.footer-credit {
max-width: 1180px; margin: 6px auto 0; text-align: center; font-size: .79rem; color: var(--ink-3);
}
.footer-credit a { color: var(--ink-3); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover { color: var(--accent); }
.picker { max-width: 900px; margin: 0 auto 28px; }
.picker-inner { padding: 24px; background: var(--bg); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.picker-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--ink-3); margin-bottom: 16px; text-align: center; }
.picker-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
@media (max-width: 760px) { .picker-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 440px) { .picker-grid { grid-template-columns: repeat(2, 1fr); } }
.picker-key {
display: flex; flex-direction: column; align-items: center;
gap: 7px; padding: 16px 8px 13px; background: var(--bg); border: none; cursor: pointer;
border-radius: var(--r); box-shadow: var(--shadow-sm);
font-family: var(--font-body); font-weight: 700; color: var(--ink-2); font-size: .76rem;
transition: box-shadow .14s ease, color .14s ease, transform .1s ease;
}
.picker-key .ic { font-size: 1.5rem; line-height: 1; }
.picker-key .lb { font-size: .72rem; }
.picker-key:hover { color: var(--accent); box-shadow: var(--shadow-out); }
.picker-key:active { box-shadow: var(--shadow-in); transform: translateY(1px); }
.picker-key.is-active { box-shadow: var(--shadow-in); color: var(--accent); }
.calc-section { margin-bottom: 34px; scroll-margin-top: 110px; }
.calc-head { text-align: center; max-width: 640px; margin: 0 auto 24px; }
.calc-head .kicker { margin-bottom: 8px; }
.calc-head h1, .calc-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); color: var(--ink); }
.calc-head p { margin-top: 8px; color: var(--ink-2); }
.calc-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; align-items: start; }
@media (max-width: 980px) { .calc-grid { grid-template-columns: 1fr; } }
.device, .bezel {
background: var(--bg); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
padding: 24px;
}
.device .inner { display: flex; flex-direction: column; gap: 22px; }
.lcd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .lcd-grid { grid-template-columns: 1fr; } }
.surface-lcd, .lcd-cell {
padding: 14px 16px; background: var(--bg);
border-radius: var(--r); box-shadow: var(--shadow-in);
}
.lcd-label { font-size: .6rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3); font-weight: 700; }
.lcd-value {
font-family: var(--font-mono); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 700;
color: var(--accent); margin-top: 4px; line-height: 1.15; font-variant-numeric: tabular-nums;
}
.lcd-sub { font-size: .64rem; color: var(--ink-3); margin-top: 3px; font-family: var(--font-mono); }
.field { margin-bottom: 0; }
.field-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; gap: 8px; }
.field-top .lab { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-2); }
.field-top .val { font-family: var(--font-mono); font-size: .88rem; color: var(--accent); font-weight: 700; }
input[type=range] {
-webkit-appearance: none; appearance: none;
width: 100%; height: 8px; border-radius: 999px;
background: var(--bg); box-shadow: var(--shadow-in);
outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; border: none;
background: linear-gradient(135deg, var(--accent-hi), var(--accent-lo));
box-shadow: 3px 3px 8px rgba(15,123,140,.4), -1px -1px 4px rgba(255,255,255,.2);
cursor: grab; transition: transform .1s ease;
}
input[type=range]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
input[type=range]::-moz-range-thumb {
width: 26px; height: 26px; border-radius: 50%; border: none;
background: linear-gradient(135deg, var(--accent-hi), var(--accent-lo));
box-shadow: 3px 3px 8px rgba(15,123,140,.4); cursor: grab;
}
.preset-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.chip {
appearance: none; cursor: pointer;
font-family: var(--font-mono); font-weight: 700; font-size: .74rem;
padding: 5px 12px; border-radius: 999px; color: var(--ink-2); border: none;
background: var(--bg); box-shadow: var(--shadow-sm);
transition: box-shadow .14s ease, color .14s ease, transform .1s ease;
}
.chip:hover { color: var(--accent); }
.chip:active { box-shadow: var(--shadow-in); transform: scale(.95); }
.chip.active { box-shadow: var(--shadow-in); color: var(--accent); font-weight: 800; }
input[type=number], input[type=text], select, textarea {
width: 100%; padding: 10px 14px; border-radius: var(--r-sm);
background: var(--bg); border: none; box-shadow: var(--shadow-in);
color: var(--ink); font-family: var(--font-mono); font-size: .9rem;
outline: none; transition: box-shadow .14s ease;
}
input[type=number]:focus, input[type=text]:focus, select:focus, textarea:focus {
box-shadow: var(--shadow-in), var(--accent-glow);
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }
select { appearance: none; cursor: pointer; }
:root[data-theme="dark"] input[type=number],
:root[data-theme="dark"] input[type=text],
:root[data-theme="dark"] .field-light input[type=text],
:root[data-theme="dark"] .field-light input[type=email],
:root[data-theme="dark"] .field-light textarea { background: var(--bg); color: var(--ink); }
.field-light input[type=text], .field-light input[type=email],
.field-light textarea, .field-light select {
background: var(--bg); color: var(--ink); font-family: var(--font-body);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-row .btn, .btn-row .key { flex: 1; min-width: 160px; }
.aside { display: flex; flex-direction: column; gap: 18px; }
.neu-panel, .surface-paper {
background: var(--bg); border-radius: var(--r); box-shadow: var(--shadow-out); padding: 18px;
}
.countdown-cells { display: flex; gap: 12px; font-family: var(--font-mono); flex-wrap: wrap; margin-top: 8px; }
.cd-cell { display: flex; flex-direction: column; align-items: center; min-width: 40px; }
.cd-cell .n { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.cd-cell .l { font-size: .5rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin-top: 2px; }
.summary-list { list-style: none; margin: 10px 0 0; padding: 0; font-size: .88rem; color: var(--ink-2); }
.summary-list li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
:root[data-theme="dark"] .summary-list li { border-bottom-color: rgba(255,255,255,.06); }
.summary-list li:last-child { border-bottom: none; }
.summary-list b { color: var(--accent); font-weight: 800; }
.chart-wrap { display: flex; align-items: center; gap: 18px; margin-top: 12px; }
.chart-legend { font-size: .82rem; color: var(--ink-2); }
.chart-legend .row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.chart-legend .swatch { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }
.engraved, .panel-label {
font-size: .64rem; text-transform: uppercase; letter-spacing: .12em;
font-weight: 800; color: var(--ink-3);
}
.engraved.on-felt { color: var(--ink-2); }
.verdict {
background: var(--bg); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 26px; margin-top: 22px;
}
.verdict-top { display: flex; align-items: center; gap: 22px; margin-bottom: 22px; flex-wrap: wrap; }
.score-ring { width: 88px; height: 88px; position: relative; flex-shrink: 0; }
.score-ring .num {
position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; color: var(--ink);
}
.verdict-headline { font-size: 1.18rem; font-weight: 700; color: var(--ink); margin-top: 4px; }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .pc-grid { grid-template-columns: 1fr; } }
.pc-box { border-radius: var(--r); padding: 16px; }
.pc-box.pros { background: var(--green-bg); box-shadow: inset 0 0 0 1px rgba(26,140,82,.25); }
.pc-box.cons { background: var(--red-bg);   box-shadow: inset 0 0 0 1px rgba(192,57,43,.25); }
.pc-box .h { font-weight: 800; font-size: .83rem; margin-bottom: 10px; }
.pc-box.pros .h { color: var(--green); }
.pc-box.cons .h { color: var(--red); }
.pc-box ul { margin: 0; padding-left: 0; list-style: none; font-size: .86rem; line-height: 1.55; color: var(--ink-2); }
.pc-box li { padding-left: 1.1em; position: relative; margin-bottom: 5px; }
.pc-box li::before { content: "–"; position: absolute; left: 0; opacity: .5; }
.amort { background: var(--bg); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 22px; margin-top: 22px; }
.table-scroll { overflow-x: auto; margin-top: 12px; }
table.schedule { width: 100%; border-collapse: collapse; font-size: .84rem; }
table.schedule th {
text-align: left; padding: 10px; border-bottom: 2px solid rgba(0,0,0,.08);
font-family: var(--font-body); font-weight: 800; color: var(--ink-3);
font-size: .68rem; text-transform: uppercase; letter-spacing: .06em;
}
:root[data-theme="dark"] table.schedule th { border-bottom-color: rgba(255,255,255,.08); }
table.schedule td { padding: 8px 10px; border-bottom: 1px solid rgba(0,0,0,.05); font-family: var(--font-mono); font-size: .81rem; color: var(--ink-2); }
:root[data-theme="dark"] table.schedule td { border-bottom-color: rgba(255,255,255,.05); }
table.schedule tr:hover td { background: var(--accent-bg); }
.schedule-toggle { margin-top: 14px; }
.tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 860px) { .tools { grid-template-columns: 1fr; } }
.tool-card {
display: block; text-decoration: none; background: var(--bg); border-radius: var(--r-lg);
box-shadow: var(--shadow-out); padding: 24px;
transition: box-shadow .2s ease, transform .15s ease;
}
.tool-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.tool-card .inner { height: 100%; }
.badge {
display: inline-block; font-size: .58rem; padding: 3px 10px;
border-radius: 999px; margin-bottom: 12px; font-weight: 800; letter-spacing: .08em;
text-transform: uppercase; background: var(--accent-bg); color: var(--accent);
}
.tool-card h3 { font-size: 1.15rem; color: var(--ink); margin-top: 2px; }
.tool-card p { margin-top: 8px; font-size: .87rem; color: var(--ink-2); line-height: 1.55; }
.tool-link { margin-top: 16px; display: inline-block; font-size: .83rem; font-weight: 800; color: var(--accent); }
.tool-card:hover .tool-link { text-decoration: underline; }
.features-strip {
background: var(--bg); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
padding: 28px; margin-bottom: 28px;
display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 700px) { .features-strip { grid-template-columns: 1fr; gap: 20px; } }
.feature-item h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); font-weight: 800; margin-bottom: 8px; }
.feature-item p { font-size: .88rem; color: var(--ink-2); line-height: 1.6; margin: 0; }
.compare-board-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.compare-badge { font-family: var(--font-mono); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; flex-shrink: 0; }
.compare-badge-before { background: rgba(100,100,100,.12); color: var(--ink-3); }
.compare-badge-after  { background: var(--green-bg); color: var(--green); }
.compare-board-after  { box-shadow: var(--shadow-out), 0 0 0 2px var(--green); }
.compare-save-line { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.08); font-size: .88rem; color: var(--green); font-weight: 800; line-height: 1.5; }
:root[data-theme="dark"] .compare-save-line { border-top-color: rgba(255,255,255,.08); }
.compare-input { background: var(--bg); color: var(--ink); border: none; box-shadow: var(--shadow-in); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.07); }
:root[data-theme="dark"] .faq-item { border-bottom-color: rgba(255,255,255,.07); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 16px 4px; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1.01rem; color: var(--ink); }
.faq-q .chev { transition: transform .25s ease; font-size: 1rem; color: var(--accent); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding: 0 4px 16px; margin: 0; color: var(--ink-2); font-size: .91rem; line-height: 1.65; }
.prose { font-size: .97rem; line-height: 1.76; color: var(--ink-2); }
.prose h2 { font-size: 1.3rem; margin: 28px 0 10px; color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; margin: 20px 0 8px; color: var(--ink); }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 14px; padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--accent); font-weight: 700; text-decoration: underline; }
.page-hero { text-align: center; max-width: 760px; margin: 28px auto 28px; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 900; color: var(--ink); line-height: 1.08; }
.page-hero p { margin-top: 14px; font-size: 1.04rem; color: var(--ink-2); line-height: 1.6; }
footer.site { margin-top: 40px; padding: 36px 20px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; max-width: 1180px; margin: 0 auto; padding-bottom: 24px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid { align-items: start; }
.footer-grid h4 { font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); line-height: 27px; margin: 0 0 8px; font-family: var(--font-body); font-weight: 800; }
.footer-brand .brand-name { display: block; line-height: 27px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { text-decoration: none; color: var(--ink-2); font-size: .85rem; font-weight: 600; line-height: 1.6; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand p { font-size: .85rem; color: var(--ink-3); line-height: 1.6; max-width: 280px; margin: 8px 0 0; }
@media (max-width: 760px) { .footer-brand { grid-column: 1 / -1; } }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(0,0,0,.08); display: flex; flex-direction: row; justify-content: center; align-items: baseline; flex-wrap: wrap; row-gap: 6px; column-gap: 28px; text-align: center; font-size: .79rem; color: var(--ink-3); }
:root[data-theme="dark"] .footer-bottom { border-top-color: rgba(255,255,255,.08); }
.cookie-banner {
position: fixed; left: 16px; right: 16px;
bottom: calc(16px + env(safe-area-inset-bottom));
z-index: 100; max-width: 560px; margin: 0 auto;
transform: translateY(160%); transition: transform .5s cubic-bezier(.2,.9,.25,1);
background: var(--bg); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .inner, .cookie-banner .cb-inner { padding: 20px; }
.cookie-banner h4 { font-size: 1rem; margin-bottom: 6px; color: var(--ink); }
.cookie-banner p { font-size: .84rem; color: var(--ink-2); line-height: 1.5; margin: 0 0 14px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn, .cookie-actions .key { flex: 1; min-width: 110px; padding: .6rem 1rem; font-size: .84rem; }
@media (max-width: 520px) { .cookie-banner { left: 10px; right: 10px; bottom: 10px; max-width: none; } }
.reveal { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 1; transform: none; }
.page-transition { animation: fadeIn .45s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { transition: none !important; animation: none !important; }
.reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
@media print {
*, *::before, *::after { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
.reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
.page-transition { animation: none !important; }
body { background: #e8ecef !important; }
header.site, #mnav, footer.site, .cookie-banner, .breadcrumb,
.hero, .picker, .tools, #fullPageLink, .burger,
.btn-row, .preset-row, .schedule-toggle, input[type=range] { display: none !important; }
.wrap { max-width: 100% !important; }
}
.loan-row-panel { background: var(--bg); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 16px; margin-bottom: 12px; }
.loan-row-panel .field-top .lab { font-size: .73rem; }
.countdown-large { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.cd-large { text-align: center; }
.cd-large .n {
font-family: var(--font-mono); font-size: clamp(2.4rem, 6vw, 4rem); color: var(--accent);
font-weight: 700; display: block; background: var(--bg); box-shadow: var(--shadow-in);
border-radius: var(--r); padding: 14px 22px; min-width: 90px;
}
.cd-large .l { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin-top: 8px; display: block; }
.btn.is-active {
box-shadow: var(--shadow-in);
color: var(--accent);
background: var(--bg);
}
.aside .device { box-shadow: var(--shadow-out); border-radius: var(--r); }
.compare-board-after.neu-panel,
.neu-panel.compare-board-after {
box-shadow: var(--shadow-out), 0 0 0 2px var(--green);
}
code {
font-family: var(--font-mono); font-size: .88em;
background: var(--accent-bg); color: var(--accent);
padding: 2px 6px; border-radius: 5px;
}
