:root {
  --bg: #08111d;
  --bg-elevated: rgba(10, 20, 34, 0.82);
  --panel: rgba(14, 26, 43, 0.9);
  --panel-strong: rgba(18, 33, 54, 0.95);
  --border: rgba(151, 175, 203, 0.18);
  --text: #edf3fb;
  --muted: #9db0c7;
  --accent: #8bc6ff;
  --accent-strong: #d9f058;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(90, 167, 255, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(217, 240, 88, 0.1), transparent 24%),
    linear-gradient(180deg, #09111d 0%, #050a11 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.hero,
.panel,
.footer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  padding: 72px clamp(24px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(139, 198, 255, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(217, 240, 88, 0.08), transparent 60%),
    var(--bg-elevated);
}

.hero::after,
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 7.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.6rem;
}

.hero-copy,
.supporter-copy,
.supporter-note,
.section-note,
.evidence-body p,
.footer p,
.fact-list {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 44rem;
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

main {
  margin-top: 20px;
}

.panel {
  padding: clamp(24px, 3vw, 34px);
}

.supporter-panel {
  margin-bottom: 20px;
  background:
    linear-gradient(130deg, rgba(139, 198, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(18, 33, 54, 0.96), rgba(10, 20, 34, 0.9));
}

.supporter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.top-evidence {
  margin-bottom: 20px;
}

.supporter-count {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
}

.plus {
  color: var(--accent-strong);
}

.supporter-copy {
  margin-top: 10px;
  font-size: 1.12rem;
}

.petition-widget {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.petition-button {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(217, 240, 88, 0.32);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  color: #06111d;
  background: linear-gradient(135deg, var(--accent-strong), #a5ffce);
  box-shadow: 0 14px 28px rgba(165, 255, 206, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.petition-button:hover,
.petition-button:focus-visible {
  transform: translateY(-1px);
}

.petition-button:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.petition-meta {
  margin: 0;
  max-width: 18rem;
  text-align: right;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fact-list {
  margin-top: 18px;
  padding-left: 20px;
}

.fact-list li + li {
  margin-top: 12px;
}

.quote-panel {
  margin-top: 20px;
  background:
    linear-gradient(140deg, rgba(217, 240, 88, 0.08), transparent 45%),
    var(--panel-strong);
}

.contact-panel {
  margin-top: 20px;
}

.contact-copy,
.contact-note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-copy a {
  color: var(--text);
}

blockquote {
  margin: 0;
  padding: 0;
  max-width: 28ch;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.evidence-panel {
  margin-top: 20px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-note {
  max-width: 26rem;
  font-size: 0.95rem;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.evidence-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(7, 13, 22, 0.76);
}

.evidence-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0b1320;
}

.evidence-card img.commentary-image {
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #050a11;
}

.evidence-card img.contain-image {
  object-fit: contain;
  object-position: center;
  aspect-ratio: 3 / 4;
  padding: 24px;
  background: #050a11;
}

.evidence-body {
  padding: 18px;
}

.evidence-body h3 {
  margin-bottom: 10px;
}

.footer {
  margin-top: 20px;
  padding: 22px 24px;
}

@media (max-width: 920px) {
  .content-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .supporter-layout {
    grid-template-columns: 1fr;
  }

  .petition-widget {
    align-items: flex-start;
  }

  .petition-meta {
    max-width: none;
    text-align: left;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  blockquote {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .hero,
  .panel,
  .footer {
    border-radius: 20px;
  }

  .hero {
    padding: 54px 20px;
  }

  .panel {
    padding: 22px 18px;
  }

  .evidence-card img {
    aspect-ratio: 16 / 10;
  }
}
