:root {
  --neon: #C8FF00;
  --neon-glow: rgba(200, 255, 0, .35);
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --card: rgba(255, 255, 255, .04);
  --card-border: rgba(255, 255, 255, .08);
  --white: #ffffff;
  --grey: #8a8a8a;
  --grey-light: #c0c0c0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .6);
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --nav-height: 72px;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

#navbar-root {
  min-height: var(--nav-height);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.btn {
  min-height: 44px;
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid rgba(200, 255, 0, .8);
  outline-offset: 3px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .06em;
  color: var(--white);
}

.nav-logo span {
  color: var(--neon);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  padding: 10px 20px;
  font-size: 13px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  user-select: none;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 40px);
  letter-spacing: .06em;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--neon);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--grey-light);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  background: #050505;
  border-top: 1px solid var(--card-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 70px 0 50px;
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.footer-brand-logo span {
  color: var(--neon);
}

.footer-brand-text {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-social:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(200, 255, 0, .05);
}

.footer-col-title {
  font-family: var(--font-condensed);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .9rem;
  color: var(--grey);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--neon);
}

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-copy {
  font-size: .85rem;
  color: var(--grey);
}

.footer-copy span {
  color: var(--neon);
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .section-pad {
    padding: 86px 0;
  }

  .nav-links {
    gap: 22px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta .nav-btn {
    display: none;
  }

  .nav-inner {
    padding: 0 18px;
  }

  .mobile-nav a {
    font-size: 2.2rem;
  }

  .section-pad {
    padding: 76px 0;
  }

  .section-pad-sm {
    padding: 56px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 24px;
  }

  .mobile-nav a {
    font-size: 1.9rem;
  }

  .btn {
    padding: 12px 22px;
  }

  .footer-brand-logo {
    font-size: 1.7rem;
  }
}
