/* Her College Game MVP site */
:root {
  --navy: #04172b;
  --navy-2: #08223e;
  --cream: #f7f3eb;
  --muted: #b0c2d4;
  --coral: #ff5949;
  --gold: #e2ac5b;
  --panel: #051c34;
  --border: rgba(247, 243, 235, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 10%, rgba(226, 172, 91, 0.18), transparent 22rem),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 20rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  min-height: 100vh;
}

a { color: inherit; }

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover { color: var(--cream); }

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 42px auto 24px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--border);
  border-radius: 36px;
  background: rgba(5, 28, 52, 0.78);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.24);
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-size: 0.88rem;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0;
  max-width: 850px;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  max-width: 720px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--border);
}

.primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.secondary {
  color: var(--cream);
  background: rgba(255,255,255,0.06);
}

.full { width: 100%; }

.hero-card {
  border: 1px solid var(--border);
  background: rgba(4, 23, 43, 0.86);
  border-radius: 28px;
  padding: 28px;
  text-align: center;
}

.hero-card img {
  width: min(260px, 100%);
  border-radius: 999px;
  display: block;
  margin: 0 auto 24px;
}

.hero-card p {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quick-links {
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-links a,
.coverage-grid article,
.nominate-card {
  background: rgba(247, 243, 235, 0.96);
  color: var(--navy);
  border-radius: 24px;
  padding: 22px;
  text-decoration: none;
  border: 2px solid rgba(226, 172, 91, 0.65);
}

.quick-links strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.quick-links span,
.coverage-grid p {
  color: #274058;
  line-height: 1.45;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 72px auto;
}

.section h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0 0 24px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.coverage-grid h3 {
  font-size: 1.45rem;
  margin: 0 0 10px;
}

.nominate {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.nominate p,
.policy p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.nominate-card ul {
  padding-left: 22px;
  line-height: 1.75;
  color: #274058;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 96px auto 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer a { color: var(--cream); }

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

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

  .quick-links,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .footer {
    flex-direction: column;
  }
}
