
:root {
  --ink: #101820;
  --navy: #17314c;
  --navy-2: #0b2238;
  --gold: #f5b51b;
  --gold-dark: #a96d00;
  --cream: #fff7df;
  --soft: #f5f7f9;
  --muted: #5f6f7e;
  --line: #dbe3e9;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(16, 24, 32, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 245px; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 800;
  padding: 11px 13px;
  border-radius: 999px;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}
.hero {
  color: var(--white);
  padding: 96px 0 84px;
  background:
    radial-gradient(circle at 88% 12%, rgba(245,181,27,.27), transparent 30%),
    linear-gradient(135deg, #07141f 0%, #102d48 58%, #17466b 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .76rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.hero .eyebrow { color: #ffd86b; }
h1, h2, h3 { line-height: 1.13; margin: 0 0 18px; }
h1 { font-size: clamp(3.1rem, 8vw, 6.4rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.035em; }
h3 { font-size: 1.3rem; }
.lead {
  max-width: 790px;
  color: rgba(255,255,255,.84);
  font-size: 1.18rem;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: #161616; }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-outline { border-color: var(--line); background: var(--white); }
section { padding: 82px 0; }
.section-soft { background: var(--soft); }
.section-intro { max-width: 880px; color: var(--muted); font-size: 1.08rem; }
.grid-2, .grid-3 { display: grid; gap: 24px; margin-top: 32px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .panel, .edition-card, .event-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card, .panel, .edition-card, .event-card { padding: 30px; }
.card p, .panel p, .edition-card p, .event-card p { color: var(--muted); }
.patch-panel { padding: 28px; color: var(--ink); }
.patch-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.patch-step:last-child { border-bottom: 0; }
.patch-step > strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold);
}
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: #7a5000;
  font-size: .78rem;
  font-weight: 900;
}
.stat { color: var(--gold-dark); font-weight: 950; margin-bottom: 8px; }
.table-wrap {
  margin-top: 28px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--navy); color: var(--white); }
tr:last-child td { border-bottom: 0; }
.checklist { list-style: none; padding: 0; margin: 20px 0 0; }
.checklist li { position: relative; padding-left: 30px; margin: 12px 0; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 950;
}
.archive { display: grid; gap: 24px; margin-top: 34px; }
.edition-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.year { font-size: 2rem; line-height: 1; font-weight: 950; color: var(--gold-dark); }
.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; margin-top: 32px; }
.cta {
  margin-top: 38px;
  padding: 44px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
}
.cta p { color: rgba(255,255,255,.78); }
.notice {
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  background: var(--cream);
  border-radius: 12px;
}
.article h3 { margin-top: 36px; }
.article p { max-width: 940px; }
.quick-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 25px; }
.quick-nav a {
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
}
footer { background: #07111b; color: #d9e2e9; padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
@media (max-width: 920px) {
  .hero-grid, .grid-2, .grid-3, .event-grid { grid-template-columns: 1fr; }
  .brand img { width: 205px; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .nav-links a { border-radius: 10px; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 24px, 1160px); }
  section { padding: 60px 0; }
  .hero { padding: 68px 0 58px; }
  .card, .panel, .edition-card, .event-card { padding: 22px; }
  .cta { padding: 28px; }
}
