:root {
  --navy: #0A1628;
  --navy-mid: #121E36;
  --navy-card: #162240;
  --navy-border: #1E3054;
  --gold: #C9A54E;
  --gold-hover: #d4b35e;
  --text: #e2e8f0;
  --muted: #94a3b8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--navy-border);
  padding: 0.875rem 1.25rem;
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover { text-decoration: none; }

.brand-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.brand-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.625rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.site-nav a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover { color: var(--gold); text-decoration: none; }

/* Main */
.page-wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.page-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1rem;
}

.content-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.content-card h2 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.content-card p,
.content-card li {
  color: var(--text);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.content-card ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.content-card li { margin-bottom: 0.375rem; }

/* Support grid */
.support-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}

.support-tile {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.support-tile:hover { border-color: rgba(201, 165, 78, 0.4); }

.support-tile .icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.support-tile h3 {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.support-tile p {
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.cta-row {
  text-align: center;
  margin-top: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 0.9375rem;
}

.btn-primary:hover {
  background: var(--gold-hover);
  text-decoration: none;
  color: var(--navy);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 0.875rem;
  margin-left: 0.75rem;
}

.btn-outline:hover { background: rgba(201, 165, 78, 0.1); text-decoration: none; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--navy-border);
  padding: 2rem 1.25rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: #64748b;
}

.meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

h2.section-title {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
}
