/* ── Arcane Radar — Institutional Intelligence Design System v3 ──────────── */

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  /* Backgrounds — near-black, no blue tint */
  --bg-void:         #020202;
  --bg-base:         #050507;
  --bg-surface:      #0B0B0D;
  --bg-card:         transparent;
  --bg-card-hover:   rgba(255,255,255,0.025);
  --bg-raised:       #101012;
  --bg-overlay:      rgba(2, 2, 2, 0.94);

  /* Borders — slightly stronger than before */
  --border-subtle:   rgba(255,255,255,0.09);
  --border:          rgba(255,255,255,0.10);
  --border-mid:      rgba(255,255,255,0.18);
  --border-active:   rgba(75,142,240,0.55);
  --border-signal:   rgba(75,142,240,0.35);
  --border-gold:     rgba(180,148,60,0.45);

  /* Text tiers — high contrast against black */
  --text-primary:    #EEEEF0;
  --text-secondary:  #B4BBC8;
  --text-muted:      #7C8496;
  --text-dim:        #525A6A;
  --text-link:       #4B8EF0;

  /* Primary accent: Blue — disciplined, used sparingly */
  --accent:          #4B8EF0;
  --accent-dim:      #1C3A78;
  --accent-bright:   #6FA4FF;
  --accent-glow:     0 0 0 rgba(0,0,0,0);
  --accent-glow-sm:  0 0 0 rgba(0,0,0,0);
  --accent-pulse:    rgba(75,142,240,0.07);

  /* Cyan — aliased to accent for compatibility */
  --cyan:            #4B8EF0;
  --cyan-dim:        rgba(75,142,240,0.08);
  --cyan-glow:       0 0 0 rgba(0,0,0,0);

  /* Gold — offers only, restrained */
  --gold:            #B89240;
  --gold-dim:        rgba(184,146,64,0.08);
  --gold-glow:       0 0 0 rgba(0,0,0,0);

  /* Semantic — functional only (prices, status) */
  --green:           #22c55e;
  --green-dim:       rgba(34,197,94,0.08);
  --green-glow:      0 0 0 rgba(0,0,0,0);
  --red:             #ef4444;
  --red-dim:         rgba(239,68,68,0.08);
  --amber:           #C8870A;
  --amber-dim:       rgba(200,135,10,0.08);
  --blue:            #4B8EF0;

  /* Shadows — flat, no shadows */
  --shadow-sm:       0 0 0 rgba(0,0,0,0);
  --shadow:          0 0 0 rgba(0,0,0,0);
  --shadow-lg:       0 0 0 rgba(0,0,0,0);
  --glow-accent:     0 0 0 rgba(0,0,0,0);
  --glow-accent-sm:  0 0 0 rgba(0,0,0,0);
  --glow-cyan:       0 0 0 rgba(0,0,0,0);
  --glow-green:      0 0 0 rgba(0,0,0,0);
  --glow-gold:       0 0 0 rgba(0,0,0,0);

  /* Gradients — none */
  --gradient-hero:   none;
  --gradient-card:   none;
  --gradient-signal: none;

  /* Typography */
  --font-sans:       'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:    'Source Serif 4', 'IBM Plex Serif', Georgia, serif;

  /* Geometry — sharp, editorial, blocky */
  --radius:          3px;
  --radius-sm:       0px;
  --radius-lg:       4px;

  /* 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; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background-color: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
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(2, 2, 2, 0.98);
  border-bottom: 1px solid var(--border-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 58px;
}

/* Logo — heavier, more authority, slightly larger */
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}
.nav-logo-badge {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  background: transparent;
  padding: 2px 5px;
  border-radius: 0;
}

/* Nav links — uppercase, tight, subdued */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  flex: 1;
}
.nav-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 11px;
  border-radius: 0;
  transition: color var(--dur-fast);
  position: relative;
}
.nav-link:hover { color: var(--text-primary); background: transparent; }

/* All nav variants normalized — no color spotlighting */
.nav-link--breaking { color: var(--text-muted); }
.nav-link--breaking:hover { color: var(--text-primary); background: transparent; }
.nav-link--signal { color: var(--text-muted); }
.nav-link--signal:hover { color: var(--text-primary); background: transparent; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-search-btn {
  color: var(--text-muted);
  padding: 5px;
  font-size: 13px;
  transition: color var(--dur-fast);
  line-height: 1;
}
.nav-search-btn:hover { color: var(--text-secondary); }
.nav-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  background: #E8E8EA;
  color: #060608;
  border-radius: 0;
  border: 1px solid #E8E8EA;
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.nav-cta:hover { background: #ffffff; border-color: #ffffff; color: #000000; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 20px; height: 1px; background: var(--text-secondary); border-radius: 0; }

@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(3, 3, 3, 0.99);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    gap: 2px;
    z-index: 99;
    backdrop-filter: blur(20px);
  }
}

/* ── Buttons — terminal: white-on-void, no hue ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: background var(--dur-fast),
              border-color var(--dur-fast),
              color var(--dur-fast);
}
.btn:active { opacity: 0.8; }

/* Primary — white fill, near-black text. Execute surface. */
.btn--primary {
  background: #E8E8EA;
  color: #060608;
  border-color: #E8E8EA;
}
.btn--primary:hover { background: #ffffff; border-color: #ffffff; color: #000000; }

/* Outline — white border, white text. Secondary action. Inverts on hover. */
.btn--outline {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-mid);
}
.btn--outline:hover {
  background: #E8E8EA;
  border-color: #E8E8EA;
  color: #060608;
}

/* Telegram — same terminal white. Brand color lives in the icon/label context, not the button. */
.btn--telegram { background: #E8E8EA; color: #060608; border-color: #E8E8EA; }
.btn--telegram:hover { background: #ffffff; border-color: #ffffff; color: #000000; }

.btn--sm { font-size: 10px; padding: 6px 12px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero--prime {
  position: relative;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-subtle);
  padding: 36px 0;
  overflow: hidden;
}

/* 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(255,255,255,0.04);
}
.hero__ring--1 { width: 100%; height: 100%; }
.hero__ring--2 { width: 67%;  height: 67%; border-color: rgba(255,255,255,0.03); }
.hero__ring--3 { width: 35%;  height: 35%; border-color: rgba(75,142,240,0.05); }
.hero__crosshair-h, .hero__crosshair-v {
  position: absolute;
  background: rgba(255,255,255,0.03);
}
.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: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
  box-shadow: none;
  flex-shrink: 0;
  animation: signal-pulse 3s ease-in-out infinite;
}
.signal-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  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; }
  50%       { opacity: 0.3; }
}

/* 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: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .article-card__title--large { font-size: 34px; }
}
.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(min(280px, 100%), 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.articles-grid--sm { grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr)); }

.article-card {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  padding: 14px;
  position: relative;
  transition: border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast);
}
.article-card:hover {
  border-color: var(--border-mid);
  background-color: var(--bg-card-hover);
}

/* Confirmed / Breaking */
.article-card--confirmed {
  border-color: rgba(34,197,94,0.18);
}
.article-card--confirmed:hover {
  border-color: rgba(34,197,94,0.35);
}

/* Early Signal */
.article-card--signal {
  border-left: 2px solid rgba(245,158,11,0.5);
}
.article-card--signal:hover {
  border-color: rgba(245,158,11,0.3);
}

/* Unconfirmed / Rumor */
.article-card--rumor {
  border-style: dashed;
  border-color: var(--border);
  opacity: 0.85;
}
.article-card--rumor:hover {
  opacity: 1;
  border-color: rgba(239,68,68,0.25);
  border-style: dashed;
}

.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: 700; line-height: 1.3; margin-bottom: 8px; }
.article-card__title a { color: #ffffff; transition: color var(--dur-fast); }
.article-card__title a:hover { color: var(--text-primary); text-decoration: none; }
.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; }

/* ── Article card image ──────────────────────────────────────────────────── */
.article-card__image {
  display: block;
  margin: -14px -14px 12px -14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.article-card:hover .article-card__image img { transform: scale(1.04); }

.article-card__image--wide {
  margin: 0 0 16px 0;
  aspect-ratio: 16 / 7;
}

/* ── Article banner (detail page) ───────────────────────────────────────── */
.article-banner {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 2px;
}
.article-banner img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}
.article-banner__credit {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.45);
  padding: 2px 7px;
  border-radius: 2px;
  pointer-events: none;
}

/* ── 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: transparent;
  border-color: rgba(34,197,94,0.3);
}
.confidence-badge--developing {
  color: var(--accent);
  background: transparent;
  border-color: var(--border-active);
}
.confidence-badge--early_signal {
  color: var(--amber);
  background: transparent;
  border-color: rgba(200,135,10,0.35);
}
.confidence-badge--unconfirmed {
  color: var(--text-muted);
  background: transparent;
  border-color: var(--border-mid);
  border-style: dashed;
}

/* ── Section Headers — Intelligence Dividers ─────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 16px;
}
.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(--text-secondary); }
.section-title--signal + .section-header::before { background: var(--border-mid); }
.section-more {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: auto;
  transition: color var(--dur-fast);
}
.section-more:hover { color: var(--text-secondary); }

/* ── Article Full Page ───────────────────────────────────────────────────── */
.article-full, .main-content { min-width: 0; }
.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: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .article-full__title { font-size: 34px; }
}
.article-full__dek {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
  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: 15px; line-height: 1.65; color: var(--text-secondary); overflow-wrap: break-word; word-break: break-word; }
.article-full__body h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-primary); margin: 28px 0 10px; line-height: 1.3; }
.article-full__body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text-primary); margin: 22px 0 8px; line-height: 1.3; }
.article-full__body p { margin-bottom: 16px; }
.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(75,142,240,0.04);
  border-radius: 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 table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.article-full__body th, .article-full__body td { padding: 8px 12px; border: 1px solid var(--border); text-align: left; white-space: nowrap; color: var(--text-secondary); }
.article-full__body th { background: var(--bg-surface); color: var(--text-primary); font-weight: 600; }
.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: 3px 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  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 {
  border-top: 1px solid var(--border-subtle);
  padding: 12px 0;
  margin: 24px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.article-full__cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ── Author block ────────────────────────────────────────────────────────── */
.author-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  margin: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.author-block__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-block__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-block__avatar-initials {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.author-block__info { flex: 1; min-width: 0; }
.author-block__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.author-block__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.author-block__role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.author-block__bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 8px 0 0;
}
.author-block__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.author-block__link {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
}
.author-block__link:hover { text-decoration: underline; }

/* ── Disclaimer bar ──────────────────────────────────────────────────────── */
.disclaimer-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-left: 2px solid var(--border-mid);
  border-radius: 0;
  padding: 12px 16px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--text-muted);
}
.disclaimer-bar svg { flex-shrink: 0; margin-top: 2px; }
.disclaimer-bar a { color: var(--text-secondary); border-bottom: 1px solid var(--border); }

/* ── Sidebar — Intelligence Rail ─────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-col { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.sidebar-widget {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 16px 18px;
  position: relative;
}
.sidebar-widget--cta {
  border-color: var(--border);
}
.sidebar-widget--telegram {
  border-color: var(--border);
}
.sidebar-widget--telegram .btn {
  margin-top: 1.25rem;
  width: 100%;
}
.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-base);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  margin-top: 40px;
}
.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-raised);
  border: 1px solid var(--border-mid);
  border-radius: 0;
  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); }
.cookie-notice .btn { background: #E8E8EA; color: #060608; border-color: #E8E8EA; }


/* ══════════════════════════════════════════════════════════════════════════════
   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 10px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: border-color var(--dur-fast),
              color var(--dur-fast);
}
.social-btn:hover {
  border-color: var(--border-mid);
  color: var(--text-secondary);
}
.social-btn:active { opacity: 0.8; }

.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: 0;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-active);
}

/* 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: 30px;
  height: 30px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-sans);
  flex-shrink: 0;
  transition: border-color var(--dur-fast),
              color var(--dur-fast),
              background var(--dur-fast);
}
.share-icon-btn:hover  { border-color: var(--border-mid); color: var(--text-secondary); }
.share-icon-btn:active { opacity: 0.8; }

.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: 0;
  background: transparent;
  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: 34px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border-mid);
  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: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.section-eyebrow svg { color: var(--text-dim); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 1rem;
  gap: 1rem;
}
.section-header__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.01em;
}
.section-more {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.section-more:hover { color: var(--text-secondary); text-decoration: none; }
.section-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: -0.5rem 0 0.75rem;
  line-height: 1.5;
}

/* ── Homepage sections — density-first, flat rhythm ─────────────────────── */
.section-hero           { background: var(--bg-void); padding: 2.25rem 0 1.25rem; position: relative; overflow: hidden; }
.section-signals        { background: transparent; padding: 1.25rem 0; }
.section-market-pulse   { background: transparent; padding: 1.25rem 0; }
.section-early-signals  { background: transparent; padding: 1.25rem 0; }
.section-narratives     { background: transparent; padding: 1.25rem 0; }
.section-tools          { background: transparent; padding: 1rem 0; }
.section-offers         { background: transparent; padding: 1rem 0; }
.section-latest         { background: transparent; padding: 1.25rem 0 2rem; }

.section-title--signal  { color: #ffffff; }

/* 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(min(230px, 100%), 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(min(220px, 100%), 1fr));
  gap: 1.25rem;
}
.tools-grid--page {
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.tool-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
  border-left-color: var(--accent);
}
.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: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.tool-card__status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 0;
  white-space: nowrap;
  border: 1px solid transparent;
}
.tool-card__status--live    { color: var(--green); border-color: rgba(34,197,94,0.3); }
.tool-card__status--beta    { color: var(--accent); border-color: var(--border-active); }
.tool-card__status--coming-soon { color: var(--text-muted); border-color: var(--border); }
.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(min(220px, 100%), 1fr));
  gap: 1.25rem;
}
.offers-grid--page {
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-left: 2px solid var(--gold);
  border-radius: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.offer-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(184,146,64,0.55);
  border-left-color: var(--gold);
}
.offer-card__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.offer-type-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(184,146,64,0.4);
  padding: 2px 6px;
  border-radius: 0;
}
.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-flex;
  align-items: center;
  padding: 7px 14px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(184,146,64,0.45);
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.btn--offer:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* 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: 0;
  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: 3px 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.tag-chip:hover {
  color: var(--text-secondary);
  border-color: var(--border-mid);
}
.tag-chip--more {
  cursor: default;
  color: var(--text-dim);
}
.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: 0;
}
.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: normalized, no accent ─────────────────────────────── */
.nav-link--offers { color: var(--text-muted) !important; }
.nav-link--offers:hover { color: var(--text-primary) !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: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.discovery-link:hover,
.discovery-callout:hover {
  border-color: var(--border-mid);
  color: var(--text-primary);
}

/* 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: var(--font-display);
  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: var(--font-display);
  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: 2px solid var(--accent);
  border-radius: 0;
  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: 2px solid var(--border-mid);
  border-radius: 0;
  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: var(--font-display);
  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.65rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0.5rem 0 1.5rem;
}
.hero__h1--empty {
  padding: 2.5rem 0 0;
  font-size: 2.2rem;
}
@media (max-width: 640px) {
  .hero__h1 { font-size: 1.5rem; }
  .hero__h1--empty { font-size: 1.65rem; }
}

/* ── Markets page ────────────────────────────────────────────────────────── */
.markets-page { padding: 32px 0 60px; }

/* Header */
.markets-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.markets-header__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.markets-header__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.markets-header__link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.markets-header__link:hover { text-decoration: underline; }

/* Movers row */
.markets-movers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.movers-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 16px 18px;
}
.movers-panel__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.movers-panel__period {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: auto;
}
.movers-panel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.movers-panel__dot--up        { background: var(--green); box-shadow: 0 0 6px var(--green-glow); }
.movers-panel__dot--down      { background: var(--red); box-shadow: 0 0 6px var(--red-dim); }
.movers-panel__dot--trending  { background: var(--cyan); box-shadow: 0 0 6px var(--cyan-glow); }

.movers-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.movers-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.movers-item__name {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  flex: 1;
  min-width: 0;
}
.movers-item__name:hover { color: var(--accent); }
.movers-item__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
.movers-item__fullname {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}
.movers-item__price { color: var(--text-secondary); font-size: 12px; white-space: nowrap; }
.movers-item__chg { font-size: 12px; font-weight: 600; white-space: nowrap; }
.movers-item__chg--up   { color: var(--green); }
.movers-item__chg--down { color: var(--red); }
.movers-item__rank { font-size: 11px; color: var(--text-muted); margin-left: auto; }

/* Sectors */
.markets-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.markets-sectors { margin-bottom: 32px; }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 12px;
}
.sector-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
}
.sector-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.sector-card__name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-secondary);
}
.sector-card__avg {
  font-size: 12px;
  font-weight: 600;
}
.sector-card__avg--up   { color: var(--green); }
.sector-card__avg--down { color: var(--red); }

.sector-card__coins { display: flex; flex-wrap: wrap; gap: 8px; }
.sector-coin {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  text-decoration: none;
  font-size: 12px;
  color: var(--text-secondary);
  transition: border-color 0.15s, color 0.15s;
}
.sector-coin:hover { border-color: var(--border-active); color: var(--text-primary); }
.sector-coin__icon { width: 14px; height: 14px; border-radius: 50%; }
.sector-coin__sym { font-weight: 600; color: var(--text-primary); }
.sector-coin__chg { font-size: 11px; }
.sector-coin__chg--up   { color: var(--green); }
.sector-coin__chg--down { color: var(--red); }

/* Top assets table */
.markets-table-section { margin-bottom: 32px; }
.markets-table-wrap {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 0;
}
.markets-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 700px;
}
.markets-table thead tr {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.markets-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  white-space: nowrap;
}
.markets-table .col-rank  { width: 40px; text-align: right; }
.markets-table .col-price { text-align: right; }
.markets-table .col-chg   { text-align: right; width: 72px; }
.markets-table .col-mktcap, .markets-table .col-vol { text-align: right; }
.markets-table .col-pulse { text-align: center; }
.markets-table .col-link  { width: 70px; text-align: right; }

.markets-row {
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.12s;
}
.markets-row:last-child { border-bottom: none; }
.markets-row:hover { background: var(--bg-card-hover); }

.markets-row td {
  padding: 11px 14px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.markets-row .col-rank { color: var(--text-muted); text-align: right; font-size: 12px; }
.markets-row .col-price { text-align: right; color: var(--text-primary); font-weight: 500; }
.markets-row .col-chg { text-align: right; font-weight: 600; }
.markets-row .col-mktcap, .markets-row .col-vol { text-align: right; }

.col-asset {
  display: flex;
  align-items: center;
  gap: 8px;
}
.table-coin-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.table-coin-sym {
  font-weight: 700;
  color: var(--text-primary);
}
.table-coin-name {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chg--up   { color: var(--green) !important; }
.chg--down { color: var(--red) !important; }

/* Pulse badge */
.pulse-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.pulse-badge--heating  { background: transparent; color: var(--amber); border: 1px solid rgba(200,135,10,0.3); }
.pulse-badge--active   { background: transparent; color: var(--accent); border: 1px solid var(--border-active); }
.pulse-badge--stable   { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.pulse-badge--faded    { background: transparent; color: var(--text-dim); border: 1px solid var(--border-subtle); }
.pulse-badge--bleeding { background: transparent; color: var(--red); border: 1px solid rgba(239,68,68,0.3); }

.table-articles-link {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 7px;
  white-space: nowrap;
}
.table-articles-link:hover { color: var(--accent); border-color: var(--border-active); }

/* Misc */
.markets-empty { font-size: 12px; color: var(--text-muted); margin: 8px 0 0; }
.markets-unavailable {
  padding: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
}
.markets-footer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.markets-footer a { color: var(--text-muted); text-decoration: underline; }

/* ── Markets responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .markets-movers { grid-template-columns: 1fr 1fr; }
  .markets-movers .movers-panel:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .markets-movers { grid-template-columns: 1fr; }
  .markets-movers .movers-panel:last-child { grid-column: auto; }
  .markets-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sectors-grid { grid-template-columns: 1fr; }
}

/* ── Newsletter components ───────────────────────────────────────────────── */

/* Section wrapper (homepage) */
.section-newsletter {
  background: var(--bg-surface);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Shared form elements */
.newsletter-form { width: 100%; }
.newsletter-form__row {
  display: flex;
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-mid);
  transition: border-color 0.15s;
}
.newsletter-form__row:focus-within { border-color: var(--accent); }
.newsletter-form__row--sm { border-radius: 0; }

.newsletter-form__input {
  flex: 1;
  min-width: 0;
  background: var(--bg-surface);
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
}
.newsletter-form__input::placeholder { color: var(--text-muted); }
.newsletter-form__input--full {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--border-mid);
  margin-bottom: 8px;
  box-sizing: border-box;
}
.newsletter-form__input--full:focus { border-color: var(--accent); outline: none; }

.newsletter-form__btn {
  background: #E8E8EA;
  color: #060608;
  border: 1px solid #E8E8EA;
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  border-radius: 0;
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.newsletter-form__btn:hover { background: #ffffff; border-color: #ffffff; color: #000000; }
.newsletter-form__btn:disabled { opacity: 0.4; cursor: default; }
.newsletter-form__btn--full {
  display: block;
  width: 100%;
  border-radius: 0;
  padding: 11px;
}
.newsletter-form__btn--sm { padding: 10px 14px; }

.newsletter-form__privacy {
  font-size: 11px;
  color: var(--text-muted);
  margin: 8px 0 0;
  line-height: 1.4;
}
.newsletter-form__privacy a { color: var(--text-muted); text-decoration: underline; }

.newsletter-form__feedback {
  font-size: 12px;
  margin-top: 8px;
  min-height: 18px;
  line-height: 1.4;
}
.newsletter-form__feedback--ok  { color: var(--green); }
.newsletter-form__feedback--err { color: var(--red); }

/* Social proof */
.newsletter-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.newsletter-proof--sm { font-size: 12px; }
.newsletter-proof__icon { color: var(--amber); flex-shrink: 0; }
.newsletter-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

/* ── Hero variant ─────────────────────────────────────────────────────────── */
.newsletter-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.newsletter-hero__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 12px;
}
.newsletter-hero__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 16px;
}
.newsletter-hero__form-wrap { max-width: 420px; }

/* ── Inline variant (article) ─────────────────────────────────────────────── */
.newsletter-inline {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: 0;
  padding: 24px;
  margin: 32px 0;
}
.newsletter-inline__left { flex: 1; min-width: 0; }
.newsletter-inline__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 6px;
}
.newsletter-inline__heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.25;
}
.newsletter-inline__right { flex: 0 0 300px; }

/* ── Sidebar variant (email-signup class kept for existing CSS compat) ────── */
.email-signup__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 6px;
}
.email-signup__title { font-size: 15px; font-weight: 700; margin: 0 0 6px; color: var(--text-primary); }
.email-signup__desc  { font-size: 13px; color: var(--text-secondary); margin: 0 0 12px; }

/* ── Footer variant ───────────────────────────────────────────────────────── */
.newsletter-footer { margin: 14px 0 16px; }
.newsletter-footer__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.newsletter-footer__copy {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 8px;
}

/* ── Newsletter responsive ────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .newsletter-hero { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-hero__form-wrap { max-width: 100%; }
  .newsletter-hero__heading { font-size: 22px; }
}
@media (max-width: 640px) {
  .newsletter-inline { flex-direction: column; gap: 20px; padding: 20px; }
  .newsletter-inline__right { flex: none; width: 100%; }
  .newsletter-form__btn { padding: 11px 14px; font-size: 13px; }
}

/* ── Help / FAQ page ─────────────────────────────────────────────────────── */
.help-page { padding-top: 8px; }

/* Header */
.help-header { margin-bottom: 36px; }
.help-header .section-eyebrow { display: block; margin-bottom: 8px; }
.help-header__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
}
.help-header__sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 540px;
}

/* Search */
.help-search-wrap { margin-bottom: 20px; }
.help-search {
  width: 100%;
  max-width: 420px;
  background: var(--bg-surface);
  border: 1px solid var(--border-mid);
  border-radius: 0;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.help-search::placeholder { color: var(--text-muted); }
.help-search:focus { border-color: var(--accent); }

/* Jump nav */
.help-jumpnav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 4px;
}
.help-jumpnav a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.12s, border-color 0.12s;
}
.help-jumpnav a:hover { color: var(--accent); border-color: var(--accent); }

/* Section */
.help-section { margin: 0; scroll-margin-top: 80px; }
.help-section__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
}

/* FAQ accordion — native <details>/<summary> */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: 6px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--border-mid); }
.faq-item[open] .faq-item__q { color: var(--text-primary); }

.faq-item__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  gap: 12px;
  transition: color 0.12s, background 0.12s;
}
.faq-item__q:hover { color: var(--text-primary); background: var(--bg-card-hover); }
.faq-item__q::-webkit-details-marker { display: none; }

/* Chevron via pseudo-element */
.faq-item__q::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-item__q::after {
  content: '−';
}

.faq-item__a {
  padding: 0 16px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item__a p { margin: 0 0 10px; }
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__a ul, .faq-item__a ol {
  margin: 6px 0 10px 18px;
  padding: 0;
}
.faq-item__a li { margin-bottom: 5px; }
.faq-item__a strong { color: var(--text-primary); font-weight: 600; }
.faq-item__a a { color: var(--accent); text-decoration: none; }
.faq-item__a a:hover { text-decoration: underline; }

/* Label definitions inside FAQ */
.faq-label-list { margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.faq-label-item { display: flex; gap: 12px; align-items: flex-start; }
.faq-label-item dt { flex-shrink: 0; padding-top: 1px; }
.faq-label-item dd { margin: 0; font-size: 13px; color: var(--text-secondary); }

/* Inline confidence label badges (mirroring article card badges) */
.confidence-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.confidence-label--confirmed    { background: var(--green-dim); color: var(--green); }
.confidence-label--developing   { background: rgba(64,196,255,0.10); color: var(--blue); }
.confidence-label--early_signal { background: var(--amber-dim); color: var(--amber); }
.confidence-label--unconfirmed  { background: var(--red-dim); color: var(--red); }

/* Still need help block */
.help-contact {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 28px 28px 24px;
  margin-top: 8px;
  text-align: center;
}
.help-contact__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
}
.help-contact__body {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 20px;
  line-height: 1.6;
}
.help-contact__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.help-contact__hint {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.help-contact__hint strong { color: var(--text-secondary); }

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Help page responsive ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .help-header__title { font-size: 24px; }
  .help-search { max-width: 100%; }
  .faq-item__q { font-size: 13px; padding: 12px 14px; }
  .help-contact { padding: 20px; }
  .help-contact__actions { flex-direction: column; }
}

/* ── Social Distribution Grid ─────────────────────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 12px;
  margin: 0 0 8px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  text-decoration: none;
  color: var(--text-primary);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.social-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
  text-decoration: none;
}

.social-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
}
.social-card--telegram .social-card__icon  { color: #29b6f6; border-color: rgba(41,182,246,0.25); }
.social-card--twitter .social-card__icon   { color: var(--text-secondary); }
.social-card--reddit .social-card__icon    { color: var(--text-secondary); }
.social-card--medium .social-card__icon    { color: var(--text-secondary); }
.social-card--facebook .social-card__icon  { color: var(--text-secondary); }
.social-card--whop .social-card__icon      { color: var(--accent); border-color: var(--border-active); }
.social-card--rss .social-card__icon       { color: var(--text-secondary); }

.social-card:hover .social-card__icon { filter: brightness(1.15); }

.social-card__body { flex: 1; min-width: 0; }
.social-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.social-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card__arrow {
  font-size: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}
.social-card:hover .social-card__arrow {
  color: var(--accent);
  transform: translateX(2px);
}

/* Hover border: all cards normalize to same treatment */
.social-card--telegram:hover  { border-color: rgba(41,182,246,0.3); }
.social-card--twitter:hover   { border-color: var(--border-mid); }
.social-card--reddit:hover    { border-color: var(--border-mid); }
.social-card--medium:hover    { border-color: var(--border-mid); }
.social-card--facebook:hover  { border-color: var(--border-mid); }
.social-card--whop:hover      { border-color: var(--border-active); }
.social-card--rss:hover       { border-color: var(--border-mid); }

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

/* ── Directory Page ────────────────────────────────────────────────────────── */
.directory-page { padding-bottom: 64px; }

.directory-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 0;
  margin-bottom: 40px;
}
.directory-header__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 8px 0 12px;
}
.directory-header__desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Category tabs */
.directory-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding-bottom: 0;
  overflow-x: auto;
}
.directory-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 0;
  border: 1px solid transparent;
  border-bottom: none;
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.directory-tab:hover { color: var(--text-primary); background: var(--bg-card); }
.directory-tab--active {
  color: var(--text-primary);
  background: var(--bg-base);
  border-color: var(--border);
  border-bottom-color: var(--bg-base);
}
.directory-tab__count {
  font-size: 11px;
  background: var(--bg-raised);
  color: var(--text-muted);
  border-radius: 10px;
  padding: 1px 6px;
}
.directory-tab--active .directory-tab__count {
  background: var(--accent);
  color: #fff;
}

.directory-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Featured row */
.directory-featured { margin-bottom: 40px; }
.directory-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 12px;
}
.dir-featured-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  text-decoration: none;
  color: var(--text-primary);
  transition: background var(--dur-fast), border-color var(--dur-fast);
  position: relative;
}
.dir-featured-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.dir-featured-card__icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.dir-featured-card__body { flex: 1; min-width: 0; }
.dir-featured-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.dir-featured-card__cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
}
.dir-featured-card__tagline {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.dir-featured-card__arrow {
  font-size: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}
.dir-featured-card:hover .dir-featured-card__arrow {
  color: var(--accent);
  transform: translateX(2px);
}

/* Main listing grid */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.dir-card {
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  text-decoration: none;
  color: var(--text-primary);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.dir-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.dir-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.dir-card__icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.dir-card__meta { flex: 1; min-width: 0; }
.dir-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dir-card__cat {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}
.dir-card__badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-active);
  flex-shrink: 0;
}
.dir-card__tagline {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
}
.dir-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}
.dir-card__link {
  font-size: 11px;
  color: var(--text-muted);
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}
.dir-card__cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform 0.15s;
}
.dir-card:hover .dir-card__cta { transform: translateX(2px); }

.directory-footer-note {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.directory-footer-note a { color: var(--text-link); }

/* ── Directory Listing Detail ──────────────────────────────────────────────── */
.dir-listing-page {}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb__sep { color: var(--text-dim); }

.dir-listing-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.dir-listing-icon {
  font-size: 52px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}
.dir-listing-header__body { flex: 1; }
.dir-listing-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}
.dir-listing-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.1;
}
.dir-listing-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.dir-listing-desc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.dir-listing-desc p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.dir-listing-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dir-listing-cta__btn { flex-shrink: 0; }
.dir-listing-cta__url {
  font-size: 12px;
  color: var(--text-muted);
  font-family: monospace;
}

.dir-listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.dir-listing-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* Related articles */
.dir-listing-related { margin-bottom: 36px; }
.dir-related-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dir-related-item__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s;
}
.dir-related-item__link:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.dir-related-item__body {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.dir-related-item__title {
  font-size: 13px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dir-related-item__cat {
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.dir-related-more {
  font-size: 13px;
  color: var(--text-link);
  text-decoration: none;
}
.dir-related-more:hover { text-decoration: underline; }

/* Sibling listings */
.dir-listing-siblings { margin-bottom: 36px; }
.dir-siblings-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.dir-sibling-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s;
}
.dir-sibling-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.dir-sibling-card__icon { font-size: 20px; flex-shrink: 0; }
.dir-sibling-card__body { flex: 1; min-width: 0; }
.dir-sibling-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.dir-sibling-card__tagline {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dir-listing-disclosure {
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  margin-top: 8px;
  line-height: 1.6;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .directory-tabs { gap: 2px; }
  .directory-tab { padding: 7px 10px; font-size: 12px; }
  .directory-featured-grid { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: 1fr; }
  .dir-listing-header { flex-direction: column; gap: 12px; }
  .dir-listing-icon { font-size: 40px; }
  .dir-listing-cta { flex-direction: column; align-items: flex-start; }
}

/* ── Media Kit ─────────────────────────────────────────────────────────────── */
.media-kit__header { margin-bottom: 32px; }
.media-kit__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 8px 0 12px;
}
.media-kit__lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
}

.mk-section { margin-bottom: 8px; }
.mk-section__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.mk-section__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Brand facts grid */
.mk-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.mk-fact {
  background: var(--bg-card);
  padding: 14px 18px;
}
.mk-fact__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.mk-fact__value {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
}
.mk-fact__value a { color: var(--text-link); text-decoration: none; }
.mk-fact__value a:hover { text-decoration: underline; }

/* Boilerplate block */
.mk-boilerplate {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 20px;
}
.mk-boilerplate__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 10px;
}
.mk-boilerplate__text {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: normal;
  border: none;
  padding: 0;
}

/* Asset cards */
.mk-assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.mk-asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.mk-asset-card__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 16px;
}
.mk-asset-card__preview--dark { background: var(--bg-void); }
.mk-asset-card__preview--light { background: #f0f0f5; }
.mk-asset-card__img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
.mk-asset-card__img--invert { filter: invert(1) brightness(0.2); }
.mk-asset-card__img--wide { max-height: 60px; width: 100%; object-fit: cover; }
.mk-asset-card__meta { padding: 14px 16px; }
.mk-asset-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mk-asset-card__note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.mk-asset-card__dl {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.mk-asset-card__dl:hover { text-decoration: underline; }

/* Brand colors */
.mk-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mk-color {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  flex: 1;
  min-width: 160px;
}
.mk-color__swatch {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}
.mk-color__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.mk-color__hex {
  font-size: 12px;
  font-family: monospace;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.mk-color__role {
  font-size: 11px;
  color: var(--text-muted);
}

/* Usage guidelines */
.mk-guidelines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mk-guideline {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.mk-guideline--do { border-top: 2px solid var(--green, #22c55e); }
.mk-guideline--dont { border-top: 2px solid var(--red, #ef4444); }
.mk-guideline__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mk-guideline--do .mk-guideline__icon { color: var(--green, #22c55e); font-size: 15px; }
.mk-guideline--dont .mk-guideline__icon { color: var(--red, #ef4444); font-size: 15px; }
.mk-guideline__list {
  margin: 0;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mk-guideline__list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Key facts list */
.mk-facts-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.mk-facts-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card);
}
.mk-facts-item:last-child { border-bottom: none; }
.mk-facts-item:nth-child(even) { background: var(--bg-surface); }
.mk-facts-item__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 160px;
}
.mk-facts-item__value {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Press CTA */
.mk-press-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.mk-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.mk-note a { color: var(--text-link); text-decoration: none; }
.mk-note a:hover { text-decoration: underline; }

@media (max-width: 680px) {
  .mk-facts-grid { grid-template-columns: 1fr; }
  .mk-assets-grid { grid-template-columns: 1fr; }
  .mk-guidelines { grid-template-columns: 1fr; }
  .mk-facts-item { flex-direction: column; gap: 4px; }
  .mk-facts-item__label { width: auto; }
  .mk-colors { flex-direction: column; }
  .mk-press-actions { flex-direction: column; }
}

/* ── Glossary ──────────────────────────────────────────────────────────────── */
.glossary-page { padding-bottom: 64px; }

.glossary-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 0;
  margin-bottom: 40px;
}
.glossary-header__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 8px 0 10px;
}
.glossary-header__desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Search */
.glossary-search-wrap {
  position: relative;
  max-width: 420px;
  margin-bottom: 20px;
}
.glossary-search {
  width: 100%;
  padding: 10px 40px 10px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.glossary-search:focus { outline: none; border-color: var(--accent); }
.glossary-search::placeholder { color: var(--text-muted); }
.glossary-search__clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
}
.glossary-search__clear:hover { color: var(--text-primary); }

/* Category pills */
.glossary-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.glossary-cat {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  text-decoration: none;
  transition: color var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}
.glossary-cat:hover { color: var(--text-secondary); border-color: var(--border-mid); }
.glossary-cat--active {
  color: var(--accent);
  border-color: var(--border-active);
  background: transparent;
}

/* Alphabet jump nav */
.glossary-alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding-bottom: 20px;
}
.glossary-alpha-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.12s, background 0.12s;
}
.glossary-alpha-link:hover { color: var(--text-primary); background: var(--bg-card); }

/* Letter section */
.glossary-letter-section { margin-bottom: 40px; }
.glossary-letter-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* Results header */
.glossary-results-header {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.glossary-results-header strong { color: var(--text-primary); }
.glossary-results-header a { color: var(--text-link); text-decoration: none; }
.glossary-results-header a:hover { text-decoration: underline; }

/* Card grid */
.glossary-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 10px;
}
.glos-card {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  text-decoration: none;
  color: var(--text-primary);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.glos-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.glos-card__header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.glos-card__term {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.glos-card__abbr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--border-active);
  border-radius: 0;
  padding: 1px 5px;
}
.glos-card__short {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 10px;
  flex: 1;
}
.glos-card__cat {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-top: auto;
}

/* Footer note */
.glossary-footer-note {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.glossary-footer-note a { color: var(--text-link); }

/* ── Glossary Term Detail ──────────────────────────────────────────────────── */
.glos-term-page {}

.glos-term-header { margin-bottom: 24px; }
.glos-term-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.glos-cat-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.glos-also {
  font-size: 12px;
  color: var(--text-muted);
}

.glos-term-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.glos-term-abbr {
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--border-active);
  border-radius: 0;
  padding: 3px 8px;
  vertical-align: middle;
}
.glos-term-short {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.glos-definition {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 32px;
}
.glos-definition p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.glos-section { margin-bottom: 32px; }
.glos-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* Related term chips */
.glos-related-terms {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.glos-rel-chip {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s;
}
.glos-rel-chip:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.glos-rel-chip__term {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}
.glos-rel-chip__abbr {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--border-active);
  border-radius: 0;
  padding: 1px 5px;
  flex-shrink: 0;
}
.glos-rel-chip__short {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Related articles */
.glos-related-articles {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.glos-article-link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s;
}
.glos-article-link:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.glos-article-title {
  font-size: 13px;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.glos-article-cat {
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.glos-search-link {
  font-size: 13px;
  color: var(--text-link);
  text-decoration: none;
}
.glos-search-link:hover { text-decoration: underline; }

/* Back row */
.glos-back-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.glos-back-link {
  font-size: 13px;
  color: var(--text-link);
  text-decoration: none;
}
.glos-back-link:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
  .glossary-card-grid { grid-template-columns: 1fr; }
  .glossary-search-wrap { max-width: 100%; }
  .glos-rel-chip__short { display: none; }
  .glos-term-name { font-size: 26px; }
  .glos-definition { padding: 16px 18px; }
}

/* ── Reviews ───────────────────────────────────────────────────────────────── */

/* Verdict badges */
.rev-verdict-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 1px solid var(--border-mid);
  color: var(--text-secondary);
  background: transparent;
}
.rev-verdict-badge--lg { font-size: 11px; padding: 4px 12px; }
.verdict--best    { color: var(--green);  border-color: rgba(34,197,94,0.35); }
.verdict--good    { color: var(--accent); border-color: var(--border-active); }
.verdict--mixed   { color: var(--amber);  border-color: rgba(200,135,10,0.35); }
.verdict--below   { color: var(--text-muted); border-color: var(--border-mid); }
.verdict--poor    { color: var(--red);    border-color: rgba(239,68,68,0.35); }

/* Score display */
.rev-score {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}
.rev-score--lg { font-size: 28px; }
.rev-score__label, .rev-score__denom {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Reviews Hub Page ──────────────────────────────────────────────────────── */
.reviews-page { padding-bottom: 64px; }

.reviews-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 0;
  margin-bottom: 40px;
}
.reviews-header__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 8px 0 10px;
}
.reviews-header__desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Tabs */
.reviews-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding-bottom: 0;
}
.reviews-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 6px 6px 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.reviews-tab:hover { color: var(--text-primary); background: var(--bg-card); }
.reviews-tab--active {
  color: var(--text-primary);
  background: var(--bg-base);
  border-color: var(--border);
  border-bottom-color: var(--bg-base);
}
.reviews-tab__count {
  font-size: 10px;
  background: var(--bg-raised);
  color: var(--text-muted);
  border-radius: 10px;
  padding: 1px 6px;
}
.reviews-tab--active .reviews-tab__count {
  background: var(--accent);
  color: #fff;
}

.reviews-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Featured grid */
.reviews-featured { margin-bottom: 40px; }
.reviews-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 14px;
}
.rev-featured-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.rev-featured-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-2px);
}
.rev-featured-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rev-featured-card__icon { font-size: 32px; line-height: 1; }
.rev-featured-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.rev-featured-card__tagline {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.rev-featured-card__cat {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* Reviews list (row layout) */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 40px;
}
.rev-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.12s, border-color 0.12s;
}
.rev-row:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.rev-row__icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.rev-row__body { flex: 1; min-width: 0; }
.rev-row__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.rev-row__tagline {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}
.rev-row__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rev-row__cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.rev-row__tested {
  font-size: 11px;
  color: var(--text-muted);
}
.rev-row__affiliate {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-raised);
  border-radius: 3px;
  padding: 1px 6px;
}
.rev-row__right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.rev-row__score {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

/* Methodology note */
.reviews-methodology {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.reviews-methodology__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.reviews-methodology a { color: var(--text-link); text-decoration: none; }
.reviews-methodology a:hover { text-decoration: underline; }

/* ── Review Detail Page ────────────────────────────────────────────────────── */
.review-full { min-width: 0; }

.review-full__header { margin-bottom: 24px; }
.review-full__icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-full__icon { font-size: 44px; line-height: 1; }
.review-full__header-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-full__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.review-full__tested {
  font-size: 12px;
  color: var(--text-muted);
}
.review-full__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.15;
}
.review-full__tagline {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 8px;
}
.review-full__byline {
  font-size: 13px;
  color: var(--text-muted);
}

/* Disclosure */
.review-disclosure {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(234,179,8,0.06);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}
.review-disclosure--sponsored {
  background: rgba(99,102,241,0.06);
  border-color: rgba(99,102,241,0.2);
}
.review-disclosure__icon { color: var(--text-muted); flex-shrink: 0; font-style: normal; }
.review-disclosure a { color: var(--text-link); text-decoration: none; }
.review-disclosure a:hover { text-decoration: underline; }

/* Score card */
.review-scorecard {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.review-scorecard__score-block {
  flex-shrink: 0;
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.review-scorecard__number {
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.review-scorecard__int {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.review-scorecard__sep {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
  margin: 0 1px;
}
.review-scorecard__dec {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1;
}
.review-scorecard__denom {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}
.review-scorecard__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-scorecard__verdict {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.review-scorecard__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.review-scorecard__cta-note {
  font-size: 11px;
  color: var(--text-muted);
}

/* Summary */
.review-summary {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--bg-surface);
  border-left: 3px solid var(--border-signal);
  border-radius: 0 8px 8px 0;
}
.review-summary p { margin: 0; }

/* Pros & Cons */
.review-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.review-proscons__col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.review-proscons__col--pros { border-top: 2px solid var(--green, #22c55e); }
.review-proscons__col--cons { border-top: 2px solid var(--red, #ef4444); }
.review-proscons__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-proscons__icon--pro { color: var(--green, #22c55e); }
.review-proscons__icon--con { color: var(--red, #ef4444); }
.review-proscons__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-proscons__list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.review-proscons__col--pros .review-proscons__list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--green, #22c55e);
  font-weight: 700;
}
.review-proscons__col--cons .review-proscons__list li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--red, #ef4444);
  font-weight: 700;
}

/* Bottom CTA */
.review-bottom-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.review-bottom-cta__note {
  font-size: 11px;
  color: var(--text-muted);
}

/* Related articles */
.review-related { margin-bottom: 28px; }
.review-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.rev-article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rev-article-link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s;
}
.rev-article-link:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.rev-article-title {
  font-size: 13px;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rev-article-cat {
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.review-related__more {
  font-size: 13px;
  color: var(--text-link);
  text-decoration: none;
}
.review-related__more:hover { text-decoration: underline; }

/* Sidebar siblings */
.rev-siblings {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.rev-sibling {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s;
}
.rev-sibling:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
}
.rev-sibling__icon { font-size: 20px; flex-shrink: 0; }
.rev-sibling__body { flex: 1; min-width: 0; }
.rev-sibling__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.rev-sibling__verdict { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.rev-sibling__score {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}
.sidebar-more-link {
  display: block;
  font-size: 12px;
  color: var(--text-link);
  text-decoration: none;
  margin-top: 4px;
}
.sidebar-more-link:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .reviews-featured-grid { grid-template-columns: 1fr; }
  .review-scorecard { flex-direction: column; gap: 16px; }
  .review-scorecard__score-block { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 16px; text-align: left; display: flex; align-items: baseline; gap: 10px; }
  .review-scorecard__denom { margin-top: 0; }
  .review-proscons { grid-template-columns: 1fr; }
  .rev-row__tagline { display: none; }
  .rev-row__right { align-items: flex-end; }
}


/* ══════════════════════════════════════════════════════════════════════════════
   V3 — Institutional Intelligence Overrides & New Components
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Section backgrounds: flatten the contrast rhythm ─────────────────────── */
.section-hero,
.section-signals,
.section-market-pulse,
.section-early-signals,
.section-narratives,
.section-tools,
.section-offers,
.section-latest { background: transparent; }

/* ── Hero: remove pulsing cyan dot ──────────────────────────────────────────── */
.signal-dot {
  background: var(--accent);
  box-shadow: none;
  animation: none;
}
.signal-label { color: var(--accent); }
.signal-line { background: linear-gradient(to right, var(--border-signal), transparent); }

/* Radar rings: tone down further */
.hero__ring { border-color: rgba(59,130,246,0.05); }
.hero__ring--3 { border-color: rgba(59,130,246,0.04); }
.hero__crosshair-h,
.hero__crosshair-v { background: rgba(59,130,246,0.03); }

/* ── Article card: title hover underline ────────────────────────────────────── */
.article-card__title--large a { color: var(--text-primary); transition: opacity var(--dur-fast); }
.article-card__title--large a:hover { opacity: 0.85; text-decoration: underline; }

/* ── Article: Key Takeaways block ───────────────────────────────────────────── */
.article-takeaways {
  border-left: 2px solid var(--accent);
  padding: 14px 18px;
  margin: 24px 0;
  background: rgba(59,130,246,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-takeaways__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
}
.article-takeaways__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.article-takeaways__list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.article-takeaways__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Article: Why It Matters block ─────────────────────────────────────────── */
.article-why-matters {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  margin: 24px 0;
}
.article-why-matters__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.article-why-matters p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── Page header: use serif ──────────────────────────────────────────────────── */
.page-header__title { font-family: var(--font-display); }
.page-content h1 { font-family: var(--font-display); }
.page-content h2 { font-family: var(--font-display); }

/* ── Footer: simplify background ───────────────────────────────────────────── */
.site-footer { background: var(--bg-base); }

/* ── Btn: remove glow from all buttons ──────────────────────────────────────── */
.btn--primary { box-shadow: none; }
.btn--primary:hover { box-shadow: none; }
.btn--telegram:hover { box-shadow: none; }

/* ── Social share icon buttons: remove hover lift ──────────────────────────── */
.share-icon-btn:hover { transform: none; }

/* ── Mobile nav: match new bg ───────────────────────────────────────────────── */
.site-header { background: rgba(10,13,20,0.97); }
@media (max-width: 768px) {
  .nav-links.is-open { background: rgba(10,13,20,0.99); }
}

/* ── Mobile article title ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .article-full__title { font-size: 22px; }
}

/* ── Media Kit v3 Styles ─────────────────────────────────────────────────── */
.mk3-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 0 72px;
}

.mk3-header {
  padding-bottom: 32px;
}
.mk3-header__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.mk3-header__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .mk3-header__title { font-size: 28px; }
}
.mk3-header__sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 20px;
}
.mk3-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.mk3-header__meta a { color: var(--accent); }
.mk3-sep { color: var(--border-mid); }

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

.mk3-section { padding: 8px 0; }
.mk3-section--contact { padding: 8px 0 0; }

.mk3-section__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.mk3-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.mk3-body--lead {
  font-size: 16px;
  color: var(--text-secondary);
}

.mk3-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.mk3-note a { color: var(--accent); }

/* Two-column layout for overview */
.mk3-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 700px) {
  .mk3-two-col { grid-template-columns: 1fr; gap: 20px; }
}

/* Facts box */
.mk3-facts-box {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}
.mk3-fact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
  line-height: 1.45;
}
.mk3-fact-row:last-child { border-bottom: none; }
.mk3-fact-row__label { color: var(--text-muted); font-weight: 500; }
.mk3-fact-row__value { color: var(--text-secondary); }

/* Audience grid */
.mk3-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .mk3-audience-grid { grid-template-columns: 1fr; }
}
.mk3-audience-block {
  padding: 16px 18px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.mk3-audience-block:nth-child(even) { border-right: none; }
.mk3-audience-block:nth-last-child(-n+2) { border-bottom: none; }
.mk3-audience-block__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.mk3-audience-block__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Metrics */
.mk3-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}
@media (max-width: 600px) {
  .mk3-metrics-row { grid-template-columns: 1fr 1fr; }
}
.mk3-metric {
  padding: 20px 16px;
  border-right: 1px solid var(--border-subtle);
  text-align: center;
}
.mk3-metric:last-child { border-right: none; }
.mk3-metric__value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1;
}
.mk3-metric__label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Placements */
.mk3-placements {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}
.mk3-placement {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.mk3-placement:last-child { border-bottom: none; }
.mk3-placement__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.mk3-placement__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.mk3-placement__tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--border-signal);
  background: var(--accent-pulse);
  padding: 2px 7px;
  border-radius: 2px;
}
.mk3-placement__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Colors */
.mk3-colors {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.mk3-color-block { display: flex; flex-direction: column; gap: 6px; }
.mk3-color-block__swatch {
  width: 56px;
  height: 40px;
  border-radius: var(--radius);
}
.mk3-color-block__label { font-size: 11px; color: var(--text-muted); }
.mk3-color-block__hex { font-size: 12px; color: var(--text-secondary); font-weight: 600; font-family: monospace; }

.mk3-style-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.mk3-style-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.mk3-style-note strong { color: var(--text-secondary); }

/* Assets */
.mk3-assets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 12px;
}
@media (max-width: 700px) {
  .mk3-assets { grid-template-columns: 1fr; }
}
.mk3-asset {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}
.mk3-asset__preview {
  background: var(--bg-surface);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border-bottom: 1px solid var(--border-subtle);
}
.mk3-asset__preview--light { background: #f0f0f0; }
.mk3-asset__img { max-height: 60px; width: auto; }
.mk3-asset__img--invert { filter: invert(1); }
.mk3-asset__info { padding: 14px; }
.mk3-asset__name { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.mk3-asset__note { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.mk3-asset__dl { font-size: 12px; color: var(--accent); text-decoration: none; }
.mk3-asset__dl:hover { text-decoration: underline; }

/* Guidelines */
.mk3-guidelines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .mk3-guidelines { grid-template-columns: 1fr; }
}
.mk3-guideline {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}
.mk3-guideline__head {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.mk3-guideline__head--yes { color: var(--green); background: rgba(34,197,94,0.05); }
.mk3-guideline__head--no  { color: var(--red);   background: rgba(239,68,68,0.05); }
.mk3-guideline__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mk3-guideline__list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.mk3-guideline__list li:last-child { border-bottom: none; }

/* Boilerplate */
.mk3-boilerplate {
  border-left: 2px solid var(--border-mid);
  padding: 14px 18px;
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
}

/* Contact row */
.mk3-contact-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════════════════════════
   ARCANE RADAR — Editorial Authority Refresh v4
   Sharper. Denser. More editorial. Institutional credibility.
   ══════════════════════════════════════════════════════════════════════════════ */


/* ── TYPOGRAPHY: DOMINANT HIERARCHY ─────────────────────────────────────────── */

/* Homepage H1 — semantic anchor, must dominate the viewport */
.hero__h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0.3rem 0 1rem;
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .hero__h1 { font-size: 3.2rem; }
}
@media (max-width: 640px) {
  .hero__h1 { font-size: 1.85rem; }
}

/* Section titles — authoritative, not subdued */
.section-title {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
}

/* Standard article card title — clearer visual weight */
.article-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

/* Hero lead card headline — must come AFTER .article-card__title so --large wins */
.article-card__title--large {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .article-card__title--large { font-size: 42px; }
}

/* All deks recede — support the headline, don't crowd it */
.article-card__dek {
  font-size: 13px;
  opacity: 0.72;
  margin-bottom: 10px;
}

/* Hero lead card dek — larger than regular dek; must come AFTER .article-card__dek
   so the --large class wins for elements with both classes */
.article-card__dek--large {
  font-size: 16px;
  color: var(--text-secondary);
  opacity: 0.72;
  line-height: 1.5;
  max-width: 60ch;
  margin-bottom: 14px;
}

/* Article full page — definitive editorial headline */
.article-full__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.13;
  margin-bottom: 12px;
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .article-full__title { font-size: 44px; }
}
@media (max-width: 768px) {
  .article-full__title { font-size: 26px; }
}

/* Article dek — present, authoritative, but receded */
.article-full__dek {
  font-size: 18px;
  color: var(--text-secondary);
  opacity: 0.78;
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 58ch;
}

/* Article body — tighter but more readable rhythm */
.article-full__body {
  font-size: 16px;
  line-height: 1.72;
}
.article-full__body h2 {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
}
.article-full__body h3 {
  font-size: 18px;
  margin: 26px 0 8px;
}
.article-full__body p { margin-bottom: 20px; }


/* ── DENSITY: PUBLICATION-GRADE COMPRESSION ──────────────────────────────────── */

/* Section spacing — publication density with breathing room between sections */
.section-hero           { padding: 1rem 0 0.85rem; }
.section-signals        { padding: 1rem 0; }
.section-market-pulse   { padding: 1rem 0; }
.section-early-signals  { padding: 1.25rem 0 1.4rem; }
.section-narratives     { padding: 1rem 0; }
.section-tools          { padding: 0.9rem 0; }
.section-offers         { padding: 0.9rem 0; }
.section-latest         { padding: 1rem 0 1.75rem; }
.section-newsletter     { padding: 2.5rem 0; }

/* Section header: tighter vertical rhythm */
.section-header { margin-bottom: 0.6rem; }

/* Grid gaps — denser layout */
.articles-grid          { gap: 10px; margin-bottom: 8px; }
.articles-grid--signals { gap: 10px; }
.articles-grid--sm      { gap: 10px; }

/* Card padding — tighter but still comfortable */
.article-card { padding: 11px 12px; }

/* Article page layout */
.layout-two-col { gap: 40px; padding-top: 36px; padding-bottom: 56px; }

/* Sidebar gap */
.sidebar-col { gap: 16px; }


/* ── HERO: EDITORIAL LEAD MODULE ─────────────────────────────────────────────── */

/* Radar rings — blue-aligned, no purple */
.hero__ring        { border-color: rgba(59,130,246,0.06); }
.hero__ring--2     { border-color: rgba(59,130,246,0.04); }
.hero__ring--3     { border-color: rgba(59,130,246,0.05); }
.hero__crosshair-h,
.hero__crosshair-v { background: rgba(59,130,246,0.04); }

/* Hero lead card — editorial, not a product card */
.article-card--wide {
  border-left: 3px solid var(--accent);
  padding-left: 22px;
}
.article-card--wide:hover { border-left-color: var(--accent-bright); }

/* Signal dot — subtle, not glowy */
.signal-dot { box-shadow: 0 0 5px rgba(59,130,246,0.45); }

/* Hero label row — tighter */
.hero__label-row { margin-bottom: 0.65rem; }


/* ── TOP SIGNALS: PUNCHY, HIGH-SIGNAL CARDS ──────────────────────────────────── */

.articles-grid--signals .article-card { padding: 10px 12px; }
.articles-grid--signals .article-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  -webkit-line-clamp: 3;
  margin-bottom: 4px;
}
/* Dek stays hidden in signals — headline-only scannability */


/* ── MARKET PULSE: COMPACT EDITORIAL LIST ────────────────────────────────────── */
/* Transforms the card grid into a high-density horizontal list,
   visually differentiating Market Pulse from Top Signals */

.section-market-pulse .articles-grid--sm {
  display: flex;
  flex-direction: column;
  gap: 0;
  grid-template-columns: none; /* override grid */
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0;
}
.section-market-pulse .article-card,
.section-market-pulse .article-card--confirmed,
.section-market-pulse .article-card--signal,
.section-market-pulse .article-card--rumor {
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  border-style: none;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--border-subtle);
  border-radius: 0;
  padding: 9px 14px;
  display: grid;
  grid-template-columns: 78px 1fr 56px;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 0 12px;
  opacity: 1;
  background: transparent;
}
.section-market-pulse .article-card:last-child,
.section-market-pulse .article-card--confirmed:last-child,
.section-market-pulse .article-card--signal:last-child,
.section-market-pulse .article-card--rumor:last-child {
  border-bottom: none;
}
.section-market-pulse .article-card:hover,
.section-market-pulse .article-card--confirmed:hover,
.section-market-pulse .article-card--signal:hover,
.section-market-pulse .article-card--rumor:hover {
  background: rgba(255,255,255,0.02);
  border-color: transparent;
  border-bottom-color: var(--border-subtle);
}
.section-market-pulse .article-card__meta {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.section-market-pulse .article-card__title {
  grid-column: 2;
  grid-row: 1;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.35;
}
.section-market-pulse .article-card__dek   { display: none; }
.section-market-pulse .confidence-badge    { display: none; }
.section-market-pulse .article-card__footer {
  grid-column: 3;
  grid-row: 1;
  font-size: 10px;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  color: var(--text-muted);
}
.section-market-pulse .article-card__category {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.07em;
}
.section-market-pulse .article-card__read-time { display: none; }

/* Mobile: revert to standard cards */
@media (max-width: 600px) {
  .section-market-pulse .articles-grid--sm {
    display: grid;
    grid-template-columns: 1fr;
    border: none;
    gap: 8px;
  }
  .section-market-pulse .article-card,
  .section-market-pulse .article-card--confirmed,
  .section-market-pulse .article-card--signal,
  .section-market-pulse .article-card--rumor {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: none;
    border: 1px solid var(--border-subtle);
    border-style: solid;
    border-bottom-style: solid;
    border-radius: var(--radius);
    padding: 12px 14px;
    gap: 4px;
  }
  .section-market-pulse .article-card__meta  { grid-column: auto; flex-direction: row; align-items: center; margin-bottom: 6px; }
  .section-market-pulse .article-card__title { grid-column: auto; font-size: 15px; margin-bottom: 4px; }
  .section-market-pulse .article-card__footer { grid-column: auto; flex-direction: row; align-items: center; justify-content: flex-start; gap: 8px; }
  .section-market-pulse .confidence-badge    { display: inline-flex; }
  .section-market-pulse .article-card__read-time { display: inline; }
}


/* ── EARLY SIGNALS ──────────────────────────────────────────────────────────── */
/* No tinted zones — structure and labels carry the signal context */

.section-early-signals {
  background: transparent;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.section-early-signals .article-card {
  border-color: var(--border-subtle);
}
.section-early-signals .article-card:hover {
  border-color: var(--border-mid);
  background-color: var(--bg-card-hover);
}
.section-early-signals .article-card__title {
  font-size: 14.5px;
  font-weight: 600;
}
.section-early-signals .section-desc {
  font-size: 12px;
  opacity: 0.65;
  margin-bottom: 0.75rem;
}
.section-early-signals .section-header {
  margin-bottom: 0.5rem;
}
.section-early-signals .section-title--signal { color: #ffffff; }


/* ── TOOLS: HORIZONTAL FEATURE STRIP ─────────────────────────────────────────── */
/* Each tool is a row in a feature list, not a card.
   Implies usefulness and action — distinct from article sections. */

.section-tools .tools-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}
.section-tools .tool-card {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 11px 16px;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  border-left: none;
  border-radius: 0;
  background: transparent;
}
.section-tools .tool-card:last-child { border-bottom: none; }
.section-tools .tool-card:hover {
  background: rgba(255,255,255,0.025);
  border-left: none;
}
.section-tools .tool-card__header {
  min-width: 170px;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}
.section-tools .tool-card__name {
  font-size: 14px;
  font-weight: 600;
}
.section-tools .tool-card__desc {
  flex: 1;
  font-size: 12.5px;
  color: var(--text-secondary);
  opacity: 0.7;
  line-height: 1.4;
  margin: 0;
}
.section-tools .tool-card__footer {
  flex-shrink: 0;
  margin-top: 0;
}

/* Mobile: revert to column cards */
@media (max-width: 640px) {
  .section-tools .tools-grid {
    border: none;
    gap: 8px;
  }
  .section-tools .tool-card {
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border-subtle);
    border-left: 2px solid var(--accent);
    border-radius: 0;
    padding: 12px;
    gap: 8px;
  }
  .section-tools .tool-card__header { min-width: unset; }
  .section-tools .tool-card__desc   { flex: none; opacity: 0.7; }
}


/* ── OFFERS: EDITORIAL RESOURCE SHELF ────────────────────────────────────────── */
/* Curated rows with a restrained gold accent — intentionally different
   from both article cards and the Tools strip above. */

.section-offers .offers-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(184,146,64,0.2);
  border-radius: 0;
  overflow: hidden;
}
.section-offers .offer-card {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border: none;
  border-bottom: 1px solid rgba(184,146,64,0.12);
  border-left: 2px solid rgba(184,146,64,0.35);
  border-top: none;
  border-right: none;
  border-radius: 0;
  background: transparent;
}
.section-offers .offer-card:last-child { border-bottom: none; }
.section-offers .offer-card:hover {
  background: rgba(184,146,64,0.025);
  border-left-color: var(--gold);
}
.section-offers .offer-card__label {
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 66px;
}
.section-offers .offer-type-badge {
  font-size: 9px;
  border-radius: var(--radius-sm);
}
.section-offers .offer-card__time { font-size: 10px; }
.section-offers .offer-card__title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}
.section-offers .offer-card__value  { display: none; }
.section-offers .offer-card__footer {
  flex-shrink: 0;
  margin-top: 0;
}

/* Mobile: revert to column cards */
@media (max-width: 640px) {
  .section-offers .offers-grid {
    border: none;
    gap: 8px;
  }
  .section-offers .offer-card {
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border-gold);
    border-left: 2px solid var(--gold);
    border-radius: 0;
    padding: 12px;
    gap: 8px;
  }
  .section-offers .offer-card__label {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    min-width: unset;
  }
  .section-offers .offer-card__value {
    display: block;
    font-size: 12px;
    opacity: 0.7;
  }
}


/* ── LATEST ARTICLES: COMPACT FEED LAYER ─────────────────────────────────────── */
/* Deliberately smaller footprint than the major signal sections.
   Same card family, different density — archive/feed register. */

.section-latest .articles-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr));
  gap: 8px;
}
.section-latest .article-card { padding: 9px 11px; }
.section-latest .article-card__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
}
.section-latest .article-card__dek    { display: none; }
.section-latest .article-card__meta   { margin-bottom: 7px; }
.section-latest .article-card__footer { font-size: 10px; gap: 8px; }


/* ── ARTICLE PAGE: SERIOUS PUBLICATION FEEL ──────────────────────────────────── */

/* Stronger accent line on article header */
.article-full__header::before {
  width: 40px;
  height: 2px;
  background: var(--accent);
}

/* Takeaways / why-it-matters: tighter, less panel-like */
.article-takeaways  { border-radius: var(--radius-sm); }
.article-why-matters { border-radius: var(--radius-sm); }

/* Discovery stack: less panel, more editorial link */
.discovery-link,
.discovery-callout {
  background: transparent;
  border-color: var(--border-subtle);
  padding: 6px 12px;
  font-size: 13px;
}
.discovery-link:hover,
.discovery-callout:hover {
  background: transparent;
  border-color: var(--border-active);
}

/* Body blockquote: blue accent, not purple-tinged */
.article-full__body blockquote {
  border-left-color: var(--accent);
  background: rgba(59,130,246,0.04);
}

/* Tag chips: sharper corners */
.tag-chip { border-radius: var(--radius-sm); }


/* ── NEWSLETTER: RHYTHM BREAKER ──────────────────────────────────────────────── */
.section-newsletter {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-hero__heading {
  font-size: 26px;
  letter-spacing: -0.02em;
}


/* ── MEDIA KIT: INSTITUTIONAL AUTHORITY ──────────────────────────────────────── */

/* Header: dominant, sponsor-ready */
.mk3-header { padding-bottom: 28px; }
.mk3-header__title {
  font-size: 54px;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 14px;
}
@media (max-width: 600px) {
  .mk3-header__title { font-size: 32px; }
}
.mk3-header__eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 12px;
}
.mk3-header__sub {
  font-size: 15px;
  color: var(--text-secondary);
  opacity: 0.85;
  max-width: 52ch;
}

/* Divider: tighter rhythm */
.mk3-divider { margin: 28px 0; }

/* Section titles: authority with bottom rule */
.mk3-section__title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 18px;
}

/* Metrics: commanding presence */
.mk3-metric__value {
  font-size: 34px;
  letter-spacing: -0.025em;
}
.mk3-metric { padding: 18px 14px; }

/* Placements: sharper hierarchy */
.mk3-placement { padding: 13px 18px; }
.mk3-placement__name { font-size: 14px; font-weight: 700; }
.mk3-placement__tag {
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* Boilerplate: blue-accented, not plain */
.mk3-boilerplate {
  border-left: 2px solid var(--accent);
  background: rgba(59,130,246,0.03);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-secondary);
  font-style: normal;
}

/* Audience blocks: stronger titles */
.mk3-audience-block { padding: 14px 16px; }
.mk3-audience-block__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mk3-audience-block__desc {
  font-size: 12.5px;
  color: var(--text-muted);
  opacity: 0.88;
}

/* Facts box: tighter but still readable */
.mk3-fact-row { padding: 9px 14px; }
.mk3-fact-row__value { color: var(--text-primary); }

/* Color swatches: slightly larger */
.mk3-color-block__swatch { width: 64px; height: 44px; }
.mk3-color-block__label  { font-size: 11px; font-weight: 500; color: var(--text-secondary); }
.mk3-color-block__hex    { font-size: 12px; color: var(--text-muted); }

/* Style notes: cleaner */
.mk3-style-note { font-size: 13px; color: var(--text-secondary); }
.mk3-style-note strong { color: var(--text-primary); }

/* Asset previews: tighter */
.mk3-asset__info { padding: 12px 14px; }
.mk3-asset__name { font-size: 13px; font-weight: 700; }

/* Guideline list: tighter rows */
.mk3-guideline__list li { padding: 8px 16px; font-size: 13px; }
.mk3-guideline__head { padding: 9px 16px; }

/* Contact section: clear CTA emphasis */
.mk3-section--contact .mk3-contact-row { margin-top: 16px; }

/* ── END Editorial Authority Refresh v4 ────────────────────────────────────── */
