:root {
  color-scheme: dark;
  --bg: #070406;
  --bg-2: #12060b;
  --bg-3: #210813;
  --text: #fff7ec;
  --text-strong: #fffaf2;
  --muted: #c8bbc5;
  --muted-2: #a99ba7;
  --line: rgba(232, 199, 126, .24);
  --line-soft: rgba(255,255,255,.08);
  --gold: #e7c578;
  --gold-2: #fff0bd;
  --burgundy: #5b1027;
  --glass: rgba(255,255,255,.074);
  --glass-2: rgba(255,255,255,.115);
  --danger: #ffb4a9;
  --ok: #b7e5c2;
  --shadow: rgba(0,0,0,.42);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% -5%, rgba(112, 24, 50, .48), transparent 32%),
    radial-gradient(circle at 85% 5%, rgba(231, 197, 120, .14), transparent 31%),
    radial-gradient(circle at 50% 115%, rgba(91, 16, 39, .50), transparent 42%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 54%, #050304 100%);
  color: var(--text);
  font: 16px/1.72 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -.012em;
}
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 50% 7%, rgba(232,199,126,.08) 0 1px, transparent 1px 52px),
    radial-gradient(circle at 50% 7%, rgba(232,199,126,.10), transparent 22%);
  opacity: .34;
  mask-image: linear-gradient(to bottom, black, transparent 45%);
}
a { color: var(--gold-2); text-decoration: none; font-weight: 650; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid rgba(255,240,189,.75); outline-offset: 4px; }
.container { width: min(1080px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 72px; position: relative; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 34px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--text-strong); font-weight: 820; letter-spacing: -.02em; }
.logo {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: var(--gold); background:
    radial-gradient(circle at 50% 50%, rgba(91,16,39,.72), rgba(255,255,255,.055) 58%, rgba(255,255,255,.025)),
    linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0,0,0,.28), 0 0 28px rgba(231,197,120,.14);
}
.logo svg { width: 23px; height: 23px; }
nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  color: var(--muted);
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.045);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 650;
  backdrop-filter: blur(18px);
}
nav a[aria-current="page"], nav a:hover { color: var(--text-strong); border-color: var(--line); background: rgba(255,255,255,.075); text-decoration: none; }
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 70px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
    radial-gradient(circle at 20% 10%, rgba(231,197,120,.16), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(91,16,39,.70), transparent 34%);
  box-shadow: 0 34px 90px var(--shadow), inset 0 1px 0 rgba(255,255,255,.10);
  margin-bottom: 22px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px; border-radius: 50%; right: -80px; top: -110px;
  background: repeating-radial-gradient(circle, rgba(231,197,120,.12) 0 1px, transparent 1px 44px);
  opacity: .55;
}
.kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 820; margin-bottom: 12px; }
h1 { margin: 0; max-width: 820px; font-size: clamp(44px, 7vw, 80px); line-height: .96; letter-spacing: -.06em; color: var(--text-strong); }
.subtitle { max-width: 760px; color: var(--muted); font-size: clamp(18px, 2.5vw, 23px); line-height: 1.45; margin: 24px 0 0; }
.meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: var(--radius-pill); color: var(--gold-2); background: rgba(255,255,255,.055); border: 1px solid var(--line-soft); font-weight: 700; font-size: 13px; }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card {
  grid-column: span 12;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(255,255,255,.092), rgba(255,255,255,.044));
  box-shadow: 0 22px 54px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(24px);
}
.card.gold { border-color: var(--line); background: linear-gradient(145deg, rgba(231,197,120,.13), rgba(255,255,255,.052)); }
.card.half { grid-column: span 6; }
h2 { margin: 0 0 12px; color: var(--text-strong); line-height: 1.13; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.035em; }
h3 { margin: 26px 0 8px; color: var(--gold-2); font-size: 18px; }
p { margin: 0 0 14px; color: var(--muted); }
ul { margin: 0; padding-left: 22px; color: var(--muted); }
li { margin: 8px 0; }
strong { color: var(--text-strong); }
.safe, .warning, .note { margin-top: 16px; border-radius: 18px; padding: 16px 18px; }
.safe { color: #e7f7ed; background: rgba(91, 155, 107, .14); border: 1px solid rgba(183,229,194,.22); }
.warning { color: #ffe0dc; background: rgba(255, 118, 103, .12); border: 1px solid rgba(255,180,169,.22); }
.note { color: var(--gold-2); background: rgba(231,197,120,.10); border: 1px solid rgba(231,197,120,.22); }
.table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; }
.table th, .table td { text-align: left; vertical-align: top; padding: 14px; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
.table th { color: var(--gold-2); font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.table tr:last-child td { border-bottom: 0; }
hr { border: 0; border-top: 1px solid var(--line-soft); margin: 26px 0; }
footer { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 28px; padding: 0 4px; color: var(--muted-2); font-size: 14px; }
@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1080px); padding-top: 18px; }
  .topbar { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero { padding: 28px 22px; border-radius: 26px; }
  .card { padding: 22px; }
  .card.half { grid-column: span 12; }
  .table, .table tbody, .table tr, .table td, .table th { display: block; width: 100%; }
  .table th { display: none; }
  .table td { padding: 10px 0; }
}
