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

body {
  background: radial-gradient(circle at top, #0b0b0b, #000);
  color: #eaffea;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  z-index: 10;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  width: 28px;
  height: 28px;
}

.header-title {
  font-weight: bold;
}

.header-nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #9eff9e;
  font-size: 14px;
}

.header-nav a:hover {
  color: #c8ffc8;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 96px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  text-shadow: 0 0 20px rgba(120,255,120,0.6);
}

.hero p {
  margin-top: 12px;
  font-size: 18px;
  color: #a8ff9a;
}

/* SECTIONS */
.section {
  padding: 120px 20px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.section p {
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ROADMAP */
.roadmap .under-construction {
  margin: 20px 0;
  padding: 14px;
  border: 1px dashed #9eff9e;
  color: #9eff9e;
  display: inline-block;
}

/* LINKS */
.links a {
  display: block;
  margin: 10px 0;
  color: #9eff9e;
  text-decoration: none;
}

.links a:hover {
  color: #c8ffc8;
}

/* FOOTER */
.footer {
  padding: 30px;
  text-align: center;
  background: #000;
  font-size: 14px;
}

/* KIWI RAIN */
.kiwi-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.kiwi {
  position: absolute;
  top: -80px;
  width: 52px;
  height: 52px;
  background: url("half-kiwi.png") center/contain no-repeat;
  opacity: 0.95;
  animation: fall linear infinite;
}

.kiwi:nth-child(1) { left: 10%; animation-duration: 16s; }
.kiwi:nth-child(2) { left: 25%; animation-duration: 20s; }
.kiwi:nth-child(3) { left: 40%; animation-duration: 18s; }
.kiwi:nth-child(4) { left: 60%; animation-duration: 22s; }
.kiwi:nth-child(5) { left: 75%; animation-duration: 17s; }
.kiwi:nth-child(6) { left: 90%; animation-duration: 21s; }

@keyframes fall {
  from {
    transform: translateY(-100px) rotate(0deg);
  }
  to {
    transform: translateY(110vh) rotate(360deg);
  }
}
.roadmap-item {
  border: 1px solid rgba(150,255,150,0.25);
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  text-align: left;
}

.roadmap-item h3 {
  margin-bottom: 10px;
  color: #baffba;
}

.roadmap-item ul {
  padding-left: 20px;
}

.roadmap-item li {
  margin-bottom: 6px;
}

.roadmap-item.done {
  border-color: #5cff5c;
}

.roadmap-item.active {
  border-color: #ffd966;
}
