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

html, body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: #0c0f11;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f3 60%, #ffeedd 100%);
  display: flex;
  flex-direction: column;
}

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0.25rem 2rem 0.25rem 0.75rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.logo-img {
  height: clamp(44px, 5vh, 64px);
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.9rem;
}

.nav-auth {
  display: flex;
  gap: 0.9rem;
  margin-left: 6rem;
}

.nav-pill,
.nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(40px, 4.8vh, 52px);
  padding: 0 clamp(18px, 1.8vw, 30px);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-pill {
  background: rgba(255, 255, 255, 0.7);
  color: #264653;
  border: 1px solid rgba(38, 70, 83, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(38, 70, 83, 0.06);
}
.nav-pill:hover {
  background: #ffffff;
  color: #ff4500;
  border-color: rgba(255, 69, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 69, 0, 0.12);
}
.nav-pill.active {
  background: #ffffff;
  color: #ff4500;
  border-color: rgba(255, 69, 0, 0.25);
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.15);
}

.nav-btn {
  background: linear-gradient(135deg, #ff5a1f 0%, #ff4500 100%);
  color: #fffcfb;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 14px rgba(255, 69, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.nav-btn:hover {
  background: linear-gradient(135deg, #ff6a32 0%, #e63e00 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(255, 69, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.nav-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 69, 0, 0.3);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 2.5rem 2rem;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}

.hero-left {
  flex: 1 1 58%;
  max-width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1rem, 3vh, 2rem);
  min-width: 0;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.8vw, 72px);
  line-height: 1.15;
  color: #0c0f11;
}

.hl-orange { color: #ff4500; }
.hl-green  { color: #bfcd36; }

.hero-desc {
  font-size: clamp(14px, 1.4vw, 22px);
  line-height: 1.7;
  color: #0e0f10;
  max-width: 36em;
}

/* ── Stats row ── */
.stats {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-num {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1;
  color: #0c0f11;
}

.stat-label {
  font-size: clamp(13px, 1.2vw, 20px);
  color: #0c0f11;
  white-space: nowrap;
}

.stat-divider {
  display: inline-block;
  width: 1px;
  height: clamp(56px, 9vh, 90px);
  background: #333;
  flex-shrink: 0;
}

/* ── Right column / burger ── */
.hero-right {
  flex: 1 1 42%;
  max-width: 42%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.2));
}

/* ═══════════════ ANIMATIONS ═══════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
}

.fade-in.show {
  animation: fadeSlideUp 0.55s ease forwards;
}

@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 960px) {
  html, body { overflow: auto; height: auto; }

  .navbar {
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
  .logo { margin-right: 0; width: 100%; }
  .nav-links, .nav-auth {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .hero {
    flex-direction: column;
    padding: 1rem 1.25rem 2rem;
    gap: 1.5rem;
  }
  .hero-left, .hero-right { flex: none; max-width: 100%; width: 100%; }
  .hero-image { max-width: 340px; margin-top: 0; }
  .stats { gap: 1rem; }
}
