:root {
  --navy:    #0B1220;
  --navy-2:  #111c30;
  --card:    #15203453;
  --card-solid: #16233b;
  --blue:    #EA580C;   /* brand orange — matches the VoteBank app logo */
  --blue-2:  #C2410C;   /* darker orange */
  --sky:     #F97316;   /* lighter orange (accents / links) */
  --green:   #10B981;
  --ink:     #EAF1FB;
  --muted:   #93A4BE;
  --border:  rgba(120,160,220,.16);
  --radius:  18px;
  --maxw:    1120px;
}

* { 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: inherit; text-decoration: none; }
strong { font-weight: 800; }

/* ── Animated background orbs ───────────────────────────── */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(95px); opacity: .30; animation: float 18s ease-in-out infinite; }
.orb-gold  { width: 480px; height: 480px; background: var(--blue);  top: -120px; left: -80px; }
.orb-green { width: 420px; height: 420px; background: var(--green); bottom: -140px; right: -60px; animation-delay: -6s; }
.orb-blue  { width: 380px; height: 380px; background: var(--sky);   top: 38%; left: 54%; animation-delay: -11s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.1); }
}

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  backdrop-filter: blur(10px);
}
/* Composed logo: checkmark "V" + "ote" + "Bank" (matches the app's VbLogo) */
.brand { display: inline-flex; align-items: center; gap: 1px; transition: transform .2s ease; }
.brand:hover { transform: scale(1.04); }
.logo-check {
  height: 1.15em; width: auto; margin-right: 1px; transform: translateY(.04em);
  /* checkmark.png is black; make it white for the dark background */
  filter: brightness(0) invert(1);
}
.logo-word { font-weight: 800; letter-spacing: -.5px; line-height: 1; }
.logo-word .w-ote  { color: var(--ink); }
.logo-word .w-bank { color: var(--blue); }
/* nav size vs footer size */
.nav .brand     { font-size: 1.7rem; }
.footer .brand  { font-size: 2rem; margin-bottom: 12px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .95rem; }
.nav-links a:not(.btn):hover { color: var(--sky); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: transform .15s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  border: 1px solid transparent; white-space: nowrap; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--blue), var(--blue-2));
  color: #fff; box-shadow: 0 10px 30px rgba(234,88,12,.40);
}
.btn-primary:hover { box-shadow: 0 16px 44px rgba(234,88,12,.6); }
/* shine sweep */
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-outline { border-color: var(--border); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-outline:hover { border-color: var(--sky); color: var(--sky); }
.btn-ghost { padding: 9px 18px; border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--sky); color: var(--sky); }
.btn.big { padding: 15px 30px; font-size: 1.02rem; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  max-width: var(--maxw); margin: 0 auto; padding: 50px 24px 80px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(234,88,12,.14); color: var(--sky);
  font-size: .82rem; font-weight: 600; border: 1px solid rgba(249,115,22,.3);
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(16,185,129,.6); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,.6); } 70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); } }

.hero h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 800; line-height: 1.04; margin: 20px 0; letter-spacing: -1.5px; }
.grad {
  background: linear-gradient(100deg, var(--sky), var(--blue) 45%, var(--green));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.lede { color: var(--muted); font-size: 1.12rem; max-width: 520px; }
.cta-row { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }

.trust { display: flex; gap: 36px; margin-top: 42px; }
.trust div { display: flex; flex-direction: column; }
.trust strong { font-size: 1.9rem; color: var(--ink); line-height: 1; }
.trust span { color: var(--muted); font-size: .85rem; margin-top: 4px; }

/* ── Phone mockup ───────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; }
.phone {
  position: relative; width: 320px; padding: 18px; border-radius: 40px;
  background: linear-gradient(160deg, #20304b, #0e1726);
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
  animation: rise 1s ease both, bob 6s ease-in-out 1s infinite;
}
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.phone-notch { width: 120px; height: 22px; background: #0a1120; border-radius: 0 0 14px 14px; margin: -18px auto 16px; }
.poll-card { background: var(--card-solid); border: 1px solid var(--border); border-radius: 20px; padding: 18px; }
.poll-tag { font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--sky); }
.poll-card h3 { font-size: 1.05rem; margin: 8px 0 16px; line-height: 1.3; }
.choice {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 11px 13px; margin-bottom: 9px; border-radius: 11px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  overflow: hidden; font-size: .9rem; z-index: 0;
}
.choice-fill {
  position: absolute; inset: 0 100% 0 0; z-index: -1;
  background: linear-gradient(90deg, rgba(234,88,12,.45), rgba(249,115,22,.30));
  transition: right 1.1s cubic-bezier(.2,.8,.2,1);
}
.choice-label { font-weight: 500; }
.choice-pct { font-weight: 700; color: var(--ink); }
.poll-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; font-size: .8rem; color: var(--muted); }
.live { color: var(--green); font-weight: 700; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .4; } }

/* ── Bands / sections ───────────────────────────────────── */
.band { max-width: var(--maxw); margin: 0 auto; padding: 80px 24px; }
.band-alt {
  max-width: 100%; padding-left: 24px; padding-right: 24px;
  background: linear-gradient(180deg, rgba(20,32,55,.5), transparent);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.band-alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; text-align: center; letter-spacing: -.5px; }
.section-sub { text-align: center; color: var(--muted); margin-top: 12px; max-width: 620px; margin-inline: auto; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.step { background: var(--card-solid); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; transition: transform .2s ease, border-color .2s ease; }
.step:hover { transform: translateY(-4px); border-color: rgba(249,115,22,.4); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; font-weight: 800; font-size: 1.2rem;
  background: rgba(234,88,12,.18); color: var(--sky); margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step p { color: var(--muted); font-size: .96rem; }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.card {
  position: relative; background: var(--card-solid); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.45); box-shadow: 0 20px 50px rgba(234,88,12,.18); }
.ico { font-size: 1.9rem; margin-bottom: 14px; display: inline-block; }
.card:hover .ico { animation: wiggle .5s ease; }
@keyframes wiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-10deg) scale(1.1); } 75% { transform: rotate(10deg) scale(1.1); } }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.chips span {
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  background: var(--card-solid); border: 1px solid var(--border); transition: .2s;
}
.chips span:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-3px); }

/* ── Launching soon ─────────────────────────────────────── */
.cta-final { max-width: var(--maxw); margin: 40px auto 0; padding: 24px; }
.cta-inner {
  text-align: center; padding: 64px 28px; border-radius: 28px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(234,88,12,.20), rgba(249,115,22,.07) 55%, transparent);
  border: 1px solid var(--border); overflow: hidden;
}
.badge-soon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px; font-weight: 700; font-size: .8rem; letter-spacing: .4px;
  text-transform: uppercase; color: var(--sky);
  background: rgba(234,88,12,.15); border: 1px solid rgba(249,115,22,.35); margin-bottom: 18px;
}
.cta-inner h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -.5px; }
.cta-inner p { color: var(--muted); margin: 14px auto 30px; max-width: 540px; }

/* Countdown */
.countdown { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 8px 0 34px; }
.cd-unit {
  min-width: 78px; padding: 16px 10px; border-radius: 16px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.cd-num {
  display: block; font-size: 2.1rem; font-weight: 800; line-height: 1;
  font-variant-numeric: tabular-nums; color: var(--ink);
  background: linear-gradient(120deg, var(--sky), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cd-unit label { display: block; margin-top: 8px; font-size: .72rem; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); }
.cd-sep { font-size: 1.8rem; font-weight: 800; color: var(--muted); opacity: .5; }

/* Waitlist form */
.waitlist {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  padding: 7px; border-radius: 999px;
}
.waitlist input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--ink); font-size: 1rem; padding: 10px 16px; font-family: inherit;
}
.waitlist input::placeholder { color: var(--muted); }
.waitlist .btn { flex-shrink: 0; }
.wl-msg { min-height: 22px; margin-top: 14px !important; font-weight: 600; font-size: .95rem; }
.wl-msg.ok { color: var(--green); }
.wl-msg.err { color: #F87171; }

.store-soon { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.store-pill { padding: 10px 18px; border-radius: 12px; font-size: .9rem; font-weight: 600; color: var(--muted); background: rgba(255,255,255,.03); border: 1px solid var(--border); }

/* Footer */
.footer { text-align: center; padding: 56px 24px 44px; border-top: 1px solid var(--border); margin-top: 60px; }
.footer p { color: var(--muted); }
.footer small { color: var(--muted); opacity: .7; display: block; margin-top: 10px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 24px; }
  .hero-copy .lede, .trust { margin-inline: auto; }
  .cta-row { justify-content: center; }
  .trust { justify-content: center; gap: 28px; flex-wrap: wrap; }
  .steps, .grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .countdown { gap: 8px; }
  .cd-unit { min-width: 64px; padding: 13px 6px; }
  .cd-num { font-size: 1.6rem; }
  .waitlist { flex-direction: column; border-radius: 18px; background: transparent; border: none; padding: 0; }
  .waitlist input { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .orb, .live, .phone, .pill-dot, .grad { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
