:root {
  --bg0: #070511;
  --bg1: #0b0920;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.54);

  --cyan: #20e3ff;
  --blue: #4f7dff;
  --magenta: #ff3bd4;
  --purple: #7a2bff;
  --gold: #ffd36a;

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.45);

  --radius: 18px;
  --radius2: 28px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  background: var(--bg0);
  overflow-x: hidden;
}

/* subtle film grain / noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.22;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 227, 255, 0.22);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0;
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header[data-scrolled="true"] {
  padding: 10px 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  background: rgba(7, 5, 17, 0.52);
  backdrop-filter: blur(14px);
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  box-shadow: none;
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-radius 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header[data-scrolled="true"] .header-inner {
  padding: 10px 24px;
  border-radius: 16px;
  background: rgba(12, 8, 28, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(32, 227, 255, 0.12);
  border-bottom: 1px solid rgba(32, 227, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 2px 20px rgba(32, 227, 255, 0.08),
    0 2px 20px rgba(255, 59, 212, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(32, 227, 255, 0.08), 0 18px 60px rgba(255, 59, 212, 0.06);
}
.brand-type {
  display: grid;
  gap: 1px;
}
.brand-title {
  font-family: "Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 227, 255, 0.22), var(--shadow-soft);
}
.nav-toggle-icon {
  display: inline-block;
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: 999px;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
}
.nav-toggle-icon::before {
  top: 0;
}
.nav-toggle-icon::after {
  bottom: 0;
}
.nav-toggle-icon {
  height: 2px;
  top: 5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 227, 255, 0.22);
}
.nav-link--cta {
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, rgba(32, 227, 255, 0.16), rgba(255, 59, 212, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(32, 227, 255, 0.08), 0 18px 50px rgba(255, 59, 212, 0.06);
}
.nav-link--cta:hover {
  background: linear-gradient(90deg, rgba(32, 227, 255, 0.22), rgba(255, 59, 212, 0.2));
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 36px;
}
.hero-bg {
  position: absolute;
  inset: -140px 0 auto 0;
  height: 520px;
  background: radial-gradient(1000px 600px at 25% 0%, rgba(32, 227, 255, 0.2), transparent 60%),
    radial-gradient(800px 520px at 70% 10%, rgba(255, 59, 212, 0.18), transparent 55%),
    radial-gradient(880px 520px at 90% 40%, rgba(122, 43, 255, 0.18), transparent 60%);
  filter: blur(10px);
  opacity: 0.95;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}
.pill--muted {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.1);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, 0.2) 32%, rgba(255, 59, 212, 0.85) 60%, rgba(255, 59, 212, 0.55));
  box-shadow: 0 0 0 0 rgba(255, 59, 212, 0.55);
  animation: pulse 1.6s ease-out infinite;
}
.live-dot--small {
  width: 7px;
  height: 7px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 212, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 59, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 212, 0);
  }
}

.h1,
.h2,
.h3 {
  font-family: "Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
}
.h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  text-wrap: balance;
}
.lead {
  color: var(--muted);
  font-size: 16px;
  margin: 16px 0 0;
  max-width: 60ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 227, 255, 0.22), 0 14px 40px rgba(0, 0, 0, 0.35);
}
.btn--primary {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, rgba(32, 227, 255, 0.18), rgba(255, 59, 212, 0.16));
  box-shadow: 0 22px 72px rgba(32, 227, 255, 0.08), 0 22px 72px rgba(255, 59, 212, 0.06);
}
.btn--primary:hover {
  background: linear-gradient(90deg, rgba(32, 227, 255, 0.26), rgba(255, 59, 212, 0.24));
}
.btn--ghost {
  color: var(--muted);
}
.btn--tiny {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 12px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}
.meta-card {
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}
.meta-card dt {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
}
.meta-card dd {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.media-frame {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.media-frame::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(420px 260px at 30% 30%, rgba(32, 227, 255, 0.18), transparent 60%),
    radial-gradient(420px 260px at 70% 60%, rgba(255, 59, 212, 0.16), transparent 60%);
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
}
.media-poster {
  width: 100%;
  height: auto;
  transform: scale(1.02);
}
.media-glass {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 45%, rgba(0, 0, 0, 0.58));
}
.media-glass-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.badge--muted {
  color: var(--muted);
  font-weight: 600;
}
.media-glass-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.fineprint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

/* Sections */
.section {
  position: relative;
  padding: 72px 0;
  background:
    radial-gradient(70% 45% at 15% 20%, rgba(122, 43, 255, 0.08), transparent 70%),
    radial-gradient(60% 40% at 85% 60%, rgba(255, 59, 212, 0.06), transparent 70%),
    radial-gradient(50% 35% at 50% 90%, rgba(32, 227, 255, 0.05), transparent 70%);
}
.section--alt {
  background:
    radial-gradient(80% 50% at 50% 10%, rgba(122, 43, 255, 0.14), transparent 70%),
    radial-gradient(70% 45% at 15% 55%, rgba(32, 227, 255, 0.10), transparent 70%),
    radial-gradient(70% 45% at 90% 70%, rgba(255, 59, 212, 0.10), transparent 70%),
    rgba(255, 255, 255, 0.018);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}
.h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.1;
}
.subhead {
  color: var(--muted);
  margin: 0;
  max-width: 72ch;
}
.h3 {
  font-size: 18px;
  line-height: 1.2;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.stack {
  display: grid;
  gap: 14px;
}

.card {
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}
.card--glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
}
.card--glow {
  position: relative;
  overflow: hidden;
}
.card--glow::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(300px 240px at 20% 20%, rgba(32, 227, 255, 0.16), transparent 60%),
    radial-gradient(280px 240px at 80% 60%, rgba(255, 59, 212, 0.14), transparent 60%),
    radial-gradient(320px 260px at 60% 10%, rgba(122, 43, 255, 0.12), transparent 60%);
  filter: blur(16px);
  opacity: 0.75;
  pointer-events: none;
}
.card--glow > * {
  position: relative;
}

.muted {
  color: var(--muted);
}
.big {
  margin: 10px 0 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.prod-lockup {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}
.prod-logo {
  width: 110px;
  height: 68px;
  object-fit: contain;
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  filter: invert(1) brightness(1.1) contrast(1.15);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.team-bio {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  padding: 16px;
}
.team-bio-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  filter: saturate(0.95) contrast(1.05);
}
.team-bio-content {
  min-width: 0;
}
.team-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}
.team-name {
  margin: 12px 0 0;
  font-family: "Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 22px;
  line-height: 1.15;
}
.team-summary {
  margin: 10px 0 0;
  max-width: 72ch;
}
.team-bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.team-bullet {
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.14);
}
.team-bullet-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 13px;
}
.team-bullet-text {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
}

.team-placeholder {
  padding: 18px;
}

.list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li {
  margin: 6px 0;
}

/* Voting rules */
.voting-rules {
  margin-top: 14px;
}
.voting-rules-frame {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  padding: 0;
  overflow: hidden;
  align-items: center;
}
.voting-rules-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voting-rules-caption {
  padding: 22px 22px 22px 6px;
}
.voting-rules-caption .h3 {
  margin-bottom: 8px;
}

/* Vote steps */
.vote-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 22px;
}
.vote-step {
  text-align: center;
  padding: 28px 20px;
}
.vote-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(32, 227, 255, 0.14), rgba(255, 59, 212, 0.12));
  margin: 0 auto 16px;
  box-shadow: 0 0 40px rgba(32, 227, 255, 0.1), 0 0 40px rgba(255, 59, 212, 0.08);
}
.vote-step-num {
  font-family: "Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vote-step .h3 {
  margin-bottom: 8px;
}
.vote-step .muted {
  font-size: 14px;
  line-height: 1.5;
  max-width: 28ch;
  margin-inline: auto;
}
.vote-step-divider {
  width: 1px;
  align-self: stretch;
  margin-top: 28px;
  margin-bottom: 28px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14) 30%, rgba(255, 255, 255, 0.14) 70%, transparent);
}

/* Vote features */
.vote-features {
  margin-top: 22px;
}

/* Form */
.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
.field--full {
  grid-column: 1 / -1;
}
.field-label {
  color: var(--muted2);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  font: inherit;
}
.textarea {
  resize: vertical;
  min-height: 120px;
}
.input:focus {
  outline: none;
  border-color: rgba(32, 227, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(32, 227, 255, 0.18);
}
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.form-note {
  margin: 0;
  min-height: 1.2em;
}

/* Footer */
.footer {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-title {
  font-family: "Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer-subtitle {
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
}
.footer-legal {
  color: var(--muted2);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.footer-link {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.footer-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}
.footer-copy {
  color: var(--muted2);
}
.footer-credit {
  text-align: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--muted2);
}
.footer-credit a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover {
  color: var(--cyan);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-bio {
    grid-template-columns: 1fr;
  }
  .team-bullets {
    grid-template-columns: 1fr;
  }
  .voting-rules-frame {
    grid-template-columns: 240px 1fr;
  }
  .vote-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vote-step-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14) 30%, rgba(255, 255, 255, 0.14) 70%, transparent);
  }
  .prod-lockup {
    grid-template-columns: 1fr;
  }
  .prod-logo {
    width: 100%;
    height: 74px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    width: min(340px, calc(100vw - 40px));
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 5, 17, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    gap: 6px;
  }
  .nav-menu[data-open="true"] {
    display: flex;
  }
  .nav-link {
    padding: 12px 12px;
  }
  .hero {
    padding-top: 100px;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .team-name {
    font-size: 20px;
  }
  .voting-rules-frame {
    grid-template-columns: 1fr;
  }
  .voting-rules-caption {
    padding: 16px;
  }
  .site-header[data-scrolled="true"] {
    padding: 6px 10px 0;
  }
  .site-header[data-scrolled="true"] .header-inner {
    padding: 8px 16px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot {
    animation: none;
  }
  .btn {
    transition: none;
  }
  .site-header,
  .header-inner {
    transition: none;
  }
  body::before {
    opacity: 0.14;
  }
}
