:root {
  --mv-red: #ff0000;
  --mv-red-dark: #990000;
  --mv-blue: #00007b;
  --mv-blue-deep: #000050;
  --text-dark: #111827;
  --text-light: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

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

.brand-logo {
  width: 58px;
  height: auto;
}

.brand-top,
.brand-bottom {
  display: block;
}

.brand-top {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--mv-blue);
}

.brand-bottom {
  font-size: 0.82rem;
  color: #4b5563;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 600;
  color: var(--mv-blue);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 30%),
    linear-gradient(135deg, var(--mv-blue) 0%, var(--mv-blue-deep) 45%, var(--mv-red-dark) 100%);
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
  padding: 88px 0;
}

.eyebrow,
.section-kicker,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1,
.section h2,
.hero-card h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.08;
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.lead {
  font-size: 1.1rem;
  max-width: 44rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--mv-red);
  color: white;
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.22);
}

.large {
  min-width: 270px;
}

.hero-card,
.info-card,
.priority-card,
.video-frame {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 24px;
}

.hero-logo {
  width: min(100%, 260px);
  margin: 0 auto 20px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.28));
}

.hero-card-text h2 {
  font-size: 1.8rem;
}

.section {
  padding: 82px 0;
}

.section-light {
  background: var(--surface-alt);
}

.section-dark {
  background: var(--mv-blue);
  color: var(--text-light);
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head.narrow {
  max-width: 760px;
}

.section-head,
.vote-wrap {
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  max-width: 720px;
  margin: 0 auto;
  color: #5b6472;
}

.section-dark .section-sub,
.section-dark p,
.section-dark li {
  color: rgba(255,255,255,0.9);
}

.video-frame {
  background: #0f172a;
  padding: 14px;
}

.video-frame iframe,
.video-frame video,
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
}

.video-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #0f172a 0%, var(--mv-blue) 100%);
  color: white;
}

.play-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mv-red);
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.info-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 26px;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.priority-card {
  background: white;
  padding: 28px;
  border: 1px solid var(--border);
}

.priority-card h3 {
  margin-top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--mv-blue);
}

.vote-section {
  background: linear-gradient(135deg, rgba(255,0,0,0.08), rgba(0,0,123,0.08));
}

.vote-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #09101f;
  color: rgba(255,255,255,0.86);
  padding: 22px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-note {
  color: rgba(255,255,255,0.62);
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .card-grid,
  .vote-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .nav {
    gap: 14px;
  }

  .hero-grid {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 48px;
  }

  .section,
  .hero-grid {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .vote-wrap {
    padding: 22px;
  }

  .btn,
  .large {
    width: 100%;
  }
}
