/* ===== TOKENS ===== */
:root {
  --ink: #190E1F;
  --ink-2: #241431;
  --paper: #F3EDF5;
  --paper-dim: #C7B9D1;
  --red: #C2185B;
  --red-dim: #8E1141;
  --electric: #3DD6FF;
  --steel: #9A87A8;
  --steel-dim: #5C4D68;
  --line: rgba(243,237,245,0.12);

  --display: 'Archivo Black', 'Archivo', sans-serif;
  --body: 'Archivo', sans-serif;
  --score: 'Oswald', sans-serif;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: 2px;
}

/* ===== ALERT TICKER BAR ===== */
.alert-bar {
  background: var(--red);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-bottom: 2px solid var(--ink);
}
.alert-bar-track {
  display: inline-flex;
  gap: 3rem;
  padding: 0.5rem 0;
  animation: ticker 32s linear infinite;
  font-family: var(--score);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.alert-bar-track span { padding-right: 3rem; flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(25,14,31,0.92);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.logo span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-family: var(--score);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.nav-links a { color: var(--steel); transition: color 0.15s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

@media (max-width: 700px) {
  .nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 0.9rem 1.25rem;
  }
  .logo { flex-shrink: 0; }
  .nav-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1.4rem;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex-shrink: 0; white-space: nowrap; }
}

/* ===== HERO ===== */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}
.hero-inner { max-width: 760px; }
.eyebrow {
  font-family: var(--score);
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
}
.hero-sub {
  color: var(--paper-dim);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 0 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  font-family: var(--score);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: transform 0.15s, background 0.15s;
}
.btn-primary { background: var(--red); color: var(--ink); }
.btn-primary:hover { background: var(--electric); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line); color: var(--paper); }
.btn-ghost:hover { border-color: var(--paper); }

/* ===== SCREENSHOT EVIDENCE ===== */
.evidence-intro {
  color: var(--paper-dim);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 0 2rem;
}
.evidence-intro a {
  color: var(--electric);
  text-decoration: underline;
  text-decoration-color: rgba(61,214,255,0.4);
}
.evidence-intro a:hover { text-decoration-color: var(--electric); }
.evidence-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--ink-2);
}
.evidence-figure img {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--line);
}
.evidence-figure figcaption {
  padding: 1.1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--paper-dim);
  line-height: 1.5;
}
.evidence-figure figcaption strong { color: var(--electric); }
.evidence-figure figcaption a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--steel-dim);
}
.evidence-figure figcaption a:hover { color: var(--electric); }

/* ===== SECTIONS ===== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}
.section-eyebrow {
  font-family: var(--score);
  color: var(--red);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 2.5rem;
  max-width: 700px;
  line-height: 1.1;
}
/* ===== STORY WALL ===== */
.story-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.story-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--steel-dim);
  padding: 1.75rem;
  border-radius: 2px;
}
.story-card.story-hot { border-left-color: var(--red); }
.story-text {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  color: var(--paper);
  line-height: 1.6;
}
.story-meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: var(--score);
}
.story-tag {
  display: inline-block;
  background: rgba(194,24,91,0.2);
  color: var(--red);
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  font-weight: 600;
  margin-right: 0.4rem;
}
.story-card.story-hot .story-tag { background: var(--red); color: var(--ink); }
.see-all-link {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--score);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--electric);
  border-bottom: 1px solid transparent;
}
.see-all-link:hover { border-bottom-color: var(--electric); }

@media (max-width: 900px) {
  .story-wall { grid-template-columns: 1fr; }
}

/* ===== PATTERN STEPS ===== */
.pattern-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: 2px;
  position: relative;
}
.step-num {
  font-family: var(--score);
  font-weight: 700;
  color: var(--red);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}
.step p { margin: 0; font-size: 0.92rem; color: var(--paper-dim); }

@media (max-width: 900px) {
  .pattern-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pattern-steps { grid-template-columns: 1fr; }
}

/* ===== THREE-UP CARDS ===== */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 0;
}
.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 1.75rem;
  border-radius: 4px;
  transition: border-color 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: var(--red); transform: translateY(-2px); }
.card-eyebrow {
  font-family: var(--score);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--steel);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.card p { color: var(--paper-dim); font-size: 0.92rem; flex-grow: 1; margin: 0 0 1rem; }
.card-link {
  font-family: var(--score);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--electric);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .three-up { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.site-footer p {
  color: var(--steel-dim);
  font-size: 0.82rem;
  max-width: 720px;
}

/* ===== GENERIC SUB-PAGE LAYOUT ===== */
.page-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
}
.page-header h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  margin: 0.75rem 0 1.25rem;
  max-width: 800px;
}
.page-header .lede {
  color: var(--paper-dim);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0;
}

.prose {
  max-width: 720px;
  font-size: 1rem;
}
.prose h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}
.prose p { color: var(--paper-dim); margin: 0 0 1.25rem; }
.prose strong { color: var(--paper); }
.prose a { color: var(--electric); text-decoration: underline; }

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ===== DEEP DIVE SECTIONS (Head of the Scam / Fan Group Scam) ===== */
.deep-dive { max-width: var(--max); }
/* ===== DEEP DIVE SECTIONS (Head of the Scam / Fan Group Scam) ===== */
.deep-dive { padding-top: 3.5rem; padding-bottom: 3.5rem; border-top: 1px solid var(--line); }
.dive-block { max-width: 760px; }
.dive-block p, .dive-intro {
  color: var(--paper-dim);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1.1rem;
  max-width: 760px;
}
.dive-block strong { color: var(--paper); }
.dive-block a {
  color: var(--electric);
  text-decoration: underline;
  text-decoration-color: rgba(61,214,255,0.4);
}
.dive-block a:hover { text-decoration-color: var(--electric); }
.dive-intro { color: var(--steel); font-size: 0.95rem; margin-bottom: 2rem; }
.dive-conclusion {
  color: var(--paper) !important;
  font-size: 1.05rem !important;
  font-weight: 500;
  border-left: 3px solid var(--red);
  padding-left: 1.1rem;
  margin-top: 1.75rem !important;
}
.dive-conclusion strong { color: var(--electric); }
.dive-conclusion a {
  display: inline-block;
  margin-left: 0.4rem;
  color: var(--steel);
  font-size: 0.85rem;
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--steel-dim);
}
.dive-conclusion a:hover { color: var(--paper-dim); }

/* ===== ASTROTURF GRID ===== */
.astroturf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 0.5rem;
}
.astroturf-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.4rem;
}
.astroturf-card h4 {
  font-family: var(--display);
  font-size: 0.98rem;
  margin: 0 0 0.6rem;
  color: var(--paper);
}
.astroturf-card h4 a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--steel-dim);
}
.astroturf-card h4 a:hover { color: var(--electric); }
.astroturf-card p a {
  color: var(--steel);
  font-size: 0.82rem;
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--steel-dim);
}
.astroturf-card p a:hover { color: var(--paper-dim); }
.astroturf-card p {
  font-size: 0.88rem;
  color: var(--paper-dim);
  margin: 0;
  line-height: 1.5;
}
.astroturf-card strong { color: var(--electric); }

@media (max-width: 900px) {
  .astroturf-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .astroturf-grid { grid-template-columns: 1fr; }
}

/* ===== MINIMAL TAKE ACTION ===== */
.take-action-mini {
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  border-top: 1px solid var(--line);
}
.take-action-mini h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.5rem;
}
.btn-large {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.closing-stat {
  text-align: center;
  padding: 1rem 1.5rem 5rem;
  max-width: 720px;
}
.closing-stat-line {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.25;
  margin: 0 0 0.85rem;
  color: var(--paper);
}
.closing-stat-line strong { color: var(--red); }
.closing-stat-line-small {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--paper-dim);
  margin: 0;
}
.closing-stat-line-small strong { color: var(--electric); }
