:root {
  color-scheme: dark light;
  --bg: #0b1220;
  --bg-2: #0f1b33;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.075);
  --panel: rgba(255, 255, 255, 0.035);
  --text: #eaf0fb;
  --muted: #a8b3c7;
  --accent: #6ee7b7;
  --accent-2: #34d399;
  --accent-glow: rgba(110, 231, 183, 0.18);
  --accent2-glow: rgba(52, 211, 153, 0.18);
  --accent-underline: rgba(110, 231, 183, 0.6);
  --focus-ring: rgba(110, 231, 183, 0.55);
  --header-bg: rgba(11, 18, 32, 0.92);
  --footer-bg: rgba(11, 18, 32, 0.92);
  --mobile-nav-bg: rgba(11, 18, 32, 0.96);
  --hero-bg-1: rgba(11, 18, 32, 0.85);
  --hero-bg-2: rgba(15, 27, 51, 0.82);
  --hero-border: rgba(110, 231, 183, 0.22);
  --button-border: rgba(110, 231, 183, 0.55);
  --button-text: #06101d;
  --button-shadow: rgba(110, 231, 183, 0.18);
  --pill-border: rgba(110, 231, 183, 0.3);
  --pill-bg: rgba(110, 231, 183, 0.1);
  --notice-border: rgba(110, 231, 183, 0.26);
  --notice-bg: rgba(110, 231, 183, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --radius: 18px;
  --radius-sm: 12px;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f7f9ff;
    --bg-2: #eef3ff;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-2: rgba(255, 255, 255, 0.92);
    --panel: rgba(255, 255, 255, 0.6);
    --text: #0a1222;
    --muted: #44506a;
    --accent: #0ea5e9;
    --accent-2: #2563eb;
    --accent-glow: rgba(14, 165, 233, 0.12);
    --accent2-glow: rgba(37, 99, 235, 0.12);
    --accent-underline: rgba(14, 165, 233, 0.6);
    --focus-ring: rgba(14, 165, 233, 0.55);
    --header-bg: rgba(247, 249, 255, 0.92);
    --footer-bg: rgba(247, 249, 255, 0.92);
    --mobile-nav-bg: rgba(247, 249, 255, 0.96);
    --hero-bg-1: rgba(255, 255, 255, 0.86);
    --hero-bg-2: rgba(238, 243, 255, 0.86);
    --hero-border: rgba(37, 99, 235, 0.22);
    --button-border: rgba(37, 99, 235, 0.4);
    --button-text: #ffffff;
    --button-shadow: rgba(37, 99, 235, 0.18);
    --pill-border: rgba(37, 99, 235, 0.28);
    --pill-bg: rgba(14, 165, 233, 0.1);
    --notice-border: rgba(37, 99, 235, 0.2);
    --notice-bg: rgba(14, 165, 233, 0.08);
    --border: rgba(10, 18, 34, 0.14);
    --shadow: 0 18px 60px rgba(10, 18, 34, 0.12);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background: linear-gradient(145deg, var(--bg), var(--bg-2));
  background:
    radial-gradient(circle at 15% 10%, var(--accent-glow), transparent 35%),
    radial-gradient(circle at 85% 15%, var(--accent2-glow), transparent 35%),
    linear-gradient(145deg, var(--bg), var(--bg-2));
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-color: var(--accent-underline);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.logo {
  font-weight: 780;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 650;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none;
}

.nav-menu a:hover {
  background: var(--surface);
  color: var(--text);
}

.nav-menu a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}

main {
  padding: 34px 0 80px;
}

.hero {
  padding: 44px 28px;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--hero-border);
  background: linear-gradient(135deg, var(--hero-bg-1), var(--hero-bg-2));
  box-shadow: var(--shadow);
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin: 10px 0 12px;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 30px;
  margin-top: 0;
}

h3 {
  font-size: 20px;
  margin-top: 0;
}

p {
  margin: 10px 0 14px;
  color: var(--muted);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--button-border);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: var(--button-text);
  font-weight: 720;
  text-decoration: none;
  box-shadow: 0 10px 30px var(--button-shadow);
  transition: transform 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  box-shadow: none;
  border-color: var(--border);
}

.button.secondary:hover {
  background: var(--surface);
}

.section {
  margin-top: 34px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 16px 16px 14px;
}

.card p {
  margin-bottom: 0;
}

.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 650;
  color: var(--text);
  text-decoration: none;
}

.card a.card-link:hover {
  text-decoration: underline;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin: 6px 0;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: var(--text);
  font-weight: 650;
  font-size: 13px;
}

.notice {
  border: 1px solid var(--notice-border);
  background: var(--notice-bg);
  padding: 14px 14px 12px;
  border-radius: var(--radius);
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 44px;
  background: var(--footer-bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

.mt-14 {
  margin-top: 14px;
}

.m-0 {
  margin: 0;
}

.address {
  margin: 0;
  font-style: normal;
  color: var(--muted);
}

@media (max-width: 820px) {
  h1 {
    font-size: 36px;
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--mobile-nav-bg);
  }

  body.nav-open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu a {
    width: 100%;
  }
}
