.proposal-hero {
  position: relative;
  isolation: isolate;
  padding: 1px;
  overflow: hidden;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgb(255 255 255 / 24%), rgb(255 255 255 / 6%) 42%, rgb(29 155 240 / 30%));
  box-shadow: 0 28px 90px rgb(0 0 0 / 38%), 0 0 0 1px rgb(255 255 255 / 3%);
}
t
.proposal-glow {
  position: absolute;
  top: -12rem;
  right: -9rem;
  z-index: -1;
  width: 27rem;
  height: 27rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(29 155 240 / 24%), transparent 68%);
  filter: blur(8px);
}

.proposal-shell {
  position: relative;
  overflow: hidden;
  border-radius: calc(1.75rem - 1px);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 5%), transparent 45%),
    hsl(var(--card, 0 0% 7%));
}

.proposal-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  background-image: linear-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 8%) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom right, black, transparent 72%);
}

.proposal-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.proposal-kicker,
.proposal-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(255 255 255 / 52%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proposal-kicker-dot,
.proposal-status > span {
  width: 0.4rem;
  height: 0.4rem;
  flex: none;
  border-radius: 999px;
  background: hsl(var(--accent, 203 89% 53%));
  box-shadow: 0 0 0 4px hsl(var(--accent, 203 89% 53%) / 12%);
}

.proposal-status {
  padding: 0.38rem 0.65rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 999px;
  color: rgb(255 255 255 / 72%);
  letter-spacing: 0.06em;
  background: rgb(255 255 255 / 4%);
}

.proposal-status > span {
  width: 0.35rem;
  height: 0.35rem;
  background: #35c988;
  box-shadow: 0 0 0 4px rgb(53 201 136 / 11%);
}

.proposal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.65fr);
  gap: 2.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.proposal-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: rgb(255 255 255 / 42%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proposal-symbol {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 0.65rem;
  color: hsl(var(--primary, 0 0% 96%));
  font-family: var(--font-geist-mono), monospace;
  letter-spacing: -0.04em;
  background: rgb(255 255 255 / 6%);
  text-transform: none;
}

.proposal-title {
  max-width: none;
  color: hsl(var(--primary, 0 0% 96%));
  font-family: var(--font-universal-display), sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.proposal-description {
  max-width: 38rem;
  margin-top: 1.35rem;
  color: rgb(255 255 255 / 54%);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.65;
}

.proposal-description strong {
  color: hsl(var(--primary, 0 0% 96%));
  font-weight: 600;
}

.proposal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.proposal-vote-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1.2rem 0.75rem 1.35rem;
  border-radius: 999px;
  color: hsl(var(--background, 0 0% 0%));
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  background: hsl(var(--primary, 0 0% 96%));
  box-shadow: 0 10px 35px rgb(255 255 255 / 9%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.proposal-vote-button:hover {
  transform: translateY(-2px);
  background: rgb(255 255 255 / 86%);
}

.proposal-vote-button:focus-visible {
  outline: 2px solid hsl(var(--accent, 203 89% 53%));
  outline-offset: 3px;
}

.proposal-vote-button svg {
  width: 1.15rem;
  height: 1.15rem;
}

.proposal-action-note {
  color: rgb(255 255 255 / 34%);
  font-size: 0.75rem;
}

.proposal-summary {
  padding: 1.25rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 1.25rem;
  background: rgb(0 0 0 / 28%);
  box-shadow: inset 0 1px rgb(255 255 255 / 4%);
  backdrop-filter: blur(10px);
}

.proposal-summary-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: rgb(255 255 255 / 48%);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proposal-multiplier {
  color: hsl(var(--primary, 0 0% 96%));
  font-family: var(--font-geist-mono), monospace;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.proposal-meter {
  height: 0.3rem;
  margin: 1rem 0 1.2rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 7%);
}

.proposal-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, hsl(var(--accent, 203 89% 53%)), #76caff);
  box-shadow: 0 0 18px hsl(var(--accent, 203 89% 53%) / 50%);
}

.proposal-stats {
  display: grid;
  gap: 0.8rem;
}

.proposal-stats > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgb(255 255 255 / 7%);
  font-size: 0.78rem;
}

.proposal-stats dt {
  color: rgb(255 255 255 / 34%);
}

.proposal-stats dd {
  color: rgb(255 255 255 / 76%);
  text-align: right;
}

.proposal-footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgb(255 255 255 / 7%);
  color: rgb(255 255 255 / 40%);
  font-size: 0.78rem;
}

.proposal-footer svg {
  width: 1rem;
  height: 1rem;
  flex: none;
  color: hsl(var(--accent, 203 89% 53%));
}

@media (max-width: 720px) {
  .proposal-hero {
    border-radius: 1.35rem;
  }

  .proposal-shell {
    border-radius: calc(1.35rem - 1px);
  }

  .proposal-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.5rem 1.15rem;
  }

  .proposal-title {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
  }

  .proposal-description {
    font-size: 0.98rem;
  }

  .proposal-topline,
  .proposal-footer {
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .proposal-action-note {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proposal-vote-button {
    transition: none;
  }
}

.vanilla-mobile-menu {
  position: absolute;
  top: 4rem;
  right: 0.75rem;
  left: 0.75rem;
  z-index: 80;
  padding: 0.5rem;
  border: 1px solid var(--color-border, #2f3336);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--color-background, #000) 94%, transparent);
  box-shadow: 0 18px 45px rgb(0 0 0 / 45%);
  backdrop-filter: blur(18px);
}

.vanilla-mobile-menu nav {
  display: grid;
  gap: 0.125rem;
}

.vanilla-mobile-menu a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.875rem;
  padding: 0.65rem 0.875rem;
  border-radius: 0.75rem;
  color: var(--color-primary, #f2f2f2);
  text-decoration: none;
}

.vanilla-mobile-menu a:hover,
.vanilla-mobile-menu a:focus-visible {
  background: rgb(255 255 255 / 6%);
  outline: none;
}

.vanilla-mobile-menu svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: none;
}

.vanilla-search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  z-index: 90;
  max-height: min(24rem, 60vh);
  overflow-y: auto;
  padding: 0.4rem;
  border: 1px solid var(--color-border, #2f3336);
  border-radius: 1rem;
  background: var(--color-background, #000);
  box-shadow: 0 18px 45px rgb(0 0 0 / 45%);
}

.vanilla-search-results a,
.vanilla-search-empty {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.7rem;
  color: var(--color-primary, #f2f2f2);
  font-size: 0.875rem;
  text-decoration: none;
}

.vanilla-search-results a:hover,
.vanilla-search-results a:focus-visible {
  background: rgb(255 255 255 / 6%);
  outline: none;
}

.vanilla-search-empty {
  color: rgb(255 255 255 / 45%);
}

.vanilla-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  max-width: min(24rem, calc(100vw - 2rem));
  translate: 0 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border, #2f3336);
  border-radius: 999px;
  background: var(--color-primary, #f2f2f2);
  color: var(--color-background, #000);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, translate 180ms ease;
}

.vanilla-toast.is-visible {
  translate: 0;
  opacity: 1;
}

@media (min-width: 688px) {
  .vanilla-mobile-menu {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vanilla-toast {
    transition: none;
  }
}
