/* ============================================================
   fucksb244.com — Activist Design System
   Aesthetic: Bold protest typography, high-contrast, editorial
   ============================================================ */

:root {
  --black: #0d1f3c;        /* rich deep navy — primary background */
  --black-mid: #122649;    /* slightly lighter for section alternates */
  --white: #f2eddc;        /* warm cream text */
  --red: #e05c4a;          /* vote YES / danger — coral-red pops on blue */
  --red-dark: #b8402e;     /* hover state */
  --yellow: #f5c100;       /* Kansas gold — sunflower */
  --trans-pink: #f5a9b8;   /* trans flag pink accent */
  --blue-cta: #5b8fd4;     /* Kansas + trans blue — CTA buttons */
  --blue-cta-dark: #3b6bb5;
  --green: #1a5c3e;
  --green-light: #4ab88a;  /* vote NO / positive */
  --gray: #7a9cc0;         /* muted blue-gray for secondary text */
  --gray-light: #162e52;   /* card hover background */
  --border: rgba(91, 143, 212, 0.18); /* blue-tinted borders */
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ---- HEADER ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 31, 60, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 500;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--white);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 28vw, 400px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 193, 0, 0.07);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  animation: pulseStroke 4s ease-in-out infinite;
}

@keyframes pulseStroke {
  0%, 100% { -webkit-text-stroke-color: rgba(245, 193, 0, 0.07); }
  50% { -webkit-text-stroke-color: rgba(245, 193, 0, 0.14); }
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.title-line-1 {
  display: block;
  color: var(--white);
  animation: fadeUp 0.8s 0.1s ease both;
}

.title-line-2 {
  display: block;
  color: var(--yellow);
  animation: fadeUp 0.8s 0.2s ease both;
}

.title-line-3 {
  display: block;
  color: var(--white);
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-sub {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.7);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-sub strong {
  color: var(--yellow);
  font-weight: 500;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--yellow);
  color: #0d1f3c;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--yellow);
  transition: all 0.2s;
  animation: fadeUp 0.8s 0.5s ease both;
}

.cta-btn:hover {
  background: transparent;
  color: var(--yellow);
}

.hero-stats {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto 0;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  animation: fadeUp 0.8s 0.6s ease both;
}

.stat {
  flex: 1;
  padding: 1rem 2rem 1rem 0;
}

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 2rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- WHAT HAPPENED ---- */
.what-happened {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--black-mid);
}

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

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.fact-card {
  background: var(--black);
  padding: 2rem;
  transition: background 0.2s;
}

.fact-card:hover {
  background: var(--gray-light);
}

.fact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.fact-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.fact-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.65);
}

.fact-card p strong {
  color: var(--yellow);
  font-weight: 500;
}

/* ---- LAWSUIT SECTION ---- */
.lawsuit-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--black-mid);
}

.lawsuit-sub {
  font-size: 0.95rem;
  color: rgba(244, 240, 232, 0.7);
  margin-bottom: 2rem;
  max-width: 640px;
  line-height: 1.7;
}

.lawsuit-sub em {
  color: var(--white);
  font-style: italic;
}

.lawsuit-args {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.lawsuit-args h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1rem;
}

.lawsuit-args ul {
  list-style: none;
  padding: 0;
}

.lawsuit-args li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(244, 240, 232, 0.65);
  line-height: 1.6;
}

.lawsuit-args li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.lawsuit-args li strong {
  color: var(--yellow);
  font-weight: 500;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
  border-left: 2px solid var(--border);
}

.timeline-event {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-event:last-child {
  padding-bottom: 0;
}

.timeline-event::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray);
  border: 2px solid var(--black-mid);
  transform: translateX(calc(-50% + 1px));
}

.timeline-event--upcoming::before {
  background: var(--yellow);
  box-shadow: 0 0 8px rgba(245, 193, 0, 0.4);
}

.timeline-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.timeline-event--upcoming .timeline-date {
  color: var(--yellow);
}

.timeline-desc {
  font-size: 0.9rem;
  color: rgba(244, 240, 232, 0.7);
  line-height: 1.5;
}

.timeline-desc em {
  color: var(--white);
}

.cta-btn--secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-cta);
  border: 2px solid var(--blue-cta);
  background: transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-btn--secondary:hover {
  background: var(--blue-cta);
  color: var(--black);
}

/* ---- ZIP LOOKUP ---- */
.lookup-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--black) 0%, var(--black-mid) 100%);
}

.lookup-sub {
  font-size: 0.9rem;
  color: rgba(244, 240, 232, 0.55);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.zip-form {
  margin-bottom: 3rem;
}

.input-wrapper {
  display: flex;
  gap: 0;
  max-width: 480px;
  border: 2px solid rgba(244, 240, 232, 0.2);
  transition: border-color 0.2s;
}

.input-wrapper:focus-within {
  border-color: var(--yellow);
}

#zipInput {
  flex: 1;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

#zipInput::placeholder {
  color: rgba(242, 237, 220, 0.2);
}

#lookupBtn {
  padding: 1rem 1.5rem;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  color: #0d1f3c;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

#lookupBtn:hover {
  background: #d4a800;
}

.btn-arrow {
  font-size: 1.2rem;
}

.zip-error {
  margin-top: 0.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--trans-pink);
  min-height: 1.2rem;
}

/* ---- RESULTS ---- */
.results-panel {
  max-width: 900px;
}

.results-header {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.rep-card {
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.rep-card:hover {
  border-color: rgba(244, 240, 232, 0.25);
}

.rep-card--yea {
  border-left: 4px solid var(--red);
}

.rep-card--nay {
  border-left: 4px solid var(--green-light);
}

.rep-card-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.rep-info {
  flex: 1;
}

.rep-chamber {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.rep-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.rep-party {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--gray);
}

.rep-vote-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 100px;
  text-align: center;
}

.vote-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.vote-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.vote-value--yea {
  color: var(--red);
}

.vote-value--nay {
  color: var(--green-light);
}

.vote-meaning {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--gray);
  max-width: 90px;
}

/* Actions for YES voters */
.rep-actions {
  padding: 1.5rem 2rem;
  background: rgba(245, 193, 0, 0.04);
  border-top: 1px solid rgba(245, 193, 0, 0.12);
}

.rep-actions-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.2s;
}

.action-btn--oppose {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0d1f3c;
}

.action-btn--oppose:hover {
  background: transparent;
  color: var(--yellow);
}

.action-btn--donate {
  background: transparent;
  border-color: rgba(244, 240, 232, 0.3);
  color: rgba(244, 240, 232, 0.7);
}

.action-btn--donate:hover {
  border-color: var(--white);
  color: var(--white);
}

/* Message for NAY voters */
.rep-thanks {
  padding: 1.25rem 2rem;
  background: rgba(45, 106, 79, 0.08);
  border-top: 1px solid rgba(82, 183, 136, 0.15);
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--green-light);
}

/* Dropdown for donate orgs */
.donate-dropdown {
  display: none;
  padding: 1rem 2rem 1.5rem;
  background: rgba(10, 10, 10, 0.8);
  border-top: 1px solid var(--border);
}

.donate-dropdown.open {
  display: block;
}

.donate-dropdown-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

.donate-org-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.donate-org-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.donate-org-link:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  background: rgba(82, 183, 136, 0.05);
}

.donate-org-link .org-name {
  font-weight: 500;
}

.donate-org-link .org-arrow {
  opacity: 0.4;
  font-size: 1rem;
}

/* No results */
.no-results {
  padding: 2rem;
  border: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: rgba(244, 240, 232, 0.5);
  line-height: 1.7;
}

/* ---- TAKE ACTION ---- */
.take-action {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.action-card {
  background: var(--black);
  padding: 3rem 2.5rem;
}

.action-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(244, 240, 232, 0.06);
  margin-bottom: 1rem;
}

.action-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.action-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.6);
  margin-bottom: 1rem;
}

.action-note {
  font-style: italic;
  color: var(--yellow) !important;
}

.org-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.org-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s;
}

.org-link:hover {
  border-color: var(--green-light);
  background: rgba(82, 183, 136, 0.05);
}

.org-link span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.org-desc {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--gray) !important;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-left p, .footer-right p {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: rgba(244, 240, 232, 0.35);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-left a {
  color: rgba(244, 240, 232, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-left a:hover {
  color: var(--white);
}

.share-btns {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.share-btn {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244, 240, 232, 0.5);
  transition: all 0.2s;
}

.share-btn:hover {
  border-color: rgba(244, 240, 232, 0.4);
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-badge {
  width: 80px;
  height: 80px;
  margin-bottom: 0.75rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-badge:hover {
  opacity: 1;
}

.footer-bottom p {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: rgba(244, 240, 232, 0.2);
  letter-spacing: 0.05em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { display: none; }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  .action-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .rep-card-header {
    flex-direction: column;
    gap: 1rem;
  }
  .rep-vote-badge {
    flex-direction: row;
    align-items: center;
    min-width: unset;
  }
  .vote-value { font-size: 1.8rem; }

  .action-buttons { flex-direction: column; }
  .action-btn { justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 56px; }
  .hero { padding: 6rem 1.25rem 3rem; }
  .what-happened, .lawsuit-section, .lookup-section, .take-action { padding: 4rem 1.25rem; }
  .fact-card { padding: 1.5rem; }
  .rep-card-header { padding: 1.25rem; }
  .rep-actions { padding: 1.25rem; }
}
