@font-face {
  font-family: Manrope;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: Playfair;
  src: url('/fonts/playfair-display-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --bg: #080c13;
  --bg-soft: #0d131d;
  --surface: #111925;
  --surface-raised: #16202e;
  --text: #f5f1e9;
  --text-soft: #b7bfca;
  --muted: #87919f;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .17);
  --accent: #f2b544;
  --accent-strong: #ffc960;
  --accent-ink: #211707;
  --danger: #ff694f;
  --success: #70d7a2;
  --shadow: 0 28px 80px rgba(0, 0, 0, .38);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shell: 1180px;
}

.theme-aviator { --accent: #ff6a47; --accent-strong: #ff8b66; --accent-ink: #260d06; }
.theme-plinko { --accent: #f2b544; --accent-strong: #ffd477; --accent-ink: #211707; }
.theme-sweet { --accent: #eb6c9d; --accent-strong: #ff9bc1; --accent-ink: #250914; }

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 31rem),
    var(--bg);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 14px; border-radius: 8px; background: var(--text); color: var(--bg); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.reading-progress { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 3px; pointer-events: none; }
.reading-progress span { display: block; width: 0; height: 100%; background: var(--accent); box-shadow: 0 0 14px color-mix(in srgb, var(--accent) 65%, transparent); }

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 12, 19, .88);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner { display: flex; align-items: center; gap: 28px; min-height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; white-space: nowrap; }
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.brand span { font-size: 17px; letter-spacing: -.035em; }
.brand strong { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.main-nav a { position: relative; color: var(--text-soft); font-size: 13px; font-weight: 700; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; transform: scaleX(0); transform-origin: right; background: var(--accent); transition: transform .2s ease; }
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-button { display: none; width: 42px; height: 42px; margin-left: auto; padding: 11px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--text); }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin-block: 5px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 11px; padding: 13px 20px; border: 1px solid transparent; border-radius: 12px; font-size: 14px; font-weight: 800; line-height: 1.15; text-align: center; text-decoration: none; transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(3px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 65%, white); outline-offset: 3px; }
.button-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 14px 35px color-mix(in srgb, var(--accent) 25%, transparent); }
.button-primary:hover { background: var(--accent-strong); box-shadow: 0 18px 45px color-mix(in srgb, var(--accent) 33%, transparent); }
.button-ghost { border-color: var(--line-strong); background: rgba(255, 255, 255, .04); color: var(--text); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); background: rgba(255, 255, 255, .08); }
.button-header { min-height: 42px; padding: 10px 15px; background: var(--text); color: var(--bg); font-size: 12px; }
.button-compact { min-height: 43px; padding: 9px 16px; }

.hero { position: relative; min-height: 760px; overflow: hidden; border-bottom: 1px solid var(--line); background: #080c13; isolation: isolate; }
.hero-image { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(6, 9, 15, .99) 0%, rgba(6, 9, 15, .92) 36%, rgba(6, 9, 15, .46) 67%, rgba(6, 9, 15, .18) 100%), linear-gradient(0deg, rgba(6, 9, 15, .94) 0%, transparent 36%); }
.hero::after { content: ""; position: absolute; z-index: -1; right: 0; bottom: -28%; width: 55%; height: 70%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent), transparent 68%); filter: blur(24px); }
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); gap: 64px; align-items: end; min-height: 760px; padding-top: 130px; padding-bottom: 72px; }
.breadcrumbs { position: absolute; top: 110px; left: 0; display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--text-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }

.hero-copy { max-width: 760px; }
.eyebrow, .section-kicker { margin: 0 0 16px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; line-height: 1.4; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.hero h1 { max-width: 820px; margin: 0; font-family: Playfair, Georgia, serif; font-size: clamp(47px, 6.3vw, 86px); font-weight: 600; letter-spacing: -.052em; line-height: .98; text-wrap: balance; }
.hero h1 em { color: var(--accent); font-style: italic; font-weight: 500; }
.hero-lead { max-width: 680px; margin: 26px 0 0; color: #d1d6df; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 27px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.hero-card { align-self: end; padding: 26px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: rgba(9, 14, 22, .72); box-shadow: var(--shadow); backdrop-filter: blur(18px) saturate(130%); }
.hero-card-kicker { display: block; margin-bottom: 12px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-card > strong { display: block; font-family: Playfair, Georgia, serif; font-size: 24px; line-height: 1.2; }
.hero-card > p { margin: 12px 0 20px; color: var(--text-soft); font-size: 13px; line-height: 1.65; }
.hero-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--line); }
.hero-card-stats div { min-width: 0; padding: 14px 8px; background: rgba(11, 17, 26, .94); text-align: center; }
.hero-card-stats b { display: block; overflow: hidden; color: var(--accent); font-size: 15px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.hero-card-stats span { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; line-height: 1.25; text-transform: uppercase; }

.signal-strip { border-bottom: 1px solid var(--line); background: #0b1018; }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-grid > span { display: flex; min-height: 70px; align-items: center; gap: 10px; padding: 15px 20px; border-right: 1px solid var(--line); color: var(--text-soft); font-size: 11px; font-weight: 700; line-height: 1.4; }
.signal-grid > span:first-child { border-left: 1px solid var(--line); }
.signal-grid i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(112, 215, 162, .08); }

.article-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 70px; align-items: start; padding-top: 88px; padding-bottom: 120px; }
.toc { position: sticky; top: 112px; }
.toc > p { margin: 0 0 18px; color: var(--text); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; border-top: 1px solid var(--line); }
.toc li:last-child { border-bottom: 1px solid var(--line); }
.toc li a { display: grid; grid-template-columns: 26px 1fr; gap: 7px; padding: 11px 0; color: var(--muted); font-size: 11px; font-weight: 650; line-height: 1.35; text-decoration: none; }
.toc li a::before { content: counter(toc, decimal-leading-zero); color: color-mix(in srgb, var(--accent) 80%, white); font-size: 9px; letter-spacing: .03em; }
.toc li a:hover, .toc li a.is-active { color: var(--text); }
.toc-cta { margin-top: 24px; padding: 18px; border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line)); border-radius: var(--radius-md); background: color-mix(in srgb, var(--accent) 6%, var(--surface)); }
.toc-cta > span { display: block; margin-bottom: 7px; color: var(--text-soft); font-size: 11px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-size: 12px; font-weight: 800; text-decoration: none; }
.text-link svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; }

.article { min-width: 0; }
.verdict-panel { display: grid; grid-template-columns: 68px 1fr; gap: 23px; margin-bottom: 86px; padding: 30px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--surface)) 0%, var(--surface) 52%); }
.verdict-mark { display: grid; width: 68px; height: 68px; place-items: center; border: 1px solid color-mix(in srgb, var(--accent) 50%, var(--line)); border-radius: 50%; color: var(--accent); font-family: Playfair, Georgia, serif; font-size: 18px; font-style: italic; }
.verdict-panel h2 { margin: -4px 0 10px; font-family: Playfair, Georgia, serif; font-size: clamp(28px, 3vw, 40px); font-weight: 600; letter-spacing: -.035em; line-height: 1.1; }
.verdict-panel p:last-child { margin: 0; color: var(--text-soft); }

.content-section { margin-top: 0; padding: 0 0 96px; }
.content-section + .content-section { padding-top: 8px; }
.section-tinted { position: relative; margin-inline: -34px; padding: 36px 34px 90px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .018); }
.section-heading { max-width: 720px; margin-bottom: 31px; }
.section-heading h2, .conversion-band h2, .related h2 { margin: 0; font-family: Playfair, Georgia, serif; font-size: clamp(33px, 4vw, 50px); font-weight: 600; letter-spacing: -.042em; line-height: 1.1; text-wrap: balance; }
.section-heading > p:last-child { margin: 18px 0 0; color: var(--text-soft); font-size: 17px; }

.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--line); }
.fact { min-height: 137px; padding: 22px; background: var(--surface); }
.fact-label { display: block; margin-bottom: 16px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.fact strong { display: block; color: var(--text); font-size: 20px; letter-spacing: -.03em; line-height: 1.2; overflow-wrap: anywhere; }
.fact small { display: block; margin-top: 9px; color: var(--muted); font-size: 10px; line-height: 1.45; }

.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 72px 1fr; gap: 21px; padding: 26px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--accent); font-family: Playfair, Georgia, serif; font-size: 31px; font-style: italic; line-height: 1; }
.steps h3 { margin: 0 0 8px; font-size: 17px; letter-spacing: -.02em; }
.steps p { margin: 0; color: var(--text-soft); }

.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 26px; margin-top: 30px; padding: 24px; border-left: 3px solid var(--accent); border-radius: 0 var(--radius-md) var(--radius-md) 0; background: color-mix(in srgb, var(--accent) 7%, var(--surface)); }
.inline-cta > div span { display: block; margin-bottom: 4px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.inline-cta > div strong { font-size: 16px; }

.prose { color: #d4d8df; font-size: 16px; }
.prose h3 { margin: 38px 0 13px; color: var(--text); font-family: Playfair, Georgia, serif; font-size: 27px; font-weight: 600; letter-spacing: -.025em; line-height: 1.2; }
.prose h3:first-child { margin-top: 0; }
.prose p { margin: 0 0 19px; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent); font-weight: 700; }
.prose ul, .prose ol { margin: 23px 0; padding-left: 23px; }
.prose li { margin-bottom: 10px; padding-left: 6px; }
.prose li::marker { color: var(--accent); font-weight: 800; }
.prose blockquote { margin: 30px 0; padding: 6px 0 6px 24px; border-left: 2px solid var(--accent); color: var(--text); font-family: Playfair, Georgia, serif; font-size: 23px; font-style: italic; line-height: 1.45; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 27px 0; }
.metric { padding: 21px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(0, 0, 0, .13); }
.metric b { display: block; color: var(--accent); font-family: Playfair, Georgia, serif; font-size: 28px; font-weight: 600; line-height: 1.1; }
.metric span { display: block; margin-top: 9px; color: var(--muted); font-size: 10px; font-weight: 750; line-height: 1.4; text-transform: uppercase; }
.note { margin: 25px 0; padding: 22px; border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line)); border-radius: var(--radius-md); background: color-mix(in srgb, var(--accent) 5%, transparent); }
.note strong { display: block; margin-bottom: 7px; }
.note p:last-child { margin-bottom: 0; }

.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.comparison { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--surface); font-size: 12px; line-height: 1.45; }
.comparison th, .comparison td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison thead th { color: var(--muted); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.comparison tbody th { color: var(--text); font-size: 14px; }
.comparison tbody th small { display: block; margin-top: 5px; color: var(--accent); font-size: 8px; text-transform: uppercase; }
.comparison tbody tr:last-child th, .comparison tbody tr:last-child td { border-bottom: 0; }
.comparison tbody tr.is-current { background: color-mix(in srgb, var(--accent) 7%, transparent); }
.comparison a { color: var(--accent); font-weight: 800; white-space: nowrap; }

.conversion-band { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 26px 50px; align-items: center; overflow: hidden; margin: 8px 0 96px; padding: 46px; border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--line)); border-radius: var(--radius-lg); background: color-mix(in srgb, var(--accent) 10%, var(--surface)); }
.conversion-band::after { content: ""; position: absolute; right: -90px; bottom: -150px; width: 330px; height: 330px; border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent); border-radius: 50%; box-shadow: 0 0 0 45px color-mix(in srgb, var(--accent) 4%, transparent), 0 0 0 90px color-mix(in srgb, var(--accent) 3%, transparent); pointer-events: none; }
.conversion-band > * { position: relative; z-index: 1; }
.conversion-band h2 { font-size: clamp(31px, 4vw, 47px); }
.conversion-band p:not(.section-kicker) { max-width: 650px; margin: 16px 0 0; color: var(--text-soft); }
.conversion-band > small { grid-column: 1 / -1; color: var(--muted); font-size: 9px; text-transform: uppercase; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; color: var(--text); font-size: 16px; font-weight: 750; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; color: var(--accent); font-size: 21px; font-weight: 400; transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-answer { padding: 0 46px 22px 0; color: var(--text-soft); }
.faq-answer p { margin: 0; }

.sources { margin-top: 4px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, .018); }
.sources h2 { margin: 0 0 10px; font-size: 15px; }
.sources p { margin: 0; color: var(--muted); font-size: 12px; }
.sources ol { margin: 16px 0 0; padding-left: 20px; }
.sources li { margin: 7px 0; color: var(--muted); font-size: 11px; }
.sources a { color: var(--text-soft); }

.related { padding-top: 96px; }
.related > h2 { max-width: 640px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.related-card { min-height: 250px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); text-decoration: none; transition: transform .2s ease, border-color .2s ease, background-color .2s ease; }
.related-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); background: var(--surface-raised); }
.related-card > span { color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.related-card > strong { display: block; margin-top: 28px; font-family: Playfair, Georgia, serif; font-size: 31px; font-weight: 600; line-height: 1.1; }
.related-card p { margin: 13px 0 27px; color: var(--text-soft); font-size: 13px; }
.related-card b { color: var(--accent); font-size: 11px; }

.intent-panel { position: fixed; z-index: 120; right: 22px; bottom: 22px; width: min(390px, calc(100% - 32px)); padding: 27px; border: 1px solid color-mix(in srgb, var(--accent) 48%, var(--line)); border-radius: var(--radius-lg); background: rgba(14, 20, 30, .97); box-shadow: 0 30px 90px rgba(0, 0, 0, .58); backdrop-filter: blur(20px); animation: panel-in .42s cubic-bezier(.2, .8, .2, 1) both; }
.intent-panel[hidden] { display: none; }
.intent-close { position: absolute; top: 12px; right: 12px; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 9px; background: transparent; color: var(--muted); cursor: pointer; }
.intent-kicker { display: block; margin-bottom: 8px; color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.intent-panel > strong { display: block; max-width: 300px; padding-right: 24px; font-family: Playfair, Georgia, serif; font-size: 25px; line-height: 1.15; }
.intent-panel > p { margin: 12px 0 20px; color: var(--text-soft); font-size: 12px; }
.intent-panel .button { width: 100%; }
.intent-panel > small { display: block; margin-top: 10px; color: var(--muted); font-size: 8px; text-align: center; text-transform: uppercase; }
@keyframes panel-in { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.mobile-action { position: fixed; z-index: 90; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); left: 12px; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 9px 9px 16px; border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(12, 18, 27, .95); box-shadow: 0 18px 55px rgba(0, 0, 0, .48); backdrop-filter: blur(16px); transform: translateY(150%); transition: transform .28s ease; }
.mobile-action.is-visible { transform: translateY(0); }
.mobile-action small { display: block; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.mobile-action strong { display: block; max-width: 170px; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }

.site-footer { border-top: 1px solid var(--line); background: #070a10; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 70px; padding-top: 65px; padding-bottom: 55px; }
.footer-brand p { max-width: 390px; margin: 22px 0 0; color: var(--muted); font-size: 12px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid > div > strong { margin-bottom: 7px; color: var(--text); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { color: var(--muted); font-size: 12px; text-decoration: none; }
.footer-grid > div > a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; padding-bottom: 28px; border-top: 1px solid var(--line); color: #929ba8; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 76px; right: 0; bottom: 0; left: 0; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 28px 24px; background: rgba(8, 12, 19, .98); backdrop-filter: blur(20px); }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--text); font-family: Playfair, Georgia, serif; font-size: 25px; font-weight: 500; }
  .menu-button { display: block; }
  .header-inner > .button-header { display: none; }
  .hero { min-height: 720px; }
  .hero-inner { grid-template-columns: 1fr; align-content: end; min-height: 720px; padding-bottom: 54px; }
  .hero-card { display: none; }
  .hero-copy { max-width: 720px; }
  .hero-shade { background: linear-gradient(90deg, rgba(6, 9, 15, .96), rgba(6, 9, 15, .66)), linear-gradient(0deg, rgba(6, 9, 15, .95), transparent 48%); }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid > span:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .signal-grid > span:nth-child(4) { border-top: 1px solid var(--line); }
  .article-layout { grid-template-columns: 1fr; gap: 0; }
  .toc { display: none; }
  .article { width: min(100%, 820px); margin-inline: auto; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 70px; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 15px; }
  .hero { min-height: 730px; }
  .hero-inner { min-height: 730px; padding-top: 112px; padding-bottom: 42px; }
  .breadcrumbs { top: 88px; font-size: 10px; }
  .hero-image { object-position: 67% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(6, 9, 15, .99) 0%, rgba(6, 9, 15, .9) 48%, rgba(6, 9, 15, .4) 100%), linear-gradient(90deg, rgba(6, 9, 15, .8), transparent); }
  .hero h1 { max-width: 620px; font-size: clamp(43px, 13.2vw, 66px); }
  .hero-lead { margin-top: 20px; font-size: 15px; line-height: 1.58; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 8px 14px; margin-top: 20px; font-size: 8px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid > span { min-height: 62px; padding: 12px; font-size: 9px; }
  .article-layout { padding-top: 58px; padding-bottom: 90px; }
  .verdict-panel { grid-template-columns: 1fr; gap: 17px; margin-bottom: 68px; padding: 24px; }
  .verdict-mark { width: 50px; height: 50px; font-size: 14px; }
  .verdict-panel h2 { font-size: 31px; }
  .content-section { padding-bottom: 75px; }
  .section-tinted { margin-inline: -7px; padding: 29px 20px 68px; }
  .section-heading { margin-bottom: 25px; }
  .section-heading h2, .related h2 { font-size: 36px; }
  .section-heading > p:last-child { font-size: 15px; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact { min-height: 124px; padding: 18px; }
  .fact strong { font-size: 17px; }
  .steps li { grid-template-columns: 48px 1fr; gap: 12px; padding: 22px 0; }
  .steps li > span { font-size: 25px; }
  .inline-cta { flex-direction: column; align-items: stretch; }
  .inline-cta .button { width: 100%; }
  .prose { font-size: 15px; }
  .prose h3 { font-size: 25px; }
  .metric-row { grid-template-columns: 1fr; }
  .metric { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
  .metric span { margin-top: 0; text-align: right; }
  .conversion-band { grid-template-columns: 1fr; gap: 22px; margin-bottom: 76px; padding: 30px 23px; }
  .conversion-band .button { width: 100%; }
  .conversion-band > small { grid-column: auto; }
  .faq-item summary { font-size: 14px; }
  .faq-answer { padding-right: 20px; font-size: 14px; }
  .related { padding-top: 74px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 220px; }
  .intent-panel { right: 16px; bottom: 86px; padding: 22px; }
  .intent-panel > strong { font-size: 23px; }
  .mobile-action { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; padding-top: 50px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 7px; padding-bottom: 92px; }
}

@media (max-width: 430px) {
  .hero { min-height: 760px; }
  .hero-inner { min-height: 760px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid > span { min-height: 50px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .signal-grid > span:first-child { border-top: 0; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact { padding: 15px; }
  .fact-label { margin-bottom: 12px; font-size: 8px; }
  .fact strong { font-size: 15px; }
  .fact small { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
