:root {
  --bg: #050a0a;
  --panel: #111818;
  --text: #f5f7f7;
  --muted: #8a9999;
  --line: rgba(245,247,247,.12);
  --teal: #00e6d0;
  --teal-soft: #63fff0;
  --max: 980px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; }

.site-header, main, footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-lockup {
  display: block;
  width: clamp(210px, 32vw, 370px);
  height: auto;
}

.finalist-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(0,230,208,.34);
  background: rgba(0,230,208,.08);
  color: var(--teal-soft);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(56px, 10vw, 96px) 0 clamp(44px, 8vw, 72px);
  text-align: center;
}

.hero-mark {
  width: clamp(96px, 18vw, 150px);
  height: auto;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-soft);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.9rem, 7.5vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto 32px;
  color: #b8c2c2;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.vote-button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 8px;
  color: #031211;
  background: var(--teal);
  font: 800 .95rem/1 Inter, sans-serif;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0,230,208,.16);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.vote-button:hover {
  transform: translateY(-2px);
  background: var(--teal-soft);
  box-shadow: 0 20px 52px rgba(0,230,208,.24);
}

.vote-button:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 4px;
}

.vote-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-note {
  margin: 14px 0 0;
  color: #728383;
  font-size: .86rem;
}

.why-section {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.why-section h2 {
  margin-bottom: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  letter-spacing: 0;
}

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

.reasons article {
  padding-top: 18px;
  border-top: 2px solid var(--teal);
}

.reasons h3 {
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.reasons p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-strip h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  letter-spacing: 0;
}

.support-strip h2 span { color: var(--teal); }

.support-strip p {
  max-width: 300px;
  margin: 0;
  color: #728383;
  font-size: .82rem;
  line-height: 1.5;
  text-align: right;
}

footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #687878;
  font-size: .82rem;
}

footer a {
  text-decoration: none;
  color: #a8b6b6;
}

.redirect-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5,10,10,.9);
  backdrop-filter: blur(12px);
}

.redirect-overlay[hidden] { display: none; }

.redirect-card {
  width: min(100%, 480px);
  text-align: center;
  padding: 44px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.checkmark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #04120d;
  background: var(--teal);
  font-size: 1.8rem;
  font-weight: 800;
}

.redirect-card h2 {
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.redirect-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.noscript {
  position: fixed;
  inset-inline: 20px;
  bottom: 20px;
  z-index: 100;
  padding: 16px;
  border-radius: 8px;
  color: #111;
  background: #fff;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 82px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
  }

  .brand-lockup { width: min(100%, 260px); }
  .finalist-badge { font-size: .63rem; padding: 7px 9px; }

  .hero {
    padding: 48px 0 42px;
    text-align: left;
  }

  .hero-mark {
    width: 92px;
    margin-bottom: 22px;
  }

  h1 { font-size: clamp(2.65rem, 13vw, 4.25rem); }
  .hero-copy { margin-left: 0; line-height: 1.58; }

  .vote-button {
    width: 100%;
    gap: 14px;
  }

  .why-section { padding-top: 30px; }

  .reasons {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-strip {
    display: block;
    margin-bottom: 38px;
  }

  .support-strip p {
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }

  footer {
    min-height: 86px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
}
