/* VoteBank landing — design tokens from votebank-web */
:root {
  --navy: #0B1220;
  --navy-2: #111c30;
  --card: rgba(21, 32, 52, 0.33);
  --card-solid: #16233b;
  --orange: #EA580C;
  --orange-deep: #C2410C;
  --sky: #F97316;
  --green: #10B981;
  --link: #7DB8F0;
  --ink: #EAF1FB;
  --muted: #93A4BE;
  --border: rgba(120, 160, 220, 0.16);
  --radius: 18px;
  --page: 1160px;
  --glass: blur(14px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--orange); color: #fff; }
button, input { font-family: inherit; }
img { display: block; max-width: 100%; }

.bg-orbs {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.orb { position: absolute; border-radius: 999px; filter: blur(70px); }
.orb-a {
  top: -160px; left: -120px; width: 620px; height: 620px;
  background: radial-gradient(circle at 40% 40%, rgba(234,88,12,.55), rgba(234,88,12,0) 68%);
  animation: vbOrbA 26s ease-in-out infinite;
}
.orb-b {
  top: 38%; right: -200px; width: 560px; height: 560px;
  background: radial-gradient(circle at 50% 50%, rgba(16,185,129,.4), rgba(16,185,129,0) 68%);
  filter: blur(80px);
  animation: vbOrbB 34s ease-in-out infinite;
}
.orb-c {
  bottom: -220px; left: 32%; width: 640px; height: 640px;
  background: radial-gradient(circle at 50% 50%, rgba(249,115,22,.34), rgba(249,115,22,0) 70%);
  filter: blur(90px);
  animation: vbOrbC 30s ease-in-out infinite;
}
@keyframes vbOrbA {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(80px,-60px,0) scale(1.12); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
@keyframes vbOrbB {
  0% { transform: translate3d(0,0,0) scale(1.05); }
  50% { transform: translate3d(-90px,70px,0) scale(.92); }
  100% { transform: translate3d(0,0,0) scale(1.05); }
}
@keyframes vbOrbC {
  0% { transform: translate3d(0,0,0) scale(.95); }
  50% { transform: translate3d(60px,90px,0) scale(1.1); }
  100% { transform: translate3d(0,0,0) scale(.95); }
}
@keyframes vbFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes vbPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
@keyframes vbDraw {
  from { stroke-dashoffset: 1400; }
  to { stroke-dashoffset: 0; }
}
@keyframes vbRise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes vbTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes vbFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page-wrap { position: relative; z-index: 1; }
[data-reveal] { opacity: 0; }
[data-reveal].is-in { animation: vbFadeUp .7s cubic-bezier(.22,1,.36,1) both; }

.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(11,18,32,.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
/* VbLogo parity: checkmark-as-V + "ote" + orange "Bank" (no orange tile) */
.brand.vb-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  font-size: 22px;
}
.brand.vb-logo .vb-check {
  height: 1.15em;
  width: 1.15em;
  object-fit: contain;
  /* Asset is black check on transparent — invert for dark navy */
  filter: invert(1);
  transform: translate(2px, 0.06em);
  flex: none;
}
.brand.vb-logo .vb-ote {
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--ink);
}
.brand.vb-logo .vb-bank {
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--orange);
}
.footer-brand .brand.vb-logo { font-size: 18px; }
.nav-links {
  margin-left: auto; display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.nav-links a {
  color: var(--muted); font-weight: 600; font-size: 13.5px;
  padding: 9px 15px; border-radius: 999px; transition: color .18s, background .18s;
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--ink); background: rgba(21,32,52,.6);
}
.nav-links a.btn-primary {
  color: #fff;
  font-weight: 800;
  background: var(--orange);
  box-shadow: 0 6px 18px rgba(234,88,12,.3);
}
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus,
.nav-links a.btn-primary.is-active {
  color: #fff;
  background: var(--orange-deep);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; border-radius: 999px; font-weight: 800; cursor: pointer;
  transition: transform .18s, background .18s, border-color .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange); color: #fff !important; font-size: 13.5px; padding: 11px 20px;
  font-weight: 800; box-shadow: 0 6px 18px rgba(234,88,12,.3);
}
.btn-primary:hover { background: var(--orange-deep); color: #fff !important; }
.btn-lg { font-size: 14.5px; padding: 14px 24px; box-shadow: 0 10px 26px rgba(234,88,12,.32); }
.btn-ghost {
  border: 1px solid var(--border); background: var(--card);
  backdrop-filter: var(--glass); color: var(--ink); font-weight: 600;
  font-size: 14.5px; padding: 14px 24px;
}
.btn-ghost:hover { border-color: rgba(120,160,220,.4); color: var(--ink); }
.btn-store {
  background: var(--ink); color: var(--navy); padding: 12px 20px; font-size: 14px;
}
.btn-store:hover { color: var(--navy); }
.btn-store .badge {
  width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
  font-size: 10px; font-weight: 800; background: var(--navy); color: var(--ink);
}
.btn-store .badge.and { background: var(--green); color: var(--navy); font-size: 9px; }

@media (max-width: 760px) {
  .nav-links a:not(.btn) { display: none; }
  .nav-inner { gap: 10px; }
}

.section {
  max-width: var(--page);
  margin: 0 auto;
  padding: 56px 22px;
}
.section-tight { padding-top: 20px; padding-bottom: 56px; }
.kicker {
  font-size: 12px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--sky);
}
.kicker-row { display: flex; align-items: center; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--card); backdrop-filter: var(--glass);
  font-size: 12px; font-weight: 600; color: var(--muted);
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--green);
  animation: vbPulse 2s ease-in-out infinite;
}
.display {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.05; letter-spacing: -1.8px; font-weight: 800;
  text-wrap: pretty;
}
.hero-display {
  font-size: clamp(38px, 5.2vw, 62px);
  letter-spacing: -2.2px; line-height: 1.02;
}
.hero-display .accent { color: var(--orange); }

/* Indian tricolor shimmer across "India thinks out loud." */
.tricolor-text {
  display: inline-block;
  background-image: linear-gradient(
    100deg,
    #FF9933 0%,
    #FF9933 28%,
    #FFFFFF 42%,
    #FFFFFF 58%,
    #138808 72%,
    #138808 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: tricolorSlide 4.5s linear infinite;
  filter: drop-shadow(0 0 18px rgba(255, 153, 51, 0.18));
}
@keyframes tricolorSlide {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .tricolor-text { animation: none; background-position: 40% 50%; }
}
.lede {
  margin: 18px 0 0; font-size: 17.5px; line-height: 1.65; color: var(--muted);
  max-width: 640px; text-wrap: pretty;
}
.glass {
  border: 1px solid var(--border); background: var(--card);
  backdrop-filter: var(--glass); border-radius: var(--radius);
}
.glass-hover { transition: transform .2s, border-color .2s; }
.glass-hover:hover { transform: translateY(-2px); border-color: rgba(120,160,220,.4); }

.hero {
  max-width: var(--page); margin: 0 auto; padding: 76px 22px 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 52px; align-items: center;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; align-items: center;
}
.hero-stats .stat-num { font-size: 24px; font-weight: 800; letter-spacing: -.8px; }
.hero-stats .stat-label { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.hero-stats .divider { width: 1px; height: 36px; background: var(--border); }

.poll-card { width: 100%; max-width: 420px; margin: 0 auto; padding: 22px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.poll-card-meta { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; flex-wrap: wrap; }
.cat-pill {
  font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  color: var(--sky); background: rgba(234,88,12,.14); padding: 5px 10px; border-radius: 999px;
}
.poll-card h3 {
  margin: 0 0 18px; font-size: 20px; line-height: 1.3; font-weight: 800;
  letter-spacing: -.6px; text-wrap: pretty;
}
.poll-choices { display: flex; flex-direction: column; gap: 10px; }
.poll-choice {
  position: relative; overflow: hidden; text-align: left;
  background: rgba(11,18,32,.5); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px; color: var(--ink); width: 100%;
  cursor: default;
}
.poll-choice .bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: rgba(234,88,12,.28); transition: width 1.1s cubic-bezier(.22,1,.36,1);
}
.poll-choice .row {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.poll-choice .label { font-weight: 600; font-size: 15px; }
.poll-choice .pct { font-weight: 800; font-size: 15px; font-variant-numeric: tabular-nums; color: var(--sky); }
.poll-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; font-size: 12px; color: var(--muted); font-weight: 600;
}
.poll-live { display: flex; align-items: center; gap: 6px; }
.poll-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--green);
  animation: vbPulse 2s ease-in-out infinite;
}
.poll-cta {
  display: block; margin-top: 14px; text-align: center; font-size: 13px; font-weight: 700;
}

.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(11,18,32,.88);
  backdrop-filter: blur(14px);
  overflow: hidden;
  padding: 10px 0;
  margin-top: 0;
}
.nav .ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: none;
}
.ticker-track {
  display: flex; width: max-content; gap: 44px; animation: vbTicker 42s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 11px; white-space: nowrap;
}
.ticker-item .diamond {
  width: 7px; height: 7px; border-radius: 2px; background: var(--orange);
  transform: rotate(45deg); flex: none;
}
.ticker-item .q { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.ticker-item .pct { font-size: 13.5px; font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; }

.grid-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px;
}
.grid-2 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px;
}
.feature-card { padding: 22px; }
.feature-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(234,88,12,.14); border: 1px solid rgba(234,88,12,.28);
  display: grid; place-items: center; margin-bottom: 16px;
  font-weight: 800; font-size: 14px; color: var(--sky);
}
.feature-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 800; letter-spacing: -.5px; }
.feature-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

/* ── Why VoteBank — ballot / poll cards ─────────────────── */
.why-section { position: relative; }
.why-head { margin-bottom: 28px; }
.ballot-deck {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .ballot-deck { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .ballot-deck {
    grid-template-columns: none;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .ballot-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }
}

.ballot-card {
  --accent: #EA580C;
  position: relative;
  display: flex;
  min-height: 100%;
  border-radius: 16px;
  background: linear-gradient(165deg, #1a2740 0%, #121c30 100%);
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(0,0,0,.32);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) rotateX(6deg);
  transform-origin: 50% 100%;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
}
.ballot-card.is-in {
  animation: ballotDeal .7s cubic-bezier(.22,1,.36,1) calc(var(--i, 0) * 90ms) both;
}
@keyframes ballotDeal {
  from { opacity: 0; transform: translateY(28px) rotate(-2.5deg) scale(.96); }
  to { opacity: 1; transform: none; }
}

/* Perforated stub — ticket / ballot edge */
.ballot-stub {
  width: 18px;
  flex: none;
  background:
    radial-gradient(circle at 0 10px, transparent 5px, #0B1220 5.5px) 0 0 / 100% 20px,
    linear-gradient(90deg, rgba(234,88,12,.22), transparent 70%);
  background-color: color-mix(in srgb, var(--accent) 18%, #152034);
  border-right: 1px dashed rgba(120,160,220,.28);
}
.ballot-body {
  flex: 1;
  min-width: 0;
  padding: 16px 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ballot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ballot-stamp {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.ballot-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  padding: 4px 8px;
  border-radius: 999px;
}
.ballot-q {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -.4px;
  text-wrap: pretty;
  color: var(--ink);
}
.ballot-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}
.ballot-opt {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(120,160,220,.14);
  background: rgba(11,18,32,.55);
  padding: 10px 11px;
}
.ballot-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: color-mix(in srgb, var(--accent) 28%, transparent);
  transition: width 1.1s cubic-bezier(.22,1,.36,1);
}
.ballot-card.is-in .ballot-bar {
  width: var(--w, 50%);
  transition-delay: calc(var(--i, 0) * 90ms + 280ms);
}
.ballot-opt-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}
.ballot-opt-row b { font-weight: 600; color: var(--ink); }
.ballot-opt-row em {
  font-style: normal;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
.ballot-note {
  margin: auto 0 0;
  padding-top: 6px;
  border-top: 1px solid rgba(120,160,220,.12);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  text-wrap: pretty;
}
.ballot-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 22px 44px rgba(0,0,0,.4);
}
@media (prefers-reduced-motion: reduce) {
  .ballot-card.is-in { animation: none; opacity: 1; transform: none; }
  .ballot-card.is-in .ballot-bar { transition: none; width: var(--w, 50%); }
}

.cat-panel { padding: 26px; }
.cat-panel-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 18px;
}
.cat-panel-head h3 { margin: 0; font-size: 19px; font-weight: 800; letter-spacing: -.6px; }
.cat-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 999px; border: 1px solid var(--border);
  background: rgba(11,18,32,.5); font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.cat-chip .diamond {
  width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg);
}

.trend-card { padding: 22px; }
.trend-top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 13px;
}
.trend-cat {
  font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  color: var(--sky); background: rgba(11,18,32,.6); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 999px;
}
.trend-vel { font-size: 12px; font-weight: 800; color: var(--green); }
.trend-card h3 {
  margin: 0 0 16px; font-size: 16.5px; line-height: 1.4; font-weight: 700; text-wrap: pretty;
}
.trend-card svg { width: 100%; height: 52px; display: block; }
.trend-foot {
  display: flex; justify-content: space-between; margin-top: 12px;
  font-size: 12px; font-weight: 700; color: var(--muted);
}
.trend-foot .lead { color: var(--ink); }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.section-head h2 {
  margin: 10px 0 0; font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -1.3px; font-weight: 800;
}
.link-btn {
  background: rgba(21,32,52,.6); border: 1px solid var(--border); color: var(--ink);
  font-weight: 600; font-size: 13.5px; padding: 11px 20px; border-radius: 999px;
  text-decoration: none; display: inline-flex; transition: transform .18s, border-color .18s;
}
.link-btn:hover { transform: translateY(-2px); border-color: rgba(120,160,220,.4); color: var(--ink); }

.download-panel {
  padding: clamp(28px, 4vw, 52px);
  background: linear-gradient(135deg, rgba(234,88,12,.16), rgba(21,32,52,.33) 55%);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px; align-items: center;
}
.download-panel h2 {
  margin: 0 0 12px; font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -1.3px; font-weight: 800; text-wrap: pretty;
}
.download-panel .sub {
  margin: 0 0 26px; font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 460px;
}
.store-row { display: flex; flex-wrap: wrap; gap: 12px; }
.waitlist-form { display: flex; flex-direction: column; gap: 10px; }
.waitlist-row { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist-row input {
  flex: 1; min-width: 160px; background: rgba(11,18,32,.6);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 13px 18px; color: var(--ink); font-size: 14px; outline: none;
}
.waitlist-row input:focus { border-color: var(--orange); }
.waitlist-msg { margin-top: 4px; font-size: 13px; font-weight: 600; min-height: 18px; color: var(--muted); }
.waitlist-msg.ok { color: var(--green); }
.waitlist-msg.err { color: #f87171; }

.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-bottom: 20px;
}
.stat-card { padding: 22px; }
.stat-card .label {
  font-size: 12px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--muted);
}
.stat-card .value {
  margin-top: 8px; font-size: 34px; font-weight: 800; letter-spacing: -1.4px;
  font-variant-numeric: tabular-nums;
}
.stat-card .sub { font-size: 12.5px; font-weight: 600; color: var(--muted); }

.pulse-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; margin-bottom: 16px;
}
.pulse-chart { padding: 24px; }
.pulse-chart.wide { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .pulse-chart.wide { grid-column: span 2; }
}
.pulse-chart h3 { margin: 0; font-size: 19px; font-weight: 800; letter-spacing: -.6px; }
.pulse-chart .hint { margin: 5px 0 0; font-size: 13.5px; color: var(--muted); }
.chart-head {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: baseline;
  justify-content: space-between; margin-bottom: 18px;
}
.legend { display: flex; gap: 14px; flex-wrap: wrap; }
.legend span {
  display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--ink);
}
.legend i { width: 16px; height: 3px; border-radius: 2px; display: inline-block; }
.line-chart { width: 100%; height: 240px; display: block; overflow: visible; }
.chart-axis {
  display: flex; justify-content: space-between; margin-top: 10px;
  font-size: 11.5px; font-weight: 600; color: var(--muted);
}
.donut-wrap { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; flex: 1; }
.donut { position: relative; width: 150px; height: 150px; flex: none; }
.donut svg { width: 150px; height: 150px; transform: rotate(-90deg); }
.donut-center {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
}
.donut-center .big { font-size: 26px; font-weight: 800; letter-spacing: -1px; color: var(--sky); }
.donut-center .sm { font-size: 11px; font-weight: 700; color: var(--muted); }
.split-legend { display: flex; flex-direction: column; gap: 11px; min-width: 120px; }
.split-legend .row {
  display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600;
}
.split-legend .dot { width: 9px; height: 9px; border-radius: 999px; flex: none; }
.split-legend .name { color: var(--muted); }
.split-legend .pct { margin-left: auto; font-weight: 800; font-variant-numeric: tabular-nums; }

.bars {
  display: flex; align-items: flex-end; gap: 10px; height: 180px;
}
.bar-col {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 9px; min-width: 0;
}
.bar-col .pct { font-size: 11.5px; font-weight: 800; color: var(--muted); font-variant-numeric: tabular-nums; }
.bar-col .fill {
  width: 100%; border-radius: 8px 8px 3px 3px; transform-origin: bottom;
  animation: vbRise .9s cubic-bezier(.22,1,.36,1) both;
}
.bar-col .name {
  font-size: 10.5px; font-weight: 700; color: var(--ink); text-align: center; line-height: 1.2;
}

.mover {
  display: flex; align-items: center; gap: 14px; padding: 13px 15px;
  border-radius: 14px; background: rgba(11,18,32,.5); border: 1px solid var(--border);
  transition: transform .18s; text-decoration: none; color: inherit;
}
.mover:hover { transform: translateY(-2px); color: inherit; }
.mover .title { font-size: 14px; font-weight: 700; line-height: 1.35; text-wrap: pretty; }
.mover .cat { font-size: 11.5px; font-weight: 700; color: var(--muted); margin-top: 3px; }
.mover .delta {
  font-size: 14px; font-weight: 800; font-variant-numeric: tabular-nums;
  padding: 6px 11px; border-radius: 999px; flex: none;
}
.mover .delta.up { color: var(--green); background: rgba(16,185,129,.14); }
.mover .delta.down { color: #f87171; background: rgba(248,113,113,.12); }
.movers-list { display: flex; flex-direction: column; gap: 12px; }

.page-main,
.legal-main {
  max-width: var(--page);
  margin: 0 auto;
  padding: 76px 22px 90px;
}
.page-main.narrow {
  max-width: 900px;
}
.deep-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-bottom: 56px;
}
.deep-card { padding: 26px; }
.deep-card .kick {
  font-size: 11.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--sky);
}
.deep-card h3 { margin: 10px 0 10px; font-size: 21px; font-weight: 800; letter-spacing: -.7px; }
.deep-card p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.deep-card .points { display: flex; flex-direction: column; gap: 8px; }
.deep-card .points div {
  display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.5; color: var(--ink);
}
.deep-card .points i {
  width: 7px; height: 7px; border-radius: 999px; background: var(--orange); margin-top: 6px; flex: none;
}

.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; margin-bottom: 56px;
}
.cat-tile {
  padding: 18px; display: flex; align-items: center; gap: 13px;
}
.cat-tile .icon {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(11,18,32,.6);
  border: 1px solid var(--border); display: grid; place-items: center; flex: none;
}
.cat-tile .swatch { width: 11px; height: 11px; }
.cat-tile .name { font-size: 14.5px; font-weight: 800; letter-spacing: -.3px; }
.cat-tile .note { font-size: 12px; color: var(--muted); font-weight: 600; }

.streak-panel {
  padding: clamp(26px, 3.6vw, 44px);
  background: linear-gradient(135deg, rgba(16,185,129,.14), rgba(21,32,52,.33) 55%);
}
.streak-panel h2 {
  margin: 0 0 12px; font-size: clamp(22px, 2.8vw, 32px); letter-spacing: -1.1px; font-weight: 800;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.badge-chip {
  border: 1px solid var(--border); background: rgba(11,18,32,.5); border-radius: 14px;
  padding: 14px 18px; min-width: 130px;
}
.badge-chip .v { font-size: 22px; font-weight: 800; letter-spacing: -.8px; }
.badge-chip .l { font-size: 12.5px; font-weight: 600; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-bottom: 52px; }
.step-card { padding: 22px; }
.step-card .n { font-size: 12px; font-weight: 800; color: var(--sky); letter-spacing: 1px; }
.step-card h3 { margin: 10px 0 8px; font-size: 18px; font-weight: 800; letter-spacing: -.5px; }
.step-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.stances { display: flex; flex-direction: column; gap: 14px; margin-bottom: 52px; }
.stance {
  padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start;
}
.stance .diamond {
  width: 9px; height: 9px; border-radius: 2px; background: var(--green);
  transform: rotate(45deg); margin-top: 7px; flex: none;
}
.stance h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 800; letter-spacing: -.4px; }
.stance p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.cta-bar {
  padding: 28px; display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
}
.cta-bar p { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -.5px; max-width: 420px; }

.legal-tabs { display: flex; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.legal-tabs a {
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
  font-weight: 600; font-size: 13.5px; padding: 9px 18px; border-radius: 999px;
}
.legal-tabs a.is-active {
  background: rgba(234,88,12,.16); border-color: rgba(234,88,12,.4); color: var(--sky);
}
.legal-main h1 {
  margin: 0 0 10px; font-size: clamp(30px, 4vw, 44px); letter-spacing: -1.5px; font-weight: 800;
}
.legal-updated { margin: 0 0 28px; font-size: 14px; color: var(--muted); font-weight: 600; }
.legal-lead {
  margin: 0 0 28px; font-size: 16px; line-height: 1.7; color: var(--muted); text-wrap: pretty;
}
.legal-toc {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.legal-toc a {
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px;
  background: rgba(11,18,32,.4);
}
.legal-body { display: flex; flex-direction: column; gap: 22px; }
.legal-body h2 { margin: 0 0 8px; font-size: 19px; font-weight: 800; letter-spacing: -.5px; color: var(--ink); }
.legal-body h3 { margin: 14px 0 6px; font-size: 15px; font-weight: 800; color: var(--ink); }
.legal-body p, .legal-body li {
  font-size: 15.5px; line-height: 1.7; color: var(--muted); text-wrap: pretty;
}
.legal-body ul { padding-left: 1.2em; display: flex; flex-direction: column; gap: 6px; }
.legal-card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 18px 0;
}
.legal-card {
  border: 1px solid var(--border); background: var(--card); border-radius: 14px; padding: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.legal-card strong { font-size: 14.5px; color: var(--ink); }
.legal-card span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.legal-foot {
  margin-top: 44px; border-top: 1px solid var(--border); padding-top: 22px;
  font-size: 14.5px; color: var(--muted); line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--border); background: var(--card); backdrop-filter: var(--glass);
}
.footer-inner {
  max-width: var(--page); margin: 0 auto; padding: 34px 22px;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 9px; }
.footer-brand .tag {
  font-size: 12.5px; color: var(--muted); font-weight: 600; margin-left: 8px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-links a {
  color: var(--muted); font-weight: 600; font-size: 13px; padding: 6px 10px; border-radius: 999px;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy {
  max-width: var(--page); margin: 0 auto; padding: 0 22px 30px;
  font-size: 12.5px; color: var(--muted);
}


/* ── Journey steps (Ask → Act) ──────────────────────────── */
.journey {
  border-bottom: 1px solid var(--border);
  background: rgba(21, 32, 52, 0.35);
  backdrop-filter: blur(12px);
}
.journey-inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 18px 22px 20px;
}
.journey-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-bottom: 14px;
}
.journey-head p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.45;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.journey-step {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(11, 18, 32, 0.55);
  color: inherit;
  text-decoration: none;
  min-height: 100%;
  transition: transform .18s, border-color .18s, background .18s;
}
.journey-step:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 88, 12, 0.45);
  color: inherit;
  background: rgba(234, 88, 12, 0.08);
}
.journey-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  color: var(--sky);
  font-variant-numeric: tabular-nums;
}
.journey-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--ink);
}
.journey-desc {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--muted);
  text-wrap: pretty;
}
@media (max-width: 980px) {
  .journey-steps {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .journey-step {
    flex: 0 0 min(70vw, 200px);
    scroll-snap-align: start;
  }
}

.ticker-wrap {
  display: flex; align-items: center; gap: 14px;
}
.ticker-label {
  flex: none; display: flex; align-items: center; gap: 8px;
  padding-left: 18px; font-size: 11px; font-weight: 800;
  letter-spacing: .6px; text-transform: uppercase; color: var(--sky);
  white-space: nowrap;
}
.ticker-wrap .ticker-track { flex: 1; min-width: 0; }

.trust-line {
  margin-top: 22px; font-size: 13px; color: var(--muted); font-weight: 600;
}
.text-btn {
  background: none; border: none; color: var(--link); font: inherit; font-weight: 700;
  cursor: pointer; padding: 0; text-decoration: underline;
}

.poll-card--interactive .poll-choice { cursor: pointer; }
.poll-card--interactive .poll-choice:hover { border-color: rgba(234,88,12,.45); }
.poll-card--interactive .poll-choice.is-picked {
  border-color: rgba(234,88,12,.65);
  box-shadow: inset 0 0 0 1px rgba(234,88,12,.25);
}
.poll-hint { font-size: 11.5px; font-weight: 700; color: var(--muted); margin-left: auto; }
.poll-after {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
}
.poll-after p { margin: 0 0 12px; font-size: 13.5px; font-weight: 600; color: var(--green); }
.poll-after-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Reform board */
.reform-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.reform-card {
  padding: 18px; border-radius: var(--radius);
  border: 1px solid var(--border); background: rgba(21,32,52,.4);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, border-color .2s;
}
.reform-card:hover { transform: translateY(-3px); border-color: rgba(234,88,12,.35); }
.reform-card .tag {
  align-self: flex-start; font-size: 10px; font-weight: 800; letter-spacing: .7px;
  text-transform: uppercase; color: var(--sky);
  background: rgba(234,88,12,.14); padding: 4px 9px; border-radius: 999px;
}
.reform-card h3 { margin: 0; font-size: 16px; font-weight: 800; letter-spacing: -.4px; line-height: 1.35; }
.reform-card .opts { display: flex; flex-direction: column; gap: 8px; }
.reform-card button.opt {
  text-align: left; position: relative; overflow: hidden;
  background: rgba(11,18,32,.55); border: 1px solid var(--border);
  border-radius: 12px; padding: 11px 12px; color: var(--ink); cursor: pointer;
  font-weight: 600; font-size: 13px;
}
.reform-card button.opt .bar {
  position: absolute; inset: 0 auto 0 0; width: 0;
  background: rgba(234,88,12,.25); transition: width 1s cubic-bezier(.22,1,.36,1);
}
.reform-card button.opt span { position: relative; }
.reform-card .follow {
  margin-top: auto; font-size: 13px; font-weight: 700; color: var(--link);
}

/* Compare */
.compare-toggle { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 16px; }
.compare-tab {
  background: rgba(21,32,52,.5); border: 1px solid var(--border); color: var(--muted);
  font-weight: 700; font-size: 13.5px; padding: 10px 16px; border-radius: 999px; cursor: pointer;
}
.compare-tab.is-active {
  color: #fff; background: var(--orange); border-color: var(--orange);
}
.compare-stage { padding: 24px; min-height: 220px; }
.compare-title { margin: 0 0 14px; font-size: 15px; font-weight: 800; }
.chaos-feed {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.chaos-feed li {
  padding: 10px 14px; border-radius: 12px; background: rgba(237,73,86,.08);
  border: 1px solid rgba(237,73,86,.2); color: #fca5a5; font-size: 13.5px; font-weight: 600;
}
.compare-bars { display: flex; flex-direction: column; gap: 12px; }
.compare-bar-row {
  display: grid; grid-template-columns: 100px 1fr 40px; gap: 10px; align-items: center;
  font-size: 13px; font-weight: 600;
}
.compare-bar-row i {
  display: block; height: 10px; border-radius: 999px; background: rgba(120,160,220,.16);
  position: relative; overflow: hidden;
}
.compare-bar-row i::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--orange); border-radius: inherit;
  transition: width 1s cubic-bezier(.22,1,.36,1);
}
.compare-panel.is-active .compare-bar-row i::after { width: var(--w); }
.compare-foot { margin: 16px 0 0; font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* Local pincode */
.local-panel {
  padding: clamp(24px, 3.5vw, 40px);
  display: grid; gap: 20px;
}
.pincode-form { display: flex; flex-wrap: wrap; gap: 10px; }
.pincode-form input {
  flex: 1; min-width: 160px; background: rgba(11,18,32,.6);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 13px 18px; color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: 1px;
  outline: none;
}
.pincode-form input:focus { border-color: var(--orange); }
.pincode-result {
  border-top: 1px solid var(--border); padding-top: 16px;
  display: grid; gap: 8px;
}
.pincode-result strong { font-size: 18px; }
.pincode-result span { color: var(--muted); font-size: 14px; font-weight: 600; }

/* Streak preview */
.streak-preview {
  padding: clamp(24px, 3.5vw, 40px);
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.streak-days { display: flex; flex-wrap: wrap; gap: 10px; }
.streak-day {
  width: 64px; height: 72px; border-radius: 14px; border: 1px solid var(--border);
  background: rgba(11,18,32,.5); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px; cursor: pointer;
  color: var(--muted); font-weight: 800; transition: transform .18s, border-color .18s, background .18s;
}
.streak-day:hover { transform: translateY(-3px); }
.streak-day .d { font-size: 11px; letter-spacing: .5px; text-transform: uppercase; }
.streak-day .n { font-size: 20px; color: var(--ink); }
.streak-day.is-on {
  border-color: rgba(16,185,129,.45); background: rgba(16,185,129,.14); color: var(--green);
}
.streak-day.is-on .n { color: var(--green); }
.streak-msg { margin: 0; font-size: 14px; font-weight: 600; color: var(--muted); }

.pledge-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.45;
  margin-bottom: 4px;
}
.pledge-check input { margin-top: 3px; accent-color: var(--orange); }

/* Modals */
.modal {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(5,10,20,.72); display: grid; place-items: center;
  padding: 20px; backdrop-filter: blur(6px);
}
.modal[hidden] { display: none !important; }
.modal-card {
  width: min(440px, 100%); padding: 24px; position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.modal-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; color: var(--muted); font-size: 28px; cursor: pointer; line-height: 1;
}
.modal-card h3 { margin: 0; font-size: 20px; font-weight: 800; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.share-card {
  border: 1px solid var(--border); border-radius: 16px; padding: 18px;
  background: linear-gradient(145deg, rgba(234,88,12,.18), rgba(11,18,32,.8));
}
.share-brand { font-weight: 800; font-size: 18px; }
.share-brand span { color: var(--orange); }
.share-kicker { margin: 10px 0 0; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--sky); }
.share-q { margin: 8px 0 0; font-size: 16px; font-weight: 800; line-height: 1.35; }
.share-take { margin: 10px 0 0; font-size: 15px; font-weight: 700; color: var(--green); }
.share-foot { margin: 14px 0 0; font-size: 11.5px; font-weight: 600; color: var(--muted); }
.count-list { margin: 0; padding-left: 1.1em; display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.count-list strong { color: var(--ink); }

@media (max-width: 760px) {
  .ticker-label { display: none; }
}
