/* ─── FONTS ─── */
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-XXThin.ttf') format('truetype'); font-weight: 100; font-style: normal; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-XXThin-Italic.ttf') format('truetype'); font-weight: 100; font-style: italic; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-XThin.ttf') format('truetype'); font-weight: 200; font-style: normal; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-XThin-Italic.ttf') format('truetype'); font-weight: 200; font-style: italic; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Thin.ttf') format('truetype'); font-weight: 300; font-style: normal; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Thin-Italic.ttf') format('truetype'); font-weight: 300; font-style: italic; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Light.ttf') format('truetype'); font-weight: 350; font-style: normal; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Light-Italic.ttf') format('truetype'); font-weight: 350; font-style: italic; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Roman.ttf') format('truetype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Roman-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Medium-Italic.ttf') format('truetype'); font-weight: 500; font-style: italic; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Bold-Italic.ttf') format('truetype'); font-weight: 700; font-style: italic; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; }
@font-face { font-family: 'Neue Haas Display'; src: url('fonts/Neue Haas Grotesk/NHD-Black-Italic.ttf') format('truetype'); font-weight: 900; font-style: italic; }

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #DBFF00;
  --fg: #1F1F1F;
  --black: #0F0F0F;
  --white: #FFFFFF;
  --font: 'Neue Haas Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body { width: 100%; height: 100%; }

body {
  background-color: #FFFFFF;
  color: var(--fg);
  min-height: 100vh;
  font-family: var(--font);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  overflow: hidden;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  z-index: 100;
}

.navbar__bar {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.navbar__menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0 0 0 12px;
}

.navbar__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.navbar__logo svg {
  width: 47.7px;
  height: 28px;
}

.navbar__join {
  background: var(--bg);
  color: #1F1F1F;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 40px;

  padding: 12px 20px;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.navbar__join:hover { opacity: 0.85; }

/* ─── DROPDOWN ─── */
.navbar__dropdown {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar__dropdown.is-open { max-height: 240px; }

.navbar__dropdown ul { list-style: none; padding: 0.5rem 0 1rem; }

.navbar__dropdown ul li a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.5rem;
  transition: color 0.15s, padding-left 0.2s;
}

.navbar__dropdown ul li a:hover { color: var(--bg); padding-left: 2rem; }

/* ─── TICKER ─── */
.ticker {
  background: var(--bg);
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  height: 32px;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  animation: ticker 18s linear infinite;
}

.ticker__item {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker__dot {
  display: inline-flex;
  align-self: center;
  width: 4px;
  height: 4px;
  background: var(--black);
  border-radius: 50%;
  margin: 0 1.2rem;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero__text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;

  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__sub {
  font-family: var(--font);
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
}

.hero__arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
  }

  .navbar__bar {
    height: 56px;
    padding: 8px 16px;
  }

  .navbar__menu-btn {
    padding: 0;
    font-size: 15px;
  }

  .navbar__logo svg {
    width: 40px;
    height: 23.4px;
  }

  .navbar__join {
    width: auto;
    height: 36px;
    padding: 8px 16px;
    font-size: 15px;
  }

  .ticker {
    height: 28px;
  }

  .ticker__item {
    font-size: 11px;
  }
}

/* ─── TICKER SCROLL HIDE (desktop) ─── */
.ticker {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0);
  position: relative;
  z-index: 1;
}

.ticker--hidden {
  transform: translateY(-100%);
}

/* ─── LOREM PLACEHOLDER ─── */
.lorem {
  padding: 80px 0;
}

.lorem__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lorem__inner h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 28px;
  color: var(--fg);
  margin-bottom: 16px;
  margin-top: 48px;
}

.lorem__inner h2:first-child {
  margin-top: 0;
}

.lorem__inner p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 20px;
}

/* ─── BURGER ICON SIZE ─── */
.navbar__menu-btn i {
  font-size: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── BURGER ICON ANIMATION ─── */
.navbar__menu-btn i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s ease;
}

.navbar__menu-btn i.icon--open {
  transform: rotate(90deg);
}

/* ─── DROPDOWN ABOVE TICKER ─── */
.navbar__dropdown {
  position: relative;
  z-index: 3;
}

/* ─── TICKER HIDDEN FIX ─── */
.ticker--hidden {
  transform: translateY(-110%) !important;
}
