:root {
  --bg: #f7f6f2;
  --bg-alt: #efece6;
  --ink: #1c1f26;
  --muted: #5e6675;
  --accent: #1b62ae;
  --accent-soft: #d7e6f9;
  --dark: #0f1720;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(20, 29, 48, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Serif 4", "Georgia", serif;
  color: var(--ink);
  background: linear-gradient(120deg, var(--bg), var(--bg-alt));
  min-height: 100vh;
  position: relative;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.6'/></svg>");
  z-index: 0;
}

.hero {
  padding: 48px 8vw 24px;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 388px;
  height: 99px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.brand-text span:first-child {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tagline {
  color: var(--muted);
  font-size: 14px;
}

.hero-content {
  max-width: 760px;
  margin-top: 28px;
}

.hero h1 {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 14px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-badges span {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  letter-spacing: 0.04em;
}

.content {
  padding: 12px 8vw 64px;
  position: relative;
  z-index: 1;
}

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

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 98, 174, 0.08);
}

.card.accent {
  border-color: rgba(15, 23, 32, 0.15);
  background: linear-gradient(145deg, #ffffff 0%, #f1f5fb 100%);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.card-header h2 {
  margin: 0;
  font-size: 22px;
}

.pill {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 18px;
}

.meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.value {
  font-size: 14px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(27, 98, 174, 0.25);
}

.btn.dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
}

.notes {
  margin-top: 32px;
  background: #fff;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: var(--shadow);
}

.notes h3 {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  margin: 0 0 12px;
}

.notes ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 8vw 32px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--muted);
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}

.footer-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.footer span:first-child {
  color: var(--ink);
  font-weight: 600;
}

.links a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 16px;
}

.links a:hover {
  color: var(--accent);
}

.btn.donate {
  background: var(--accent);
  color: #fff;
  margin-right: 0;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .hero {
    padding: 36px 6vw 18px;
  }

  .content {
    padding: 8px 6vw 48px;
  }

  .hero-badges {
    gap: 8px;
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
