:root {
  --ink: #10120f;
  --ink-2: #171a15;
  --ink-3: #20251d;
  --paper: #f1f0e7;
  --muted: #a6ab98;
  --muted-2: #777d6a;
  --signal: #d8f35a;
  --line: rgba(241, 240, 231, 0.16);
  --line-strong: rgba(216, 243, 90, 0.52);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --heading: "Unbounded", "Trebuchet MS", sans-serif;
  --body: "Atkinson Hyperlegible", Verdana, sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--paper);
  font-family: var(--body);
  background:
    linear-gradient(180deg, rgba(216, 243, 90, 0.035), transparent 22rem),
    var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding: 0.7rem clamp(1rem, 4vw, 3rem);
  background: rgba(16, 18, 15, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--paper);
  font-family: var(--heading);
  font-size: clamp(0.76rem, 1.5vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.65rem, 2vw, 1.25rem);
  flex-wrap: nowrap;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper);
  border-color: var(--signal);
}

.hero {
  min-height: calc(100dvh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 920px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.35rem 0.55rem;
  color: var(--ink);
  background: var(--signal);
  border-radius: 4px;
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.55rem, 4.6vw, 4.85rem);
}

h2 {
  max-width: 980px;
  font-size: clamp(1.9rem, 4.1vw, 4.4rem);
}

h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

p {
  color: var(--muted);
  line-height: 1.64;
}

.hero-lede {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: rgba(241, 240, 231, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-poster {
  display: block;
  color: var(--muted);
  text-decoration: none;
  transform: rotate(1.3deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.hero-poster span {
  display: block;
  margin-top: 0.75rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button,
.vote-option {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font: 800 0.94rem/1.1 var(--body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:active,
.vote-option:active {
  transform: translateY(1px);
}

.button svg,
.vote-option svg,
.source-strip svg,
.safety-card svg {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
}

.button.primary {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.button.ghost {
  color: var(--paper);
  background: rgba(241, 240, 231, 0.045);
}

.button.ghost.dark {
  color: var(--paper);
  background: transparent;
}

.button:hover,
.vote-option:hover {
  transform: translateY(-2px);
}

.answer-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.9fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.answer-strip > div {
  min-height: 9rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--ink-2);
}

.answer-label,
.case-marker,
.meta-line,
.truth-board span,
.intent-card span,
.timeline span,
.video-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
}

.answer-strip strong {
  display: block;
  max-width: 25rem;
  color: var(--paper);
  font-size: clamp(1.14rem, 2vw, 1.58rem);
  line-height: 1.2;
}

.section-grid,
.verdict-layout,
.profile-layout,
.next-section,
.checklist-section {
  display: grid;
  grid-template-columns: minmax(8rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(3.2rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.section-main > p,
.profile-copy > p,
.next-section p,
.section-lede {
  max-width: 760px;
  font-size: 1.04rem;
}

.case-marker {
  align-self: start;
  position: sticky;
  top: 92px;
  color: var(--muted);
}

.truth-board,
.intent-grid,
.safety-grid,
.timeline,
.evidence-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.truth-board {
  grid-template-columns: 1.12fr 0.88fr;
}

.truth-board article:first-child {
  grid-row: span 2;
}

.intent-grid,
.safety-grid,
.evidence-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intent-card:first-child,
.safety-card:first-child {
  grid-column: span 2;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.truth-board article,
.intent-card,
.safety-card,
.timeline article,
.evidence-stack article,
.verdict-card,
.faq-section details {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ink-2);
}

.truth-board article,
.intent-card,
.safety-card,
.timeline article,
.evidence-stack article,
.verdict-card {
  padding: clamp(1rem, 2.5vw, 1.6rem);
}

.truth-board article:first-child,
.intent-card:first-child,
.safety-card:first-child,
.verdict-card.strong {
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(216, 243, 90, 0.1), rgba(241, 240, 231, 0.03));
}

.intent-card {
  min-height: 13rem;
  color: var(--paper);
  text-decoration: none;
}

.intent-card:hover {
  border-color: var(--signal);
  background: rgba(216, 243, 90, 0.1);
}

.video-section,
.intent-section,
.vote-section,
.article-section,
.faq-section,
.timeline-section {
  padding: clamp(3.2rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.article-section {
  background: var(--ink);
}

.article-body {
  max-width: 980px;
  margin: 0 auto;
}

.article-body h2 + p,
.article-body p + p,
.article-body p + h2,
.article-body .article-cards + h2,
.article-body details + details {
  margin-top: 1rem;
}

.article-body h2:not(:first-child) {
  padding-top: clamp(1.8rem, 4vw, 3rem);
}

.article-body h2 {
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
}

.article-body p {
  max-width: 78ch;
  font-size: 1.05rem;
}

.article-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.article-cards > div,
.article-body details {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ink-2);
}

.article-cards > div {
  padding: 1.1rem;
}

.article-cards h3 {
  color: var(--signal);
}

.article-body details {
  max-width: 78ch;
  padding: 1rem 1.1rem;
}

.article-body summary {
  color: var(--paper);
  font-weight: 800;
  cursor: pointer;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.video-section {
  background: var(--ink-3);
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 1rem;
  align-items: stretch;
}

.youtube-shell {
  display: grid;
  gap: 1rem;
}

.youtube-shell iframe {
  width: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #10120f;
}

.embed-help {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(16, 18, 15, 0.66);
}

.embed-help p {
  margin: 0.35rem 0 0;
}

.button-row.compact {
  margin-top: 0.9rem;
}

.copy-link {
  color: var(--paper);
}

.video-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(16, 18, 15, 0.66);
}

.text-link,
.video-card a,
.timeline a {
  color: var(--signal);
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

.video-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.video-card {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(241, 240, 231, 0.035);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 3px;
}

.vote-section {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, rgba(216, 243, 90, 0.13), rgba(241, 240, 231, 0.025));
}

.vote-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.vote-option {
  width: 100%;
  min-height: 4.35rem;
  color: var(--paper);
  background: rgba(16, 18, 15, 0.55);
}

.vote-option.is-selected {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.vote-status {
  grid-column: 1 / -1;
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  color: var(--paper);
  background: var(--ink);
}

.site-footer p {
  max-width: 560px;
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--signal);
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(216, 243, 90, 0.11), transparent 46%), var(--ink);
}

.page-hero h1 {
  max-width: 1100px;
}

.page-hero p {
  max-width: 820px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.source-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.source-strip a {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--paper);
  background: var(--ink-2);
  font-weight: 800;
  text-decoration: none;
}

.source-strip a:hover {
  color: var(--signal);
}

.faq-section details {
  max-width: 920px;
  margin: 0 0 0.8rem;
  padding: 1rem 1.2rem;
}

.faq-section h2 {
  margin-bottom: 1.5rem;
}

.faq-section summary {
  color: var(--paper);
  font-weight: 800;
  cursor: pointer;
}

.safety-grid {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
  margin-top: 0;
}

.safety-card svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--signal);
}

.number-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.number-list li {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ink-2);
}

.number-list li::before {
  content: "Check";
  display: block;
  margin-bottom: 0.45rem;
  color: var(--signal);
  font-weight: 800;
}

.small-video {
  padding-top: 3rem;
}

.profile-poster img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.plain-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ink-2);
}

.timeline-section {
  background: var(--ink-3);
}

.timeline article {
  min-height: 12rem;
}

.next-section {
  align-items: center;
  background: linear-gradient(135deg, rgba(216, 243, 90, 0.16), rgba(241, 240, 231, 0.025));
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-poster,
  .answer-strip,
  .section-grid,
  .video-section,
  .intent-section,
  .vote-section {
    animation: rise-in 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-poster {
    animation-delay: 120ms;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links,
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .answer-strip,
  .section-grid,
  .verdict-layout,
  .profile-layout,
  .next-section,
  .checklist-section,
  .video-feature,
  .vote-section,
  .truth-board,
  .intent-grid,
  .safety-grid,
  .timeline,
  .evidence-stack,
  .source-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-poster {
    transform: none;
  }

  .case-marker {
    position: static;
  }

  .truth-board article:first-child,
  .intent-card:first-child,
  .safety-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .video-list,
  .vote-panel,
  .number-list,
  .article-cards {
    grid-template-columns: 1fr;
  }

  .video-card {
    grid-template-columns: 1fr;
  }

  .youtube-shell iframe {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: relative;
  }

  .brand {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    gap: 0.2rem 0.8rem;
  }

  .button,
  .vote-option {
    width: 100%;
  }
}
