nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(8, 13, 19, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 1px;
  text-decoration: none;
}

.logo-word {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--bright);
  letter-spacing: -.2px;
  line-height: 1;
}

/* ── Animated eye ── */
.eye-wrap {
  width: 17px;
  height: 17px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: eDrift 8s ease-in-out infinite;
}

.eye-iris   { transform-origin: 9px 9px; animation: eBlink 8s ease-in-out infinite; }
.eye-pupils { transform-origin: 9px 9px; animation: ePupil 8s ease-in-out infinite; }
.eye-lid    { transform-origin: 9px 9px; animation: eLid   8s ease-in-out infinite; }

@keyframes eDrift {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(1.1px, -.4px); }
  55%      { transform: translate(-.7px, .5px); }
  80%      { transform: translate(.8px, .6px); }
}
@keyframes eBlink {
  0%, 36%, 44%, 100% { transform: scaleY(1); }
  39%, 41%           { transform: scaleY(.07); }
}
@keyframes ePupil {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(.9px, -.3px); }
  55%      { transform: translate(-.6px, .4px); }
  80%      { transform: translate(.7px, .5px); }
}
@keyframes eLid {
  0%, 36%, 44%, 100% { transform: scaleY(0); opacity: 0; }
  39%, 41%           { transform: scaleY(1); opacity: 1; }
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-size: 13px;
  padding: 7px 18px;
  background: var(--adim);
  border: 1px solid rgba(74, 143, 232, .28);
  color: var(--accent);
  text-decoration: none;
  transition: background .15s;
}
.nav-cta:hover { background: rgba(74, 143, 232, .18); }

/* ── Responsive ── */
@media (max-width: 860px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
}
