.wrap--vote{
  width:100%;
  max-width:none;
  min-height:100vh;
  margin:0;
  padding:0;
}

.votePage{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  padding:clamp(16px,2.6vw,30px);
  color:rgba(245,241,232,.94);
  background:linear-gradient(180deg, #070708 0%, #0b0c0f 52%, #060607 100%);
}

.votePage::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.42;
  background-image:
    radial-gradient(circle at 16% 16%, rgba(217,124,43,.12), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(217,124,43,.08), transparent 22%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size:auto, auto, 34px 34px, 34px 34px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.36));
}

.votePage__backdrop{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 32% 18%, rgba(217,124,43,.18), transparent 34%),
    radial-gradient(circle at 78% 8%, rgba(255,187,87,.07), transparent 20%),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.34));
  opacity:.7;
}

.votePage__shell{
  position:relative;
  z-index:1;
  width:min(1160px, calc(100vw - 20px));
  margin:0 auto;
  display:grid;
  gap:14px;
}

.votePage__masthead,
.votePage__hero,
.votePage__guide,
.votePage__feed,
.votePage__metric,
.votePage__step,
.votePage__row,
.votePage__note{
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(18,18,20,.88), rgba(10,10,12,.82));
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  backdrop-filter:blur(12px);
}

.votePage__masthead,
.votePage__hero,
.votePage__guide,
.votePage__feed{
  border-radius:26px;
}

.votePage__metric,
.votePage__step,
.votePage__row,
.votePage__note{
  border-radius:20px;
}

.votePage__masthead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px 18px;
  min-height:74px;
  padding:12px 16px;
}

.votePage__brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:inherit;
  text-decoration:none;
}

.votePage__mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:74px;
  height:38px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(217,124,43,.26);
  background:rgba(217,124,43,.1);
  color:#f8ecdc;
  font-family:"Russo One", sans-serif;
  font-size:.95rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.votePage__caption,
.votePage__kicker,
.votePage__metric span,
.votePage__feedMeta,
.votePage__rowMeta,
.votePage__row time{
  font-family:"Oswald", sans-serif;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:rgba(239,229,214,.58);
}

.votePage__caption{
  font-size:.78rem;
}

.votePage__actions,
.votePage__cta,
.votePage__chips{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}

.votePage__hero{
  display:grid;
  grid-template-columns:minmax(0, 1.16fr) minmax(280px, .84fr);
  gap:14px;
  padding:20px;
}

.votePage__heroMain{
  display:grid;
  align-content:start;
  gap:14px;
}

.votePage__kicker{
  color:#d97c2b;
  font-size:.78rem;
}

.votePage__hero h1{
  margin:0;
  max-width:14ch;
  font-family:"Russo One", sans-serif;
  font-size:clamp(1.9rem, 4.6vw, 3.9rem);
  line-height:.98;
  letter-spacing:.03em;
}

.votePage__summary{
  max-width:48rem;
  margin:0;
  font-size:1rem;
  line-height:1.62;
  color:rgba(239,229,214,.76);
}

.votePage__chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:9px 14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:rgba(245,241,232,.9);
}

.votePage__chip i{
  color:#d97c2b;
}

.votePage__chip span{
  font-size:.74rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(239,229,214,.55);
}

.votePage__chip strong{
  font-size:.95rem;
  font-weight:800;
  color:#f5f1e8;
}

.votePage__chip--accent{
  border-color:rgba(217,124,43,.32);
  background:rgba(217,124,43,.12);
}

.votePage__status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:20px;
  color:rgba(239,229,214,.68);
  font-size:.9rem;
}

.votePage__status::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#8bcf9b;
  box-shadow:0 0 0 4px rgba(139,207,155,.14);
}

.votePage__status.is-stale{
  color:#f2c77b;
}

.votePage__status.is-stale::before{
  background:#f2c77b;
  box-shadow:0 0 0 4px rgba(242,199,123,.14);
}

.votePage__status.is-error{
  color:#ffb58a;
}

.votePage__status.is-error::before{
  background:#ff8a5c;
  box-shadow:0 0 0 4px rgba(255,138,92,.14);
}

.votePage__stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.votePage__metric{
  min-height:120px;
  padding:16px;
}

.votePage__metric span{
  display:block;
  font-size:.74rem;
}

.votePage__metric strong{
  display:block;
  margin-top:14px;
  font-family:"Russo One", sans-serif;
  font-size:clamp(1.45rem, 3vw, 2.2rem);
  line-height:1.05;
  color:#f5f1e8;
}

.votePage__layout{
  display:grid;
  grid-template-columns:minmax(300px, .76fr) minmax(0, 1.24fr);
  gap:14px;
}

.votePage__guide,
.votePage__feed{
  padding:18px;
}

.votePage__sectionHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.votePage__sectionHead h2{
  margin:0;
  font-family:"Russo One", sans-serif;
  font-size:clamp(1.2rem, 2vw, 1.72rem);
  line-height:1.05;
}

.votePage__sectionHead p{
  margin:8px 0 0;
  color:rgba(239,229,214,.62);
  font-size:.94rem;
  line-height:1.55;
}

.votePage__sectionHead--split{
  align-items:flex-end;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.votePage__feedMeta{
  display:inline-flex;
  align-items:center;
  min-height:20px;
  white-space:nowrap;
  font-size:.72rem;
}

.votePage__steps{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.votePage__step{
  display:grid;
  grid-template-columns:44px minmax(0, 1fr);
  gap:12px;
  align-items:flex-start;
  padding:14px;
}

.votePage__stepNum{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(217,124,43,.26);
  background:rgba(217,124,43,.11);
  color:#f5e6d0;
  font-family:"Russo One", sans-serif;
  font-size:.82rem;
  letter-spacing:.08em;
}

.votePage__stepBody{
  display:grid;
  gap:5px;
}

.votePage__stepBody strong{
  font-size:.98rem;
  color:#f5f1e8;
}

.votePage__stepBody span{
  color:rgba(239,229,214,.66);
  line-height:1.54;
  font-size:.92rem;
}

.votePage__note{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:12px;
  padding:14px 16px;
  color:rgba(239,229,214,.72);
  line-height:1.55;
}

.votePage__note i{
  margin-top:2px;
  color:#d97c2b;
}

.votePage__list{
  display:grid;
  gap:8px;
  margin-top:14px;
  max-height:min(72vh, 760px);
  overflow:auto;
  padding-right:4px;
}

.votePage__list::-webkit-scrollbar{
  width:8px;
}

.votePage__list::-webkit-scrollbar-track{
  background:rgba(255,255,255,.04);
  border-radius:999px;
}

.votePage__list::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg, rgba(217,124,43,.9), rgba(94,44,20,.9));
  border-radius:999px;
}

.votePage__state{
  display:grid;
  place-items:center;
  gap:10px;
  min-height:220px;
  border:1px dashed rgba(255,255,255,.1);
  border-radius:20px;
  background:rgba(255,255,255,.02);
  color:rgba(239,229,214,.68);
  text-align:center;
}

.votePage__state--error{
  color:#ffb58a;
}

.votePage__row{
  display:grid;
  grid-template-columns:44px minmax(0, 1fr) auto;
  align-items:center;
  gap:12px;
  min-height:68px;
  padding:10px 12px;
  transition:border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.votePage__row:hover{
  border-color:rgba(217,124,43,.22);
  background:linear-gradient(180deg, rgba(22,22,24,.9), rgba(13,13,15,.84));
  transform:translateY(-1px);
}

.votePage__avatar{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(217,124,43,.18);
  background:rgba(0,0,0,.32);
  color:rgba(245,241,232,.78);
}

.votePage__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.votePage__rowMain{
  min-width:0;
  display:grid;
  gap:3px;
}

.votePage__rowMain strong{
  font-size:.98rem;
  font-weight:800;
  color:#f5f1e8;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

.votePage__rowMeta{
  font-size:.7rem;
}

.votePage__row time{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  font-size:.72rem;
  white-space:nowrap;
}

@keyframes voteFadeUp{
  from{
    opacity:0;
    transform:translateY(16px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (prefers-reduced-motion:no-preference){
  .votePage__masthead{
    animation:voteFadeUp .42s ease both;
  }

  .votePage__hero{
    animation:voteFadeUp .48s ease both;
    animation-delay:.05s;
  }

  .votePage__guide,
  .votePage__feed{
    animation:voteFadeUp .52s ease both;
    animation-delay:.1s;
  }

  .votePage__metric:nth-child(1){ animation:voteFadeUp .46s ease both; animation-delay:.08s; }
  .votePage__metric:nth-child(2){ animation:voteFadeUp .46s ease both; animation-delay:.12s; }
  .votePage__metric:nth-child(3){ animation:voteFadeUp .46s ease both; animation-delay:.16s; }
  .votePage__metric:nth-child(4){ animation:voteFadeUp .46s ease both; animation-delay:.2s; }
}

@media (max-width: 980px){
  .votePage__shell{
    width:min(100%, 760px);
  }

  .votePage__hero,
  .votePage__layout{
    grid-template-columns:1fr;
  }

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

  .votePage__sectionHead--split{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width: 640px){
  .votePage{
    padding:12px;
  }

  .votePage__shell{
    width:100%;
    gap:12px;
  }

  .votePage__masthead,
  .votePage__hero,
  .votePage__guide,
  .votePage__feed{
    border-radius:22px;
  }

  .votePage__masthead,
  .votePage__hero,
  .votePage__guide,
  .votePage__feed{
    padding:16px;
  }

  .votePage__actions,
  .votePage__cta{
    width:100%;
  }

  .votePage__actions > .btn,
  .votePage__cta > .btn{
    flex:1 1 100%;
    justify-content:center;
  }

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

  .votePage__metric{
    min-height:104px;
    padding:14px;
  }

  .votePage__hero h1{
    max-width:unset;
    font-size:clamp(1.56rem, 8vw, 2.4rem);
  }

  .votePage__summary,
  .votePage__stepBody span,
  .votePage__sectionHead p{
    font-size:.9rem;
  }

  .votePage__list{
    max-height:none;
    overflow:visible;
    padding-right:0;
  }

  .votePage__row{
    grid-template-columns:44px minmax(0, 1fr);
  }

  .votePage__row time{
    grid-column:2;
    justify-self:start;
  }
}

@media (max-width: 420px){
  .votePage__stats{
    grid-template-columns:1fr;
  }

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

  .votePage__stepNum{
    width:40px;
    height:40px;
  }
}
