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

:root {
  --bg: #050308;
  --bg-alt: #090512;
  --fg: #fdfdfd;
  --accent: #ffd45b;
  --accent-strong: #ff9b4a;
  --accent-soft: rgba(255, 212, 91, 0.1);
  --glass-bg: rgba(13, 7, 32, 0.7);
  --border-soft: rgba(255, 255, 255, 0.06);
  --muted: #9c96c5;
  --font-main: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-lg: 24px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.65);
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.3s ease-out;
}

body {
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #1a1033, #050308 55%);
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='noStitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'%3E%3C/rect%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.45;
  z-index: -1;
}

/* TOP NAV */

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(5, 3, 15, 0.85), rgba(5, 3, 15, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.7));
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width var(--transition-med);
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 96px 6vw 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 181, 77, 0.18), transparent 55%),
              radial-gradient(circle at bottom left, rgba(255, 105, 180, 0.18), transparent 55%);
  z-index: -3;
}

.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.55) 0, transparent 45%),
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.4) 0, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.35) 0, transparent 50%);
  opacity: 0.07;
  mix-blend-mode: screen;
  animation: stars-move 18s linear infinite alternate;
  z-index: -2;
}

@keyframes stars-move {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-20px, 12px, 0) scale(1.02);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 40px;
  width: min(1120px, 100%);
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 91, 0.5), transparent 65%);
  filter: blur(6px);
  transform: translateY(16px);
  z-index: -1;
}

.hero-chick {
  width: min(320px, 70vw);
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.8));
  animation: float 3.3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero-text h1 {
  font-size: clamp(2.7rem, 3.6vw, 3.7rem);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.hero-text p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
}

/* BUTTONS */

.btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #2a1303;
  box-shadow: 0 16px 40px rgba(255, 155, 74, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 155, 74, 0.65);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--fg);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  border-color: rgba(255, 212, 91, 0.65);
  color: var(--accent);
  background: rgba(0, 0, 0, 0.12);
}

.btn-outline:hover {
  background: rgba(255, 212, 91, 0.08);
}

.btn-large {
  padding: 13px 24px;
  font-size: 1rem;
}

/* HERO BADGE */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(255, 212, 91, 0.16), rgba(8, 4, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-badge span {
  background: rgba(255, 212, 91, 0.2);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* SCROLL INDICATOR */

.scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.85;
}

.scroll-indicator span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 6px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

/* SECTIONS */

.section {
  padding: 72px 6vw 80px;
  background: linear-gradient(to bottom, var(--bg), #050308);
}

.section-alt {
  background: linear-gradient(to bottom, var(--bg-alt), #050308);
}

.section-inner {
  margin: 0 auto;
  max-width: 1080px;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
}

.split.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.card {
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
}

.card.glass {
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.55;
}

.highlight {
  color: var(--accent);
  font-weight: 700;
}

.icon-list {
  list-style: none;
  margin-top: 10px;
}

.icon-list li {
  margin-bottom: 6px;
}

/* MOOD GRID */

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mood-card {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.mood-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 212, 91, 0.24), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.mood-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 212, 91, 0.45);
}

.mood-card:hover::after {
  opacity: 1;
}

.mood-emoji {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.mood-card h3 {
  margin-bottom: 6px;
}

.mood-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* TOKENOMICS */

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.token-card {
  padding: 18px 18px 14px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(255, 212, 91, 0.22), rgba(7, 4, 19, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.token-card h3 {
  margin-bottom: 8px;
}

.token-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.token-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.token-note {
  font-size: 0.78rem;
  margin-top: 4px;
}

/* STEPS */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps li {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 212, 91, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent);
  background: rgba(255, 212, 91, 0.06);
}

.steps h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.steps p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-center {
  margin-top: 26px;
  text-align: center;
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 26px 6vw 30px;
  font-size: 0.85rem;
  color: var(--muted);
  background: #050308;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-small {
  margin-top: 3px;
  font-size: 0.78rem;
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badge {
    margin: 0 auto;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 800px) {
  .split.two-columns {
    grid-template-columns: 1fr;
  }

  .mood-grid {
    grid-template-columns: 1fr;
  }

  .tokenomics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 92px;
  }

  .hero-content {
    gap: 24px;
  }

  .hero-chick {
    width: 260px;
  }

  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
}


.mood-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}
