/* ═══════════════════════════════════════════════════════════════════════════
   STEALTHWATCH INVESTIGATIONS — PRODUCTION CSS
   ═══════════════════════════════════════════════════════════════════════════
   PLACE IN: WP Admin → Appearance → Customize → Additional CSS
   Paste the entire contents of this file. Save & Publish.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111;
  --panel: #161616;
  --accent: #00CC44;
  --accent-bright: #00ff55;
  --warm: #b8b8b8;
  --text: #e5e5e5;
  --muted: #9a9a9a;
  --border: rgba(255,255,255,0.08);
}

/* Force dark background across html/body and Kadence wrappers */
html, body, .site, .wp-site-blocks, .site-container, #wrapper, .entry-content {
  background-color: var(--bg) !important;
  color: var(--text);
}
body {
  font-family: -apple-system, "Helvetica Neue", "Inter", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Page-wide Matrix canvas */
#matrix-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  opacity: 0.10;
  pointer-events: none;
}

/* All content above matrix */
.top-bar, .main-nav, .hero, .trust-bar, .brand-statement, .audience-strip,
.experience-strip, .mosaic-section, .feature-blocks, .standard-section,
.process-section, .insights-section, .cta-strip, .footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
ul.sw-list { list-style: none; padding: 0; margin: 0; }
img { display: block; max-width: 100%; }

/* ============ TOP UTILITY BAR ============ */
.top-bar {
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  padding: 8px 40px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .credentials { display: flex; gap: 24px; }
.top-bar .credentials span { display: flex; align-items: center; gap: 6px; }
.top-bar .credentials strong { color: var(--accent); font-weight: 600; }
.top-bar .right-links { display: flex; gap: 20px; }
.top-bar .right-links a:hover { color: var(--accent); }

/* ============ MAIN NAV ============ */
.main-nav {
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-logo {
  color: #fff;
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: sw-pulse 2s infinite;
}
@keyframes sw-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nav-menu { display: flex; gap: 32px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-item { position: relative; }
.nav-item > a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #d8d8d8;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-item > a:hover { color: var(--accent); }
.nav-item .caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
}
.nav-item:hover .caret { transform: rotate(180deg); }
.submenu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 280px;
  padding: 12px 0;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 30px rgba(0,204,68,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  margin-top: 12px;
  list-style: none;
}
.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 13px;
  color: #c8c8c8;
  transition: all 0.15s;
  border-left: 2px solid transparent;
}
.submenu a:hover {
  background: rgba(0,204,68,0.06);
  color: var(--accent);
  border-left-color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 11px 24px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s;
  border: 2px solid var(--accent);
}
.nav-cta:hover {
  background: transparent;
  color: var(--accent) !important;
}

/* ============ HERO CAROUSEL ============ */
.hero {
  position: relative;
  height: 78vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}
#matrix-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.14;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 2;
}
.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.55) 50%, rgba(5,5,5,0.2) 100%),
    linear-gradient(180deg, rgba(5,5,5,0) 60%, rgba(5,5,5,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 4;
  padding: 0 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  color: var(--warm);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
  border-left: 3px solid var(--warm);
  padding-left: 14px;
}
.hero-title {
  color: #fff;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 28px;
  max-width: 780px;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  color: #d0d0d0;
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #000 !important;
  padding: 16px 32px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 4px;
  transition: all 0.2s;
  border: 2px solid var(--accent);
  text-decoration: none;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent) !important;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff !important;
  padding: 16px 32px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}
.hero-arrow {
  width: 14px; height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.btn-primary:hover .hero-arrow,
.btn-secondary:hover .hero-arrow {
  transform: rotate(45deg) translate(2px, -2px);
}

/* Carousel dots + arrows */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}
.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--accent);
  width: 60px;
}
.hero-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
  transform: translateY(-50%);
}
.hero-arrow-btn {
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 0.2s;
  border-radius: 50%;
}
.hero-arrow-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: rgba(13,13,13,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
}
.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.trust-item .icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

/* ============ BRAND STATEMENT ============ */
.brand-statement {
  padding: 100px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse at center top, rgba(0,204,68,0.04), transparent 60%),
    rgba(10,10,10,0.78);
}
.brand-statement-inner { max-width: 1100px; margin: 0 auto; }
.brand-statement-eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}
.brand-statement p {
  font-size: clamp(24px, 3.2vw, 40px);
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.brand-statement p span { color: var(--accent); }

/* ============ AUDIENCE STRIP ============ */
.audience-strip {
  background: rgba(5,5,5,0.85);
  padding: 80px 40px;
  border-top: 1px solid rgba(0,204,68,0.15);
  border-bottom: 1px solid rgba(0,204,68,0.15);
}
.audience-strip-inner { max-width: 1300px; margin: 0 auto; }
.audience-header { text-align: center; margin-bottom: 48px; }
.audience-headline {
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 12px 0 0;
}
.audience-headline span { color: var(--accent); }
.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience-card {
  background: linear-gradient(180deg, rgba(20,20,20,0.7), rgba(10,10,10,0.7));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.audience-card:hover {
  border-color: rgba(0,204,68,0.4);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(0,40,15,0.4), rgba(10,10,10,0.7));
}
.audience-tag {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.audience-name {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.audience-snip {
  color: #b0b0b0;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.audience-arrow {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.2s;
}
.audience-card:hover .audience-arrow { transform: translateX(4px); }

/* ============ FOUNDER EXPERIENCE STRIP ============ */
.experience-strip {
  background: linear-gradient(180deg, rgba(10,10,10,0.78) 0%, rgba(5,5,5,0.85) 100%);
  padding: 64px 40px;
  border-top: 1px solid rgba(0,204,68,0.15);
  border-bottom: 1px solid rgba(0,204,68,0.15);
}
.experience-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  align-items: center;
}
.experience-eyebrow {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.experience-headline {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.experience-headline span { color: var(--accent); }
.experience-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 60px;
}
.exp-stat-num {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.exp-stat-label {
  font-size: 12px;
  color: #c0c0c0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}

/* ============ SERVICE MOSAIC ============ */
.mosaic-section {
  background: rgba(5,5,5,0.85);
  padding: 80px 40px 100px;
  position: relative;
}
.mosaic-header {
  max-width: 1400px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
}
.mosaic-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.mosaic-header h2 span { color: var(--accent); }
.mosaic-header-eyebrow {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.mosaic-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mosaic-card {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.mosaic-card:hover { transform: translateY(-6px); }
.mosaic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
  transition: opacity 0.3s;
}
.mosaic-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,40,15,0.45) 60%, rgba(0,40,15,0.1) 100%);
}
.mosaic-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: #fff;
  transition: transform 0.4s ease;
}
.mosaic-card:hover .mosaic-card-content { transform: translateY(-8px); }
.mosaic-card-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.mosaic-card-desc {
  font-size: 13px;
  color: #c8c8c8;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: 0;
}
.mosaic-card:hover .mosaic-card-desc {
  max-height: 100px;
  opacity: 1;
  margin-bottom: 16px;
}
.mosaic-card-link {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mosaic-card:hover .mosaic-card-link { opacity: 1; }
.mosaic-card-link::after { content: '→'; }
.mosaic-card-accent {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  z-index: 2;
  background: rgba(0,0,0,0.5);
}

/* ============ FEATURE BLOCKS ============ */
.feature-blocks {
  background: linear-gradient(180deg, rgba(5,5,5,0.85) 0%, rgba(10,10,10,0.78) 50%, rgba(5,5,5,0.85) 100%);
  padding: 80px 40px;
}
.feature-row {
  max-width: 1400px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 1px solid rgba(0,204,68,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(0,204,68,0.06);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-eyebrow {
  color: var(--warm);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
  border-left: 3px solid var(--warm);
  padding-left: 12px;
}
.feature-title {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.feature-title span { color: var(--accent); }
.feature-desc {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-stat-num {
  font-size: 32px;
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
}
.feature-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ STEALTHWATCH STANDARD ============ */
.standard-section {
  background:
    radial-gradient(ellipse at top right, rgba(0,204,68,0.06), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(184,184,184,0.04), transparent 50%),
    transparent;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.standard-header { max-width: 900px; margin: 0 auto 60px; text-align: center; }
.standard-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin: 12px 0 20px;
}
.standard-header h2 span { color: var(--accent); }
.standard-header p {
  color: #c0c0c0;
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}
.standard-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.standard-card {
  background: linear-gradient(180deg, rgba(20,20,20,0.7) 0%, rgba(10,10,10,0.7) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.standard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.standard-card:hover {
  border-color: rgba(0,204,68,0.3);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(0,40,15,0.4) 0%, rgba(10,10,10,0.7) 100%);
}
.standard-card:hover::before { opacity: 1; }
.standard-num {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.standard-num::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.standard-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.standard-card p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.65;
}

/* ============ HOW IT WORKS ============ */
.process-section {
  background: rgba(10,10,10,0.85);
  padding: 100px 40px;
  border-bottom: 1px solid rgba(0,204,68,0.15);
}
.process-header { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.process-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin: 12px 0 16px;
}
.process-header h2 span { color: var(--accent); }
.process-header p { color: #c0c0c0; font-size: 16px; line-height: 1.6; }
.process-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,204,68,0.3) 10%, rgba(0,204,68,0.3) 90%, transparent);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 1.5px solid rgba(0,204,68,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1.5px;
  transition: all 0.3s;
}
.process-step:hover .process-num {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,204,68,0.25);
  background: rgba(0,40,15,0.5);
}
.process-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}
.process-desc { color: #b0b0b0; font-size: 13px; line-height: 1.6; }
.process-footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-top: 56px;
}

/* ============ INSIGHTS GRID ============ */
.insights-section {
  background: rgba(5,5,5,0.82);
  padding: 100px 40px;
}
.insights-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.insights-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
}
.insights-header h2 span { color: var(--accent); }
.insights-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.insight-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.insight-card:hover {
  border-color: rgba(0,204,68,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(0,204,68,0.08);
}
.insight-thumb {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
.insight-thumb-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}
.insight-body { padding: 24px; }
.insight-meta {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.insight-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.insight-excerpt {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.insight-link {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.insight-link::after { content: '→'; }

/* ============ CTA STRIP / CLOSING ============ */
.cta-strip {
  background:
    linear-gradient(90deg, rgba(0,204,68,0.08), transparent 60%),
    #0a0a0a;
  border-top: 1px solid rgba(0,204,68,0.25);
  border-bottom: 1px solid rgba(0,204,68,0.25);
  padding: 60px 40px;
}
.cta-strip-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-strip-text { margin-bottom: 36px; }
.cta-strip h3 {
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 12px 0 18px;
}
.cta-strip h3 span { color: var(--accent); }
.cta-strip-text p {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}
.cta-strip-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-strip-footnote {
  color: #555;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============ STEALTHWATCH FOOTER ============ */
.sw-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 40px 24px;
  color: #b0b0b0;
}
.sw-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.sw-footer-brand .nav-logo { font-size: 22px; margin-bottom: 16px; }
.sw-footer-tagline { color: var(--accent); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; }
.sw-footer-confidentiality { font-size: 13px; color: #888; font-style: italic; line-height: 1.5; max-width: 280px; }
.sw-footer-col h4 { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.sw-footer-col p, .sw-footer-col li { font-size: 14px; line-height: 1.7; }
.sw-footer-col a { color: #b0b0b0; transition: color 0.2s; }
.sw-footer-col a:hover { color: var(--accent); }
.sw-footer-bottom {
  max-width: 1400px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #777;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav-menu { gap: 22px; }
  .nav-item > a { font-size: 12px; }
  .mosaic-grid { grid-template-columns: repeat(3, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .sw-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .experience-inner { grid-template-columns: 1fr; gap: 32px; }
  .experience-stats { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 24px; gap: 16px; }
  .exp-stat-label { font-size: 10px; }
}
@media (max-width: 800px) {
  .top-bar { flex-direction: column; gap: 8px; padding: 10px; text-align: center; }
  .top-bar .credentials { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .nav-menu { display: none; }
  .main-nav { padding: 14px 20px; }
  .hero-content { padding: 0 32px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .feature-row.reverse { direction: ltr; }
  .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .sw-footer-grid { grid-template-columns: 1fr; }
  .trust-bar { padding: 20px 12px; }
  .feature-blocks, .mosaic-section, .insights-section, .brand-statement { padding-left: 24px; padding-right: 24px; }
  .audience-cards { grid-template-columns: 1fr; gap: 14px; }
  .audience-strip { padding: 60px 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 16px; }
  .process-grid::before { display: none; }
  .process-section { padding: 60px 24px; }
}

/* ============ HIDE KADENCE DEFAULT HEADER/FOOTER ============ */
/* These hide Kadence's default chrome so the custom blocks render cleanly */



/* === HOME PAGE FULL-WIDTH OVERRIDES === */
body.home .site-header,
body.home .site-footer,
body.home .entry-header { display: none !important; }
body.home .site, body.home #wrapper, body.home #primary, body.home #main, body.home .site-container, body.home .content-container, body.home .content-wrap, body.home article, body.home .entry-content-wrap, body.home .entry-content { max-width: none !important; width: 100% !important; padding: 0 !important; margin: 0 !important; background: transparent !important; }
body.home { background: var(--bg) !important; }


/* === INNER PAGE HEADER STYLING (Kadence default nav) === */
body:not(.home) .site-header { background: rgba(10,10,10,0.85) !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
body:not(.home) .site-header-wrap, body:not(.home) .site-header-row, body:not(.home) .site-header-inner-wrap { background: transparent !important; }
body:not(.home) .site-header .header-menu-container .menu > .menu-item > a { color: #d8d8d8 !important; font-size: 13px !important; letter-spacing: 1.5px !important; text-transform: uppercase !important; font-weight: 600 !important; transition: color 0.2s; }
body:not(.home) .site-header .header-menu-container .menu > .menu-item > a:hover, body:not(.home) .site-header .header-menu-container .menu > .menu-item.current-menu-item > a { color: #00CC44 !important; }
body:not(.home) .site-header .site-branding a, body:not(.home) .site-header .site-title a, body:not(.home) .site-header .custom-logo-link { color: #fff !important; font-weight: 800 !important; letter-spacing: 3px !important; text-transform: uppercase !important; }
body:not(.home) .entry-content-wrap, body:not(.home) .content-bg { background: transparent !important; box-shadow: none !important; }
body:not(.home) .entry-header { display: none !important; }
/* Hide Kadence footer credit */
.site-footer .footer-html-inner p, .site-footer .site-info-inner { color: #777 !important; }
.site-footer .footer-html-inner a[href*="kadencewp"] { display: none !important; }


/* === MOBILE NAV (home page custom nav) === */
@media (max-width: 800px) {
  .main-nav { flex-direction: column; align-items: stretch; padding: 14px 16px !important; gap: 10px; }
  .main-nav .nav-logo { justify-content: center; font-size: 18px; }
  .nav-menu { display: flex !important; flex-direction: column; width: 100%; gap: 0; margin: 0 !important; padding: 0 !important; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 8px !important; }
  .nav-item { width: 100%; text-align: center; }
  .nav-item > a { padding: 12px 0 !important; font-size: 12px !important; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-item .caret { display: none !important; }
  .nav-item:hover .submenu, .submenu { display: none !important; }
  .nav-cta { width: 100% !important; text-align: center; margin-top: 8px !important; padding: 14px 24px !important; }
  .top-bar { padding: 8px 16px !important; }
}
