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

:root {
  --bg: #050508;
  --bg-soft: #101018;
  --accent: #ffd86b;
  --accent-soft: rgba(255, 216, 107, 0.14);
  --text: #000000;
  --muted: #000000;
  --danger: #ff6b81;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --blur: 38px;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  background:
  radial-gradient(circle at top, #ffeef5 0, #f5f3ff 40%, #e7f6ff 80%);
  color: var(--text);
  overflow-x: hidden;
}

/* Background orbit */

.bg-orbit {
  position: fixed;
  inset: -40%;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 209, 227, 0.8) 0, transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(208, 227, 255, 0.9) 0, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(215, 255, 231, 0.9) 0, transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0, rgba(255,255,255,0.12) 1px, transparent 1px, transparent 3px);
  filter: blur(var(--blur));
  opacity: 0.75;
  pointer-events: none;
  z-index: -2;
}

/* Top nav */

.top-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, 100% - 32px);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}

.logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff 0, #ffd86b 30%, #ff6b81 100%);
  box-shadow: 0 0 18px rgba(255, 216, 107, 0.85);
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.12s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  min-height: 100vh;
  width: min(1140px, 100% - 32px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding-top: 96px;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 40px;
  background: radial-gradient(circle at 20% 0%, rgba(255, 216, 107, 0.12), transparent 60%),
    rgba(5, 5, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 88%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.9));
}

.floating {
  animation: float 4.5s ease-in-out infinite;
}

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

.hero-content {
  padding-inline: 6px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.4;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.hero-tags span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255,255,255,0.8);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.btn {
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ffd86b, #ff9f6b);
  color: #241b07;
  box-shadow: 0 12px 30px rgba(255, 216, 107, 0.5);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(255, 216, 107, 0.7);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

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

.btn.text {
  background: transparent;
  color: var(--muted);
  padding-inline: 6px;
}

.btn.text:hover {
  color: var(--accent);
}

.hero-caption {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.9;
}

/* Sections */

.section {
  padding: 80px 16px 40px;
}

.section-inner {
  width: min(1100px, 100% - 16px);
  margin: 0 auto;
}

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

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

.section-header p {
  font-size: 14px;
  color: var(--muted);
}

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

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
}

.about-text h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.about-text ul {
  list-style: none;
  margin-bottom: 16px;
}

.about-text li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.about-text li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--accent);
}

.about-note {
  font-size: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

/* Moments */

.about-moments {
  display: grid;
  gap: 14px;
}

.moment-card {
  background: radial-gradient(circle at 0 0, rgba(255, 216, 107, 0.06), transparent 45%),
    rgba(255,255,255,0.9);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  transform-origin: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.moment-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 18px;
}

.moment-label {
  font-size: 13px;
  color: var(--muted);
}

.moment-card:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 216, 107, 0.5);
}

/* Tokenomics */

.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.token-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 216, 107, 0.07), rgba(8, 8, 14, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px 16px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
  position: relative;
  overflow: hidden;
}

.token-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease;
}

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

.token-card p {
  font-size: 13px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

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

/* Roadmap */

.roadmap {
  display: grid;
  gap: 14px;
}

.road-step {
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 16px 18px;
  position: relative;
  overflow: hidden;
}

.step-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(255, 216, 107, 0.12);
  color: var(--accent);
  margin-bottom: 6px;
}

.road-step h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.road-step p {
  font-size: 13px;
  color: var(--muted);
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* Floating tiny Driplet */

.floating-driplet {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  overflow: hidden;
}

.floating-driplet img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  animation: bob 3s ease-in-out infinite;
}

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

.floating-driplet::after {
  content: "back to top";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.floating-driplet:hover {
  transform: translateY(-2px);
}

.floating-driplet:active {
  transform: translateY(0);
}

/* Footer */

.footer {
  padding: 32px 16px 26px;
}

.footer-inner {
  width: min(1100px, 100% - 16px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}

.footer-small {
  opacity: 0.8;
}

/* Responsive */

@media (max-width: 900px) {
  .top-nav {
    padding-inline: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 96px;
  }

  .hero-image-wrap {
    order: 1;
    margin-bottom: 8px;
  }

  .hero-content {
    order: 2;
  }

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

  .floating-driplet {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .hero {
    gap: 22px;
  }

  .section {
    padding-top: 64px;
  }

  .moment-card {
    padding: 10px;
  }
}


/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 10px 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-item img {
  width: 100%;
  border-radius: 18px;
  object-fit: contain;
}

.gallery-item figcaption {
  font-size: 12px;
  color: var(--muted);
}


.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 244, 214, 0.9) 0, rgba(255, 244, 214, 0.0) 60%),
    radial-gradient(circle at 20% 90%, rgba(210, 228, 255, 0.9) 0, rgba(210, 228, 255, 0.0) 60%);
  filter: blur(14px);
  z-index: 0;
}

.hero-image-wrap {
  background: rgba(255,255,255,0.92);
}

.hero-img {
  position: relative;
  z-index: 1;
}
