/* DISCLOSURE Intel guide command header */
:root {
  --intel-guide-green: #39ff14;
  --intel-guide-acid: #dfff8c;
  --intel-guide-gold: #ffd76a;
  --intel-guide-mono: 'Share Tech Mono', 'JetBrains Mono', monospace;
}

body {
  overflow-x: clip;
}

body > nav.intel-guide-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100vw;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 255, 155, 0.24);
  background:
    radial-gradient(circle at 16% 50%, rgba(57, 255, 20, 0.18), transparent 34%),
    radial-gradient(circle at 86% 50%, rgba(255, 215, 106, 0.10), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,0.98), rgba(4,18,8,0.94) 48%, rgba(0,0,0,0.98));
  box-shadow:
    0 18px 70px rgba(0,0,0,0.48),
    0 1px 0 rgba(255,255,255,0.05),
    0 0 44px rgba(57,255,20,0.10);
  backdrop-filter: blur(20px) saturate(1.2);
  isolation: isolate;
  overflow: hidden;
}

body > nav.intel-guide-topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(57,255,20,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.7;
}

body > nav.intel-guide-topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.88), rgba(216,255,155,0.62), rgba(255,215,106,0.35), transparent);
  box-shadow: 0 0 28px rgba(57,255,20,0.44);
}

.intel-guide-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.intel-guide-brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 7px 12px;
  border: 1px solid rgba(216,255,155,0.18);
  border-radius: 999px;
  background: rgba(0,0,0,0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 24px rgba(57,255,20,0.10);
  flex: 0 0 auto;
}

.intel-guide-brand img {
  height: 30px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(57,255,20,0.24));
}

.intel-guide-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.intel-guide-brand-copy b,
.intel-guide-link,
.intel-guide-chip {
  font-family: var(--intel-guide-mono);
  text-transform: uppercase;
}

.intel-guide-brand-copy b {
  font-size: clamp(12px, 0.95vw, 14px);
  letter-spacing: 0.20em;
  color: rgba(216,255,155,0.96);
  line-height: 1.1;
  white-space: nowrap;
}

.intel-guide-brand-copy span {
  font-family: var(--intel-guide-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.54);
  line-height: 1.2;
  white-space: nowrap;
}

.intel-guide-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.intel-guide-chip,
.intel-guide-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
}

.intel-guide-chip {
  padding: 9px 12px;
  border: 1px solid rgba(216,255,155,0.22);
  background: rgba(57,255,20,0.07);
  color: rgba(216,255,155,0.88);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.intel-guide-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--intel-guide-green);
  box-shadow: 0 0 14px rgba(57,255,20,0.86);
}

.intel-guide-link {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.84);
  font-size: 12px;
  letter-spacing: 0.10em;
  transition: transform 0.28s cubic-bezier(.16,1,.3,1), border-color 0.28s, background 0.28s, color 0.28s, box-shadow 0.28s;
}

.intel-guide-link:hover,
.intel-guide-link:focus-visible {
  transform: translateY(-1px);
  color: var(--intel-guide-acid);
  border-color: rgba(216,255,155,0.42);
  background: rgba(57,255,20,0.09);
  box-shadow: 0 0 22px rgba(57,255,20,0.16);
  outline: none;
}

.intel-guide-link.primary {
  color: #061006;
  background: linear-gradient(90deg, var(--intel-guide-acid), var(--intel-guide-green));
  border-color: rgba(216,255,155,0.72);
  font-weight: 900;
}

body > nav.intel-guide-topbar + .article-hero {
  border-bottom: 1px solid rgba(216,255,155,0.18);
  box-shadow: 0 26px 90px rgba(0,0,0,0.44);
}

body > nav.intel-guide-topbar + .article-hero::before {
  content: "INTEL GUIDE";
  position: absolute;
  top: 18px;
  right: clamp(16px, 4vw, 42px);
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(216,255,155,0.24);
  background: rgba(0,0,0,0.48);
  color: rgba(216,255,155,0.82);
  font-family: var(--intel-guide-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(57,255,20,0.10);
}

body > nav.intel-guide-topbar + .article-hero .hero-overlay {
  background:
    linear-gradient(transparent 0%, rgba(0,0,0,0.62) 36%, rgba(0,0,0,0.96) 100%),
    radial-gradient(circle at 18% 90%, rgba(57,255,20,0.16), transparent 40%);
}

body > nav.intel-guide-topbar + .article-hero .article-kicker {
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(57,255,20,0.24);
  background: rgba(57,255,20,0.07);
  color: rgba(216,255,155,0.96);
  text-shadow: 0 0 18px rgba(57,255,20,0.18);
}

body > nav.intel-guide-topbar + .article-hero .article-title {
  font-size: clamp(2rem, 5.4vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  max-width: min(980px, 92vw);
}

@media (max-width: 780px) {
  body > nav.intel-guide-topbar {
    min-height: 62px;
    padding: 10px 12px;
    gap: 10px;
  }
  .intel-guide-brand {
    gap: 8px;
  }
  .intel-guide-brand-mark {
    min-height: 38px;
    padding: 6px 9px;
  }
  .intel-guide-brand img {
    height: 25px;
  }
  .intel-guide-brand-copy b {
    font-size: 11px;
    letter-spacing: 0.15em;
  }
  .intel-guide-brand-copy span,
  .intel-guide-chip,
  .intel-guide-link:not(.primary) {
    display: none;
  }
  .intel-guide-link.primary {
    min-height: 36px;
    padding: 9px 11px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  body > nav.intel-guide-topbar + .article-hero::before {
    top: 12px;
    right: 12px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  body > nav.intel-guide-topbar + .article-hero .article-title {
    font-size: clamp(2.15rem, 11.5vw, 3.25rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intel-guide-link {
    transition: none;
  }
}
