/* ========= RESET ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background-color: #01030a;
  overflow-x: hidden;
}

/* ========= STARRY BACKGROUND ========= */
.stars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 300%;
  background: radial-gradient(#ffd700 1px, transparent 1px);
  background-size: 80px 80px; /* نجوم أقل كثافة */
  animation: moveStars 90s linear infinite alternate; /* حركة أبطأ وأكثر عشوائية */
  opacity: 0.25;
  filter: brightness(1.6) blur(1px);
}

/* ========= STARRY BACKGROUND ========= */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

/* golden stars */
body::before {
  background-image: radial-gradient(circle, rgba(255, 201, 94, 1) 1px, transparent 2px);
  background-size: 18px 18px;
  mix-blend-mode: screen;
  opacity: 0.2;
  animation: twinkle 10s linear infinite alternate;
}

/* soft vignette */
body::after {
  background: radial-gradient(circle at top, rgba(10, 44, 95, 0.4), transparent 55%),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.85), transparent 60%);
  z-index: -3;
}

@keyframes twinkle {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.15;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translate3d(-50px, -80px, 0);
    opacity: 0.22;
  }
}

/* ========= GLOBAL HELPERS ========= */

main {
  padding-top: 80px; /* header offset */
}

section {
  padding: 64px min(7vw, 80px);
  scroll-margin-top: 96px; /* anchors stop below header */
}

.section {
  background: transparent;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 32px;
}

.section-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

/* ========= HEADER ========= */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 10px min(7vw, 80px);
  background: transparent;
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 1rem;
  color: #ffffff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.98rem;
}

.main-nav a {
  color: #ffd36b;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #ffc857, #ffb347);
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

/* ========= HERO ========= */

.hero-section {
  padding-top: 96px;
}

.hero-glass {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  padding: 40px min(5vw, 56px);
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.hero-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
}

.hero-cheeky {
  color: #1ec9ff;
  font-weight: 900;
}

.hero-dash {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-top: 8px;
  color: #ffc857;
  font-weight: 800;
}

.hero-text {
  margin-top: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb347, #ff9f0f);
  color: #1b1300;
  box-shadow: 0 10px 35px rgba(255, 159, 15, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(255, 159, 15, 0.6);
}

.btn-secondary {
  background: rgba(4, 12, 30, 0.6);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(8, 20, 50, 0.9);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Hero art */

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-banner {
  max-width: 100%;
  width: min(420px, 100%);
  border-radius: 28px;
  animation: float 6s ease-in-out infinite alternate;
}

/* Optional floating animation for hero image */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(12px);
  }
}

/* ========= MINDSET ========= */

.mindset-section {
  text-align: center;
}

.mindset-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
}

.mindset-banner {
  width: min(360px, 100%);
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.85);
  background: transparent; /* no card behind, فقط الصورة */
}

/* ========= TOKENOMICS ========= */

.tokenomics-section {
  text-align: center;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px;
  margin: 32px 0 26px;
}

.tokenomics-card {
  padding: 18px 16px 20px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.tokenomics-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 6px;
}

.tokenomics-value {
  font-size: 1.05rem;
  font-weight: 600;
}

.distribution-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb347, #ff9f0f);
  color: #201102;
  font-weight: 600;
  box-shadow: 0 18px 50px rgba(255, 159, 15, 0.55);
}

/* ========= ROADMAP ========= */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.roadmap-card {
  padding: 18px 18px 20px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.roadmap-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.roadmap-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ========= COMMUNITY ========= */

.community-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

/* ========= RESPONSIVE ========= */

@media (max-width: 900px) {
  .hero-glass {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-title {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .main-nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  .nav-inner {
    gap: 18px;
  }

  section {
    padding-inline: 18px;
  }

  .hero-glass {
    padding-inline: 18px;
  }
}/* ==== STAR BACKGROUND EFFECT ==== */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.stars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(#ffd700 1px, transparent 1px);
  background-size: 60px 60px;
  animation: moveStars 160s linear infinite;
  opacity: 0.4;
  filter: blur(1px) brightness(1.3);
}

@keyframes moveStars {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100px, -200px);
  }
}

