:root {
  --ink: #070b12;
  --panel: #0d1420;
  --panel-2: #121c2a;
  --blue: #627ca3;
  --blue-bright: #89a4c9;
  --line: #26364b;
  --text: #f4f7fb;
  --muted: #aebccd;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--blue-bright); }
a:hover { color: #b9cbe4; }
img { display: block; max-width: 100%; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; padding: .7rem 1rem; background: white; color: black; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(7,11,18,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav { width: min(calc(100% - 2rem), var(--max)); margin: auto; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; color: white; text-decoration: none; font-size: .95rem; font-weight: 750; letter-spacing: .08em; white-space: nowrap; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.nav-links { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: .35rem; }
.nav-links a { color: var(--muted); text-decoration: none; padding: .55rem .7rem; border-radius: 6px; font-size: .9rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; background: var(--panel-2); }

.hero { min-height: 68vh; display: grid; place-items: center; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 35%, rgba(98,124,163,.24), transparent 32%), linear-gradient(135deg, #070b12 20%, #0b1420 100%); }
.hero-inner { width: min(calc(100% - 2rem), var(--max)); padding: 6rem 0; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 4rem; }
.eyebrow { margin: 0 0 .8rem; color: var(--blue-bright); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; }
h1 { margin: 0; max-width: 850px; font-size: clamp(2.5rem, 7vw, 5.4rem); text-transform: uppercase; }
.hero-copy { max-width: 710px; margin: 1.4rem 0 0; color: var(--muted); font-size: clamp(1.04rem, 2vw, 1.25rem); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-block; padding: .8rem 1.1rem; border: 1px solid var(--blue); border-radius: 5px; background: var(--blue); color: white; text-decoration: none; font-weight: 750; }
.button:hover { color: white; background: #758eb3; }
.button.secondary { background: transparent; color: var(--text); border-color: var(--line); }
.logo-panel { overflow: hidden; padding: 2rem; border: 1px solid #8997a9; background: #e6ebf1; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.logo-panel img { width: min(100%, 420px); margin: auto; transform: scale(1.18); }

.section { padding: 5.5rem 0; }
.section.alt { background: var(--panel); border-block: 1px solid var(--line); }
.container { width: min(calc(100% - 2rem), var(--max)); margin: auto; }
.narrow { max-width: 800px; }
.section h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 3.35rem); }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 760px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
.card { padding: 1.5rem; border: 1px solid var(--line); background: var(--panel-2); border-radius: 7px; }
.card h3 { margin: 0 0 .6rem; }
.card p { margin: 0; color: var(--muted); }
.marker { width: 34px; height: 4px; margin-bottom: 1.2rem; background: var(--blue); }
.detail-list { padding-left: 1.2rem; color: var(--muted); }
.detail-list li + li { margin-top: .55rem; }

.page-hero { padding: 5.5rem 0 4rem; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #08101a, #101b2a); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.prose { max-width: 820px; }
.prose h2 { margin-top: 2.6rem; font-size: 1.65rem; }
.prose h3 { margin-top: 1.8rem; font-size: 1.15rem; }
.prose p, .prose li { color: #c5d0de; }
.notice { margin: 2rem 0; padding: 1rem 1.2rem; border-left: 4px solid var(--blue); background: var(--panel-2); color: var(--muted); }
.support-intro { margin-bottom: 3rem; }

.site-footer { padding: 2.4rem 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { width: min(calc(100% - 2rem), var(--max)); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: var(--muted); }
.small { font-size: .88rem; }

@media (max-width: 850px) {
  .nav { align-items: flex-start; padding: .85rem 0; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 4rem 0; gap: 2.2rem; }
  .grid { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 500px) {
  .brand { font-size: .78rem; letter-spacing: .05em; }
  .brand img { width: 38px; height: 38px; }
  .section { padding: 4rem 0; }
}
