* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #080b0f;
  --bg-muted: #111820;
  --text: #f2f4f8;
  --muted: #b7c0cc;
  --line: #2a3542;
  --accent: #f3b13f;
  --accent-2: #8bd3ff;
  --card: #10151c;
  --max: 1120px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: .75rem 1rem;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 15, .94);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .02em;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
}

nav a:hover,
nav a:focus {
  color: var(--text);
}

.privacy-banner {
  border-bottom: 1px solid var(--line);
  background: #17120b;
  color: #fff3d6;
  padding: .85rem 0;
  font-size: .92rem;
}

.hero {
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr .85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .8rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  margin: .3rem 0 1rem;
  letter-spacing: -.05em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.1;
}

h3 {
  margin-top: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.2rem;
}

.button-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .8rem 1rem;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--accent);
  color: #15100a;
  border-color: var(--accent);
}

.button.secondary {
  color: var(--text);
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background: var(--bg-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  margin: 1rem 0;
}

.manifesto-card {
  border-color: rgba(243, 177, 63, .5);
}

.resource-list {
  padding-left: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .92rem;
}

@media (max-width: 800px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0;
  }
}
