/* ── Arcane Radar — VOID SIGNAL Design System ──────────────────────────────── */

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  /* Backgrounds — 5-level depth stack */
  --bg-void:         #05050e;
  --bg-base:         #080811;
  --bg-surface:      #0c0c1c;
  --bg-card:         #101022;
  --bg-card-hover:   #161630;
  --bg-raised:       #1c1c38;
  --bg-overlay:      rgba(5, 5, 14, 0.85);

  /* Borders */
  --border-subtle:   rgba(255,255,255,0.04);
  --border:          rgba(255,255,255,0.08);
  --border-mid:      rgba(255,255,255,0.12);
  --border-active:   rgba(124,109,255,0.5);
  --border-signal:   rgba(0,212,255,0.35);
  --border-gold:     rgba(201,168,76,0.5);

  /* Text tiers */
  --text-primary:    #eeeef8;
  --text-secondary:  #9898b8;
  --text-muted:      #56566e;
  --text-dim:        #35354a;
  --text-link:       #8878ff;

  /* Primary accent: Electric Violet */
  --accent:          #7c6dff;
  --accent-dim:      #5044c0;
  --accent-bright:   #9d91ff;
  --accent-glow:     rgba(124,109,255,0.22);
  --accent-glow-sm:  rgba(124,109,255,0.10);
  --accent-pulse:    rgba(124,109,255,0.06);

  /* Secondary: Signal Cyan */
  --cyan:            #00d4ff;
  --cyan-dim:        rgba(0,212,255,0.15);
  --cyan-glow:       rgba(0,212,255,0.18);

  /* Tertiary: Restrained Gold — breaking/priority only */
  --gold:            #c9a84c;
  --gold-dim:        rgba(201,168,76,0.12);
  --gold-glow:       rgba(201,168,76,0.20);

  /* Semantic */
  --green:           #00e676;
  --green-dim:       rgba(0,230,118,0.12);
  --green-glow:      rgba(0,230,118,0.18);
  --red:             #ff4d6d;
  --red-dim:         rgba(255,77,109,0.12);
  --amber:           #ffab40;
  --amber-dim:       rgba(255,171,64,0.12);
  --blue:            #40c4ff;

  /* Shadows & Glows */
  --shadow-sm:       0 1px 6px rgba(0,0,0,0.5);
  --shadow:          0 4px 24px rgba(0,0,0,0.65);
  --shadow-lg:       0 12px 48px rgba(0,0,0,0.8);
  --glow-accent:     0 0 24px rgba(124,109,255,0.28);
  --glow-accent-sm:  0 0 12px rgba(124,109,255,0.18);
  --glow-cyan:       0 0 20px rgba(0,212,255,0.22);
  --glow-green:      0 0 16px rgba(0,230,118,0.20);
  --glow-gold:       0 0 20px rgba(201,168,76,0.25);

  /* Gradients */
  --gradient-hero:   radial-gradient(ellipse 80% 60% at 60% 0%, rgba(124,109,255,0.12) 0%, transparent 65%);
  --gradient-card:   linear-gradient(135deg, rgba(255,255,255,0.025) 0%, transparent 100%);
  --gradient-signal: linear-gradient(180deg, rgba(0,212,255,0.07) 0%, transparent 50%);

  /* Typography */
  --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:    'Space Grotesk', 'Inter', sans-serif;

  /* Geometry */
  --radius:          6px;
  --radius-sm:       3px;
  --radius-lg:       10px;

  /* Layout */
  --max-width:       1200px;
  --sidebar-width:   290px;

  /* Motion */
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap:       cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:        140ms;
  --dur-base:        220ms;
  --dur-slow:        380ms;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--bg-void);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--accent-bright); }
img { max-width: 100%; height: auto; }

/* ── Container ───────────────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.layout-two-col {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 72px;
  align-items: start;
}
@media (max-width: 900px) {
  .layout-two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.site-header {
  background: rgba(5, 5, 14, 0.96);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-primary) 55%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  border: 1px solid var(--border-signal);
  background: var(--cyan-dim);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast);
  position: relative;
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.nav-link--breaking { color: var(--red); }
.nav-link--breaking:hover { color: var(--red); background: var(--red-dim); }
.nav-link--signal { color: var(--amber); }
.nav-link--signal:hover { color: var(--amber); background: var(--amber-dim); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-search-btn { color: var(--text-muted); padding: 6px; transition: color var(--dur-fast); }
.nav-search-btn:hover { color: var(--text-primary); }
.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--glow-accent-sm);
  transition: background var(--dur-fast), box-shadow var(--dur-base) var(--ease-out);
}
.nav-cta:hover { background: var(--accent-bright); box-shadow: var(--glow-accent); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; }

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 14, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 20px;
    gap: 2px;
    z-index: 99;
    backdrop-filter: blur(16px);
  }
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-fast),
              transform var(--dur-fast);
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
  box-shadow: var(--glow-accent-sm);
}
.btn--primary:hover { background: var(--accent-bright); box-shadow: var(--glow-accent); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-active);
}
.btn--outline:hover { background: var(--accent-pulse); color: var(--accent); }
.btn--telegram { background: #229ED9; color: #fff; border-color: rgba(255,255,255,0.08); }
.btn--telegram:hover { background: #1a85b8; color: #fff; box-shadow: 0 0 16px rgba(34,158,217,0.3); }
.btn--sm { font-size: 12px; padding: 6px 14px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero--prime {
  position: relative;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 52px 0;
  overflow: hidden;
}
.hero--prime::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

/* Radar rings — top-right, faint motif */
.hero__rings {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  pointer-events: none;
}
.hero__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(124,109,255,0.07);
}
.hero__ring--1 { width: 100%; height: 100%; }
.hero__ring--2 { width: 67%;  height: 67%; border-color: rgba(124,109,255,0.05); }
.hero__ring--3 { width: 35%;  height: 35%; border-color: rgba(0,212,255,0.06); }
.hero__crosshair-h, .hero__crosshair-v {
  position: absolute;
  background: rgba(124,109,255,0.04);
}
.hero__crosshair-h { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.hero__crosshair-v { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

/* Signal classification bar */
.hero__signal-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.signal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  flex-shrink: 0;
  animation: signal-pulse 2.8s ease-in-out infinite;
}
.signal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}
.signal-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-signal), transparent);
}
@keyframes signal-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--cyan); }
  50%       { opacity: 0.45; box-shadow: 0 0 14px var(--cyan); }
}

/* Wide hero card */
.article-card--wide {
  background: transparent;
  border: none;
  border-left: 2px solid var(--accent);
  padding: 0 0 0 24px;
  border-radius: 0;
}
.article-card--wide:hover { background: transparent; border-color: var(--accent-bright); }
.article-card__title--large {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .article-card__title--large { font-size: 42px; }
}
.article-card__dek--large {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 62ch;
  margin-bottom: 16px;
}

/* ── Article Cards ───────────────────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.articles-grid--sm { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.article-card {
  background: var(--bg-card);
  background-image: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  transition: border-color var(--dur-base) var(--ease-out),
              background-color var(--dur-base),
              box-shadow var(--dur-base),
              transform var(--dur-base) var(--ease-out);
}
.article-card:hover {
  border-color: var(--border-active);
  background-color: var(--bg-card-hover);
  box-shadow: var(--shadow), 0 0 12px var(--accent-glow-sm);
  transform: translateY(-2px);
}
/* Diamond tick on hover */
.article-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px;
  width: 5px; height: 5px;
  background: var(--accent);
  transform: rotate(45deg) translateY(-50%);
  opacity: 0;
  transition: opacity var(--dur-base);
}
.article-card:hover::before { opacity: 1; }

/* Confirmed / Breaking */
.article-card--confirmed {
  border-color: rgba(0,230,118,0.18);
  background-image: linear-gradient(145deg, rgba(0,230,118,0.04) 0%, transparent 55%);
}
.article-card--confirmed:hover {
  border-color: rgba(0,230,118,0.45);
  box-shadow: var(--shadow), var(--glow-green);
}
.article-card--confirmed::before { background: var(--green); }

/* Early Signal */
.article-card--signal {
  border-color: rgba(255,171,64,0.15);
  border-left: 2px solid rgba(255,171,64,0.6);
}
.article-card--signal:hover {
  border-color: rgba(255,171,64,0.4);
  box-shadow: var(--shadow), 0 0 16px rgba(255,171,64,0.1);
}
.article-card--signal::before { background: var(--amber); }

/* Unconfirmed / Rumor */
.article-card--rumor {
  border-style: dashed;
  border-color: var(--border);
  opacity: 0.85;
}
.article-card--rumor:hover {
  opacity: 1;
  border-color: rgba(255,77,109,0.35);
  border-style: dashed;
  box-shadow: var(--shadow), 0 0 12px rgba(255,77,109,0.08);
}

.article-card__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.article-card__category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: color var(--dur-fast);
}
.article-card__category:hover { color: var(--accent-bright); }
.article-card__type { font-size: 10px; color: var(--text-muted); letter-spacing: 0.04em; }
.article-card__title { font-size: 15px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.article-card__title a { color: var(--text-primary); transition: color var(--dur-fast); }
.article-card__title a:hover { color: var(--accent-bright); }
.article-card__dek { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 14px; }
.article-card__footer { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--text-secondary); }
.article-card__cta { margin-left: auto; color: var(--accent); font-weight: 600; font-size: 12px; letter-spacing: 0.04em; }

/* ── Confidence Badges ───────────────────────────────────────────────────── */
.confidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid transparent;
}
.confidence-badge::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.confidence-badge--confirmed {
  color: var(--green);
  background: var(--green-dim);
  border-color: rgba(0,230,118,0.25);
}
.confidence-badge--developing {
  color: var(--blue);
  background: rgba(64,196,255,0.10);
  border-color: rgba(64,196,255,0.22);
}
.confidence-badge--early_signal {
  color: var(--amber);
  background: var(--amber-dim);
  border-color: rgba(255,171,64,0.25);
}
.confidence-badge--unconfirmed {
  color: var(--red);
  background: var(--red-dim);
  border-color: rgba(255,77,109,0.22);
  border-style: dashed;
}

/* ── Section Headers — Intelligence Dividers ─────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 52px 0 20px;
}
.section-header::before {
  content: '';
  width: 3px;
  height: 16px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}
.section-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  white-space: nowrap;
}
.section-title--signal { color: var(--amber); }
.section-title--signal + .section-header::before { background: var(--amber); }
.section-more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-left: auto;
  transition: color var(--dur-fast);
}
.section-more:hover { color: var(--accent); }

/* ── Article Full Page ───────────────────────────────────────────────────── */
.article-full__header {
  margin-bottom: 36px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  position: relative;
}
.article-full__header::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 48px; height: 2px;
  background: var(--accent);
}
.article-full__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.article-full__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .article-full__title { font-size: 44px; }
}
.article-full__dek {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 60ch;
}
.article-full__byline { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.article-full__dot { color: var(--border-mid); }
.article-full__body { font-size: 17px; line-height: 1.8; color: var(--text-secondary); }
.article-full__body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-primary); margin: 36px 0 12px; }
.article-full__body h3 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin: 28px 0 8px; }
.article-full__body p { margin-bottom: 20px; }
.article-full__body ul, .article-full__body ol { padding-left: 24px; margin-bottom: 20px; }
.article-full__body li { margin-bottom: 6px; }
.article-full__body strong { color: var(--text-primary); font-weight: 600; }
.article-full__body a { color: var(--text-link); border-bottom: 1px solid rgba(136,120,255,0.3); transition: border-color var(--dur-fast), color var(--dur-fast); }
.article-full__body a:hover { color: var(--accent-bright); border-bottom-color: var(--accent); }
.article-full__body blockquote {
  border-left: 2px solid var(--accent);
  padding: 2px 18px;
  color: var(--text-muted);
  font-style: italic;
  margin: 28px 0;
  background: rgba(124,109,255,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-full__body pre { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; overflow-x: auto; font-size: 14px; margin: 20px 0; }
.article-full__body hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.article-full__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0; }
.tag {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.tag:hover { border-color: var(--border-active); color: var(--accent); }
.article-full__footer-disclaimer {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 28px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.article-full__cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ── Disclaimer bar ──────────────────────────────────────────────────────── */
.disclaimer-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 171, 64, 0.07);
  border: 1px solid rgba(255, 171, 64, 0.25);
  border-left: 2px solid var(--amber);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--amber);
}
.disclaimer-bar svg { flex-shrink: 0; margin-top: 2px; }
.disclaimer-bar a { color: var(--amber); border-bottom: 1px solid rgba(255,171,64,0.4); }

/* ── Sidebar — Intelligence Rail ─────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-col { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: var(--bg-card);
  background-image: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  position: relative;
}
.sidebar-widget::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 2px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  opacity: 0.45;
}
.sidebar-widget--cta {
  background: linear-gradient(135deg, rgba(124,109,255,0.07) 0%, var(--bg-card) 100%);
  border-color: rgba(124,109,255,0.22);
}
.sidebar-widget--cta::before { opacity: 1; }
.sidebar-widget--telegram {
  background: rgba(34,158,217,0.05);
  border-color: rgba(34,158,217,0.18);
}
.sidebar-widget--telegram::before { background: #229ED9; opacity: 0.7; }
.sidebar-widget__title {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.sidebar-category-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-category-list a {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  display: block;
  transition: color var(--dur-fast);
}
.sidebar-category-list a:hover { color: var(--accent-bright); }
.sidebar-legal-note { font-size: 11px; color: var(--text-muted); line-height: 1.6; }
.sidebar-legal-note a { color: var(--text-muted); border-bottom: 1px solid var(--border); }

/* Email signup */
.email-signup__title { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.email-signup__desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }
.email-signup__btn { width: 100%; }

/* Related list */
.related-list { display: flex; flex-direction: column; gap: 14px; }
.related-item { display: block; transition: opacity var(--dur-fast); }
.related-item:hover { opacity: 0.85; }
.related-item__cat { display: block; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 3px; }
.related-item__title { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
.related-item:hover .related-item__title { color: var(--text-primary); }

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb { margin-bottom: 20px; }
.breadcrumb__list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; color: var(--text-dim); }
.breadcrumb__item + .breadcrumb__item::before { content: "›"; margin-right: 6px; }
.breadcrumb__item a { color: var(--text-dim); transition: color var(--dur-fast); }
.breadcrumb__item a:hover { color: var(--accent); }

/* ── Page headers ────────────────────────────────────────────────────────── */
.page-header { margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border-subtle); }
.page-header__title { font-family: var(--font-display); font-size: 30px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.page-header__desc { font-size: 15px; color: var(--text-secondary); margin-bottom: 8px; }
.page-header__count { font-size: 12px; color: var(--text-muted); }

/* ── Page content (legal pages) ─────────────────────────────────────────── */
.page-content { padding: 48px 0; }
.page-content h1 { font-family: var(--font-display); font-size: 34px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
.page-content h2 { font-size: 19px; font-weight: 600; color: var(--text-primary); margin: 28px 0 10px; }
.page-content p, .page-content li { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 16px; }
.page-content .lead { font-size: 18px; color: var(--text-secondary); margin-bottom: 24px; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 28px 0; }
.pagination__btn { font-size: 13px; font-weight: 600; color: var(--accent); padding: 8px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color var(--dur-fast), background var(--dur-fast); }
.pagination__btn:hover { background: var(--bg-card); border-color: var(--border-active); }
.pagination__info { font-size: 13px; color: var(--text-muted); }

/* ── Search ──────────────────────────────────────────────────────────────── */
.search-form { display: flex; gap: 10px; margin-bottom: 28px; }
.search-form__input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 15px;
  padding: 10px 16px;
  outline: none;
  transition: border-color var(--dur-fast);
  font-family: var(--font-sans);
}
.search-form__input::placeholder { color: var(--text-muted); }
.search-form__input:focus { border-color: var(--border-active); box-shadow: 0 0 0 3px var(--accent-pulse); }
.search-results-count { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

/* ── Empty state ─────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 72px 20px; color: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 52px 0 28px;
  margin-top: 72px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 12px; color: var(--text-muted); margin-bottom: 18px; letter-spacing: 0.04em; }
.footer-social { display: flex; gap: 18px; }
.footer-social a { font-size: 12px; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.04em; transition: color var(--dur-fast); }
.footer-social a:hover { color: var(--accent-bright); }
.footer-nav h4 { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); margin-bottom: 14px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 13px; color: var(--text-secondary); transition: color var(--dur-fast); }
.footer-nav a:hover { color: var(--accent-bright); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-disclaimer { font-size: 11px; color: var(--text-muted); }
.footer-copy { font-size: 11px; color: var(--text-muted); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .article-full__title { font-size: 26px; }
  .article-full__cta-row { flex-direction: column; }
  .hero__rings { display: none; }
}

/* ── Cookie notice ───────────────────────────────────────────────────────── */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 460px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.cookie-notice a { color: var(--text-link); }


/* ══════════════════════════════════════════════════════════════════════════════
   SOCIAL — action bar, share, comments
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Social action bar ────────────────────────────────────────────────────── */
.social-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 16px 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.social-bar__divider {
  width: 1px;
  height: 18px;
  background: var(--border);
  margin: 0 2px;
  flex-shrink: 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast),
              background var(--dur-fast),
              box-shadow var(--dur-fast);
}
.social-btn:hover {
  border-color: var(--border-mid);
  color: var(--text-primary);
  background: var(--bg-card);
}
.social-btn:active { transform: scale(0.97); }

.social-btn__icon { flex-shrink: 0; }

/* Like */
.social-btn--like:hover  { border-color: rgba(255,77,109,0.4); color: var(--red); }
.social-btn--like.is-liked {
  border-color: rgba(255,77,109,0.5);
  background: rgba(255,77,109,0.08);
  color: var(--red);
  box-shadow: 0 0 10px rgba(255,77,109,0.12);
}

/* Save */
.social-btn--save:hover  { border-color: var(--border-gold); color: var(--gold); }
.social-btn--save.is-saved {
  border-color: var(--border-gold);
  background: var(--gold-dim);
  color: var(--gold);
}

/* Copy */
.social-btn--copy:hover { border-color: var(--border-active); color: var(--accent); }

/* Share row */
.social-share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

/* Micro proof */
.social-bar__meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 4px;
  transition: color var(--dur-fast);
}
.social-bar__meta:hover { color: var(--text-secondary); }

.social-bar__badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 2px;
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.2);
}

/* Share To row */
.share-to-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.share-to-row__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-right: 4px;
  white-space: nowrap;
}

/* Icon-only share buttons */
.share-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-sans);
  flex-shrink: 0;
  transition: border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast),
              background var(--dur-fast),
              box-shadow var(--dur-fast),
              transform var(--dur-fast);
}
.share-icon-btn:hover  { background: var(--bg-card); transform: translateY(-1px); }
.share-icon-btn:active { transform: scale(0.93); }

.share-icon-btn--x:hover        { color: #fff;    border-color: rgba(255,255,255,0.25); background: #000; }
.share-icon-btn--facebook:hover { color: #fff;    border-color: #1877f2; background: #1877f2; }
.share-icon-btn--reddit:hover   { color: #fff;    border-color: #ff4500; background: #ff4500; }
.share-icon-btn--telegram:hover { color: #fff;    border-color: #229ed9; background: #229ed9; }
.share-icon-btn--linkedin:hover { color: #fff;    border-color: #0a66c2; background: #0a66c2; }
.share-icon-btn--copy:hover     { color: var(--accent); border-color: var(--border-active); background: var(--accent-pulse); }

/* Copy toast */
.copy-toast {
  position: fixed;
  bottom: 28px;
  right: 24px;
  background: var(--bg-raised);
  border: 1px solid var(--border-active);
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
  box-shadow: var(--glow-accent-sm), var(--shadow);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  pointer-events: none;
  z-index: 9000;
}
.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Comments section ─────────────────────────────────────────────────────── */
.comments-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.comments-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.comments-header__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}
.comments-header__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.comments-empty {
  font-size: 13px;
  color: var(--text-muted);
  padding: 20px 0;
  font-style: italic;
}

/* Individual comment */
.comment {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.comment:last-child { border-bottom: none; }

.comment--new {
  animation: comment-fade-in 0.35s var(--ease-out) forwards;
}
@keyframes comment-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.comment__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.comment__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.comment__dot {
  color: var(--text-dim);
  font-size: 12px;
}
.comment__time {
  font-size: 11px;
  color: var(--text-muted);
}
.comment__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  white-space: pre-wrap;
  word-break: break-word;
}
.comment__actions {
  margin-top: 8px;
}
.comment__report {
  background: none;
  border: none;
  font-size: 11px;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0;
  font-family: var(--font-sans);
  transition: color var(--dur-fast);
}
.comment__report:hover  { color: var(--red); }
.comment__report.is-reported { color: var(--text-muted); cursor: default; }


/* ── Comment form ─────────────────────────────────────────────────────────── */
.comment-form-wrap {
  margin-top: 32px;
}

.comment-form-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.comment-form-cta__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.comment-form-cta__text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  white-space: nowrap;
}

.comment-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}

.comment-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 560px) {
  .comment-form__row { grid-template-columns: 1fr; }
}

.comment-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.comment-form__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.comment-form__optional {
  color: var(--text-dim);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.comment-form__input,
.comment-form__textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--font-sans);
  padding: 9px 12px;
  transition: border-color var(--dur-fast);
  outline: none;
  resize: none;
}
.comment-form__input:focus,
.comment-form__textarea:focus {
  border-color: var(--border-active);
  box-shadow: 0 0 0 2px var(--accent-pulse);
}
.comment-form__input::placeholder,
.comment-form__textarea::placeholder { color: var(--text-dim); }

.comment-form__textarea { width: 100%; min-height: 100px; }

.comment-form__counter {
  font-size: 10px;
  color: var(--text-dim);
  text-align: right;
  margin-top: 3px;
}

.comment-form__honeypot { display: none !important; }

.comment-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.comment-form__note {
  font-size: 11px;
  color: var(--text-dim);
}

.comment-form__feedback {
  margin-top: 10px;
  font-size: 12px;
  min-height: 18px;
}
.comment-form__feedback--error   { color: var(--red); }
.comment-form__feedback--success { color: var(--green); }
.comment-form__feedback--info    { color: var(--amber); }


/* ══════════════════════════════════════════════════════════════════════════════
   ADS — slot containers, dark-theme styling, CLS prevention
   ══════════════════════════════════════════════════════════════════════════════ */

/* Base ad slot container */
.ad-slot {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 10px 12px 8px;
  margin: 28px 0;
  overflow: hidden;
  text-align: center;
}

/* "Advertisement" label */
.ad-slot__label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

/* Reserve space to prevent CLS while ad loads */
.ad-slot--article_top,
.ad-slot--article_bottom { min-height: 120px; }

.ad-slot--sidebar_1 { min-height: 260px; }

/* Sidebar ad — desktop only */
.ad-slot--sidebar_1 {
  margin: 0 0 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .ad-slot--sidebar_1 { display: none; }
}

/* Mobile anchor — fixed bottom strip */
.ad-slot--mobile_anchor {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 6px 12px 8px;
  background: var(--bg-card);
  z-index: 800;
  min-height: 60px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
}
/* Only show anchor on mobile */
@media (min-width: 769px) {
  .ad-slot--mobile_anchor { display: none; }
}

/* Ensure adsbygoogle el doesn't collapse before load */
.ad-slot ins.adsbygoogle {
  display: block;
  min-height: 1px;
}

/* ── PRICE TICKER ─────────────────────────────────────────────────────────── */
.price-ticker {
  width: 100%;
  height: 36px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  /* Hidden until JS populates + adds .ticker--ready */
  visibility: hidden;
}
.price-ticker.ticker--ready {
  visibility: visible;
}

.ticker-track {
  /* inline-flex + max-content lets the track grow beyond the viewport width
     so the translateX animation actually scrolls on all screen sizes */
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  /* animation is intentionally NOT set here — it only starts once
     .ticker--ready is added by JS (after reflow), ensuring the marquee
     always begins at position 0 and doesn't stall on mobile */
  will-change: transform;
}

/* Animation starts only when .ticker--ready is present.
   Combined with void track.offsetWidth in JS this guarantees
   the animation fires from translateX(0) on every platform. */
.ticker--ready .ticker-track {
  animation: ticker-scroll 70s linear infinite;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  font-size: 12px;
  line-height: 36px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.ticker-sep {
  color: var(--text-dim);
  font-size: 10px;
  user-select: none;
  flex-shrink: 0;
  padding: 0 2px;
}

.ticker-token {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.ticker-price {
  color: var(--text-primary);
}

.ticker-change--up   { color: var(--green); }
.ticker-change--down { color: var(--red); }
.ticker-change--flat { color: var(--text-muted); }

/* Arcane Pulse — subtle editorial state label */
.ticker-pulse {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
}
.ticker-pulse--heating  { color: var(--amber); opacity: 0.85; }
.ticker-pulse--bleeding { color: var(--red);   opacity: 0.75; }
.ticker-pulse--active   { color: var(--cyan);  opacity: 0.65; }
.ticker-pulse--faded    { color: var(--text-muted); opacity: 0.5; }
.ticker-pulse--stable   { color: var(--text-secondary); opacity: 0.45; }

/* Reduced motion: stop marquee, allow manual scroll on the container */
@media (prefers-reduced-motion: reduce) {
  .price-ticker {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .price-ticker::-webkit-scrollbar { display: none; }
  .ticker-track { animation: none; }
}

/* Mobile: tighter spacing, hide pulse to save space */
@media (max-width: 600px) {
  .ticker-item  { font-size: 11px; padding: 0 10px; gap: 4px; }
  .ticker-pulse { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* ── v2 Major Fixes — Design System Extensions ─────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ── Typography: section eyebrow + hierarchy ──────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.section-eyebrow svg { color: var(--amber); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.section-header__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}
.section-more {
  font-size: 13px;
  color: var(--text-link);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 2px;
}
.section-more:hover { color: var(--accent-bright); text-decoration: underline; }
.section-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: -0.5rem 0 1rem;
  line-height: 1.5;
}

/* ── Homepage sections — contrast rhythm ─────────────────────────────────── */
.section-hero           { background: var(--bg-void); padding: 2.5rem 0 2rem; }
.section-signals        { background: var(--bg-base); padding: 3rem 0; }
.section-market-pulse   { background: var(--bg-surface); padding: 3rem 0; }
.section-early-signals  { background: var(--bg-base); padding: 3rem 0; }
.section-narratives     { background: var(--bg-surface); padding: 3rem 0; }
.section-tools          { background: var(--bg-raised); padding: 3rem 0; }
.section-offers         { background: var(--bg-surface); padding: 3rem 0; }
.section-latest         { background: var(--bg-base); padding: 3rem 0 4rem; }

.section-title--signal  { color: var(--amber); }

/* Hero layout: primary + secondary columns */
.hero__label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.hero__platform-cta {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}
.hero__platform-cta:hover { color: var(--text-link); }
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}
.hero__primary {}
.hero__secondary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }
  .hero__secondary { display: none; }
}

/* Early signals wrapper: suppress redundant badge */
.article-card-wrap--in-early-signals .confidence-badge--early_signal {
  display: none;
}

/* ── Card variants ──────────────────────────────────────────────────────────── */

/* article-card--signal: compact version for Top Signals grid */
.articles-grid--signals {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}
.articles-grid--signals .article-card {
  padding: 1rem;
}
.articles-grid--signals .article-card__title {
  font-size: 0.95rem;
  -webkit-line-clamp: 3;
}
.articles-grid--signals .article-card__dek {
  display: none;
}

/* Category featured block */
.category-featured {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* ── Tool cards ───────────────────────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.tools-grid--page {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 220ms ease, background 220ms ease;
}
.tool-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
  border-left-color: var(--accent-bright);
}
.tool-card--soon { opacity: 0.7; border-left-color: var(--border-mid); }
.tool-card--beta { border-left-color: var(--cyan); }
.tool-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.tool-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.tool-card__status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
.tool-card__status--live    { background: rgba(0,230,118,0.12); color: var(--green); }
.tool-card__status--beta    { background: rgba(0,212,255,0.12); color: var(--cyan); }
.tool-card__status--coming-soon { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.tool-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.tool-card__footer { margin-top: auto; }
.btn--disabled { opacity: 0.45; pointer-events: none; cursor: default; }

/* ── Offer cards ──────────────────────────────────────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.offers-grid--page {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 220ms ease, background 220ms ease;
}
.offer-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201,168,76,0.7);
}
.offer-card__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.offer-type-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 2px 8px;
  border-radius: 20px;
}
.offer-card__time {
  font-size: 11px;
  color: var(--text-muted);
}
.offer-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.35;
}
.offer-card__title a { color: inherit; text-decoration: none; }
.offer-card__title a:hover { color: var(--gold); }
.offer-card__value {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.offer-card__footer { margin-top: auto; }
.btn--offer {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}
.btn--offer:hover {
  background: rgba(201,168,76,0.22);
  border-color: rgba(201,168,76,0.5);
}

/* Offers featured block */
.offers-featured {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.offers-featured .offer-card {
  max-width: 600px;
}
.offers-disclosure, .resources-disclosure {
  margin-top: 3rem;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.offers-disclosure a, .resources-disclosure a { color: var(--text-link); }

/* ── Tag chips ─────────────────────────────────────────────────────────────── */
.tag-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag-chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.tag-chip:hover {
  background: var(--bg-card-hover);
  color: var(--accent-bright);
  border-color: var(--border-active);
}
.tag-chip--more {
  cursor: default;
  color: var(--text-muted);
}
.article-full__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.article-full__tags-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Tag adjacent topics (tag hub page) */
.tag-adjacent {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.tag-adjacent__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── nav-link--offers accent ──────────────────────────────────────────────── */
.nav-link--offers { color: var(--gold) !important; }
.nav-link--offers:hover { color: #e0bf6a !important; }

/* ── Article discovery stack ──────────────────────────────────────────────── */
.article-discovery {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.discovery-link,
.discovery-callout {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-link);
  text-decoration: none;
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: background 180ms ease, border-color 180ms ease;
}
.discovery-link:hover,
.discovery-callout:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
}

/* Next-step sidebar list */
.nextstep-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nextstep-list a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.nextstep-list a:hover { color: var(--text-link); }

/* ── About page ───────────────────────────────────────────────────────────── */
.about-page { padding: 2rem 0 4rem; }
.about-section { padding: 2rem 0; }
.about-section--hero { padding: 2.5rem 0; }
.about-section--community { padding: 2rem 0 0; }
.about-hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.about-hero__lead {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.about-hero__sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.about-section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem;
}
.about-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
}
.about-list {
  padding-left: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}
.about-list li { margin-bottom: 0.5rem; }
.about-list strong { color: var(--text-primary); }
.about-list--links { list-style: disc; }
.about-list--links a { color: var(--text-link); text-decoration: none; }
.about-list--links a:hover { text-decoration: underline; }
.about-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.about-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.about-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1rem;
}
.about-disclaimer a { color: var(--text-link); }

/* ── Page callout / note blocks ───────────────────────────────────────────── */
.page-callout {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-secondary);
}
.page-callout a { color: var(--text-link); }
.page-header__note {
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  line-height: 1.5;
}
.page-header--centered { text-align: center; }
.page-header--centered .section-eyebrow { display: block; }

/* ── Resources page ───────────────────────────────────────────────────────── */
.resources-section { margin-bottom: 2rem; }
.resources-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}
.resources-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.94rem;
}
.resources-list a { color: var(--text-link); text-decoration: none; }
.resources-list a:hover { text-decoration: underline; }

/* ── Empty state improvements ─────────────────────────────────────────────── */
.empty-state { padding: 2.5rem 0; color: var(--text-secondary); text-align: center; }
.empty-state__suggest { margin-top: 1.25rem; font-size: 14px; color: var(--text-muted); }
.empty-state__links { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 0.75rem; }
.btn--sm { padding: 6px 14px; font-size: 12px; }

/* ── Sidebar platform widget ──────────────────────────────────────────────── */
.sidebar-widget--platform { border-top: 1px solid var(--border-subtle); padding-top: 1rem; }
.sidebar-widget--nextsteps { margin-top: 1rem; }

/* ── Homepage H1 — site-level semantic headline ──────────────────────────── */
.hero__h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0.5rem 0 1.5rem;
}
.hero__h1--empty {
  padding: 2.5rem 0 0;
  font-size: 2rem;
}
@media (max-width: 640px) {
  .hero__h1 { font-size: 1.35rem; }
  .hero__h1--empty { font-size: 1.5rem; }
}
