/* ==========================================================================
   KRISHNA SINGH // ASHOKA ANTI-RAGGING COMMITTEE 2026
   HORIZONTAL SCROLLYTELLING EDITORIAL CAMPAIGN
   Apple/Awwwards-Grade Kinematic Rail & Constructivist Editorial Architecture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cinzel:wght@700;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&family=Playfair+Display:ital,wght@0,600;0,800;1,400&display=swap');

:root {
  /* Exact Reference Color Palette */
  --c-red: #c62118;          /* Authentic Cadmium Poster Scarlet */
  --c-red-dark: #9e140d;
  --c-cream: #f5eee3;        /* Warm Vintage Newsprint Off-White */
  --c-cream-alt: #ece3d4;    /* Slightly deeper newsprint tone */
  --c-black: #111111;        /* Printer's Ink Black */
  --c-charcoal: #1c1c1c;
  --c-gray: #666666;
  --c-gray-light: #ded6c8;
  --c-white: #ffffff;

  --font-display: 'Anton', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --hairline-black: 1px solid rgba(17, 17, 17, 0.2);
  --hairline-white: 1px solid rgba(255, 255, 255, 0.2);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--c-black);
  color: var(--c-black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow: visible !important;
  overflow-x: visible !important;
}

/* Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #ffffff;
  z-index: 2000;
  pointer-events: none;
  transition: width 0.05s linear;
}

/* ==========================================================================
   FIXED NAVIGATION HEADER
   ========================================================================== */
.minimal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-item {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-item span {
  font-size: 0.68rem;
  opacity: 0.6;
}

.nav-item:hover {
  color: #ffffff;
}

.nav-item.active {
  color: #ffffff;
  border-bottom: 2px solid var(--c-red);
  padding-bottom: 2px;
}

.nav-item.active span {
  color: var(--c-red);
  opacity: 1;
}

.nav-haptic-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 0.5rem;
}

.nav-haptic-btn:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-haptic-btn.active {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.nav-mobile-action {
  display: none;
}

.nav-mobile-pledge-btn {
  background: var(--c-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  text-decoration: none;
}

/* ==========================================================================
   VIRTUAL SCROLL SYSTEM: STICKY VIEWPORT & HORIZONTAL RAIL
   ========================================================================== */
.scroll-track-container {
  position: relative;
  width: 100%;
  height: 600vh; /* Controlled and adjusted by JS */
}

.viewport-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--c-black);
}

.horizontal-rail {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Kinetic 3D Floating Ballot Seal */
.kinetic-seal-wrap {
  position: fixed;
  top: 4.8rem;
  right: 2rem;
  width: 84px !important;
  height: 84px !important;
  max-width: 84px !important;
  max-height: 84px !important;
  z-index: 999;
  pointer-events: none;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
  perspective: 600px;
}

.kinetic-seal {
  width: 100% !important;
  height: 100% !important;
  display: block;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateZ(var(--seal-rot, 0deg)) rotateX(var(--seal-tilt, 0deg));
  transition: transform 0.1s ease-out;
}

/* Base Scene Container */
.h-scene {
  position: relative;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.scene-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 4rem;
}

.scene-index-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-red);
  display: inline-block;
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   SCENE 1: THE HERO COVER POSTER (CADMIUM RED)
   ========================================================================== */
.scene-hero {
  width: 100vw;
  min-width: 100vw;
  background-color: var(--c-red);
  background-image: url('../assets/images/image.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  color: #ffffff;
  flex-direction: column;
  justify-content: space-between;
  border-right: 2px solid rgba(0, 0, 0, 0.4);
}

.hero-inner {
  padding-top: 7rem;
  padding-bottom: 2rem;
  align-items: center;
}

.hero-editorial-wrap {
  max-width: 440px;
  z-index: 3;
}

.hero-meta-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.hero-meta-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #ffffff;
  flex-shrink: 0;
}

.hero-giant-title {
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 7.8vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.8rem;
}

.hero-giant-title span {
  display: block;
}

.hero-credo {
  margin-bottom: 2.4rem;
  max-width: 420px;
}

.hero-credo-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.hero-credo-sub {
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-pledge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  background: #ffffff;
  color: var(--c-black);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-hero-pledge:hover {
  background: var(--c-black);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-hero-pledge.pledged {
  background: var(--c-black);
  color: #ffffff;
}

.link-hero-manifesto {
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.link-hero-manifesto:hover {
  opacity: 0.75;
}

/* Delicate Bottom Ticker */
.hero-bottom-ticker {
  width: 100%;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(198, 33, 24, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.85rem 2.5rem;
}

.ticker-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.ticker-item strong {
  color: #ffffff;
  margin-right: 0.35rem;
}

.ticker-divider {
  color: rgba(255, 255, 255, 0.4);
}

.ticker-hint {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

/* ==========================================================================
   SCENE 2: THE INDICTMENT & BROADSHEET SLASH
   ========================================================================== */
.scene-indictment {
  width: 85vw;
  min-width: 85vw;
  background-color: var(--c-cream);
  color: var(--c-black);
  border-right: 2px solid var(--c-black);
  position: relative;
}

.broadsheet-bg-parallax {
  position: absolute;
  top: 15%;
  left: 0;
  width: 200%;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 11rem);
  color: rgba(17, 17, 17, 0.04);
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
  line-height: 0.9;
  transform: translate3d(var(--bg-parallax-x, 0px), 0, 0);
  will-change: transform;
}

.indictment-inner {
  justify-content: center;
}

.indictment-editorial-col {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.kinetic-stamp {
  display: inline-block;
  border: 2px solid var(--c-red);
  color: var(--c-red);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  text-transform: uppercase;
  transform: rotate(-3deg);
  margin-bottom: 2rem;
  background: rgba(198, 33, 24, 0.05);
}

.indictment-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 1.15;
  color: var(--c-black);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.indictment-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.indictment-stat-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-pill {
  border-left: 3px solid var(--c-red);
  padding-left: 1.25rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--c-black);
}

.stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555555;
  margin-top: 0.25rem;
}

/* ==========================================================================
   SCENE 3: THE 4 COMMITMENTS (MONOLITH GALLERY)
   ========================================================================== */
.scene-manifesto {
  width: 175vw;
  min-width: 175vw;
  background-color: var(--c-cream-alt);
  color: var(--c-black);
  border-right: 2px solid var(--c-black);
}

.manifesto-inner {
  display: flex;
  align-items: center;
  gap: 4.5rem;
}

.manifesto-header-col {
  width: 380px;
  flex-shrink: 0;
}

.title-mega-clean {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.8vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--c-black);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.manifesto-intro-lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #444444;
}

.monolith-gallery {
  display: flex;
  gap: 2rem;
  height: 100%;
  align-items: center;
}

.monolith-card {
  width: 320px;
  background: var(--c-cream);
  border: 1px solid var(--c-black);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.monolith-card:hover {
  transform: translateY(-8px);
  box-shadow: 6px 6px 0 var(--c-black);
}

.monolith-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.monolith-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 0.9;
  color: var(--c-red);
}

.monolith-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border: 1px solid var(--c-black);
  text-transform: uppercase;
}

.monolith-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  min-height: 3.8rem;
}

.monolith-lead {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--c-black);
}

.monolith-detail {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #555555;
  margin-top: auto;
}

.monolith-rule {
  width: 100%;
  height: 3px;
  background: var(--c-black);
  margin-top: 1.8rem;
  transition: background 0.3s ease;
}

.monolith-card:hover .monolith-rule {
  background: var(--c-red);
}

/* ==========================================================================
   SCENE 4: CANDIDATE DISPATCH (PHOTO SPREAD & CORE MESSAGE)
   ========================================================================== */
.scene-dispatch {
  width: 110vw;
  min-width: 110vw;
  background-color: var(--c-cream);
  color: var(--c-black);
  border-right: 2px solid var(--c-black);
}

.dispatch-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.dispatch-photo-col {
  width: 440px;
  flex-shrink: 0;
}

.dispatch-photo-frame {
  position: relative;
  border: 1px solid var(--c-black);
  background: #000000;
}

.dispatch-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(110%);
  transition: filter 0.4s ease;
}

.dispatch-photo-frame:hover img {
  filter: grayscale(85%) contrast(115%);
}

.dispatch-photo-caption {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  background: var(--c-black);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dispatch-text-col {
  max-width: 580px;
}

.dispatch-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.dispatch-pullquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--c-red);
  padding-left: 1.4rem;
}

.dispatch-p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 1.2rem;
}

.dispatch-sign-box {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dispatch-sign-box strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dispatch-sign-box span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #666666;
  text-transform: uppercase;
}

/* ==========================================================================
   SCENE 5: LETTERS TO KRISHNA (Q&A TELEGRAM FEED)
   ========================================================================== */
.scene-letters {
  width: 155vw;
  min-width: 155vw;
  background-color: var(--c-cream-alt);
  color: var(--c-black);
  border-right: 2px solid var(--c-black);
}

.letters-inner {
  display: flex;
  align-items: center;
  gap: 4.5rem;
}

.letters-form-col {
  width: 420px;
  flex-shrink: 0;
}

.ask-form-clean {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-field-clean {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field-clean label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555555;
}

.form-input-clean,
.form-select-clean,
.form-textarea-clean {
  width: 100%;
  background: var(--c-cream);
  border: 1px solid var(--c-black);
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--c-black);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-clean:focus,
.form-select-clean:focus,
.form-textarea-clean:focus {
  border-color: var(--c-red);
  box-shadow: 2px 2px 0 var(--c-red);
}

.form-textarea-clean {
  height: 80px;
  resize: none;
}

.form-anon-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  cursor: pointer;
}

.btn-clean-submit {
  padding: 0.95rem 1.6rem;
  background: var(--c-black);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-clean-submit:hover {
  background: var(--c-red);
  transform: translateY(-2px);
}

.letters-feed-col {
  flex-grow: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.feed-clean {
  display: flex;
  gap: 1.8rem;
  overflow-x: visible;
}

.q-item-clean {
  width: 340px;
  background: var(--c-cream);
  border: 1px solid var(--c-black);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.q-item-clean:hover {
  transform: translateY(-4px);
}

.q-meta-clean {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(17, 17, 17, 0.2);
  padding-bottom: 0.5rem;
}

.q-text-clean {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--c-black);
}

.q-answer-clean {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #333333;
  border-left: 2px solid var(--c-red);
  padding-left: 0.85rem;
  margin-top: auto;
  margin-bottom: 1.2rem;
}

.q-foot-clean {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  padding-top: 0.75rem;
}

.btn-upvote-clean {
  background: transparent;
  border: 1px solid var(--c-black);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-upvote-clean:hover {
  background: var(--c-black);
  color: #ffffff;
}

.btn-upvote-clean.upvoted {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #ffffff;
}

/* ==========================================================================
   SCENE 6: MONUMENTAL SOLIDARITY FINALE (OBSIDIAN & CRIMSON)
   ========================================================================== */
.scene-finale {
  width: 110vw;
  min-width: 110vw;
  background: radial-gradient(circle at 40% 40%, #1f0504 0%, #111111 65%);
  color: #ffffff;
  position: relative;
}

.finale-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.finale-monumental-card {
  max-width: 620px;
}

.finale-kicker {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 1rem;
}

.monumental-counter-wrap {
  margin-bottom: 1rem;
}

.monumental-counter {
  font-family: var(--font-display);
  font-size: clamp(6.5rem, 13vw, 13rem);
  line-height: 0.82;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-shadow: 0 0 40px rgba(198, 33, 24, 0.4);
}

.pledge-sub-clean {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.btn-monumental-pledge {
  display: inline-block;
  padding: 1.3rem 3rem;
  background: var(--c-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(198, 33, 24, 0.35);
}

.btn-monumental-pledge:hover {
  background: #ffffff;
  color: var(--c-black);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-monumental-pledge.pledged {
  background: #ffffff;
  color: var(--c-black);
}

.pledge-status-clean {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #2ecc71;
  letter-spacing: 0.05em;
}

.finale-footer-col {
  max-width: 440px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 3rem;
}

.finale-brand-huge {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.finale-credo-foot {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.finale-contacts {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.finale-contacts strong {
  color: #ffffff;
}

.finale-bylaw-notice {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN: FOCUSED PHONE VIEW (HORIZONTALLY ADAPTED)
   ========================================================================== */
.kicker-desktop { display: inline; }
.kicker-mobile { display: none; }
.pledge-sub-desktop { display: inline; }
.pledge-sub-mobile { display: none; }

@media (max-width: 768px) {
  .minimal-nav {
    padding: 0.85rem 1.25rem;
  }
  .nav-brand {
    font-size: 1.2rem;
  }
  .nav-links {
    display: none;
  }
  .nav-mobile-action {
    display: block;
  }

  .kicker-desktop { display: none; }
  .kicker-mobile { display: inline; }
  .pledge-sub-desktop { display: none; }
  .pledge-sub-mobile { display: inline; }

  .hero-credo-sub,
  .manifesto-detail-text,
  .dispatch-body-secondary {
    display: none !important;
  }

  /* Kinetic seal on mobile */
  .kinetic-seal-wrap {
    top: 4.8rem;
    right: 1.25rem;
    width: 65px;
    height: 65px;
  }

  .scene-inner {
    padding: 5rem 1.5rem 3rem;
  }

  /* Scene Widths on Mobile */
  .scene-hero {
    width: 100vw;
    min-width: 100vw;
    background-position: 68% bottom;
  }
  .hero-editorial-wrap {
    max-width: 65%;
  }
  .hero-giant-title {
    font-size: clamp(3.2rem, 13vw, 4.4rem);
    line-height: 0.88;
    margin-bottom: 1rem;
  }
  .hero-credo {
    margin-bottom: 1.2rem;
  }
  .hero-credo-lead {
    font-size: clamp(1.2rem, 4.8vw, 1.5rem);
    margin-bottom: 0;
  }
  .hero-actions-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .btn-hero-pledge {
    padding: 0.85rem 1.4rem;
    font-size: 0.95rem;
  }
  .hero-bottom-ticker {
    padding: 0.65rem 1.25rem;
  }
  .ticker-container {
    font-size: 0.68rem;
    gap: 0.85rem;
  }
  .ticker-hint {
    display: none;
  }

  /* Indictment on Mobile */
  .scene-indictment {
    width: 95vw;
    min-width: 95vw;
  }
  .indictment-headline {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }
  .indictment-lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .stat-num {
    font-size: 2.2rem;
  }

  /* Manifesto on Mobile */
  .scene-manifesto {
    width: 320vw;
    min-width: 320vw;
  }
  .manifesto-inner {
    gap: 2rem;
  }
  .manifesto-header-col {
    width: 240px;
  }
  .title-mega-clean {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .monolith-card {
    width: 260px;
    padding: 1.8rem 1.4rem;
  }
  .monolith-num {
    font-size: 2.8rem;
  }
  .monolith-title {
    font-size: 1.4rem;
    min-height: auto;
    margin-bottom: 0.8rem;
  }
  .monolith-lead {
    font-size: 0.92rem;
  }

  /* Dispatch on Mobile */
  .scene-dispatch {
    width: 160vw;
    min-width: 160vw;
  }
  .dispatch-inner {
    gap: 2rem;
  }
  .dispatch-photo-col {
    width: 260px;
  }
  .dispatch-title {
    font-size: 2.2rem;
  }
  .dispatch-pullquote {
    font-size: 1.2rem;
  }
  .dispatch-p {
    font-size: 0.9rem;
  }

  /* Letters on Mobile */
  .scene-letters {
    width: 260vw;
    min-width: 260vw;
  }
  .letters-inner {
    gap: 2rem;
  }
  .letters-form-col {
    width: 280px;
  }
  .q-item-clean {
    width: 280px;
    padding: 1.4rem 1.2rem;
  }
  .q-text-clean {
    font-size: 1.1rem;
  }

  /* Finale on Mobile */
  .scene-finale {
    width: 120vw;
    min-width: 120vw;
  }
  .finale-inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
  }
  .monumental-counter {
    font-size: 5.5rem;
  }
  .btn-monumental-pledge {
    padding: 1rem 1.8rem;
    font-size: 1.1rem;
  }
  .finale-footer-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
  }
  .finale-brand-huge {
    font-size: 2.5rem;
  }
}
