/* ============================================================
   NAAS VOTING AWARDS 2026 — MASTER STYLESHEET
   Team Exemplar | Bold · Agricultural · Electrifying
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Space+Grotesk:wght@300;400;500;700&display=swap');

/* ===== TOKENS ===== */
:root {
  --ink:        #050e07;
  --forest:     #0a2710;
  --emerald:    #0d4a1f;
  --jade:       #1a6b30;
  --leaf:       #2d9147;
  --lime:       #4caf50;
  --mist:       #a8d5b5;
  --dew:        #e8f5e9;
  --gold:       #c9a227;
  --amber:      #e8b931;
  --cream:      #f7f3e8;
  --chalk:      #fdfaf2;
  --earth:      #6b4226;
  --rust:       #8b3a2a;
  --white:      #ffffff;
  --r:          18px;
  --r-sm:       10px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --spring:     cubic-bezier(.34,1.56,.64,1);
  --t:          all .35s var(--ease);
  --glow-green: 0 0 40px rgba(45,145,71,.45);
  --glow-gold:  0 0 40px rgba(201,162,39,.45);
  --shadow:     0 12px 40px rgba(5,14,7,.18);
  --shadow-xl:  0 30px 80px rgba(5,14,7,.35);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--ink);
  color: var(--chalk);
  overflow-x: hidden;
  cursor: default;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--forest); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform .1s, width .3s var(--spring), height .3s var(--spring), opacity .3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,162,39,.6);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform .15s var(--ease), width .4s var(--spring), height .4s var(--spring);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 3rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--t);
}
.navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,14,7,.95) 0%, transparent 100%);
  backdrop-filter: blur(0px);
  transition: backdrop-filter .4s, background .4s;
  z-index: -1;
}
.navbar.scrolled::before {
  background: rgba(5,14,7,.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,162,39,.15);
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-emblem {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--glow-gold);
  transition: var(--t);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.nav-emblem::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent);
}
.nav-brand:hover .nav-emblem { transform: rotate(-8deg) scale(1.08); }
.nav-wordmark { line-height: 1.1; }
.nav-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem; font-weight: 900;
  color: var(--white);
  letter-spacing: .08em;
  display: block;
}
.nav-sub {
  font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--amber); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--amber)) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: 8px !important;
  box-shadow: var(--glow-gold);
  transition: var(--t) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,.6) !important; }
.nav-cta::after { display: none !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.nav-burger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--t); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
/* Layered bg */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45,145,71,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(10,39,16,.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(10,39,16,.9) 0%, transparent 60%),
    linear-gradient(180deg, #050e07 0%, #0a1f0e 50%, #050e07 100%);
}
/* Animated grain */
.hero-grain {
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-2%,-2%); }
  20% { transform: translate(2%,2%); }
  30% { transform: translate(-2%,2%); }
  40% { transform: translate(2%,-2%); }
  50% { transform: translate(-1%,1%); }
  60% { transform: translate(1%,-1%); }
  70% { transform: translate(-1%,-1%); }
  80% { transform: translate(1%,1%); }
  90% { transform: translate(-2%,0); }
}
/* Floating agric elements */
.hero-floats { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.float-el {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0;
  animation: floatUp linear infinite;
  filter: blur(0px);
}
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(110vh) rotate(0deg) scale(.6); }
  8%   { opacity: .12; }
  92%  { opacity: .12; }
  100% { opacity: 0; transform: translateY(-20vh) rotate(540deg) scale(1.1); }
}
/* Grid lines */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
/* Glow orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.orb-1 { width: 600px; height: 600px; background: rgba(45,145,71,.12); top: -200px; left: 50%; transform: translateX(-50%); animation: orbPulse 6s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: rgba(201,162,39,.08); bottom: 0; right: -100px; animation: orbPulse 8s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: rgba(45,145,71,.1); bottom: 100px; left: -50px; animation: orbPulse 7s ease-in-out infinite 2s; }
@keyframes orbPulse {
  0%,100% { transform: scale(1) translateX(-50%); opacity: .7; }
  50% { transform: scale(1.2) translateX(-50%); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}
.hero-year-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,162,39,.35);
  background: rgba(201,162,39,.08);
  color: var(--amber);
  padding: 8px 22px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeSlideDown .8s var(--ease) both;
  backdrop-filter: blur(8px);
}
.hero-year-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-naas {
  font-family: 'Cinzel', serif;
  font-size: clamp(4.5rem, 14vw, 10rem);
  font-weight: 900;
  line-height: .9;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #e8d5a0 30%, var(--amber) 50%, #e8d5a0 70%, #ffffff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: .06em;
  animation: shimmer 5s ease-in-out infinite, fadeSlideUp .9s var(--ease) .15s both;
  display: block;
  text-shadow: none;
}
@keyframes shimmer {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-voting {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 4vw, 2.2rem);
  font-weight: 400;
  color: rgba(255,255,255,.5);
  letter-spacing: .35em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .5rem;
  animation: fadeSlideUp .9s var(--ease) .3s both;
}
.hero-awards {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp .9s var(--ease) .4s both;
}
.hero-tagline {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.55);
  margin-bottom: 3rem;
  animation: fadeSlideUp .9s var(--ease) .5s both;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeSlideUp .9s var(--ease) .65s both;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: var(--t);
  box-shadow: 0 8px 30px rgba(201,162,39,.4);
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  opacity: 0; transition: opacity .3s;
}
.btn-hero-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 45px rgba(201,162,39,.55); }
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary span { position: relative; }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  text-decoration: none;
  transition: var(--t);
}
.btn-hero-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-4px); }

.hero-stats {
  display: flex; justify-content: center; gap: 1px;
  margin-top: 5rem;
  animation: fadeSlideUp .9s var(--ease) .8s both;
  border: 1px solid rgba(201,162,39,.15);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.03);
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-stat {
  flex: 1; padding: 1.5rem 1rem; text-align: center;
  border-right: 1px solid rgba(201,162,39,.12);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--amber);
  display: block; line-height: 1;
}
.stat-lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  display: block; margin-top: .4rem;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.3);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  animation: fadeIn 1s .1s both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(201,162,39,.4);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--amber);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ===== COUNTDOWN ===== */
.countdown-section {
  padding: 6rem 2rem;
  position: relative;
  background: var(--forest);
  overflow: hidden;
}
.countdown-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.countdown-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cd-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: .5rem;
  letter-spacing: .08em;
}
.cd-sub {
  text-align: center;
  color: rgba(255,255,255,.45);
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.cd-grid {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.cd-card {
  min-width: 110px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,39,.25);
  border-radius: var(--r);
  padding: 2rem 2.5rem;
  text-align: center;
  position: relative; overflow: hidden;
  transition: var(--t);
}
.cd-card:hover { border-color: var(--amber); transform: translateY(-6px); background: rgba(201,162,39,.07); }
.cd-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  transform: scaleX(0); transition: transform .4s var(--ease);
}
.cd-card:hover::before { transform: scaleX(1); }
.cd-num {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem; font-weight: 900;
  color: var(--amber); display: block; line-height: 1;
}
.cd-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: block; margin-top: .6rem;
}
.cd-sep {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem; color: rgba(201,162,39,.3);
  align-self: center; padding-bottom: 1rem;
}

/* ===== SECTION SYSTEM ===== */
.section { padding: 7rem 2rem; }
.section-bg-dark { background: var(--ink); }
.section-bg-forest { background: var(--forest); }
.section-bg-pattern {
  background:
    radial-gradient(circle at 20% 80%, rgba(45,145,71,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,162,39,.06) 0%, transparent 50%),
    var(--ink);
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--amber); opacity: .6;
}
.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.section-heading em { color: var(--amber); font-style: normal; }
.section-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 1.15rem; font-style: italic;
  color: rgba(255,255,255,.45);
  max-width: 540px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-eyebrow { justify-content: center; }
.section-header .section-desc { margin: 0 auto; }

/* ===== CATEGORY TABS ===== */
.cat-tabs {
  display: flex; justify-content: center;
  gap: .5rem; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.cat-tab {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--t);
}
.cat-tab:hover { border-color: rgba(201,162,39,.4); color: rgba(255,255,255,.8); }
.cat-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: var(--glow-gold);
  font-weight: 700;
}

/* ===== CANDIDATE CARDS ===== */
.candidates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.75rem;
  max-width: 1200px; margin: 0 auto;
}
.cand-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--t);
  position: relative;
}
.cand-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,162,39,.35);
  box-shadow: var(--glow-green), 0 30px 60px rgba(0,0,0,.4);
}
.cand-card-bg {
  height: 200px;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.cand-card-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201,162,39,.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'%3E%3Cpath d='M0 30 Q15 0 30 30 Q45 60 60 30'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 60px 60px;
}
.cand-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(201,162,39,.5);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 2rem; font-weight: 700;
  color: rgba(255,255,255,.8);
  position: relative; z-index: 1;
  transition: var(--t);
}
.cand-card:hover .cand-avatar {
  border-color: var(--amber);
  box-shadow: 0 0 20px rgba(201,162,39,.4);
}
.cand-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cand-rank {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--ink);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: .75rem; font-weight: 900;
  box-shadow: var(--glow-gold);
}
.cand-body { padding: 1.5rem; }
.cand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
  letter-spacing: .02em;
}
.cand-cat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber);
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.2);
  display: inline-block;
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 1rem;
}
.cand-votes-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: .75rem;
}
.cand-vote-num {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--leaf);
}
.cand-vote-pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .75rem; color: rgba(255,255,255,.35);
}
.cand-bar-track {
  height: 4px; background: rgba(255,255,255,.07);
  border-radius: 2px; overflow: hidden; margin-bottom: 1.25rem;
}
.cand-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--jade), var(--lime));
  border-radius: 2px;
  transition: width 1.2s var(--spring);
}
.btn-vote {
  width: 100%; padding: 12px;
  background: transparent;
  border: 1px solid rgba(201,162,39,.35);
  color: var(--amber);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-vote:hover {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-color: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

/* ===== VOTE MODAL ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--forest);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 20px;
  width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(30px) scale(.96);
  transition: transform .4s var(--spring);
  box-shadow: var(--shadow-xl), var(--glow-green);
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-head {
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  padding: 2rem 2rem 1.5rem;
  position: relative;
  border-radius: 20px 20px 0 0;
}
.modal-head::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.4), transparent);
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border: none; border-radius: 50%;
  color: rgba(255,255,255,.7);
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.modal-close:hover { background: rgba(255,255,255,.2); color: white; transform: rotate(90deg); }
.modal-cand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem; font-weight: 700;
  color: white;
  margin-bottom: .2rem;
}
.modal-cand-cat { color: var(--amber); font-size: .85rem; opacity: .9; }
.modal-body { padding: 2rem; }
.vote-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: block; margin-bottom: .75rem;
}
.qty-ctrl {
  display: flex; align-items: stretch;
  border: 1px solid rgba(201,162,39,.25);
  border-radius: var(--r-sm);
  overflow: hidden; margin-bottom: .75rem;
}
.qty-btn {
  width: 52px;
  background: rgba(201,162,39,.1);
  border: none; color: var(--amber);
  font-size: 1.4rem; cursor: pointer;
  transition: var(--t);
}
.qty-btn:hover { background: rgba(201,162,39,.2); }
.qty-input {
  flex: 1; border: none; background: transparent;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--white);
  outline: none; padding: .5rem 0;
}
.qty-quick { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.qty-quick-btn {
  padding: 5px 13px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: rgba(255,255,255,.5);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .75rem; cursor: pointer;
  transition: var(--t);
}
.qty-quick-btn:hover { border-color: var(--amber); color: var(--amber); }
.vote-summary {
  background: rgba(201,162,39,.06);
  border: 1px solid rgba(201,162,39,.15);
  border-radius: var(--r-sm);
  padding: 1.25rem; margin-bottom: 1.5rem;
}
.summary-row {
  display: flex; justify-content: space-between;
  padding: .3rem 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.summary-row.total {
  border-top: 1px solid rgba(201,162,39,.2);
  margin-top: .5rem; padding-top: .75rem;
  font-weight: 700; color: var(--amber);
  font-size: 1.05rem;
}
.voter-field { margin-bottom: 1rem; }
.voter-field label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: block; margin-bottom: .45rem;
}
.voter-field input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: white;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  padding: 11px 14px;
  outline: none;
  transition: var(--t);
}
.voter-field input:focus { border-color: var(--amber); background: rgba(201,162,39,.05); }
.btn-pay {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: var(--glow-gold);
}
.btn-pay:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(201,162,39,.55); }
.btn-pay:disabled { opacity: .5; cursor: not-allowed; transform: none; }
/* Modal steps */
.step-processing { display:none; text-align:center; padding: 3rem 0; }
.step-success    { display:none; text-align:center; padding: 2rem 0; }
.step-success .big-icon { font-size: 4rem; margin-bottom: 1rem; display: block; }
.step-success h3 {
  font-family: 'Cinzel', serif; font-size: 1.5rem;
  color: var(--amber); margin-bottom: .5rem;
}
.step-success p { color: rgba(255,255,255,.55); font-size: .95rem; margin-bottom: 1.5rem; }
.tx-ref-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: var(--r-sm); padding: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; word-break: break-all;
  color: rgba(255,255,255,.5);
}
.tx-ref-val { color: var(--amber); font-weight: 700; font-size: .78rem; margin-top: .25rem; }

/* Spinner */
.spin {
  width: 52px; height: 52px;
  border: 3px solid rgba(201,162,39,.15);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: rotate .7s linear infinite;
  margin: 0 auto 1.5rem;
}
@keyframes rotate { to { transform: rotate(360deg); } }

/* ===== RESULTS SECTION ===== */
.results-section { background: var(--ink); }
.bar-chart { max-width: 900px; margin: 0 auto; }
.bar-row {
  display: grid;
  grid-template-columns: 200px 1fr 80px;
  align-items: center; gap: 1.25rem;
  margin-bottom: 1.2rem;
}
.bar-name {
  font-family: 'Crimson Pro', serif;
  font-size: .95rem; font-weight: 600;
  color: rgba(255,255,255,.75);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bar-track {
  height: 38px;
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.bar-fill {
  height: 100%; min-width: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--leaf), var(--lime));
  border-radius: 6px;
  transition: width 1.3s var(--spring);
  position: relative;
}
.bar-fill::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 60px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15));
}
.bar-val {
  font-family: 'Cinzel', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--amber); text-align: right;
}
.chart-cat-tabs {
  display: flex; justify-content: center; gap: .4rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.chart-cat-tab {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent; color: rgba(255,255,255,.45);
  cursor: pointer; transition: var(--t);
}
.chart-cat-tab:hover { border-color: rgba(201,162,39,.4); color: var(--amber); }
.chart-cat-tab.active { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 700; }

/* ===== REGISTER SECTION ===== */
.register-section {
  position: relative;
  overflow: hidden;
}
.register-section::before {
  content: '🌾';
  position: absolute; font-size: 20rem;
  opacity: .025; bottom: -3rem; right: -3rem;
  transform: rotate(20deg);
  pointer-events: none;
}
.reg-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 3.5rem;
  max-width: 680px; margin: 0 auto;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.reg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field-group { margin-bottom: 0; }
.field-group.full { grid-column: 1 / -1; }
.field-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: block; margin-bottom: .5rem;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: white;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  padding: 12px 16px;
  outline: none;
  transition: var(--t);
  appearance: none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--amber);
  background: rgba(201,162,39,.05);
  box-shadow: 0 0 0 3px rgba(201,162,39,.1);
}
.field-group select option { background: var(--forest); color: white; }
.reg-fee-notice {
  grid-column: 1 / -1;
  background: rgba(201,162,39,.08);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  color: var(--amber);
  font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
}
.btn-register {
  grid-column: 1 / -1;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--glow-gold);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: .5rem;
}
.btn-register:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,162,39,.5); }
.btn-register:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--forest);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(201,162,39,.12);
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white);
  letter-spacing: .1em;
  margin-bottom: .5rem;
}
.footer-brand-sub { color: var(--amber); font-size: .8rem; margin-bottom: 1.25rem; font-style: italic; }
.footer-powered {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; color: rgba(255,255,255,.3);
  line-height: 1.6;
  letter-spacing: .03em;
}
.footer-powered strong { color: rgba(255,255,255,.55); }
.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .9rem;
  transition: var(--t);
  font-family: 'Crimson Pro', serif;
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; color: rgba(255,255,255,.2);
  letter-spacing: .05em;
}

/* ===== CLOSED BANNERS ===== */
.closed-banner {
  background: linear-gradient(135deg, rgba(107,66,38,.3), rgba(139,58,42,.3));
  border: 1px solid rgba(201,162,39,.2);
  border-radius: var(--r);
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 600px; margin: 0 auto 3rem;
}
.closed-banner-icon { font-size: 2.5rem; margin-bottom: .75rem; display: block; }
.closed-banner h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem; color: var(--amber);
  margin-bottom: .4rem;
}
.closed-banner p { color: rgba(255,255,255,.45); font-style: italic; font-size: .95rem; }

/* ===== TOASTS ===== */
.toast-wrap {
  position: fixed; top: 84px; right: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: .5rem;
}
.toast {
  background: var(--forest);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--leaf);
  border-radius: var(--r-sm);
  padding: .9rem 1.25rem;
  min-width: 280px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .82rem; color: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  animation: toastIn .3s var(--spring) both;
}
.toast.error { border-left-color: #ef4444; }
.toast.info  { border-left-color: var(--amber); }
@keyframes toastIn {
  from { transform: translateX(80px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ===== PAGE HEADER ===== */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45,145,71,.15) 0%, transparent 70%),
    var(--ink);
  position: relative;
  border-bottom: 1px solid rgba(201,162,39,.1);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; }
.hidden { display: none !important; }
@keyframes fadeSlideDown { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeSlideUp   { from { opacity:0; transform:translateY(18px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn        { from { opacity:0; } to { opacity:1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar { padding: 0 1.25rem; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: rgba(5,14,7,.97); padding: 1rem; border-bottom: 1px solid rgba(201,162,39,.15); gap: .25rem; }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .bar-row { grid-template-columns: 1fr 60px; }
  .bar-row .bar-track { display: none; }
  .reg-grid { grid-template-columns: 1fr; }
  .reg-grid .field-group.full { grid-column: 1; }
  .reg-grid .btn-register { grid-column: 1; }
  .reg-card { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: center; }
  .hero-stat { width: 200px; }
  .cd-grid { gap: .75rem; }
  .cd-card { min-width: 80px; padding: 1.25rem 1rem; }
  .cd-num { font-size: 2.2rem; }
}
