:root {
  --bg: #0f1012;
  --bg-soft: #14161a;
  --card: #1b1f26;
  --accent: #f25f2c;
  --accent-2: #f5c44c;
  --text: #f8f7f3;
  --muted: #b5bbc5;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(
    circle at 20% 20%,
    #232735 0%,
    #0f1012 45%,
    #0b0c0e 100%
  );
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fb-icon {
  width: 16px;
  height: 16px;
  fill: #1877f2;
  flex-shrink: 0;
}

.shop-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.container {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(10, 12, 15, 0.8);
  border-bottom: 1px solid var(--line);
}

#issue,
#posters,
#action,
#support,
#letter {
  scroll-margin-top: 100px;
}

#about {
  scroll-margin-top: 300px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand-link:hover {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.brand img {
  width: 67px;
  height: 67px;
  border-radius: 10px;
  background: transparent;
  padding: 6px;
}

.brand small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

nav a {
  color: var(--muted);
}

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

nav .cta {
  color: #0b0c0e;
  background: var(--accent-2);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

nav .btn {
  padding: 8px 14px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 5vw 22px;
  border-top: 1px solid var(--line);
  background: rgba(10, 12, 15, 0.98);
}

.mobile-nav a {
  color: var(--muted);
  font-size: 15px;
}

.mobile-nav .cta {
  color: #0b0c0e;
  background: var(--accent-2);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.mobile-nav .btn {
  padding: 10px 16px;
  font-size: 15px;
  width: fit-content;
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  padding: 90px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--accent-2);
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  margin: 10px 0 16px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: #0b0c0e;
}

.btn.secondary {
  border-color: var(--line);
  color: var(--text);
}

a.btn.secondary[href="comms.html"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b0c0e;
}

.hero-badges {
  display: grid;
  gap: 12px;
}

.hero-badges div {
  background: var(--card);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.hero-badges span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 20px;
}

.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

.image-card img {
  height: 360px;
  object-fit: contain;
  width: 100%;
}

.image-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  background: rgba(15, 16, 18, 0.88);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-overlay span {
  font-size: 12px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  text-align: center;
}

.stat h3 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  color: var(--accent-2);
}

.section {
  padding: 70px 0;
}

.section:first-of-type {
  padding-top: 18px;
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 12px;
}

.section-heading p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.ticks li {
  padding-left: 26px;
  position: relative;
}

.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.callout {
  background: linear-gradient(
    150deg,
    rgba(242, 95, 44, 0.15),
    rgba(245, 196, 76, 0.08)
  );
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(242, 95, 44, 0.3);
}

.support-card {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.support-card .callout {
  margin-top: 18px;
}

.action {
  background: linear-gradient(
    120deg,
    rgba(242, 95, 44, 0.15),
    rgba(15, 16, 18, 0.4)
  );
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.action-card {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.action-card ul {
  padding-left: 18px;
}

.step {
  padding: 12px;
  margin: 10px 0;
  background: rgba(245, 196, 76, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(245, 196, 76, 0.2);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.impact-card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.impact-card h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  color: var(--accent-2);
}

.strip {
  margin-top: 26px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid var(--line);
  text-align: center;
}

.quote-block {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
}

.quote-block span {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.media {
  background: linear-gradient(
    180deg,
    rgba(15, 16, 18, 0.2),
    rgba(245, 196, 76, 0.08)
  );
}

.evidence {
  background: linear-gradient(
    180deg,
    rgba(245, 196, 76, 0.08),
    rgba(15, 16, 18, 0.2)
  );
}

.evidence-intro h2 {
  margin: 0 0 16px;
}

.evidence-brief {
  margin: 18px auto 0;
  display: grid;
  gap: 16px;
  max-width: 1000px;
}

.evidence-brief h4 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  text-align: center;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  justify-content: center;
}

.brief-card {
  background: var(--card);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--text);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.brief-card a.btn.secondary[href="comms.html"] {
  margin-top: auto;
  align-self: flex-start;
}

.brief-card h5 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--accent-2);
}

.brief-card ul {
  margin: 0 0 10px;
  padding-left: 18px;
}

.brief-card li {
  margin: 4px 0;
  color: var(--muted);
}

.brief-label {
  margin: 8px 0 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.brief-note {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 0.9rem;
}

.brief-closer {
  margin: 8px 0 0;
  font-weight: 600;
  color: var(--text);
}

.brief-wide {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 1000px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.evidence-summary {
  margin-top: 24px;
}

.evidence-copy a {
  color: var(--accent-2);
  font-weight: 600;
}

.chart {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}

.chart-title {
  font-weight: 600;
  margin-bottom: 16px;
}

.bar {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px 16px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.bar span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.bar strong {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
}

.bar-fill {
  position: absolute;
  inset: 0;
  width: calc(var(--value) * 1%);
  background: linear-gradient(
    90deg,
    rgba(242, 95, 44, 0.9),
    rgba(245, 196, 76, 0.9)
  );
  opacity: 0.25;
  z-index: 1;
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}

.dual-bar {
  margin-bottom: 16px;
}

.dual-bar-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.dual-bar-header strong {
  color: var(--text);
  font-weight: 600;
}

.dual-bar-track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  overflow: hidden;
}

.dual-bar-total {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.dual-bar-motorcycle {
  position: absolute;
  inset: 0;
  width: calc(var(--motor) * 1%);
  background: linear-gradient(
    90deg,
    rgba(242, 95, 44, 0.9),
    rgba(245, 196, 76, 0.9)
  );
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.media-grid article {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}

.posters {
  padding-top: 30px;
}

.poster-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.poster-grid img {
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.faq-grid div {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: #0b0c0e;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a {
  display: block;
  color: var(--muted);
  margin: 6px 0;
}

.footer-note {
  text-align: center;
  color: var(--muted);
  margin-top: 20px;
}

.hero-video {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.1;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero {
    padding-top: 60px;
  }
  .hero-video {
    top: -5%;
    height: 110%;
  }
}

@media (max-width: 640px) {
  .hero-video {
    top: 0;
    height: 100%;
    width: 100%;
  }
}

.comms-list {
  display: grid;
  gap: 24px;
  margin-left: 24px;
}

.comms-item {
  background: transparent;
  border: 1px solid transparent;
  padding: 12px;
  text-align: left;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
}

.comms-item:hover {
  border-color: var(--line);
}

.comms-item.is-active {
  border-color: var(--accent);
}

.hidden-doc-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pdf-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
}

.pdf-banner {
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  padding: 16px;
  margin: 0;
}

.pdf-banner p {
  margin: 0;
}

.pdf-card .pdf-viewer-container {
  background: var(--card);
  border: none;
  border-radius: 0;
  padding: 24px;
  margin: 0;
}

.comms-header {
  margin-top: 10px;
  margin-bottom: 10px;
}

.comms-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text);
}

.comms-synopsis {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.comms-date {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.comms-description {
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.pdf-viewer-container {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

#pdf-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

#pdf-controls button {
  padding: 8px 16px;
  background: var(--accent);
  color: #0b0c0e;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

#pdf-controls button:hover:not(:disabled) {
  opacity: 0.9;
}

#pdf-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#pdf-page-info {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}

#pdf-canvas {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.pdf-controls-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.pdf-controls-bottom button {
  padding: 8px 16px;
  background: var(--accent);
  color: #0b0c0e;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.pdf-controls-bottom button:hover:not(:disabled) {
  opacity: 0.9;
}

.pdf-controls-bottom button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#pdf-page-info-bottom {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}
