:root {
  --bg: #03050a;
  --bg-soft: #0a1018;
  --text: #f5f8fc;
  --muted: #93a4b8;
  --line: rgba(255, 255, 255, 0.08);
  --blue: #3b82f6;
  --blue-bright: #60a5fa;
  --blue-deep: #1d4ed8;
  --online: #34d399;
  --offline: #f87171;
  --font-display: "Plus Jakarta Sans", "Avenir Next", sans-serif;
  --font-body: "Plus Jakarta Sans", "Avenir Next", sans-serif;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 40% at 70% 15%, rgba(59, 130, 246, 0.22), transparent 60%),
    radial-gradient(ellipse 45% 35% at 15% 70%, rgba(14, 165, 233, 0.1), transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(29, 78, 216, 0.12), transparent 50%);
}

main,
.nav-wrap,
.footer {
  position: relative;
  z-index: 1;
}

/* —— Floating nav —— */
.nav-wrap {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  transition:
    top 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.nav {
  width: min(1080px, 100%);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  transition:
    width 0.5s var(--ease),
    gap 0.45s var(--ease),
    padding 0.45s var(--ease),
    background 0.45s ease,
    box-shadow 0.45s ease;
}

.nav-wrap.is-condensed {
  top: 0.55rem;
}

.nav-wrap.is-condensed .nav {
  width: min(720px, 100%);
  gap: 0.55rem;
  padding: 0.35rem 0.45rem 0.35rem 0.65rem;
  background: rgba(8, 12, 20, 0.88);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.nav-wrap.is-condensed .nav-logo {
  width: 1.45rem;
  height: 1.45rem;
}

.nav-wrap.is-condensed .nav-title {
  max-width: 0;
  opacity: 0;
  margin: 0;
  transform: translateX(-4px);
}

.nav-wrap.is-condensed .nav-links {
  gap: 0.85rem;
}

.nav-wrap.is-condensed .nav-links a {
  font-size: 0.84rem;
}

.nav-wrap.is-condensed .nav-cta,
.nav-wrap.is-condensed .nav-actions .btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.nav-logo {
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  transition: width 0.45s var(--ease), height 0.45s var(--ease);
}

.nav-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  max-width: 10rem;
  overflow: hidden;
  white-space: nowrap;
  transition:
    max-width 0.45s var(--ease),
    opacity 0.35s ease,
    transform 0.45s var(--ease);
}

.nav-links {
  display: none;
  gap: 1.15rem;
  margin-left: 0.5rem;
  transition: gap 0.45s var(--ease);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s ease, font-size 0.45s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  margin-left: auto;
  display: none;
}

.nav-actions {
  margin-left: auto;
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-discord {
  flex-shrink: 0;
  white-space: nowrap;
}

.auth-slot {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.auth-login {
  white-space: nowrap;
  flex-shrink: 0;
}

.auth-loading {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0 0.55rem;
}

.auth-account {
  position: relative;
}

.auth-trigger {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0.55rem 0.2rem 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(8, 16, 24, 0.72);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-trigger:hover,
.auth-account.is-open .auth-trigger {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(12, 22, 36, 0.95);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.auth-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-copy {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.15;
  text-align: left;
}

.auth-name {
  font-size: 0.82rem;
  font-weight: 700;
  max-width: 7.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-tier {
  margin-top: 0.12rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.auth-tier-admin {
  color: #93c5fd;
}

.auth-tier-staff {
  color: #86efac;
}

.auth-tier-member {
  color: #cbd5e1;
}

.auth-caret {
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.15rem;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.auth-account.is-open .auth-caret {
  transform: rotate(225deg) translateY(-1px);
}

.auth-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(260px, calc(100vw - 2rem));
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(8, 12, 20, 0.96);
  backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 80;
}

.auth-account.is-open .auth-dropdown {
  display: grid;
  gap: 0.35rem;
}

.auth-dropdown-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.55rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.15rem;
}

.auth-dropdown-head img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-dropdown-head strong {
  display: block;
  font-size: 0.92rem;
}

.auth-dropdown-head span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.auth-dropdown-items {
  display: grid;
  gap: 0.15rem;
}

.auth-item {
  display: grid;
  gap: 0.1rem;
  width: 100%;
  padding: 0.65rem 0.7rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  color: var(--text);
  text-align: left;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  transition: background 0.18s ease;
}

.auth-item span {
  font-size: 0.9rem;
  font-weight: 650;
}

.auth-item small {
  color: var(--muted);
  font-size: 0.75rem;
}

.auth-item:hover {
  background: rgba(59, 130, 246, 0.12);
}

.auth-item-danger {
  margin-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 0.75rem 0.75rem;
}

.auth-item-danger:hover {
  background: rgba(239, 68, 68, 0.12);
}

.auth-item-danger span {
  color: #fca5a5;
}

.auth-banner {
  position: fixed;
  top: 4.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: min(720px, calc(100% - 1.5rem));
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(40, 12, 16, 0.94);
  color: #fecaca;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.auth-banner-ok {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(10, 30, 18, 0.94);
  color: #bbf7d0;
}

@media (min-width: 820px) {
  .auth-copy {
    display: flex;
  }
}

.nav-toggle {
  margin-left: auto;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--text);
}

.nav-wrap.is-open .nav {
  border-radius: 1.35rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}

.nav-wrap.is-open .nav-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0.5rem 0 0;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

.nav-wrap.is-open .nav {
  flex-wrap: wrap;
}

.nav-wrap.is-open .nav-cta,
.nav-wrap.is-open .nav-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(100% - 1rem);
  margin: 0.25rem 0.5rem 0;
}

.nav-wrap.is-open .auth-copy,
.nav-wrap.is-open .auth-meta {
  display: flex;
}

@media (min-width: 820px) {
  .nav-links,
  .nav-cta,
  .nav-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .nav-toggle {
    display: none;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  transition:
    transform 0.3s var(--ease),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.3s ease;
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  border-radius: 999px;
  transition:
    transform 0.3s var(--ease),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.3s ease,
    padding 0.45s var(--ease),
    font-size 0.45s var(--ease);
}

.btn-lg {
  padding: 0.9rem 1.35rem;
  font-size: 0.98rem;
  min-width: 9.5rem;
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 12px 28px rgba(59, 130, 246, 0.28);
}

.btn-outline {
  background: rgba(10, 16, 24, 0.65);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

/* —— Hero —— */
.hero {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.5rem 0 4rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    padding: 9.5rem 0 5rem;
    min-height: 100svh;
  }
}

.brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.headline {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: var(--muted);
  max-width: 28rem;
  line-height: 1.45;
}

.lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 30rem;
  font-size: 1.05rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.live-chip {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 16, 24, 0.7);
  color: var(--muted);
  font-size: 0.9rem;
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
}

.live-dot.is-online {
  background: var(--online);
  animation: pulse 2.2s ease infinite;
}

.live-dot.is-offline {
  background: var(--offline);
}

.live-sep {
  opacity: 0.45;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(52, 211, 153, 0);
  }
}

.hero-visual {
  position: relative;
}

.float-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(0);
  animation: floaty 7s var(--ease) infinite alternate;
}

.float-frame::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.28), transparent 60%);
  filter: blur(20px);
}

.float-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
}

@keyframes floaty {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

/* —— Trust / stats —— */
.trust {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 2rem;
  text-align: center;
  padding: 1rem 0 3rem;
}

.trust-label {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .stats-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat {
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(10, 16, 24, 0.55);
}

.stat-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.updated {
  margin: 1.1rem 0 0;
  color: rgba(147, 164, 184, 0.75);
  font-size: 0.85rem;
}

/* —— Feature rows —— */
.feature {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .feature {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .feature-flip .feature-copy {
    order: 1;
  }

  .feature-flip .feature-visual {
    order: 2;
  }
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--blue-bright);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature h2,
.section-head h2,
.join h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.feature p,
.section-head p,
.join p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
}

.soft-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.soft-list li {
  padding-left: 1.1rem;
  position: relative;
}

.soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--blue);
}

.dept-stack {
  display: grid;
  gap: 0.85rem;
}

.dept-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(10, 16, 24, 0.7);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition:
    transform 0.3s var(--ease),
    border-color 0.25s ease,
    background 0.25s ease;
}

.dept-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(15, 23, 42, 0.9);
}

/* —— Gallery —— */
.gallery-section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.section-head {
  margin-bottom: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

@media (min-width: 800px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item-wide {
    grid-column: span 3;
  }

  .gallery-item-wide img {
    height: 22rem;
  }
}

@media (min-width: 1100px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  min-height: 10.5rem;
}

.gallery-item img {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.045);
}

@media (max-width: 799px) {
  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item-wide img {
    height: 14rem;
  }
}

.placeholder {
  height: 11rem;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.25rem;
  color: var(--muted);
  background:
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.placeholder span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}

.placeholder small {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* —— Join —— */
.join {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 5rem;
}

.join-card {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  border-radius: calc(var(--radius-lg) + 0.25rem);
  border: 1px solid rgba(59, 130, 246, 0.25);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(59, 130, 246, 0.2), transparent 55%),
    rgba(10, 16, 24, 0.85);
}

.join-logo {
  margin: 0 auto 1rem;
  width: 4.25rem;
  height: auto;
}

.join .cta {
  justify-content: center;
}

/* —— Footer —— */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1rem 2.5rem;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-brand img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

/* —— Motion —— */
.reveal,
.reveal-scale {
  opacity: 0;
  animation: rise 1.35s var(--ease) forwards;
}

.reveal {
  transform: translateY(22px);
}

.reveal-scale {
  transform: translateY(28px) scale(0.97);
}

.delay-1 {
  animation-delay: 0.15s;
}
.delay-2 {
  animation-delay: 0.3s;
}
.delay-3 {
  animation-delay: 0.45s;
}
.delay-4 {
  animation-delay: 0.6s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(2px);
  transition:
    opacity 1.25s var(--ease),
    transform 1.25s var(--ease),
    filter 1.25s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale,
  .float-frame,
  .live-dot.is-online {
    animation: none;
  }

  .reveal,
  .reveal-scale,
  .reveal-up {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .nav-wrap,
  .nav,
  .nav-title,
  .nav-logo {
    transition: none;
  }

  .btn:hover,
  .dept-card:hover {
    transform: none;
  }
}
