:root {
  --ink: #18202b;
  --muted: #657082;
  --paper: #f7f8fb;
  --card: #ffffff;
  --line: #e4e8ef;
  --brand: #d7263d;
  --brand-dark: #a9152a;
  --navy: #111827;
  --gold: #f5b942;
  --radius: 18px;
  --shadow: 0 14px 36px rgba(19, 28, 45, .09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.68 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: var(--brand-dark); }
.wrap { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.site-header { background: rgba(17, 24, 39, .98); color: #fff; border-bottom: 3px solid var(--brand); position: sticky; top: 0; z-index: 10; }
.header-row { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { color: #fff; text-decoration: none; font-weight: 900; font-size: 23px; letter-spacing: -.4px; }
.logo span { color: var(--gold); }
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { color: #e8edf5; text-decoration: none; font-weight: 650; font-size: 14px; }
.nav a:hover { color: #fff; }
.hero { padding: 74px 0 56px; background: radial-gradient(circle at 80% 15%, rgba(215,38,61,.24), transparent 32%), linear-gradient(135deg, #111827, #253349); color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.1); color: #f7d889; font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
h1 { margin: 18px 0 16px; max-width: 850px; font-size: clamp(36px, 6vw, 66px); line-height: 1.03; letter-spacing: -.045em; }
.hero p { max-width: 760px; color: #dbe3ee; font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 12px; background: var(--brand); color: #fff; text-decoration: none; font-weight: 850; box-shadow: 0 10px 22px rgba(215,38,61,.25); }
.btn:hover { background: var(--brand-dark); }
.btn.alt { background: transparent; border: 1px solid rgba(255,255,255,.35); box-shadow: none; }
main { min-height: 60vh; }
.section { padding: 54px 0; }
.section h2 { margin: 0 0 18px; font-size: clamp(27px, 4vw, 39px); line-height: 1.14; letter-spacing: -.025em; }
.section h3 { margin: 26px 0 8px; font-size: 22px; }
.lead { font-size: 19px; color: #4d596a; max-width: 850px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); }
.card h3 { margin-top: 0; }
.card p { color: var(--muted); }
.card a { font-weight: 800; }
.article { width: min(860px, calc(100% - 32px)); margin: 38px auto 60px; padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.article h1 { color: var(--navy); font-size: clamp(34px, 5vw, 54px); max-width: none; }
.article h2 { margin-top: 38px; font-size: 29px; line-height: 1.2; }
.article p, .article li { color: #3d4858; }
.article .notice { margin: 22px 0; padding: 18px 20px; border-left: 4px solid var(--gold); background: #fff8e8; border-radius: 9px; }
.breadcrumbs { color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--muted); }
.related { margin-top: 38px; padding: 24px; border-radius: 16px; background: #f3f5f9; }
.related ul { columns: 2; padding-left: 20px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.fact { padding: 18px; border-radius: 14px; background: #f3f5f9; }
.fact strong { display: block; color: var(--navy); }
.site-footer { padding: 34px 0; background: var(--navy); color: #b9c3d2; font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-row p { max-width: 760px; margin: 0; }
.site-footer a { color: #fff; }
@media (max-width: 800px) {
  .header-row { align-items: flex-start; flex-direction: column; padding: 16px 0; gap: 10px; }
  .site-header { position: static; }
  .nav { gap: 11px 15px; }
  .grid, .facts { grid-template-columns: 1fr; }
  .article { padding: 25px 20px; margin-top: 22px; }
  .related ul { columns: 1; }
}
