
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--font-body);
font-size: 17px;
line-height: 1.7;
color: var(--ink);
background: var(--background);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
color: var(--ink);
letter-spacing: -0.01em;
line-height: 1.2;
margin: 0 0 var(--sp-4);
font-weight: 700;
}
h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.15; }
h3 { font-size: clamp(20px, 2.4vw, 24px); line-height: 1.25; }
h4 { font-size: clamp(17px, 1.6vw, 19px); }
p { margin: 0 0 var(--sp-4); }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--sp-6) 0; }
ul, ol { padding-left: 22px; margin: 0 0 var(--sp-4); }
li { margin-bottom: 6px; }
code, pre { font-family: var(--font-mono); font-size: 14px; }
pre { background: var(--surface-ink); color: #E9EEF7; padding: var(--sp-4); border-radius: var(--radius-md); overflow-x: auto; }
blockquote { border-left: 4px solid var(--primary); margin: 0 0 var(--sp-4); padding: var(--sp-2) var(--sp-4); color: var(--ink-2); background: var(--surface-2); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--sp-5); }
.container-narrow { width: 100%; max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 var(--sp-5); }
.skip-link {
position: absolute; top: -40px; left: var(--sp-3);
background: var(--surface-ink); color: #fff;
padding: var(--sp-2) var(--sp-4); border-radius: var(--radius-md);
z-index: 999; transition: top 0.15s ease;
}
.skip-link:focus { top: var(--sp-3); }
.site-header {
position: sticky; top: 0; z-index: 250;
background: rgba(246, 248, 252, 0.92);
backdrop-filter: saturate(180%) blur(12px);
-webkit-backdrop-filter: saturate(180%) blur(12px);
border-bottom: 1px solid var(--border);
}
.header-row {
display: flex; align-items: center; gap: var(--sp-4);
min-height: var(--header-h);
}
.brand-mark {
display: inline-flex; align-items: center; gap: var(--sp-3);
color: var(--ink);
font-family: var(--font-display);
font-weight: 800; font-size: 22px;
letter-spacing: -0.02em;
}
.brand-mark:hover { text-decoration: none; }
.brand-logo {
width: 36px; height: 36px; border-radius: 10px;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
display: inline-flex; align-items: center; justify-content: center;
color: #fff; font-weight: 800; font-size: 17px;
box-shadow: var(--shadow-sm);
}
.brand-tag {
display: block; font-size: 11px; font-weight: 600; color: var(--muted);
letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px;
}
.nav-links {
display: none; align-items: center; gap: var(--sp-2);
list-style: none; padding: 0; margin: 0 0 0 auto;
}
.nav-links > li { margin: 0; }
.nav-links a {
display: inline-block; padding: 10px 14px;
color: var(--ink); font-weight: 500; font-size: 15px;
border-radius: var(--radius-md);
white-space: nowrap;
}
.nav-links a:hover { background: var(--surface-2); text-decoration: none; }
.nav-links a.active { background: var(--surface-ink); color: #fff; }
.header-cta { display: none; gap: var(--sp-2); align-items: center; margin-left: var(--sp-3); }
.header-cta-ghost {
display: inline-flex; align-items: center;
padding: 9px 16px; border-radius: var(--radius-pill);
border: 1px solid var(--border-strong);
background: transparent; color: var(--ink);
font-weight: 600; font-size: 14px; white-space: nowrap;
}
.header-cta-ghost:hover { background: var(--surface-2); text-decoration: none; }
.header-cta-primary {
display: inline-flex; align-items: center; gap: 6px;
padding: 9px 18px; border-radius: var(--radius-pill);
background: var(--primary); color: #fff;
font-weight: 600; font-size: 14px; white-space: nowrap;
border: none;
box-shadow: var(--shadow-sm);
}
.header-cta-primary:hover { background: var(--primary-deep); text-decoration: none; }
.hamburger {
display: inline-flex; flex-direction: column; justify-content: space-between;
width: 28px; height: 22px; padding: 0;
background: transparent; border: 0;
margin-left: auto; cursor: pointer; z-index: 300;
position: relative;
}
.hamburger span {
display: block; width: 100%; height: 2px;
background: var(--ink); border-radius: 2px;
transition: transform 0.18s ease, opacity 0.18s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
.mobile-drawer {
position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
background: var(--surface);
border-left: 1px solid var(--border);
box-shadow: -16px 0 48px rgba(27, 38, 56, 0.18);
transform: translateX(100%);
transition: transform 0.24s ease;
z-index: 220;
display: flex; flex-direction: column;
padding: calc(var(--header-h) + 16px) 22px var(--sp-7);
overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer-backdrop {
position: fixed; inset: 0; background: rgba(27, 38, 56, 0.42);
opacity: 0; pointer-events: none;
transition: opacity 0.18s ease;
z-index: 210;
}
.mobile-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.mobile-drawer a {
display: block; padding: 14px 14px; color: var(--ink);
font-size: 17px; font-weight: 500;
border-radius: var(--radius-md);
}
.mobile-drawer a:hover, .mobile-drawer a.active { background: var(--surface-2); text-decoration: none; }
.mobile-drawer .mcta { margin-top: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); }
.mobile-drawer .btn { width: 100%; justify-content: center; }
.hero {
position: relative;
background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
border-bottom: 1px solid var(--border);
padding: var(--sp-7) 0 var(--sp-8);
overflow: hidden;
}
.hero-grid {
display: grid; gap: var(--sp-7);
grid-template-columns: 1fr;
align-items: center;
}
.hero-eyebrow {
display: inline-flex; align-items: center; gap: 8px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-pill);
padding: 6px 14px;
color: var(--primary-deep); font-weight: 600;
font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
margin-bottom: var(--sp-4);
box-shadow: var(--shadow-sm);
}
.hero-eyebrow::before {
content: ""; width: 8px; height: 8px; border-radius: 50%;
background: var(--accent); box-shadow: 0 0 0 4px rgba(160, 68, 197, 0.18);
}
.hero h1 {
margin-bottom: var(--sp-4);
}
.hero h1 .accent {
background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
-webkit-background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-lede {
font-size: clamp(16px, 1.4vw, 19px);
color: var(--ink-2); max-width: 56ch; margin-bottom: var(--sp-5);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.hero-meta {
display: flex; flex-wrap: wrap; gap: var(--sp-5);
font-size: 13px; color: var(--muted);
}
.hero-meta-item { display: flex; align-items: center; gap: 6px; }
.hero-meta-item strong { color: var(--ink); font-weight: 600; }
.hero-art {
position: relative; aspect-ratio: 4/3;
border-radius: var(--radius-xl);
overflow: hidden;
background: var(--surface-2);
box-shadow: var(--shadow-lg);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-data-poster {
position: absolute; right: -16px; bottom: -16px;
background: var(--surface-ink); color: #fff;
border-radius: var(--radius-lg);
padding: 14px 18px; min-width: 180px;
box-shadow: var(--shadow-lg);
font-family: var(--font-mono); font-size: 12px;
border: 1px solid rgba(255,255,255,0.08);
}
.hero-data-poster .num {
display: block;
font-family: var(--font-display); font-size: 32px; font-weight: 800;
letter-spacing: -0.02em; color: #fff;
}
.hero-data-poster .lbl { color: var(--accent-soft); }
.btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 12px 22px; border-radius: var(--radius-pill);
font-weight: 600; font-size: 15px; line-height: 1.2;
border: 1px solid transparent;
cursor: pointer;
transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.06s ease;
white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-deep); text-decoration: none; color: #fff; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--accent-deep); color: #fff; text-decoration: none; }
.btn-ghost {
background: transparent; color: var(--ink);
border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-2); text-decoration: none; }
.btn-ink { background: var(--surface-ink); color: #fff; }
.btn-ink:hover { background: #0F1A2A; color: #fff; text-decoration: none; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn[rel="sponsored nofollow noopener noreferrer"] { }
.trust-strip {
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
background: var(--surface);
padding: var(--sp-4) 0;
font-size: 13px;
color: var(--muted);
}
.trust-strip-row {
display: flex; flex-wrap: wrap; gap: var(--sp-5) var(--sp-7);
align-items: center; justify-content: space-between;
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-item svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.section { padding: var(--sp-8) 0; }
.section-tight { padding: var(--sp-7) 0; }
.section-band { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-ink { background: var(--surface-ink); color: #E9EEF7; }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }
.section-ink a { color: var(--accent-soft); }
.section-ink a:hover { color: #fff; }
.section-paper { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head {
display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
gap: var(--sp-4); margin-bottom: var(--sp-6);
}
.section-head .meta {
font-family: var(--font-mono); font-size: 12px; color: var(--muted);
letter-spacing: 0.08em; text-transform: uppercase;
}
.section-head h2 { margin: 0; }
.section-head p { color: var(--muted); margin: 0; max-width: 60ch; }
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--sp-5);
box-shadow: var(--shadow-card);
transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.12s ease;
}
.card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.card.feature-card { display: flex; flex-direction: column; gap: var(--sp-3); }
.card-icon {
width: 44px; height: 44px; border-radius: var(--radius-md);
background: var(--surface-2); color: var(--primary);
display: inline-flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 18px; margin: 0; }
.card p { color: var(--ink-2); margin: 0; font-size: 15px; }
.card-grid { display: grid; gap: var(--sp-4); }
.card-grid.cols-2 { grid-template-columns: 1fr; }
.card-grid.cols-3 { grid-template-columns: 1fr; }
.card-grid.cols-4 { grid-template-columns: 1fr; }
.card-grid.cols-6 { grid-template-columns: 1fr; }
@media (min-width: 600px) {
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
}
.stat-tile {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--sp-5);
display: flex; flex-direction: column; gap: 6px;
text-align: left;
}
.stat-tile .num {
font-family: var(--font-display); font-weight: 800;
font-size: clamp(28px, 3vw, 36px); color: var(--primary-deep);
letter-spacing: -0.02em; line-height: 1;
}
.stat-tile .lbl {
font-size: 13px; color: var(--muted);
text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.stat-tile .sub { font-size: 13px; color: var(--muted); }
.hub-card {
position: relative; display: flex; flex-direction: column;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--sp-5);
text-decoration: none; color: inherit;
transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.12s ease;
overflow: hidden;
}
.hub-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); text-decoration: none; transform: translateY(-2px); }
.hub-card .eyebrow {
font-family: var(--font-mono); font-size: 11px;
color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
margin-bottom: 6px;
}
.hub-card h3 { margin: 0 0 8px; font-size: 18px; }
.hub-card p { color: var(--ink-2); font-size: 14px; margin: 0 0 var(--sp-4); }
.hub-card .arrow { color: var(--primary); font-weight: 600; font-size: 14px; margin-top: auto; }
.hub-card .arrow::after { content: " →"; transition: transform 0.16s ease; display: inline-block; }
.hub-card:hover .arrow::after { transform: translateX(3px); }
.step-card { display: flex; flex-direction: column; gap: var(--sp-3); }
.step-num {
display: inline-flex; align-items: center; justify-content: center;
width: 38px; height: 38px; border-radius: 50%;
background: var(--primary); color: #fff;
font-family: var(--font-mono); font-weight: 700;
font-size: 15px;
}
.step-card h3 { margin: 0; font-size: 17px; }
.step-card p { font-size: 14px; color: var(--ink-2); margin: 0; }
.spotlight-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--sp-5);
display: flex; flex-direction: column; gap: var(--sp-3);
}
.spotlight-card .label {
font-family: var(--font-mono); font-size: 11px; color: var(--muted);
letter-spacing: 0.12em; text-transform: uppercase;
}
.spotlight-card .big {
font-family: var(--font-display); font-size: 28px; font-weight: 800;
color: var(--primary-deep); letter-spacing: -0.02em; line-height: 1.1;
}
.spotlight-card .note { font-size: 13px; color: var(--muted); }
.compare-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--sp-5);
display: flex; flex-direction: column; gap: var(--sp-3);
}
.compare-card .role {
font-family: var(--font-mono); font-size: 11px;
color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
}
.compare-card .name { font-size: 18px; font-weight: 700; }
.compare-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px var(--sp-3); font-size: 13px; }
.compare-card dt { color: var(--muted); }
.compare-card dd { margin: 0; color: var(--ink); font-weight: 600; }
.band { padding: var(--sp-7) 0; }
.band-paper { background: var(--surface); }
.band-elev-2 { background: var(--surface-2); }
.band-elev-3 { background: var(--surface-3); }
.data-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--sp-5);
display: flex; flex-direction: column; gap: var(--sp-2);
}
.data-card .data-label {
font-family: var(--font-mono); font-size: 11px; color: var(--muted);
letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.data-card .data-value {
font-family: var(--font-display); font-size: 28px; font-weight: 800;
color: var(--primary-deep); letter-spacing: -0.02em; line-height: 1.1;
}
.data-card .data-note { font-size: 13px; color: var(--ink-2); }
.loose-card {
background: linear-gradient(135deg, rgba(36, 87, 167, 0.06) 0%, rgba(160, 68, 197, 0.04) 100%);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--sp-5);
}
.story-rail {
display: grid; gap: var(--sp-4);
grid-template-columns: 1fr;
}
.story-card {
display: grid;
grid-template-columns: 96px 1fr;
gap: var(--sp-4); align-items: start;
padding: var(--sp-4); border-radius: var(--radius-lg);
background: var(--surface); border: 1px solid var(--border);
text-decoration: none; color: inherit;
transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.story-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); text-decoration: none; }
.story-card .thumb {
aspect-ratio: 1; width: 96px; border-radius: var(--radius-md); overflow: hidden;
background: var(--surface-2);
}
.story-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.story-card .meta {
font-family: var(--font-mono); font-size: 11px; color: var(--muted);
letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px;
}
.story-card h3 { margin: 0 0 6px; font-size: 17px; }
.story-card p { margin: 0; font-size: 14px; color: var(--ink-2); }
.takeaway-grid {
display: grid; gap: var(--sp-4);
grid-template-columns: 1fr;
}
.takeaway {
display: flex; flex-direction: column; gap: var(--sp-2);
padding: var(--sp-5);
background: var(--surface);
border: 1px solid var(--border);
border-left: 4px solid var(--primary);
border-radius: var(--radius-md);
}
.takeaway.accent { border-left-color: var(--accent); }
.takeaway.warn { border-left-color: var(--warning); }
.takeaway .tag {
font-family: var(--font-mono); font-size: 11px; color: var(--primary);
letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
}
.takeaway h3 { margin: 0; font-size: 17px; }
.takeaway p { margin: 0; font-size: 14px; color: var(--ink-2); }
.alt-split {
display: grid; gap: var(--sp-7);
grid-template-columns: 1fr;
align-items: start;
}
.alt-split-media {
position: relative; aspect-ratio: 5/4;
border-radius: var(--radius-lg); overflow: hidden;
background: var(--surface-2); border: 1px solid var(--border);
}
.alt-split-media img { width: 100%; height: 100%; object-fit: cover; }
.alt-split-caption {
position: absolute; left: var(--sp-4); bottom: var(--sp-4);
background: rgba(27, 38, 56, 0.88); color: #fff;
padding: 10px 14px; border-radius: var(--radius-md);
font-size: 12px; max-width: 84%;
backdrop-filter: blur(6px);
}
.alt-split-body h3 { margin-top: 0; }
.alt-split-body .meta { color: var(--muted); font-size: 13px; margin-bottom: var(--sp-4); }
.voice-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--sp-5);
display: flex; flex-direction: column; gap: var(--sp-3);
height: 100%;
}
.voice-card .quote { font-size: 16px; color: var(--ink); margin: 0; line-height: 1.55; }
.voice-card .who {
display: flex; align-items: center; gap: var(--sp-3);
margin-top: auto; padding-top: var(--sp-3);
border-top: 1px solid var(--border);
}
.voice-card .avatar {
width: 40px; height: 40px; border-radius: 50%;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
display: inline-flex; align-items: center; justify-content: center;
color: #fff; font-weight: 700; font-size: 14px;
}
.voice-card .name { font-weight: 600; font-size: 14px; }
.voice-card .role { font-size: 12px; color: var(--muted); }
.tool-shelf {
display: grid; gap: var(--sp-4);
grid-template-columns: 1fr;
}
.tool-item {
display: flex; align-items: center; gap: var(--sp-4);
padding: var(--sp-4);
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
text-decoration: none; color: inherit;
transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.tool-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); text-decoration: none; }
.tool-item .ico {
width: 48px; height: 48px; border-radius: var(--radius-md);
background: var(--surface-2); color: var(--primary);
display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tool-item .ico svg { width: 24px; height: 24px; }
.tool-item .body { flex: 1; }
.tool-item .body strong { display: block; font-size: 15px; }
.tool-item .body span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.tool-item .arrow { color: var(--primary); font-weight: 600; }
.news-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.news-row {
display: grid; grid-template-columns: 1fr auto; gap: var(--sp-3);
padding: var(--sp-4) var(--sp-5);
background: var(--surface);
text-decoration: none; color: inherit;
transition: background 0.12s ease;
}
.news-row:hover { background: var(--surface-2); text-decoration: none; }
.news-row .when { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.news-row h3 { margin: 4px 0 0; font-size: 16px; }
.news-row .tag {
display: inline-block; padding: 2px 8px; border-radius: var(--radius-pill);
background: var(--surface-2); color: var(--ink-2); font-size: 11px;
font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase;
margin-top: 4px;
}
.standard-row {
display: grid; gap: var(--sp-4);
grid-template-columns: 1fr;
padding: var(--sp-4) 0;
border-bottom: 1px solid var(--border);
}
.standard-row:last-child { border-bottom: 0; }
.standard-row .label {
font-family: var(--font-mono); font-size: 11px; color: var(--muted);
letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px;
}
.standard-row h3 { margin: 0 0 6px; font-size: 17px; }
.standard-row p { font-size: 14px; color: var(--ink-2); margin: 0; }
.cta-band {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: #fff; border-radius: var(--radius-xl);
padding: var(--sp-7);
display: grid; gap: var(--sp-5);
grid-template-columns: 1fr;
align-items: center;
}
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { color: rgba(255,255,255,0.92); margin: 0; max-width: 60ch; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.cta-band .btn-primary { background: #fff; color: var(--primary-deep); }
.cta-band .btn-primary:hover { background: var(--surface-2); color: var(--primary-deep); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.faq { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
background: var(--surface); border: 1px solid var(--border);
border-radius: var(--radius-md); padding: var(--sp-4) var(--sp-5);
}
.faq-item h3 { margin: 0 0 8px; font-size: 16px; }
.faq-item p { margin: 0; color: var(--ink-2); font-size: 14px; }
.faq-grid { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 720px) { .faq-grid { grid-template-columns: repeat(2, 1fr); } }
.inline-image-row {
display: grid; gap: var(--sp-5);
grid-template-columns: 1fr;
align-items: center;
margin: var(--sp-6) 0;
}
.inline-image-row img,
.inline-image-row .visual {
width: 100%; aspect-ratio: 16/10;
object-fit: cover; border-radius: var(--radius-lg);
border: 1px solid var(--border);
background: var(--surface-2);
box-shadow: var(--shadow-card);
}
@media (min-width: 720px) {
.inline-image-row { grid-template-columns: 1fr 1fr; }
.inline-image-row.reverse { direction: rtl; }
.inline-image-row.reverse > * { direction: ltr; }
}
.data-table {
width: 100%; border-collapse: collapse; font-size: 14px;
background: var(--surface); border-radius: var(--radius-lg);
overflow: hidden; box-shadow: var(--shadow-card);
border: 1px solid var(--border);
}
.data-table thead { background: var(--surface-ink); color: #fff; }
.data-table th, .data-table td { padding: 12px 14px; text-align: left; vertical-align: top; }
.data-table th { font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.data-table tbody tr { border-top: 1px solid var(--border); }
.data-table tbody tr:nth-child(even) { background: var(--surface-2); }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: var(--sp-3); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--primary); }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }
.site-footer {
background: var(--surface-ink); color: #B6C4D9;
padding: var(--sp-8) 0 var(--sp-5);
margin-top: var(--sp-8);
}
.site-footer a { color: #D5DFEE; }
.site-footer a:hover { color: #fff; }
.footer-grid {
display: grid; gap: var(--sp-6);
grid-template-columns: 1fr;
}
.footer-col h4 {
color: #fff; font-size: 13px; text-transform: uppercase;
letter-spacing: 0.08em; margin-bottom: var(--sp-3);
font-family: var(--font-mono);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 14px; }
.footer-brand .brand-mark { color: #fff; }
.footer-brand p { color: #8FA0B8; font-size: 14px; margin-top: var(--sp-3); max-width: 36ch; }
.footer-bottom {
margin-top: var(--sp-7);
padding-top: var(--sp-5);
border-top: 1px solid #2C3E5A;
display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-5);
align-items: center; justify-content: space-between;
font-size: 13px; color: #8FA0B8;
}
.footer-bottom ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.social-icons { display: flex; gap: var(--sp-3); }
.social-icons a {
width: 36px; height: 36px; border-radius: 50%;
background: #2C3E5A;
display: inline-flex; align-items: center; justify-content: center;
color: #B6C4D9;
}
.social-icons a:hover { background: var(--primary); color: #fff; }
.social-icons svg { width: 18px; height: 18px; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); } }
.mobile-sticky-cta {
display: flex;
position: fixed; left: 0; right: 0; bottom: 0;
z-index: 200;
background: rgba(255, 255, 255, 0.96);
backdrop-filter: saturate(180%) blur(14px);
-webkit-backdrop-filter: saturate(180%) blur(14px);
border-top: 1px solid var(--border);
padding: 10px var(--sp-4);
gap: var(--sp-3);
align-items: center;
box-shadow: 0 -10px 30px rgba(27, 38, 56, 0.10);
min-height: var(--cta-bar-h);
}
.mobile-sticky-cta .lbl {
font-size: 13px; color: var(--muted); line-height: 1.2;
}
.mobile-sticky-cta .lbl strong { display: block; color: var(--ink); font-size: 14px; font-weight: 700; }
.mobile-sticky-cta .btn { flex: 1; justify-content: center; padding: 12px 18px; }
@media (min-width: 900px) {
.mobile-sticky-cta { display: none; }
}
@media (min-width: 900px) {
.nav-links { display: flex; }
.header-cta { display: inline-flex; }
.hamburger { display: none; }
.hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--sp-8); }
.hero { padding: var(--sp-9) 0 var(--sp-9); }
.alt-split { grid-template-columns: 1fr 1.1fr; gap: var(--sp-8); }
.story-rail { grid-template-columns: repeat(2, 1fr); }
.takeaway-grid { grid-template-columns: repeat(3, 1fr); }
.tool-shelf { grid-template-columns: repeat(2, 1fr); }
.standard-row { grid-template-columns: 200px 1fr; gap: var(--sp-6); align-items: start; }
.cta-band { grid-template-columns: 1.4fr auto; padding: var(--sp-8); }
.cta-band .cta-actions { justify-content: flex-end; }
}
.page-hero {
background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
padding: var(--sp-7) 0 var(--sp-6);
border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: var(--sp-3); }
.page-hero .crumbs { margin-bottom: var(--sp-3); }
.page-hero .lede { color: var(--ink-2); font-size: 18px; max-width: 64ch; }
.hub-rail {
display: flex; flex-wrap: wrap; gap: 6px;
padding: var(--sp-3) 0; margin-bottom: var(--sp-5);
border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.hub-rail a {
padding: 8px 12px; border-radius: var(--radius-md);
background: var(--surface-2); color: var(--ink-2);
font-size: 13px; font-weight: 500;
}
.hub-rail a:hover { background: var(--primary); color: #fff; text-decoration: none; }
.hub-rail a.active { background: var(--surface-ink); color: #fff; }
.toc {
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--sp-4) var(--sp-5);
margin: var(--sp-5) 0;
}
.toc h2 { font-size: 13px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 var(--sp-2); }
.toc ol { margin: 0; padding-left: 20px; font-size: 14px; }
.toc li { margin-bottom: 4px; }
.toc a { color: var(--ink-2); }
.verified-box {
background: var(--surface);
border: 1px solid var(--border);
border-left: 4px solid var(--success);
border-radius: var(--radius-md);
padding: var(--sp-4) var(--sp-5);
margin: var(--sp-5) 0;
}
.verified-box h3 {
margin: 0 0 8px; font-size: 14px;
font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase;
color: var(--success);
}
.verified-box dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 4px var(--sp-3); font-size: 13px; }
.verified-box dt { color: var(--muted); font-weight: 600; }
.verified-box dd { margin: 0; color: var(--ink); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 899px) {
.hero { min-height: 480px !important; max-height: 720px !important; padding: 80px 0 60px !important; overflow: hidden; }
.hero-grid { grid-template-columns: 1fr !important; gap: var(--sp-5) !important; }
.hero-art { aspect-ratio: 16/10 !important; max-height: 320px !important; }
.hero h1 { font-size: clamp(26px, 7vw, 36px) !important; line-height: 1.1 !important; }
.hero-lede { font-size: 15px !important; line-height: 1.55 !important; }
.hero-cta .btn { flex: 1 1 auto !important; justify-content: center !important; padding: 12px 14px !important; font-size: 14px !important; }
.hero-meta { font-size: 12px !important; gap: var(--sp-3) !important; }
.hero-data-poster { right: 8px !important; bottom: 8px !important; padding: 8px 12px !important; min-width: 140px !important; }
.hero-data-poster .num { font-size: 22px !important; }
.hero-data-poster .lbl, .hero-data-poster span:last-child { font-size: 10px !important; }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.001ms !important;
transition-duration: 0.001ms !important;
}
html { scroll-behavior: auto; }
}
