/* ═══════════════════════════════════════════════════════════════
   TIME | LOCK TF IN — Styles
   Palette: Muted naturals + crimson accent
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ──────────────────────────────────────────── */

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

:root {
  --bg-deep: #0d1210;
  --bg-section: rgba(13, 18, 16, 0.88);
  --text-primary: #f0ece4;
  --text-secondary: #8a9188;
  --accent: #8B1A1A;
  --accent-glow: #DC143C;
  --earth: #5C6B5C;
  --stone: #3a3d3a;
  --crimson-soft: rgba(220, 20, 60, 0.15);

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --section-max: 900px;
  --section-pad: clamp(2rem, 6vw, 5rem);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-glow);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--text-primary);
}

/* ─── 3D Canvas ─────────────────────────────────────────────── */

#scene-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

/* ─── Content Layer ─────────────────────────────────────────── */

#content {
  position: relative;
  z-index: 10;
  pointer-events: none;
}

#content > section {
  pointer-events: auto;
}

/* ─── Hero ──────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--section-pad);
  position: relative;
}

.hero__logo {
  width: clamp(80px, 15vw, 160px);
  height: auto;
  margin-bottom: 2rem;
  filter: invert(1) drop-shadow(0 0 40px rgba(220, 20, 60, 0.3));
  animation: logo-pulse 4s ease-in-out infinite alternate;
}

@keyframes logo-pulse {
  from { filter: invert(1) drop-shadow(0 0 20px rgba(220, 20, 60, 0.2)); }
  to { filter: invert(1) drop-shadow(0 0 60px rgba(220, 20, 60, 0.5)); }
}

.hero__title {
  font-size: clamp(3.5rem, 12vw, 10rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--text-primary);
  text-shadow: 0 0 80px var(--crimson-soft);
}

.hero__title span {
  display: block;
  color: var(--accent-glow);
}

.hero__to {
  font-size: 0.35em;
  color: var(--text-secondary);
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  vertical-align: middle;
}

.hero__sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-primary);
  font-weight: 300;
  font-style: italic;
  max-width: 600px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.15), 0 1px 8px rgba(0, 0, 0, 0.9);
}

.hero__day {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.8rem;
  background: var(--accent);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
}

.hero__day .day-num {
  font-size: 1.4rem;
  color: #fff;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ─── Section Base ──────────────────────────────────────────── */

.section {
  padding: var(--section-pad);
  max-width: var(--section-max);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(60px) perspective(800px) rotateX(8deg);
  transition: opacity 1s ease, transform 1s ease;
  transform-style: preserve-3d;
}

.section.visible {
  opacity: 1;
  transform: translateY(0) perspective(800px) rotateX(0deg);
}

.section--full {
  max-width: 100%;
  padding-left: clamp(2rem, 8vw, 8rem);
  padding-right: clamp(2rem, 8vw, 8rem);
}

.section__inner {
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  transform-style: preserve-3d;
  perspective: 800px;
}

/* ─── Wake Up ───────────────────────────────────────────────── */

.wakeup__title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--accent-glow);
  text-shadow: 0 2px 30px rgba(220, 20, 60, 0.4), 0 0 60px rgba(0, 0, 0, 0.6);
}

.wakeup__body {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-primary);
  line-height: 1.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.15), 0 1px 8px rgba(0, 0, 0, 0.9);
}

/* ─── Pillars Header ────────────────────────────────────────── */

.pillars-header__title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-glow);
  text-shadow: 0 0 30px rgba(220, 20, 60, 0.4), 0 2px 20px rgba(0, 0, 0, 0.8);
}

.pillars-header__sub {
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-primary);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.15), 0 1px 8px rgba(0, 0, 0, 0.9);
}

/* ─── Pillars ───────────────────────────────────────────────── */

.pillar {
  padding: clamp(3rem, 6vw, 5rem) var(--section-pad);
  max-width: var(--section-max);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(60px) perspective(800px) rotateX(8deg);
  transition: opacity 1s ease, transform 1s ease;
  transform-style: preserve-3d;
}

.pillar.visible {
  opacity: 1;
  transform: translateY(0) perspective(800px) rotateX(0deg);
}

.pillar__inner {
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  text-align: center;
  transform-style: preserve-3d;
  perspective: 800px;
  background: rgba(10, 14, 12, 0.92);
  border: 1px solid rgba(92, 107, 92, 0.2);
  border-radius: 3px;
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(240, 236, 228, 0.03);
}

.pillar__num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(139, 26, 26, 0.3);
}

.pillar__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.pillar__philosophy {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.8;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
}

/* ─── Pillar Deep Text & Laws ──────────────────────────────── */

.pillar__deep {
  margin-top: 1.4rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(240, 236, 228, 0.82);
  line-height: 1.9;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
}

.pillar__law {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(220, 20, 60, 0.3);
  border-bottom: 1px solid rgba(220, 20, 60, 0.3);
  text-align: center;
  position: relative;
}

.pillar__law::before,
.pillar__law::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-glow);
}

.pillar__law::before { top: -1px; }
.pillar__law::after { bottom: -1px; }

.pillar__law-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent-glow);
  margin-bottom: 0.6rem;
  opacity: 0.8;
}

.pillar__law-text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  text-shadow: none;
}

/* ─── Token Section ─────────────────────────────────────────── */

.token__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 0, 0, 0.4);
}

.token__title span {
  color: var(--accent-glow);
}

.token__body {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.15), 0 1px 8px rgba(0, 0, 0, 0.9);
}

.token__ca {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(90, 90, 90, 0.15);
  border: 1px solid var(--stone);
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
  word-break: break-all;
  display: inline-block;
}

/* ─── CTAs ──────────────────────────────────────────────────── */

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn--primary {
  background: var(--accent);
  color: var(--text-primary);
}
.cta-btn--primary:hover {
  background: var(--accent-glow);
  color: #fff;
  box-shadow: 0 0 30px var(--crimson-soft);
}

.cta-btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--earth);
}
.cta-btn--secondary:hover {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
}

/* ─── Group Chat Section ────────────────────────────────────── */

.groupchat__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 0, 0, 0.4);
}

.groupchat__body {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.7;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.15), 0 1px 8px rgba(0, 0, 0, 0.9);
}

/* ─── Music Toggle ──────────────────────────────────────────── */

.music-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--earth);
  background: rgba(13, 18, 16, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text-secondary);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.music-toggle:hover {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
}

.music-toggle.playing {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(220, 20, 60, 0); }
}

.music-toggle.muted {
  opacity: 0.5;
}

/* ─── Speech Section — Ornate Box ───────────────────────────── */

.speech {
  opacity: 1;
  transform: none;
  max-width: 860px;
}

.speech .section__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: linear-gradient(
    175deg,
    rgba(10, 14, 12, 0.97) 0%,
    rgba(13, 18, 16, 0.98) 40%,
    rgba(16, 12, 12, 0.97) 100%
  );
  border: 2px solid var(--accent);
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(220, 20, 60, 0.08),
    0 0 0 6px rgba(13, 18, 16, 0.95),
    0 0 0 7px rgba(139, 26, 26, 0.4),
    0 0 60px rgba(220, 20, 60, 0.08),
    inset 0 0 80px rgba(220, 20, 60, 0.03),
    inset 0 1px 0 rgba(240, 236, 228, 0.05);
}

/* ── Corner Flourishes ── */
.speech .section__inner::before,
.speech .section__inner::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--accent-glow);
  border-style: solid;
  opacity: 0.6;
  pointer-events: none;
}

.speech .section__inner::before {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
}

.speech .section__inner::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
}

/* ── Ornate Rule Lines ── */
.speech__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  opacity: 0.6;
}

.speech__rule::before,
.speech__rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 30%,
    var(--accent) 70%,
    transparent 100%
  );
}

.speech__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-glow);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(220, 20, 60, 0.4), 0 2px 20px rgba(0, 0, 0, 0.8);
}

.speech__subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.speech__body p {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 1.6rem;
  text-align: left;
  text-shadow: none;
}

.speech__opening {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem) !important;
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  text-align: center !important;
  margin-bottom: 2rem !important;
}

.speech__quote {
  display: inline;
  color: var(--accent-glow);
  font-style: italic;
}

.speech__plea {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-left: 0;
  background: linear-gradient(90deg, rgba(139, 26, 26, 0.06) 0%, transparent 100%);
}

.speech__warning {
  font-weight: 600;
}

.speech__close {
  font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
  font-weight: 700;
  text-align: center !important;
  color: var(--text-primary);
  margin-top: 2.5rem;
}

.speech__final {
  font-size: clamp(1.4rem, 3vw, 1.8rem) !important;
  font-weight: 900;
  text-align: center !important;
  color: var(--accent-glow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  text-shadow: 0 0 30px rgba(220, 20, 60, 0.5), 0 2px 20px rgba(0, 0, 0, 0.8);
}

/* ── Drop Cap for first body paragraph ── */
.speech__body p:nth-of-type(2)::first-letter {
  float: left;
  font-size: 3.8em;
  line-height: 0.8;
  font-weight: 900;
  color: var(--accent-glow);
  padding-right: 0.1em;
  margin-top: 0.05em;
  text-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

/* ─── Mission ──────────────────────────────────────────────── */

.speech__mission {
  margin-top: 2.5rem;
  text-align: center;
}

.speech__mission-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.speech__mission-body {
  margin-top: 1.2rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-primary);
  line-height: 1.9;
  text-align: left;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.speech__mission-counter {
  margin-top: 2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.mission-counter__current {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--accent-glow);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(220, 20, 60, 0.4);
}

.mission-counter__slash {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--text-secondary);
  opacity: 0.5;
}

.mission-counter__goal {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--text-primary);
}

.mission-counter__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  align-self: center;
  margin-left: 0.5rem;
}

/* ─── Petition ─────────────────────────────────────────────── */

.petition {
  margin-top: 3rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(139, 26, 26, 0.5);
  border-radius: 2px;
  background: rgba(139, 26, 26, 0.06);
  text-align: center;
  position: relative;
}

.petition::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(139, 26, 26, 0.2);
  border-radius: 1px;
  pointer-events: none;
}

.petition__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-glow);
  margin-bottom: 1rem;
}

.petition__title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.petition__desc {
  margin-top: 1rem;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 1px 8px rgba(0, 0, 0, 0.9);
}

.petition__form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.petition__input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(13, 18, 16, 0.8);
  border: 1px solid var(--earth);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}

.petition__input::placeholder {
  color: var(--text-secondary);
  font-weight: 400;
  font-style: italic;
}

.petition__input:focus {
  border-color: var(--accent-glow);
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.15);
}

.cta-btn--petition {
  background: var(--accent-glow);
  color: #fff;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  white-space: nowrap;
}

.cta-btn--petition:hover {
  background: #ff1744;
  color: #fff;
  box-shadow: 0 0 40px rgba(220, 20, 60, 0.4);
  transform: translateY(-1px);
}

.petition__count {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.petition__count strong {
  color: var(--accent-glow);
  font-size: 1.1rem;
}

/* ─── Signers Wall ──────────────────────────────────────────── */

.signers {
  margin-top: 3rem;
  text-align: center;
}

.signers__title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-glow);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

.signers__wall {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-height: 300px;
  overflow-y: auto;
  padding: 1rem;
}

.signers__wall::-webkit-scrollbar {
  width: 4px;
}
.signers__wall::-webkit-scrollbar-track {
  background: transparent;
}
.signers__wall::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

.signer-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  border: 1px solid var(--earth);
  border-radius: 2px;
  background: rgba(92, 107, 92, 0.1);
  animation: signer-in 0.5s ease-out;
}

.signer-tag--new {
  border-color: var(--accent-glow);
  background: rgba(220, 20, 60, 0.1);
  animation: signer-glow 1s ease-out;
}

@keyframes signer-in {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes signer-glow {
  0% { opacity: 0; transform: scale(0.8); box-shadow: 0 0 20px rgba(220, 20, 60, 0.5); }
  50% { box-shadow: 0 0 20px rgba(220, 20, 60, 0.5); }
  100% { opacity: 1; transform: scale(1); box-shadow: none; }
}

.signers__empty {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.9rem;
}

/* ─── Footer ────────────────────────────────────────────────── */

.footer {
  padding: 3rem var(--section-pad);
  text-align: center;
  border-top: 1px solid rgba(92, 107, 92, 0.2);
  max-width: var(--section-max);
  margin: 0 auto;
}

.footer__day {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer__links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__close {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ─── Spacers (transparent gaps where particles show) ──────── */

.spacer {
  height: clamp(8rem, 20vh, 16rem);
  pointer-events: none;
}

.spacer--large {
  height: clamp(12rem, 30vh, 24rem);
}

/* ─── Mobile ────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(2.5rem, 15vw, 5rem);
  }

  .pillar__inner,
  .section__inner {
    padding: 1.5rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer__links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .petition__form {
    flex-direction: column;
  }

  .speech__plea {
    padding-left: 1rem;
  }

  .speech .section__inner::before,
  .speech .section__inner::after {
    width: 35px;
    height: 35px;
  }

  .speech .section__inner::before {
    top: 8px;
    left: 8px;
  }

  .speech .section__inner::after {
    bottom: 8px;
    right: 8px;
  }
}

/* ─── Reduced motion ────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .section, .pillar {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__scroll {
    animation: none;
  }
}
