/* ===== HEADER & NAV ===== */

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
}

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

header nav .nav-left-side {
  display: flex;
  align-items: center;
}

header nav .nav-left-side a {
  margin-left: 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  text-transform: capitalize;
}

header nav .wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 100%;
  background: var(--color-bg);
  transition: all 0.6s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 90px 0;
  text-align: center;
  z-index: 999;
}

header nav .wrapper.nav-open {
  right: 0;
}

header nav .wrapper ul li + li {
  margin-top: 60px;
}

header nav .wrapper ul li a {
  font-weight: 400;
  font-size: 32px;
  line-height: 22px;
}

header nav .wrapper ul li.socials p {
  color: var(--color-gray);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}

/* ===== FLOATING NAV (original main branch, inside hero) ===== */

.hero-nav-container {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-nav-container .navigation {
  position: relative;
  display: flex;
  justify-content: center;
  height: 3.25rem;
  width: 100%;
  z-index: 51;
  padding: 0 2.25rem;
  pointer-events: auto;
  top: auto;
}

.navigation.is-fixed {
  position: fixed;
  top: 1.625rem;
  left: 0;
  right: 0;
  z-index: 51;
}

.navigation_manager {
  width: inherit;
  display: flex;
  justify-content: center;
  position: relative;
}

@media (min-width: 43.75rem) {
  .navigation_manager {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}

.navigation_link-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  width: 100%;
  flex-wrap: nowrap;
  border-radius: 12.5rem;
  height: 100%;
  max-height: 100%;
  list-style: none;
  margin: 0;
  padding: 0 1.625rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.navigation_link-wrapper::-webkit-scrollbar {
  display: none;
}

@media (min-width: 43.75rem) {
  .navigation_link-wrapper {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.navigation_link {
  scroll-snap-align: center;
  transition: opacity 0.7s ease-out;
}

.navigation_link:not(.navigation_selected) {
  opacity: 0.4;
}

.navigation_link,
.navigation_link > a {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.navigation_link:hover {
  opacity: 0.85 !important;
}

.navigation_link:hover > a {
  color: #c4b5fd;
}

.navigation_selected {
  opacity: 1;
}

.navigation_selected > a {
  color: #fff;
  font-weight: 500;
}

.navigation-stop {
  width: 100%;
  height: 40px;
}

/* ===== FOOTER ===== */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #a855f7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  font-size: 12px;
  color: #555;
}

.back-to-top {
  font-size: 12px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-to-top:hover {
  color: #a855f7;
}

/* Old wave styles removed */
