.seo-nav {
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(16px);
}
.seo-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}
.seo-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
  background: #09090b;
  box-shadow: 0 16px 34px rgba(255,0,0,.22);
}
.seo-wordmark {
  position: relative;
  display: inline-block;
  min-width: 140px;
  height: 30px;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}
.seo-wordmark-main,
.seo-wordmark-accent {
  position: absolute;
  white-space: nowrap;
  letter-spacing: 0;
}
.seo-wordmark-main { left: 0; top: 2px; }
.seo-wordmark-accent {
  left: 54px;
  top: 14px;
  color: #f4f4f5;
  font-size: .78em;
  font-style: italic;
  font-weight: 600;
  text-shadow: 0 0 16px rgba(255,0,0,.55);
}
.seo-wordmark-accent::first-letter { color: #ff4b4b; }
.seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}
.seo-links a {
  color: #d4d4d8;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 8px 10px;
}
.seo-links a:hover {
  color: #fff;
  border-color: rgba(255,0,0,.45);
  background: rgba(255,0,0,.1);
}
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.keyword-cloud span {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #d4d4d8;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}
.conversion-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  animation: ctaGlow 1.65s ease-in-out infinite;
}
.conversion-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 38%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  animation: ctaSweep 2.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,.34), 0 16px 34px rgba(255,0,0,.22); transform: translateY(0); }
  50% { box-shadow: 0 0 0 10px rgba(255,0,0,0), 0 24px 50px rgba(255,0,0,.42); transform: translateY(-1px) scale(1.015); }
}
@keyframes ctaSweep {
  0% { left: -45%; opacity: 0; }
  35% { opacity: .8; }
  70%, 100% { left: 115%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .conversion-cta,
  .conversion-cta::after { animation: none; }
}
@media (max-width: 780px) {
  .seo-nav .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .seo-links {
    justify-content: flex-start;
  }
  .seo-logo {
    width: 38px;
    height: 38px;
  }
  .seo-wordmark {
    min-width: 126px;
    font-size: 16px;
  }
  .seo-wordmark-accent {
    left: 48px;
    top: 13px;
  }
}
