/* ── Design System Variables ── */
:root {
  --connectivity-blue: #005691;
  --connectivity-blue-dark: #004070;
  --dark-grey: #333333;
  --charcoal: #1a1a2e;
  --white: #FFFFFF;
  --light-grey: #CCCCCC;
  --off-white: #F8F8F8;
  --network-glow: rgba(0, 255, 0, 0.3);
  --cyan: #00FFFF;
  --electric-green: #00CC44;
  --orange: #FFA500;
  --gold: #F0A500;
  --teal: #1ECEC8;
  --navy: #1C2951;
  --font-network: "Open Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --shadow-network: 0 2px 5px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lift: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius: 0.5rem;
  --nav-h: 3.5rem;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-network);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-grey);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  box-shadow: var(--shadow-network);
  height: var(--nav-h);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--connectivity-blue);
}

.nav-brand-sub {
  font-size: 0.7rem;
  color: var(--dark-grey);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-grey);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--connectivity-blue);
  background: rgba(0, 86, 145, 0.07);
}

.nav-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--connectivity-blue);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  margin-left: 0.5rem;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--connectivity-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 86, 145, 0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-grey);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-network);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background: var(--connectivity-blue);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary:hover {
  background: var(--connectivity-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 86, 145, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.small {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-network);
  font-weight: 600;
  font-size: 1rem;
  color: var(--connectivity-blue);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--connectivity-blue);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(0, 86, 145, 0.07);
}

/* ── Hero ── */
.hero {
  display: flex;
  justify-content: center;
  background: #0d1b3e;
  line-height: 0;
}

.hero-banner-img {
  width: 50%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-banner-img {
    width: 100%;
  }
}

.hero-network {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.network-svg {
  width: 100%;
  height: 100%;
}

.net-line {
  stroke: var(--connectivity-blue);
  stroke-width: 1;
  opacity: 0.6;
}

.net-node {
  fill: var(--connectivity-blue);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.hero-headline {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.125rem;
}

.name-nicole { color: var(--white); }
.name-mi     { color: var(--gold); }

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 48ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait-wrapper {
  position: relative;
  display: inline-block;
}

.hero-portrait {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  filter: drop-shadow(0 0 32px rgba(0,0,0,0.5));
}

.hero-portrait-glow {
  position: absolute;
  inset: -20px;
  border-radius: 1rem;
  background: radial-gradient(ellipse, rgba(0, 86, 145, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.15); }
}

/* ── Hero Redesign Components ── */
.hero-reelect {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.25rem;
}

.reelect-line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.reelect-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  white-space: nowrap;
}

.reelect-swoosh { display: flex; align-items: center; }

.hero-board-1 {
  font-size: clamp(0.75rem, 1.5vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--teal);
  text-transform: uppercase;
}

.hero-board-connector {
  font-size: clamp(0.75rem, 1.3vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

.connector-now {
  color: var(--gold);
  font-weight: 800;
}

.hero-board-2 {
  font-size: clamp(1.1rem, 2.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--teal);
  text-transform: uppercase;
}

.hero-rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin: 0.375rem 0;
}

.hero-protecting {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

/* ── Hero Vote Bar ── */
.hero-vote-bar {
  background: var(--gold);
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-vote-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.hero-vote-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.hero-vote-text {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-vote-text strong { color: var(--navy); }

.hero-vote-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.hero-vote-slogan {
  font-size: clamp(0.7rem, 1.3vw, 0.875rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ── Sections ── */
.section {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--charcoal);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--connectivity-blue);
  background: rgba(0, 86, 145, 0.09);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.section-tag.light {
  color: var(--cyan);
  background: rgba(0, 255, 255, 0.12);
}

.section-heading {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-grey);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.section-heading.centered { text-align: center; }

.section-heading.light { color: var(--white); }

.section-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #555;
  max-width: 62ch;
  margin-bottom: 0.75rem;
}

.section-body.centered {
  text-align: center;
  max-width: 72ch;
  margin: 0 auto 1rem;
}

.section-body.light { color: rgba(255,255,255,0.72); }

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-split.reverse .section-text { order: 1; }
.section-split.reverse .section-visual { order: 2; }

.section-center {
  text-align: center;
  margin-bottom: 1.75rem;
}

/* ── About Campaign Image ── */
.about-campaign-img {
  width: 100%;
  max-width: 420px;
  border-radius: 1rem;
  box-shadow: var(--shadow-lift);
  display: block;
  margin: 0 auto;
}

/* ── Reasons Grid ── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
  transition: all 0.25s ease;
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(0, 86, 145, 0.3);
}

.reason-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(0, 86, 145, 0.09);
  color: var(--connectivity-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.reason-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-grey);
  margin-bottom: 0.5rem;
}

.reason-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555;
}

/* ── Qualifications ── */
.qualifications-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.25rem;
}

.qualification-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 204, 68, 0.12);
  color: var(--electric-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.qualification-item strong {
  display: block;
  font-weight: 700;
  color: var(--dark-grey);
  margin-bottom: 0.25rem;
}

.qualification-item p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.65;
}

/* ── Endorsements ── */
.endorsement-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.endorsement-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.25rem;
}

.endorsement-card {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--dark-grey);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.endorsement-card:hover {
  border-color: var(--connectivity-blue);
  background: rgba(0, 86, 145, 0.04);
}

.endorsement-more {
  font-size: 0.875rem;
  color: #888;
  font-style: italic;
  padding: 0.5rem 0;
}

/* ── Get Involved ── */
.involvement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.involvement-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.25s ease;
}

.involvement-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0, 86, 145, 0.5);
  transform: translateY(-3px);
}

.involvement-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 86, 145, 0.3);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.involvement-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.involvement-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  flex-grow: 1;
}

/* ── Contact Form ── */
.contact-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.form-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-network);
  font-size: 0.9375rem;
  padding: 0.625rem 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--connectivity-blue);
  box-shadow: 0 0 0 2px rgba(0, 86, 145, 0.35);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.form-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--connectivity-blue);
  cursor: pointer;
}

.form-check label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-success {
  text-align: center;
  font-weight: 600;
  color: var(--electric-green);
  min-height: 1.5rem;
  font-size: 0.9rem;
}

/* ── Footer ── */
.footer {
  background: #0d0d1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-office {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  max-width: 60ch;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ── How to Vote ── */
.how-to-vote {
  background: var(--navy);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.vote-box {
  max-width: 780px;
  margin: 0 auto;
}

.vote-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-bottom: 0.625rem;
}

.vote-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.625rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 2.5rem;
}

.vote-headline sup {
  font-size: 0.52em;
}

.vote-steps {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 3rem;
}

.vote-step-divider {
  background: rgba(255, 255, 255, 0.18);
}

.step-label {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.625rem;
  letter-spacing: 0.02em;
}

.step-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.step-body strong {
  color: var(--white);
}

/* ── Endorsement Quote ── */
.endorsement-quote-card {
  background: rgba(0, 86, 145, 0.06);
  border: 1px solid rgba(0, 86, 145, 0.2);
  border-left: 3px solid var(--connectivity-blue);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.endorsement-blockquote {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.endorsement-cite {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--connectivity-blue);
  font-style: normal;
  display: block;
}

/* ── Fade-in Animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.42s ease-out, transform 0.42s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Tablet ── */
@media (max-width: 960px) {
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--light-grey);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 0.125rem;
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: flex; }

  .nav-cta { margin-left: 0; text-align: center; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-reelect { justify-content: center; }

  .hero-visual { order: -1; }

  .hero-portrait { max-width: 240px; }

  .hero-vote-inner { flex-wrap: wrap; gap: 0.75rem; }

  .hero-vote-divider { display: none; }

  .hero-vote-text { font-size: 1.5rem; }

  .section-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-split.reverse .section-text { order: 2; }
  .section-split.reverse .section-visual { order: 1; }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .involvement-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .involvement-card {
    flex-direction: row;
    text-align: left;
    padding: 1rem;
  }

  .involvement-icon { flex-shrink: 0; }

  .involvement-card .btn-primary { align-self: flex-start; }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .contact-form-wrapper {
    padding: 1.25rem;
  }

  .about-campaign-img {
    max-width: 280px;
  }

  .vote-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }

  .vote-step-divider {
    height: 1px;
  }
}
