:root {
  --gold: #d6b535;
  --gold-bright: #ffe268;
  --olive: #8e8c12;
  --ink: #f7f3df;
  --muted: #bdb9a8;
  --bg: #070806;
  --panel: #11130e;
  --panel-2: #171a12;
  --line: rgba(214,181,53,.24);
  --max: 1240px;
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #dedbcf;
  background:
    radial-gradient(circle at 8% 0, rgba(142,140,18,.13), transparent 28rem),
    radial-gradient(circle at 95% 22%, rgba(214,181,53,.07), transparent 32rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.schema-meta { display: none; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 10px 14px; background: var(--gold-bright); color: #080905; }
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(7,8,6,.94);
  box-shadow: 0 16px 40px rgba(0,0,0,.36);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(calc(100% - 36px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 22px;
}
.logo img { width: 186px; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 3px; }
.site-nav a {
  padding: 9px 10px;
  border-radius: 10px;
  color: #d9d5c6;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(214,181,53,.1); color: var(--gold-bright); }
.header-actions { display: flex; gap: 8px; }
.btn {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid #f5d555;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-bright), #aa8e1b);
  box-shadow: 0 9px 28px rgba(214,181,53,.18), inset 0 1px rgba(255,255,255,.45);
  color: #121306;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, filter .18s ease;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline { border-color: var(--line); background: rgba(255,255,255,.035); box-shadow: none; color: #f1ecda; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: var(--panel); color: var(--gold-bright); }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; }
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: #080905;
  background-position: center;
  background-size: cover;
}
.hero::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6,7,5,.99) 0%, rgba(6,7,5,.9) 42%, rgba(6,7,5,.25) 80%), linear-gradient(0deg, rgba(6,7,5,.55), transparent 45%); content: ""; }
.hero-inner { width: min(calc(100% - 44px), var(--max)); min-height: 500px; margin: 0 auto; display: flex; align-items: center; }
.hero-copy { width: min(640px, 100%); padding: 70px 0; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--gold-bright); font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
.hero h1 { margin: 0 0 18px; color: #fff; font-size: clamp(40px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -.035em; text-wrap: balance; }
.hero p { margin: 0 0 27px; color: #e2dfd5; font-size: clamp(16px, 2vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-strip { border-bottom: 1px solid var(--line); background: #0b0c08; }
.trust-grid { width: min(calc(100% - 44px), var(--max)); margin: 0 auto; padding: 17px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-item { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 12px; }
.trust-item strong { display: block; color: var(--ink); font-size: 14px; }
.trust-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: rgba(214,181,53,.07); color: var(--gold-bright); font-weight: 900; }
.section { padding: 62px 22px 78px; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 292px; gap: 28px; align-items: start; }
.content-card, .side-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24,27,18,.98), rgba(13,15,10,.98));
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
}
.content-card { min-width: 0; padding: clamp(22px, 4vw, 42px); }
.content-card > p:first-child { color: #f0eddf; font-size: 18px; }
.content-card h2, .content-card h3 { scroll-margin-top: 100px; color: var(--ink); line-height: 1.2; text-wrap: balance; }
.content-card h2 { margin: 44px 0 16px; padding-top: 2px; font-size: clamp(25px, 3vw, 33px); }
.content-card h2::after { display: block; width: 52px; height: 3px; margin-top: 12px; border-radius: 9px; background: linear-gradient(90deg, var(--gold-bright), transparent); content: ""; }
.content-card h3 { margin: 28px 0 11px; font-size: 21px; }
.content-card p { margin: 0 0 20px; }
.content-card strong { color: #f2dc77; }
.content-card ul, .content-card ol { margin: 0 0 24px; padding-left: 23px; }
.content-card li { margin: 8px 0; }
.content-card li::marker { color: var(--gold); }
.content-card table { width: 100%; margin: 26px 0 32px; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; font-size: 14px; }
.content-card th, .content-card td { padding: 12px 13px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.content-card th:last-child, .content-card td:last-child { border-right: 0; }
.content-card tr:last-child td { border-bottom: 0; }
.content-card th { background: linear-gradient(135deg, #575514, #292a0d); color: #fff9d7; }
.content-card tr:nth-child(even) td { background: rgba(255,255,255,.022); }
.article-figure { margin: 30px 0 38px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #080905; box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.article-figure img { width: 100%; aspect-ratio: 16/7.4; object-fit: cover; }
.article-figure figcaption { padding: 10px 13px; color: var(--muted); font-size: 12px; }
.editor-note { margin: 0 0 28px; padding: 17px 18px; border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; background: rgba(214,181,53,.07); color: #d7d3c4; }
.article-meta { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.sidebar { position: sticky; top: 98px; }
.side-box { padding: 20px; }
.side-box > strong { display: block; margin-bottom: 12px; color: var(--ink); font-size: 18px; }
.toc { max-height: 58vh; margin-bottom: 17px; display: grid; gap: 4px; overflow: auto; }
.toc a { padding: 8px 9px; border-left: 2px solid transparent; border-radius: 7px; color: var(--muted); font-size: 13px; line-height: 1.35; text-decoration: none; }
.toc a:hover { border-left-color: var(--gold-bright); background: rgba(214,181,53,.06); color: #fff; }
.side-box .btn { width: 100%; }
.site-footer { padding: 48px 22px 30px; border-top: 1px solid var(--line); background: #050604; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 46px; }
.footer-logo img { width: 185px; margin-bottom: 18px; }
.site-footer p { max-width: 530px; margin: 8px 0; color: #aaa796; font-size: 13px; }
.footer-title { display: block; margin-bottom: 12px; color: #f2edda; font-size: 14px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #c9c5b7; font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--gold-bright); }
.age-badge { display: grid; width: 54px; height: 54px; margin-bottom: 12px; place-items: center; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold-bright); font-weight: 900; }
.footer-bottom { margin-top: 34px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.06); color: #817f73; font-size: 12px; }
.legal-hero .hero-inner { min-height: 315px; }
.legal-hero .hero-copy { padding: 50px 0; }
.legacy-redirect { min-height: 100vh; padding: 30px; display: grid; place-items: center; text-align: center; background: var(--bg); }
.legacy-redirect img { width: 220px; margin: 0 auto 24px; }
@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 180px 1fr auto; }
  .site-nav { grid-column: 1 / -1; padding-bottom: 11px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .header-inner { grid-template-columns: 1fr 44px; }
  .menu-toggle { display: block; }
  .site-nav { display: none; grid-column: 1 / -1; padding: 0 0 12px; }
  .site-nav.is-open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .site-nav a { border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.025); text-align: center; }
  .header-actions { grid-column: 1 / -1; padding-bottom: 12px; }
  .header-actions .btn { flex: 1; }
  .hero-inner { min-height: 430px; }
  .hero::after { background: linear-gradient(90deg, rgba(6,7,5,.97), rgba(6,7,5,.77)), linear-gradient(0deg, #070806, transparent); }
  .content-layout, .footer-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .toc { max-height: none; }
  .article-figure img { aspect-ratio: 16/8.8; }
}
@media (max-width: 520px) {
  .header-inner { width: min(calc(100% - 24px), var(--max)); }
  .logo img { width: 166px; }
  .hero-inner, .trust-grid { width: min(calc(100% - 28px), var(--max)); }
  .hero h1 { font-size: 39px; }
  .hero-actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .section { padding: 42px 12px 58px; }
  .content-card { padding: 20px 17px; border-radius: 15px; }
  .content-card table { display: block; max-width: 100%; overflow-x: auto; white-space: normal; }
  .content-card th, .content-card td { min-width: 145px; }
  .site-nav.is-open { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
