*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #080604;
  --bg: #0d0a07;
  --bg-card: #141008;
  --bg-input: #0f0c06;
  --amber: #d4a046;
  --amber-soft: #c8943e;
  --gold: #e8c88a;
  --gold-pale: #f5deb3;
  --text: #ede4d4;
  --text-dim: #9a8e7c;
  --text-muted: #6b6052;
  --rose: #b85a5a;
  --rose-soft: rgba(184, 90, 90, 0.15);
  --green: #6b9c5a;
  --green-soft: rgba(107, 156, 90, 0.15);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--text-muted) var(--bg-deep);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--amber);
  color: var(--bg-deep);
}

/* ============ PARTICLE CANVAS ============ */
#ember-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(8, 6, 4, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 70, 0.08);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 70, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: hero-glow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(184, 90, 90, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--rose);
  background: var(--rose-soft);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 1s 0.3s forwards;
}

.hero-badge .heart {
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 800px;
  color: var(--text);
  opacity: 0;
  animation: fade-up 1.2s 0.6s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dim);
  max-width: 550px;
  margin-top: 1.75rem;
  line-height: 1.6;
  opacity: 0;
  animation: fade-up 1.2s 0.9s forwards;
}

.hero-cta {
  margin-top: 2.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up 1.2s 1.2s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--bg-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 25px rgba(212, 160, 70, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 160, 70, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid rgba(212, 160, 70, 0.25);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(212, 160, 70, 0.08);
  border-color: rgba(212, 160, 70, 0.45);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 1s 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); }
}

/* ============ SECTIONS ============ */
section {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 680px;
  line-height: 1.8;
}

/* ============ MOVEMENT / WHAT HAPPENED ============ */
.movement-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 50%, var(--bg-deep) 100%);
}

.stat-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  padding: 1.75rem;
  background: rgba(20, 16, 8, 0.6);
  border: 1px solid rgba(212, 160, 70, 0.06);
  border-radius: 12px;
  transition: border-color 0.4s;
}

.stat-item:hover {
  border-color: rgba(212, 160, 70, 0.15);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ============ VOICES / TESTIMONIALS ============ */
.voices-section {
  overflow: hidden;
}

.voices-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.voice-card {
  position: relative;
  padding: 2rem 2rem 2rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 70, 0.06);
  border-radius: 12px;
  transition: transform 0.4s, border-color 0.4s;
  overflow: hidden;
}

.voice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--amber), var(--rose));
  opacity: 0.6;
  border-radius: 3px 0 0 3px;
}

.voice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 160, 70, 0.12);
}

.voice-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.voice-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--amber);
  opacity: 0.3;
  line-height: 0;
  position: relative;
  top: 0.35em;
  margin-right: 0.1em;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.voice-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bg-deep);
  flex-shrink: 0;
}

.voice-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
}

.voice-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.voice-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(20, 16, 8, 0.9), rgba(30, 22, 12, 0.6));
  padding: 2.5rem 2.5rem 2.5rem 3rem;
}

.voice-featured .voice-quote {
  font-size: 1.4rem;
}

/* ============ PETITION SECTION ============ */
.petition-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 50%, var(--bg-deep) 100%);
}

.petition-card {
  position: relative;
  padding: 3rem;
  background: linear-gradient(135deg, var(--bg-card), rgba(20, 16, 8, 0.4));
  border: 1px solid rgba(212, 160, 70, 0.1);
  border-radius: 16px;
  margin-top: 2.5rem;
  overflow: hidden;
}

.petition-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 70, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.petition-to {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.petition-to strong {
  color: var(--text-dim);
}

.petition-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 160, 70, 0.08);
}

.petition-counter {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.counter-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.counter-label {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.counter-bar-wrap {
  width: 200px;
  height: 6px;
  background: rgba(212, 160, 70, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.counter-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
}

.counter-goal {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.petition-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.petition-form .full-width {
  grid-column: 1 / -1;
}

.form-input {
  padding: 0.85rem 1.15rem;
  background: var(--bg-input);
  border: 1px solid rgba(212, 160, 70, 0.1);
  border-radius: 10px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 160, 70, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  border-radius: 10px;
  line-height: 1.6;
}

.petition-submit {
  padding: 0.9rem 2.25rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--bg-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 25px rgba(212, 160, 70, 0.2);
  justify-self: start;
}

.petition-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 160, 70, 0.35);
}

.petition-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.petition-success.visible {
  display: block;
  animation: fade-up 0.6s forwards;
}

.petition-success-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.petition-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.petition-success p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ============ SHARE STORY SECTION ============ */
.story-section {
  overflow: hidden;
}

.story-form-card {
  position: relative;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 70, 0.08);
  border-radius: 16px;
  margin-top: 2.5rem;
}

.story-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.story-textarea {
  width: 100%;
  min-height: 140px;
  padding: 1.15rem;
  background: var(--bg-input);
  border: 1px solid rgba(212, 160, 70, 0.1);
  border-radius: 10px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.story-textarea::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.story-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 160, 70, 0.08);
}

.story-form-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.story-name-input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.15rem;
  background: var(--bg-input);
  border: 1px solid rgba(212, 160, 70, 0.1);
  border-radius: 100px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.story-name-input::placeholder {
  color: var(--text-muted);
}

.story-name-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 160, 70, 0.08);
}

.story-submit {
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--bg-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.story-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 160, 70, 0.3);
}

.story-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.story-success {
  display: none;
  padding: 1.25rem;
  background: var(--green-soft);
  border: 1px solid rgba(107, 156, 90, 0.2);
  border-radius: 10px;
  color: var(--green);
  font-size: 0.9rem;
  text-align: center;
}

.story-success.visible {
  display: block;
  animation: fade-up 0.5s forwards;
}

/* ============ COMMUNITY WALL ============ */
.wall-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dim);
}

.community-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.wall-card {
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 70, 0.05);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  animation: fade-up 0.5s forwards;
}

.wall-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--amber), transparent);
  opacity: 0.4;
}

.wall-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 160, 70, 0.1);
}

.wall-card-text {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.wall-card-author {
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 500;
}

.wall-card-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ============ CTA / HASHTAGS ============ */
.cta-section {
  text-align: center;
}

.cta-section .section-inner {
  max-width: 640px;
}

.hashtag-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hashtag {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(212, 160, 70, 0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber);
  background: rgba(212, 160, 70, 0.04);
  transition: all 0.3s;
  text-decoration: none;
}

.hashtag:hover {
  background: rgba(212, 160, 70, 0.1);
  border-color: rgba(212, 160, 70, 0.3);
  transform: translateY(-1px);
}

.share-prompt {
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.7;
}

.share-prompt a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 200, 138, 0.3);
  transition: border-color 0.3s;
}

.share-prompt a:hover {
  border-color: var(--gold);
}

/* ============ DIVIDER ============ */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.3;
}

/* ============ FOOTER ============ */
footer {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(212, 160, 70, 0.06);
}

.footer-solidarity {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-meta a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-meta a:hover {
  color: var(--gold);
}

/* ============ VOTE SECTION ============ */
.vote-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 50%, var(--bg-deep) 100%);
  text-align: center;
}

.vote-card {
  position: relative;
  padding: 3rem;
  background: linear-gradient(135deg, var(--bg-card), rgba(20, 16, 8, 0.4));
  border: 1px solid rgba(212, 160, 70, 0.1);
  border-radius: 16px;
  margin-top: 2.5rem;
  overflow: hidden;
}

.vote-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 70, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.vote-question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.vote-description {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.vote-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.vote-btn {
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  min-width: 160px;
}

.vote-btn-yes {
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--bg-deep);
  box-shadow: 0 4px 25px rgba(212, 160, 70, 0.2);
}

.vote-btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 160, 70, 0.35);
}

.vote-btn-no {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid rgba(212, 160, 70, 0.15);
}

.vote-btn-no:hover {
  background: rgba(212, 160, 70, 0.05);
  border-color: rgba(212, 160, 70, 0.3);
  transform: translateY(-2px);
}

.vote-btn.voted {
  pointer-events: none;
}

.vote-btn-yes.voted {
  box-shadow: 0 0 30px rgba(212, 160, 70, 0.3);
}

.vote-results {
  position: relative;
  z-index: 1;
  display: none;
}

.vote-results.visible {
  display: block;
  animation: fade-up 0.6s forwards;
}

.vote-results-bar-wrap {
  max-width: 400px;
  margin: 0 auto 1rem;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  height: 40px;
  background: rgba(212, 160, 70, 0.06);
}

.vote-bar-yes {
  background: linear-gradient(90deg, var(--amber), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg-deep);
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 0;
}

.vote-bar-no {
  background: rgba(212, 160, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 0;
}

.vote-total {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.vote-total strong {
  color: var(--amber);
}

.vote-thanks {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-pale);
  margin-top: 1.5rem;
}

/* ============ ANIMATIONS ============ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 5rem 1.25rem;
  }

  .stat-row {
    flex-direction: column;
    gap: 1rem;
  }

  .petition-card {
    padding: 2rem;
  }

  .petition-form {
    grid-template-columns: 1fr;
  }

  .voice-card {
    padding: 1.5rem 1.5rem 1.5rem 2rem;
  }

  .story-form-card {
    padding: 1.75rem;
  }

  .story-form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .community-wall {
    grid-template-columns: 1fr;
  }

  .vote-card {
    padding: 2rem;
  }

  .vote-buttons {
    flex-direction: column;
    align-items: center;
  }

  .vote-btn {
    width: 100%;
    max-width: 280px;
  }

  .hero::before {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hashtag-row {
    gap: 0.5rem;
  }

  .counter-number {
    font-size: 2.25rem;
  }
}

/* CSP-safe utility classes */
.text-gold { color: var(--gold); }
.o-letter {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.stat-row-offset { margin-top: 3rem; }
.section-label-center { justify-content: center; }
.section-text-center { margin: 0 auto; text-align: center; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.vote-bar-yes, .vote-bar-no { width: 0%; }
