:root {
  --bg: #fff;
  --panel: #0f1014;
  --muted: #7f828a;
  --text: #f3f3f4;
  --accent: #fcb542;
  --stroke: #24262e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #000000;
  color: var(--text);
  overflow-x: hidden;
}

.page-wrap {
  width: min(92%, 1360px);
  margin: 0 auto;
}

.section-space {
  padding: 90px 0 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: #d8d8d8;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 500;
}

h2 {
  font-weight: 400;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.5px;
  margin: 0 0 28px;
}

h2 span {
  color: var(--accent);
}

.top-navbar {
  position: fixed;
  inset: 0 0 auto 0;
  padding: 28px 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.brand {
  max-width: 149.5px;
  height: auto;
  width: 100%;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;

}

.nav-links .nav-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  color: #fff;
  margin: 0 22px;
}

.nav-links .nav-link.active,
.nav-links .nav-link:hover {
  color: var(--accent);
}

.nav-actions {
  gap: 8px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border: solid 0.8px rgba(252, 181, 66, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
}

.social-circle:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-touch {
  margin-left: 10px;
  padding: 11px 22px;
  border-radius: 28px;
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  color: #fff;
  font-size: 14px;
}

.btn-touch:hover {
  background: var(--accent);
  color: #131313;
}

@media (max-width: 993px) {
  .navbar-nav {
    gap: 20px;
    align-items: center;
  }

  .nav-links .nav-link {
    color: #000;
  }

  .nav-links .nav-link.active,
  .nav-links .nav-link:hover {
    color: #fff;
  }

  .navbar-toggler {
    border-radius: 8px;
    border: solid 1px rgba(0, 0, 0, 0.2);
    background-color: #fcb542;
    color: #000000;
  }

  .bar-div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 5px;
  }

  .bar-div span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    display: block;
    border-radius: 2px;
  }

  .collapse:not(.show) {
    display: flex;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fcb542;
    transform: translateY(-100%);
    transition: transform 0.6s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .navbar-collapse.show {
    transform: translateY(0);
  }

  .navbar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
  }

  .navbar-close i {
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    background-color: #000;
  }

  /* 
  .btn-touch {
    display: none;
  } */
}

@media (max-width: 375.98px) {
  .brand {
    max-width: 129.5px;
  }

  .btn-touch {
    font-size: 13px;

  }
}