
.review-banner {
  display: block;
  width: 100%;
  background: 
    linear-gradient(90deg,
      rgba(0, 229, 255, 0.12) 0%,
      rgba(255, 75, 209, 0.12) 100%
    ),
    rgba(8, 10, 16, 0.75);
  border-bottom: 1px solid rgba(255, 75, 209, 0.12);
  text-decoration: none;
  padding: 0.45rem 0 0.55rem; 
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  z-index: 10;
}

.review-banner:hover {
  background:
    linear-gradient(90deg,
      rgba(0, 229, 255, 0.18) 0%,
      rgba(255, 75, 209, 0.18) 100%
    ),
    rgba(8, 10, 16, 0.8);
}

.review-banner .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Quote line */
.review-quote {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.9;
  display: block;
}

/* Meta line (author / source) */
.review-meta {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.75;
  display: block;
  margin-top: -2px;
}

.review-banner::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.45;
}

/* HEADER */

header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11,15,26,.9);
  backdrop-filter: saturate(130%) blur(6px);
  border-bottom: none; /* was: 1px solid var(--border); */
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:70px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.2px;
}

.logo{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:var(--card);
  color:var(--accent);
  font-weight:900;
  border:1px solid var(--border);
  box-shadow:inset 0 0 0 1px rgba(0,229,255,.25);
}

.menu{
  display:flex;
  gap:20px;
}

.menu a{
  color:var(--text);
  opacity:.9;
  text-decoration:none;
}

.menu a:hover{
  opacity:1;
}

.menu a[aria-current="page"],
.menu a.is-active{
  opacity:1;
  position:relative;
}

.menu a[aria-current="page"]::after,
.menu a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(
    90deg,
    transparent,
    var(--accent),
    transparent
  );
}