 /* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: #0f0f0f;
  color: #eaeaea;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: #0e1015;
  border-bottom: 1px solid #1f1f1f;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo img {
  width: 42px;
  height: auto;
}

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

.nav-links a {
  text-decoration: none;
  color: #cfcfcf;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: #1a1f2a;
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  padding: 90px 24px 70px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.logo-wrap {
  margin-bottom: 28px;
}

.logo-img {
  width: 180px;
  height: auto;
  opacity: 0.9;
}

/* Title */
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 8px;
}

.tagline {
  color: #d4a254;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Subtitle */
.subtitle {
  max-width: 640px;
  margin: 0 auto 34px;
  color: #b9b9b9;
  font-size: 1.05rem;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d4a254, #b8863b);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 162, 84, 0.35);
}

/* ================= PANELS ================= */
.panel {
  max-width: 760px;
  margin: 50px auto;
  padding: 32px 26px;
  background: #131313;
  border-radius: 18px;
  border: 1px solid #2a2a2a;
}

.panel.alt {
  background: #111216;
}

.panel h2 {
  color: #d4a254;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.panel p {
  color: #cfcfcf;
}

/* Lists */
.list {
  list-style: none;
  margin-top: 12px;
}

.list li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d4a254;
}

/* ================= CTA ================= */
.cta {
  text-align: center;
  padding: 80px 24px;
  background: #0e1015;
  margin-top: 60px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 26px;
  color: #b9b9b9;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 26px 0;
  font-size: 0.9rem;
  color: #7c7c7c;
}

/* ================= MOBILE ================= */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #0e1015;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 260px;
  }

  .nav-links a {
    padding: 12px 20px;
  }

  .hero h1 {
    font-size: 38px;
  }
}


.roadmap-phase {
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid rgba(212, 162, 84, 0.6);
}

.roadmap-phase h3 {
  margin-bottom: 10px;
  color: #d4a254;
}
