/* AwardBrief — federal blue palette, serif headlines, sans body */

:root {
  --federal-blue: #1a3560;
  --federal-blue-dark: #0f2340;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #e2e6ec;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--federal-blue);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

a {
  color: var(--federal-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--federal-blue-dark);
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 2.75rem;
}

.hero .subhead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.cta {
  margin-top: 2rem;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ── Buttons ────────────────────────────────────────── */
.button {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--federal-blue);
  color: white;
}

.button-primary:hover {
  background: var(--federal-blue-dark);
  color: white;
}

.button.full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 28px;
}

/* ── Generic section ────────────────────────────────── */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.how-it-works,
.audience {
  font-size: 1.1rem;
}

.how-it-works li,
.audience li {
  padding: 12px 0 12px 28px;
  position: relative;
  line-height: 1.5;
}

.how-it-works li::before,
.audience li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--federal-blue);
  font-weight: 700;
}

/* ── Pricing ────────────────────────────────────────── */
.section-pricing {
  background: var(--bg-alt);
}

.tier-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
  max-width: 440px;
}

.tier-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--federal-blue);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.price {
  margin: 12px 0 4px;
  line-height: 1;
}

.price .amount {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--federal-blue);
}

.price .period {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.features {
  margin: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.features li {
  padding: 10px 0 10px 24px;
  font-size: 0.95rem;
  position: relative;
  line-height: 1.5;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--federal-blue);
  font-weight: 700;
}

/* ── Footer ─────────────────────────────────────────── */
footer {
  padding: 56px 0 72px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

footer p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

footer .footer-links {
  margin-top: 1.25rem;
}

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

footer .copyright {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subhead {
    font-size: 1.05rem;
  }

  .section {
    padding: 56px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .tier-card {
    padding: 28px 24px;
  }
}
