:root {
  color-scheme: light;
  --sml-pink: #db2777;
  --sml-purple: #7c3aed;
  --sml-slate-900: #0f172a;
  --sml-slate-700: #334155;
  --sml-slate-600: #475569;
  --sml-slate-100: #e2e8f0;
  --sml-white: #ffffff;
  --sml-max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  color: var(--sml-slate-700);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--sml-pink);
}

header.sml-site-header,
footer.sml-site-footer {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

header.sml-site-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.sml-site-header__inner,
.sml-site-footer__inner {
  max-width: var(--sml-max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sml-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--sml-slate-900);
}

.sml-logo img {
  width: 38px;
  height: 38px;
}

.sml-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--sml-slate-600);
}

.sml-cta {
  display: flex;
  gap: 0.5rem;
}

.sml-cta__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: var(--sml-pink);
  color: var(--sml-white);
  font-weight: 600;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.sml-cta__primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(219, 39, 119, 0.15);
}

main {
  max-width: var(--sml-max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--sml-purple);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--sml-slate-900);
  margin-bottom: 1rem;
}

.hero p.lead {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  color: var(--sml-slate-600);
}

.hero .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: var(--sml-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 45px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--sml-pink);
  margin-bottom: 0.25rem;
}

.gallery-preview h2,
.voter-benefits h2,
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--sml-slate-900);
  text-align: center;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  background: var(--sml-white);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-card .card-body {
  padding: 1.25rem;
}

.card-body h3 {
  font-size: 1.1rem;
  color: var(--sml-slate-900);
  margin-bottom: 0.5rem;
}

.card-body p {
  margin: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--sml-slate-600);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.tag {
  background: rgba(124, 58, 237, 0.08);
  color: var(--sml-purple);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.voter-benefits {
  margin: 4rem auto;
  max-width: 1000px;
  text-align: center;
}

.voter-benefits p.intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: var(--sml-slate-600);
  font-size: 1.05rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--sml-white);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 45px rgba(15, 23, 42, 0.04);
  text-align: left;
}

.benefit-card h3 {
  margin: 0 0 0.75rem;
  color: var(--sml-slate-900);
  font-size: 1.15rem;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.benefit-card li {
  font-size: 0.95rem;
  color: var(--sml-slate-600);
}

.cta-banner {
  margin: 4rem 0 2rem;
  background: radial-gradient(circle at top left, rgba(219, 39, 119, 0.1), transparent 50%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.1), transparent 50%),
    var(--sml-slate-900);
  color: var(--sml-white);
  border-radius: 1.5rem;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
}

.cta-banner p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 600px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-button-primary,
.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.cta-button-primary {
  background: var(--sml-white);
  color: var(--sml-slate-900);
}

.cta-button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--sml-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cta-button-primary:hover,
.cta-button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

footer.sml-site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  margin-top: 4rem;
}

footer .sml-site-footer__inner {
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  padding-bottom: 2rem;
}

footer nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
}

.notice-card {
  max-width: 720px;
  margin: 3rem auto;
  background: rgba(148, 163, 184, 0.12);
  color: var(--sml-slate-600);
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  font-size: 0.95rem;
}

.notice-card strong {
  color: var(--sml-slate-900);
}
