/* =============================================================
   CREATIVE SIGNAL — Main Stylesheet
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

/* ── RESET & ROOT ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0a0a0a;
  --ink:        #111111;
  --charcoal:   #1e1e1e;
  --mid:        #2e2e2e;
  --rule:       #2a2a2a;
  --muted:      #666;
  --dim:        #999;
  --light:      #ccc;
  --white:      #f5f2ec;
  --cream:      #ede8df;
  --signal:     #e8ff47;
  --signal-dim: #c5d930;
  --red:        #ff3b3b;
  --orange:     #ff7a2f;
  --teal:       #3bf0d0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --font-mono:  'DM Mono', 'Courier New', monospace;
  --max-w:      1200px;
  --gutter:     32px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 150px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--signal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  color: var(--dim);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  text-decoration: none;
}

.main-nav a:hover { color: var(--white); }

.nav-cta {
  background: var(--signal) !important;
  color: var(--black) !important;
  padding: 7px 18px !important;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
  text-transform: uppercase !important;
}

.nav-cta:hover {
  background: var(--signal-dim) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--white);
  padding: 6px 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 4px;
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}

.ticker-label {
  background: var(--signal);
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-mono);
}

.ticker-track {
  display: flex;
  animation: ticker 60s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--light);
  padding: 0 32px;
  letter-spacing: 0.04em;
}

.ticker-item span { color: var(--signal); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
  padding: 80px var(--gutter) 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -40px;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(232,255,71,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--signal);
}

.hero-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-headline em {
  font-style: italic;
  color: var(--signal);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: var(--dim);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.stat-item { display: flex; flex-direction: column; gap: 2px; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

/* ── SUBSCRIBE CARD ──────────────────────────────────────── */
.subscribe-card {
  background: var(--charcoal);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 32px;
  position: sticky;
  top: 80px;
  animation: fadeUp 0.7s ease 0.35s both;
}

.card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--white);
}

.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.subscribe-form { display: flex; flex-direction: column; gap: 10px; }

.subscribe-form input,
.cs-input {
  background: var(--ink);
  border: 1px solid var(--mid);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.subscribe-form input::placeholder,
.cs-input::placeholder { color: var(--muted); }

.subscribe-form input:focus,
.cs-input:focus { border-color: var(--signal); }

.btn-primary,
.cs-btn {
  background: var(--signal);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 13px 20px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover,
.cs-btn:hover { background: var(--signal-dim); transform: translateY(-1px); }

.form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  font-family: var(--font-mono);
}

.card-benefits {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--light);
  line-height: 1.4;
}

.benefit::before {
  content: '✓';
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 60px;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.section-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.section-link {
  margin-left: auto;
  font-size: 12px;
  color: var(--signal);
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}

.section-link:hover { opacity: 0.7; }

/* ── FILTER BAR ──────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-tag {
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.filter-tag:hover { border-color: var(--muted); color: var(--white); }

.filter-tag.active {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--black);
  font-weight: 500;
}

/* ── INSIGHT CARDS ───────────────────────────────────────── */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
}

.insight-card {
  background: var(--ink);
  padding: 28px;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}

.insight-card:hover { background: var(--charcoal); }

.insight-card.featured {
  grid-column: span 2;
  background: var(--charcoal);
}

.insight-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 10px;
}

.insight-card.featured h3 { font-size: 24px; }

.insight-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-weight: 500;
}

.cat-threat   { background: rgba(255,59,59,0.12);  color: var(--red); }
.cat-strategy { background: rgba(59,240,208,0.1);  color: var(--teal); }
.cat-tools    { background: rgba(232,255,71,0.1);  color: var(--signal); }
.cat-mindset  { background: rgba(255,122,47,0.12); color: var(--orange); }
.cat-case     { background: rgba(200,200,255,0.1); color: #aaaaf0; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}

.card-meta-dot { color: var(--rule); }

.vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--mid);
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 20px;
  right: 20px;
}

.vote-btn:hover { background: var(--signal); color: var(--black); }
.vote-btn.voted { background: var(--signal); color: var(--black); }

/* ── AI TOOLS GRID ───────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}

.tool-card {
  background: var(--ink);
  padding: 22px;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.tool-card:hover { background: var(--charcoal); }

.tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.tool-card h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  font-family: var(--font-sans);
}

.tool-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.tool-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.tool-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.badge-free     { background: rgba(59,240,208,0.1);  color: var(--teal); }
.badge-paid     { background: rgba(255,122,47,0.1);  color: var(--orange); }
.badge-freemium { background: rgba(232,255,71,0.1);  color: var(--signal); }

/* ── THREAT METER ────────────────────────────────────────── */
.threat-section {
  background: var(--charcoal);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 60px;
}

.threat-intro {
  font-size: 13px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.threat-role { display: flex; flex-direction: column; gap: 10px; }

.threat-pct {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
}

.threat-role-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.threat-bar-track {
  height: 6px;
  background: var(--mid);
  border-radius: 100px;
  overflow: hidden;
}

.threat-bar-fill {
  height: 100%;
  border-radius: 100px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fill-high { background: var(--red); }
.fill-med  { background: var(--orange); }
.fill-low  { background: var(--teal); }

.threat-detail {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  line-height: 1.5;
}

/* ── NEWSLETTER BANNER ───────────────────────────────────── */
.newsletter-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a2010 100%);
  border: 1px solid rgba(232,255,71,0.2);
  border-radius: 8px;
  padding: 52px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.newsletter-banner::before {
  content: 'SIGNAL';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 200px;
  font-weight: 900;
  color: rgba(232,255,71,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.newsletter-banner h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.newsletter-banner p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.banner-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.banner-form .cs-input { flex: 1; }

/* ── SINGLE POST ─────────────────────────────────────────── */
.single-post-wrap {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 var(--gutter);
}

.post-header { margin-bottom: 40px; }

.post-header .card-cat { margin-bottom: 20px; }

.post-headline {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.post-excerpt {
  font-size: 18px;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--font-serif);
}

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}

.post-meta-bar a { color: var(--signal); }

.post-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--light);
}

.post-content h2, .post-content h3 {
  margin: 40px 0 16px;
  color: var(--white);
}

.post-content h2 { font-size: 28px; }
.post-content h3 { font-size: 22px; }

.post-content p { margin-bottom: 20px; }

.post-content a { color: var(--signal); border-bottom: 1px solid rgba(232,255,71,0.3); }

.post-content ul, .post-content ol {
  margin: 0 0 20px 24px;
}

.post-content li { margin-bottom: 8px; }

.post-content blockquote {
  border-left: 3px solid var(--signal);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--charcoal);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--light);
  font-size: 17px;
}

/* ── PAGE TEMPLATES ──────────────────────────────────────── */
.page-hero {
  text-align: center;
  padding: 80px var(--gutter) 56px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--dim);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* ── ARCHIVE / BLOG ──────────────────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 60px;
  align-items: start;
}

.sidebar-widget {
  background: var(--charcoal);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.widget-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer {
  border-top: 1px solid var(--rule);
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px var(--gutter);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.footer-nav ul { display: flex; gap: 20px; list-style: none; }

.footer-nav a {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

/* ── TOAST ───────────────────────────────────────────────── */
.cs-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--signal);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
  white-space: nowrap;
}

.cs-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left > * {
  animation: fadeUp 0.7s ease both;
}

.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.45s; }

/* ── WORDPRESS CORE OVERRIDES ────────────────────────────── */
.wp-block-image img { border-radius: 6px; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption-text { font-size: 12px; color: var(--muted); margin-top: 8px; font-family: var(--font-mono); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; gap: 40px; }
  .subscribe-card { position: static; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card.featured { grid-column: span 1; }
  .threat-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .archive-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .main-nav.open { display: block; position: absolute; top: 60px; left: 0; right: 0; background: var(--ink); border-bottom: 1px solid var(--rule); padding: 16px 24px; }
  .main-nav.open ul { flex-direction: column; gap: 16px; }
  .menu-toggle { display: block; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .hero-stats { gap: 20px; }
  .threat-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .banner-form { flex-direction: column; }
  .newsletter-banner { padding: 36px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── CATEGORY LABEL PILL (WordPress category names) ────────────────── */
.card-cat--cat {
  background: rgba(200,200,255,0.1);
  color: #9898e0;
  margin-left: 6px;
}
.card-cat--case { background: rgba(200,200,255,0.1); color: #aaaaf0; }

/* ── INSIGHTS FOOTER (browse all link) ─────────────────────────────── */
.insights-footer {
  text-align: center;
  padding: 32px 0 8px;
}
.browse-all-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--cs-border, #2a2a2a);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.browse-all-btn:hover { background: var(--signal); border-color: var(--signal); color: #000; }

/* ── 3-COL GRID VARIANT ─────────────────────────────────────────────── */
.insight-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .insight-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .insight-grid--3col { grid-template-columns: 1fr; }
}
