/* ---------------------------------------------------------------
   WinVote — reproduces the original site's visual design exactly
   (colors, type, layout extracted from the live site's own CSS).
   The only functional change from the original: every "vote" /
   "sign in" control now points to an honest destination instead of
   the phishing pages the attacker wired them to. See SECURITY.md.
--------------------------------------------------------------- */
* , ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; }
body { line-height: 1; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:root {
  --wv-ink: #16181d;
  --wv-ink-soft: #43464f;
  --wv-muted: #5e616a;
  --wv-line: #16181d1a;
  --wv-line-strong: #16181d29;
  --wv-cream: #faf8f3;
  --wv-surface: #fff;
  --wv-coral: #c2680e;
  --wv-yellow: #eaa92c;
  --wv-gold-soft: #fceacb;
  --wv-mint: #dcebe0;
  --wv-green: #0e7c5a;
  --wv-radius: 6px;
  --wv-radius-lg: 14px;
  --wv-shadow: 0 10px 30px -12px #16181d2e;
  --wv-shadow-sm: 0 2px 10px -3px #16181d1f;
  --wv-shadow-lg: 0 28px 60px -24px #16181d47;
}

@keyframes wv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: rgba(203, 162, 76, 0.55) 0 0 0 0; }
  50% { opacity: 0.85; transform: scale(1.15); box-shadow: rgba(203, 162, 76, 0) 0 0 0 6px; }
}
@keyframes wv-pulse-ink {
  0%, 100% { box-shadow: rgba(14, 124, 90, 0.5) 0 0 0 0; }
  50% { box-shadow: rgba(14, 124, 90, 0) 0 0 0 6px; }
}
@keyframes marqueeScroll {
  0% { transform: translate(0); }
  100% { transform: translate(-50%); }
}

.votepic-bg {
  background: var(--wv-cream);
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.votepic-bg > * { z-index: 1; position: relative; }
.votepic-bg::before {
  content: "";
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E") 50% center / cover no-repeat;
  position: fixed;
  inset: 0;
}
.votepic-bg::after {
  content: "";
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(620px at 8% 12%, rgba(234, 169, 44, 0.12), transparent 60%),
              radial-gradient(720px at 92% 82%, rgba(14, 124, 90, 0.09), transparent 62%);
  position: fixed;
  inset: 0;
}
.votepic-bg a:focus-visible,
.votepic-bg button:focus-visible,
.votepic-bg input:focus-visible {
  outline: 2px solid var(--wv-coral);
  outline-offset: 3px;
  border-radius: 5px;
}
.wv-hero-full a:focus-visible,
.wv-hero-full button:focus-visible { outline-color: var(--wv-yellow); }

.wv-skip-link {
  position: absolute;
  top: -3.5rem;
  left: 1rem;
  z-index: 100;
  background: var(--wv-ink);
  color: #fff;
  border-radius: 6px;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.18s;
}
.wv-skip-link:focus { top: 1rem; }

.votepic-hero-title,
.wv-section-head h2,
.wv-impact-content h2,
.wv-about h2,
.votepic-secure-entry-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-feature-settings: "lnum";
}

/* Nav */
.votepic-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 2rem;
  background: var(--wv-cream);
  border-bottom: 1px solid var(--wv-line);
  box-shadow: rgba(22, 24, 29, 0.4) 0 6px 24px -18px;
}
.votepic-brand { display: flex; align-items: center; gap: 0.7rem; }
.votepic-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--wv-yellow);
  color: var(--wv-ink);
  border: 1px solid rgba(28, 29, 34, 0.12);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: var(--wv-shadow-sm);
}
.votepic-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.votepic-brand-text > span { color: var(--wv-ink); font-size: 0.95rem; font-weight: 800; }
.votepic-brand-text > small { color: var(--wv-muted); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; }
.votepic-nav-links { flex: 1 0 0%; display: flex; justify-content: flex-start; align-items: center; gap: 2rem; margin-left: 3rem; }
.votepic-nav-links a { position: relative; color: var(--wv-ink-soft); font-size: 0.88rem; font-weight: 600; transition: color 0.18s; }
.votepic-nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--wv-coral);
  transform: scaleX(0);
  transform-origin: 0 center;
  transition: transform 0.22s;
}
.votepic-nav-links a:hover { color: var(--wv-ink); }
.votepic-nav-links a:hover::after { transform: scaleX(1); }
.votepic-nav-links .nav-vote-link { color: var(--wv-ink); font-weight: 700; }
.votepic-nav-links .nav-vote-link::after { background: var(--wv-yellow); }
.votepic-explore-btn {
  padding: 0.6rem 1.25rem;
  background: var(--wv-ink);
  color: #fff;
  border: 1px solid var(--wv-ink);
  border-radius: var(--wv-radius);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: var(--wv-shadow-sm);
  transition: transform 0.15s, background 0.15s;
}
.votepic-explore-btn:hover { background: #2a2d36; transform: translateY(-1px); }
.votepic-hamburger { display: none; padding: 0.25rem; color: var(--wv-ink); font-size: 1.5rem; line-height: 1; }

/* Mobile drawer */
.votepic-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22, 24, 29, 0.376);
  backdrop-filter: blur(2px);
}
.votepic-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 201;
  width: min(320px, 90vw);
  background: var(--wv-cream);
  padding: 1.5rem;
  box-shadow: rgba(22, 24, 29, 0.2) -8px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(110%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.votepic-drawer.is-open { transform: translateX(0); }
.votepic-drawer-overlay.is-open { display: block; }
.votepic-drawer-close { align-self: flex-end; padding: 0.35rem; color: var(--wv-ink-soft); transition: color 0.15s; }
.votepic-drawer-close:hover { color: var(--wv-ink); }
.votepic-drawer-brand { display: flex; align-items: center; gap: 0.6rem; font-size: 1rem; font-weight: 800; color: var(--wv-ink); }
.votepic-drawer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.votepic-drawer-links a { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; border-radius: var(--wv-radius); color: var(--wv-ink-soft); font-size: 0.92rem; font-weight: 600; transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s; }
.votepic-drawer-links a:hover { background: var(--wv-yellow); color: var(--wv-ink); box-shadow: var(--wv-shadow-sm); transform: translateY(-1px); }
.votepic-drawer-links .drawer-vote-link { background: var(--wv-gold-soft); border: 1px solid rgba(156, 107, 44, 0.22); color: var(--wv-ink); font-weight: 700; }
.votepic-drawer-links .drawer-vote-link:hover { background: var(--wv-yellow); }

/* Hero */
.wv-hero-full { position: relative; display: flex; align-items: center; min-height: 90vh; background: var(--wv-ink); overflow: hidden; }
.wv-hero-full-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.wv-hero-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 18, 0.95) 0%, rgba(13, 13, 18, 0.82) 46%, rgba(13, 13, 18, 0.42) 100%),
              linear-gradient(rgba(13, 13, 18, 0) 58%, rgba(13, 13, 18, 0.55) 100%);
}
.wv-hero-full-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; width: 100%; max-width: 1180px; margin: 0 auto; padding: 4rem 2rem; }
.votepic-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  border-radius: 9999px;
  background: none;
  color: var(--wv-yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.wv-live-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wv-yellow);
  animation: wv-pulse 2.4s ease-out infinite;
}
.wv-live-dot-ink { background: var(--wv-green); animation-name: wv-pulse-ink; }
.votepic-hero-title { color: #fff; max-width: 16ch; margin-bottom: 1.4rem; font-size: 3.2rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.03; text-align: left; }
.votepic-hero-title-muted { color: var(--wv-yellow); font-style: normal; font-weight: 800; }
.votepic-hero-description { color: rgba(255, 255, 255, 0.82); max-width: 42ch; margin-bottom: 2rem; font-size: 1.075rem; line-height: 1.68; text-align: left; }
.votepic-buttons-group { display: flex; align-items: center; gap: 1.75rem; }
.votepic-btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.9rem;
  background: var(--wv-yellow);
  color: var(--wv-ink);
  border: 1px solid var(--wv-yellow);
  border-radius: var(--wv-radius);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--wv-shadow);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.votepic-btn-primary:hover { background: #d8b45e; box-shadow: var(--wv-shadow-lg); transform: translateY(-2px); }
.votepic-btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: underline rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s, color 0.15s;
}
.votepic-btn-secondary:hover { color: var(--wv-yellow); text-decoration-color: var(--wv-yellow); }
.wv-hero-stats { display: flex; flex-wrap: wrap; gap: 2.75rem; margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.wv-hero-stats strong { display: block; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 2.1rem; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.wv-hero-stats span { display: block; margin-top: 0.5rem; color: rgba(255, 255, 255, 0.55); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* Live pulse */
.wv-live-section { width: 100%; max-width: 960px; margin: 0 auto; padding: 0.5rem 2rem 4.5rem; }
.votepic-live-panel { background: var(--wv-surface); border: 1px solid var(--wv-line); border-radius: var(--wv-radius-lg); box-shadow: var(--wv-shadow-lg); padding: 2rem; transition: transform 0.18s, box-shadow 0.18s; }
.votepic-live-panel:hover { transform: translateY(-3px); }
.votepic-live-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.votepic-recent-activity .votepic-live-label { display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 0.55rem; color: var(--wv-coral); }
.votepic-recent-activity h3 { margin-bottom: 1.6rem; color: var(--wv-ink); font-family: "Playfair Display", Georgia, serif; font-size: 1.6rem; font-weight: 700; letter-spacing: -0.01em; }
.votepic-recent-activity li { position: relative; padding: 0 0 1rem 1.5rem; color: var(--wv-ink-soft); font-size: 0.875rem; font-weight: 500; }
.votepic-recent-activity li:last-child { padding-bottom: 0; }
.votepic-recent-activity li::before { content: ""; position: absolute; top: 5px; left: 1px; z-index: 1; width: 8px; height: 8px; border-radius: 50%; background: var(--wv-coral); box-shadow: 0 0 0 3px var(--wv-gold-soft); }
.votepic-recent-activity li::after { content: ""; position: absolute; top: 13px; bottom: -1px; left: 4.5px; width: 1px; background: var(--wv-line); }
.votepic-recent-activity li:last-child::after { display: none; }

/* Marquee */
.wv-marquee { padding: 0.95rem 0; border-top: 1px solid var(--wv-line); border-bottom: 1px solid var(--wv-line); white-space: nowrap; overflow: hidden; }
.wv-marquee-track { display: inline-flex; animation: marqueeScroll 28s linear infinite; }
.wv-marquee-item { display: inline-flex; align-items: center; gap: 1.5rem; padding: 0 1.5rem; color: var(--wv-muted); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; white-space: nowrap; }
.wv-marquee-dot { color: var(--wv-coral); }

/* Generic section */
.wv-section { width: 100%; max-width: 960px; margin: 0 auto; padding: 5.5rem 1.5rem; }
.wv-section-head { margin-bottom: 2.75rem; }
.wv-section-head h2 { margin: 0.4rem 0 0.7rem; color: var(--wv-ink); font-size: 2.2rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; }
.wv-section-head p { max-width: 42rem; color: var(--wv-muted); font-size: 1rem; line-height: 1.65; }
.votepic-secure-entry-label { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; color: var(--wv-coral); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.votepic-secure-entry-label::before { content: ""; width: 1.6rem; height: 1px; background: var(--wv-coral); opacity: 0.6; }

/* Rankings */
.wv-rankings-list { background: var(--wv-ink); border: 1px solid rgba(28, 29, 34, 0.12); border-radius: 10px; box-shadow: var(--wv-shadow); padding: 0.75rem; }
.wv-rank-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.6rem; padding: 1rem 1.25rem; background: #fff; border: 1px solid rgba(28, 29, 34, 0.12); border-radius: 0.85rem; transition: transform 0.16s, box-shadow 0.16s; }
.wv-rank-row:last-child { margin-bottom: 0; }
.wv-rank-row:hover { box-shadow: var(--wv-shadow-sm); transform: translate(4px); }
.wv-rank-row:first-child { background: linear-gradient(100deg, var(--wv-gold-soft), #fff 72%); border-color: var(--wv-yellow); padding: 1.4rem 1.5rem; }
.wv-rank-row:first-child .wv-rank-num { background: var(--wv-yellow); color: var(--wv-ink); }
.wv-rank-row:first-child .wv-rank-name,
.wv-rank-row:first-child .wv-rank-percent { font-size: 1.15rem; }
.wv-rank-num { display: flex; justify-content: center; align-items: center; flex-shrink: 0; width: 30px; height: 30px; background: var(--wv-ink); color: #fff; border-radius: 9px; font-size: 0.85rem; font-weight: 800; }
.wv-rank-info { flex: 1 0 0%; min-width: 0; }
.wv-rank-name { color: var(--wv-ink); font-size: 1rem; font-weight: 900; letter-spacing: -0.01em; }
.wv-rank-handle { color: var(--wv-muted); font-size: 0.78rem; font-weight: 500; }
.wv-rank-bar-track { flex: 1 0 0%; height: 12px; border-radius: 9999px; background: rgba(22, 24, 29, 0.07); overflow: hidden; }
.wv-rank-bar-fill { height: 100%; background: var(--wv-yellow); border-radius: 9999px; }
.wv-rank-bar-fill.w-16 { width: 16%; }
.wv-rank-bar-fill.w-29 { width: 29%; }
.wv-rank-bar-fill.w-41 { width: 41%; }
.wv-rank-bar-fill.w-58 { width: 58%; }
.wv-rank-bar-fill.w-74 { width: 74%; }
.wv-rank-percent { flex-shrink: 0; width: 48px; color: var(--wv-ink); font-size: 0.98rem; font-weight: 900; text-align: right; font-variant-numeric: tabular-nums; }

/* Impact banner */
.wv-impact-banner { position: relative; display: flex; align-items: center; border-top: 1px solid rgba(28, 29, 34, 0.12); border-bottom: 1px solid rgba(28, 29, 34, 0.12); overflow: hidden; min-height: 340px; }
.wv-impact-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.wv-impact-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(16, 16, 20, 0.3) 0%, rgba(16, 16, 20, 0.8) 55%, rgba(16, 16, 20, 0.95) 100%); }
.wv-impact-content { position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto; padding: 3.5rem 2.5rem; text-align: right; margin-left: auto; }
.wv-impact-label { display: inline-block; margin-bottom: 0.9rem; padding: 0.3rem 0.9rem; background: var(--wv-yellow); color: var(--wv-ink); border: 1px solid rgba(28, 29, 34, 0.12); border-radius: 9999px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em; }
.wv-impact-content h2 { max-width: 28rem; margin: 0 0 0.9rem auto; color: #fff; font-size: 2.2rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; }
.wv-impact-content > p { max-width: 26rem; margin: 0 0 2rem auto; color: rgba(255, 255, 255, 0.8); font-size: 1rem; line-height: 1.6; }

/* How it works */
.votepic-lower-features { counter-reset: wvstep; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; width: 100%; max-width: 960px; margin: 0 auto; padding: 0 1.5rem 5.5rem; }
.votepic-lower-feature { position: relative; counter-increment: wvstep; padding: 1.75rem; background: var(--wv-surface); border: 1px solid var(--wv-line); border-radius: var(--wv-radius-lg); box-shadow: var(--wv-shadow-sm); transition: transform 0.18s, box-shadow 0.18s; }
.votepic-lower-feature:hover { box-shadow: var(--wv-shadow); transform: translateY(-3px); }
.votepic-lower-feature::before {
  content: counter(wvstep);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px; height: 34px;
  margin-bottom: 1.1rem;
  background: var(--wv-gold-soft);
  color: var(--wv-coral);
  border-radius: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}
.votepic-lower-feature-label { margin-bottom: 0.6rem; color: var(--wv-ink); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.votepic-lower-feature p { color: var(--wv-ink); font-size: 0.88rem; font-weight: 500; line-height: 1.6; }

/* Testimonials */
.wv-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.wv-testimonial-card { display: flex; flex-direction: column; padding: 1.75rem; background: var(--wv-surface); border: 1px solid var(--wv-line); border-radius: var(--wv-radius-lg); box-shadow: var(--wv-shadow-sm); transition: transform 0.18s, box-shadow 0.18s; }
.wv-testimonial-card:hover { box-shadow: var(--wv-shadow); transform: translateY(-3px); }
.wv-testimonial-card:nth-child(2) { background: var(--wv-gold-soft); border-color: rgba(156, 107, 44, 0.2); }
.wv-testimonial-card:nth-child(3) { background: var(--wv-mint); }
.wv-testimonial-quote { flex: 1 0 0%; margin-bottom: 1.5rem; color: var(--wv-ink); font-size: 0.92rem; font-weight: 500; line-height: 1.65; }
.wv-testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--wv-line); }
.wv-testimonial-name { color: var(--wv-ink); font-size: 0.92rem; font-weight: 800; }
.wv-testimonial-role { margin-top: 0.1rem; color: var(--wv-muted); font-size: 0.78rem; font-weight: 500; }

/* About */
.wv-about { max-width: 960px; margin: 2rem auto; padding: 3.5rem 2.75rem; background: var(--wv-ink); border: 1px solid rgba(20, 41, 63, 0.12); border-radius: 10px; text-align: left; }
.wv-about .votepic-secure-entry-label { color: var(--wv-yellow); }
.wv-about h2 { margin: 0.5rem 0 1rem; color: #fff; font-size: 1.9rem; font-weight: 900; letter-spacing: -0.02em; }
.wv-about p { color: rgba(255, 255, 255, 0.75); font-size: 1rem; line-height: 1.75; }

/* Sign-in CTA */
.votepic-secure-entry { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 1.5rem 5.5rem; }
.votepic-secure-entry-card { padding: 2.25rem; background: #fff; border: 1px solid rgba(20, 41, 63, 0.12); border-radius: 10px; box-shadow: var(--wv-shadow-lg); }
.votepic-secure-entry-top { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.votepic-secure-entry-copy h2 { max-width: 32rem; margin-bottom: 0.75rem; color: var(--wv-ink); font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; }
.votepic-secure-entry-copy p { max-width: 34rem; color: rgb(75, 70, 88); font-size: 0.95rem; line-height: 1.7; }
.votepic-live-access { flex-shrink: 0; min-width: 260px; padding: 1rem 1.25rem; background: var(--wv-gold-soft); border: 1px solid rgba(156, 107, 44, 0.22); border-radius: 0.9rem; box-shadow: var(--wv-shadow-sm); }
.votepic-live-access-title { margin-bottom: 0.3rem; color: var(--wv-ink); font-size: 0.9rem; font-weight: 800; }
.votepic-live-access p { color: var(--wv-ink); font-size: 0.8rem; line-height: 1.5; }
.votepic-provider-tiles { display: flex; flex-direction: column; gap: 0.85rem; }
.provider-link {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.25rem;
  background: var(--wv-cream);
  border: 1px solid rgba(28, 29, 34, 0.12);
  border-radius: 8px;
  box-shadow: var(--wv-shadow-sm);
  text-align: left;
  font-family: inherit;
  transition: transform 0.12s, box-shadow 0.12s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  width: 100%;
}
.provider-link:hover { box-shadow: var(--wv-shadow-lg); transform: translateY(-2px); }
.votepic-provider-tile-icon { display: flex; justify-content: center; align-items: center; flex-shrink: 0; width: 40px; height: 40px; color: #fff; border: 1px solid rgba(28, 29, 34, 0.12); border-radius: 0.65rem; font-size: 1rem; font-weight: 800; }
.votepic-provider-tile-icon--x { background: #000000; }
.votepic-provider-tile-icon--ms { background: #0078d4; }
.votepic-provider-tile-title { margin-bottom: 0.3rem; color: var(--wv-ink); font-size: 0.92rem; font-weight: 800; }
.provider-link p { color: rgb(75, 70, 88); font-size: 0.78rem; line-height: 1.5; }
.provider-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--wv-cream);
  border: 1px dashed rgba(28, 29, 34, 0.2);
  border-radius: 8px;
  color: var(--wv-ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Footer */
.votepic-footer { display: flex; flex-flow: wrap; justify-content: space-between; align-items: center; gap: 0.75rem; width: 100%; padding: 1.75rem 2.5rem; background: var(--wv-ink); border-top: 1px solid rgba(28, 29, 34, 0.12); }
.votepic-footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.votepic-footer-brand > span:first-child { color: #fff; font-size: 0.95rem; font-weight: 800; }
.votepic-footer-brand > span:last-child { color: var(--wv-yellow); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; }
.votepic-footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; }
.votepic-footer-links a { color: rgba(255, 255, 255, 0.72); font-size: 0.85rem; font-weight: 600; transition: color 0.15s; }
.votepic-footer-links a:hover { color: var(--wv-yellow); }
.votepic-footer-links a:last-child { padding: 0.5rem 1.1rem; background: var(--wv-yellow); color: var(--wv-ink); border-radius: var(--wv-radius); font-weight: 700; transition: transform 0.15s, background 0.15s; }
.votepic-footer-links a:last-child:hover { background: #f0b840; transform: translateY(-1px); }

@media (min-width: 1024px) {
  .wv-hero-full .votepic-hero-title { font-size: 4.4rem; }
  .votepic-secure-entry-top { flex-direction: row; align-items: flex-start; }
}
@media (max-width: 900px) {
  .votepic-nav-links, .votepic-explore-btn { display: none; }
  .votepic-hamburger { display: block; }
  .votepic-secure-entry { padding: 0 1.25rem 2rem; }
  .votepic-provider-tiles { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .votepic-lower-features { grid-template-columns: 1fr; padding: 0 1.25rem 3.5rem; }
  .wv-testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .wv-live-section { padding: 0 1.25rem 3rem; }
  .wv-hero-full { min-height: auto; }
  .wv-hero-full-inner { padding: 3rem 1.25rem; }
  .wv-hero-stats { gap: 1.75rem; margin-top: 2rem; }
  .wv-hero-stats strong { font-size: 1.7rem; }
  .wv-impact-banner { min-height: 480px; }
  .wv-impact-content h2 { font-size: 1.7rem; }
  .wv-impact-banner .wv-impact-content { text-align: left; margin-left: 0; }
  .wv-impact-content h2, .wv-impact-content > p { margin-left: 0; }
  .wv-section { padding: 3.5rem 1.25rem; }
  .votepic-footer { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
}
@media (max-width: 600px) {
  .wv-rank-bar-track { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wv-live-dot { animation: none; }
  .wv-marquee-track { animation: none; }
}

/* 404 page */
.not-found { min-height: 70vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; max-width: 640px; margin: 0 auto; padding: 3rem 1.5rem; }
.not-found h1 { font-family: "Playfair Display", Georgia, serif; font-size: 2.4rem; font-weight: 800; color: var(--wv-ink); margin-bottom: 0.75rem; }
.not-found p { color: var(--wv-muted); margin-bottom: 1.75rem; }
