:root {
  --bg-deep: #02060f;
  --bg-navy: #07111f;
  --bg-panel: rgba(12, 22, 40, 0.72);
  --gold: #ffc94a;
  --gold-bright: #ffe08a;
  --gold-deep: #c47d12;
  --amber: #ff9a1f;
  --moon: #f6c45a;
  --text: #f4efe4;
  --muted: #a9b4c7;
  --line: rgba(255, 201, 74, 0.22);
  --glow: 0 0 40px rgba(255, 185, 40, 0.35);
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Quicksand", system-ui, sans-serif;
  --radius: 22px;
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 170, 40, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(80, 120, 255, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-navy) 45%, #040a14 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.moon-haze {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 180, 50, 0.12), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(120, 90, 255, 0.06), transparent 35%);
  animation: hazeDrift 18s ease-in-out infinite alternate;
}

.dust-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.dust-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(255, 210, 100, 0.8);
  opacity: 0;
  animation: dustFloat linear infinite;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: rgba(2, 6, 15, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 201, 74, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 201, 74, 0.45), var(--glow);
  animation: softPulse 4s ease-in-out infinite;
}

.brand-name {
  background: linear-gradient(120deg, var(--gold-bright), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #1a1000 !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px rgba(255, 160, 30, 0.28);
}

.nav-cta:hover {
  color: #1a1000 !important;
  transform: translateY(-2px) scale(1.02);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.25s ease;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
  position: relative;
}

.hero-orbit {
  position: absolute;
  inset: 8% 4% auto auto;
  width: min(520px, 48vw);
  height: min(520px, 48vw);
  pointer-events: none;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 201, 74, 0.16);
}

.ring-a { transform: scale(0.72); animation: ringPulse 6s ease-in-out infinite; }
.ring-b { transform: scale(0.9); animation: ringPulse 8s ease-in-out infinite 0.6s; }
.ring-c { animation: ringPulse 10s ease-in-out infinite 1.2s; }

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 200, 70, 0.9);
}

.dot-a {
  top: 50%;
  left: 50%;
  animation: orbitSpin 14s linear infinite;
}

.dot-b {
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  animation: orbitSpin 20s linear infinite reverse;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 201, 74, 0.06);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.icon-inline {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.title-glow {
  background: linear-gradient(115deg, #fff6d4 10%, var(--gold) 45%, var(--amber) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 180, 40, 0.35));
  animation: titleShimmer 5s ease-in-out infinite;
}

.hero-symbol {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(255, 185, 40, 0.45);
}

.hero-tagline {
  max-width: 28ch;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.hero-actions,
.buy-actions,
.chart-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  color: inherit;
}

.btn-ghost img[src*="x.svg"],
.social-card img[src*="x.svg"],
.footer-links img[src*="x.svg"] {
  color: var(--gold-bright);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 40%, var(--amber));
  color: #1a1000;
  box-shadow: 0 10px 30px rgba(255, 160, 30, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(255, 160, 30, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 201, 74, 0.55);
  background: rgba(255, 201, 74, 0.08);
}

.hero-stage {
  display: grid;
  place-items: center;
  position: relative;
}

.moon-core {
  position: relative;
  width: min(430px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: floatBob 5.5s ease-in-out infinite;
}

.moon-pulse,
.moon-halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.moon-pulse {
  inset: 6%;
  background: radial-gradient(circle, rgba(255, 190, 60, 0.35), transparent 68%);
  filter: blur(8px);
  animation: softPulse 3.5s ease-in-out infinite;
}

.moon-halo {
  inset: -8%;
  border: 1px solid rgba(255, 201, 74, 0.2);
  box-shadow: 0 0 60px rgba(255, 175, 40, 0.2), inset 0 0 40px rgba(255, 175, 40, 0.08);
  animation: haloSpin 24s linear infinite;
}

.hero-logo {
  width: 86%;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease-out;
  filter: drop-shadow(0 0 28px rgba(255, 170, 40, 0.45));
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1rem, 5vw, 4rem);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 0.85rem;
  background: linear-gradient(120deg, #fff8e4, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.section-text.center {
  text-align: center;
}

.about-frame {
  position: relative;
  width: min(380px, 100%);
  margin: 0 auto;
  padding: 1rem;
}

.about-logo {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 201, 74, 0.28), 0 20px 60px rgba(0, 0, 0, 0.45), var(--glow);
  animation: floatBob 6s ease-in-out infinite;
}

.frame-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 14px rgba(255, 220, 120, 0.9);
  animation: sparkTwinkle 2.8s ease-in-out infinite;
}

.frame-spark.s1 { top: 12%; left: 8%; }
.frame-spark.s2 { top: 22%; right: 4%; animation-delay: 0.7s; }
.frame-spark.s3 { bottom: 18%; left: 18%; animation-delay: 1.3s; }

.about-traits {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.about-traits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 201, 74, 0.12);
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-traits li:hover {
  transform: translateX(6px);
  border-color: rgba(255, 201, 74, 0.4);
}

.trait-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 0 12px rgba(255, 180, 40, 0.7);
  flex-shrink: 0;
}

.howtobuy {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 170, 40, 0.08), transparent 45%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015), transparent);
}

.buy-track {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.buy-step {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 28, 48, 0.9), rgba(8, 14, 26, 0.85));
  border: 1px solid rgba(255, 201, 74, 0.14);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.buy-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 180, 40, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.buy-step:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 201, 74, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 170, 40, 0.12);
}

.buy-step:hover::before {
  opacity: 1;
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.step-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(255, 201, 74, 0.08);
  border: 1px solid rgba(255, 201, 74, 0.18);
}

.step-icon-wrap.gold {
  background: linear-gradient(145deg, rgba(255, 200, 80, 0.2), rgba(255, 140, 20, 0.12));
}

.step-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logo-mini {
  border-radius: 50%;
}

.buy-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.buy-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
}

.buy-actions {
  justify-content: center;
  margin-top: 2rem;
}

.chart-shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 74, 0.2);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 170, 40, 0.08);
}

.chart-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 180, 40, 0.12), transparent 50%);
  pointer-events: none;
  animation: softPulse 5s ease-in-out infinite;
}

.chart-shell iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(640px, 75vh);
  border: 0;
  display: block;
  background: #0b1220;
}

.chart-link-row {
  justify-content: center;
  margin-top: 1.4rem;
}

.joinus {
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.join-banner-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto 2rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 74, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 50px rgba(255, 170, 40, 0.18);
}

.banner-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255, 185, 50, 0.2), transparent 55%);
  animation: softPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.join-banner {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  animation: bannerBreathe 7s ease-in-out infinite;
}

.join-links {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.4rem 1rem;
  border-radius: 20px;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 201, 74, 0.14);
  font-family: var(--font-display);
  font-size: 1.05rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 200, 80, 0.35));
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 201, 74, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 170, 40, 0.15);
}

.site-footer {
  border-top: 1px solid rgba(255, 201, 74, 0.12);
  padding: 2rem clamp(1rem, 5vw, 4rem) 2.5rem;
  background: rgba(0, 0, 0, 0.28);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.footer-links a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 201, 74, 0.16);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.footer-links a img {
  width: 18px;
  height: 18px;
}

.footer-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 201, 74, 0.5);
}

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

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

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

@keyframes softPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.85; }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg) translateX(min(230px, 22vw)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(min(230px, 22vw)) rotate(-360deg); }
}

@keyframes haloSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes titleShimmer {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255, 180, 40, 0.28)); }
  50% { filter: drop-shadow(0 0 34px rgba(255, 180, 40, 0.55)); }
}

@keyframes sparkTwinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes hazeDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, 1.5%, 0) scale(1.05); }
}

@keyframes dustFloat {
  0% { transform: translateY(110vh) scale(0.6); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-10vh) scale(1.1); opacity: 0; }
}

@keyframes bannerBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-orbit {
    inset: auto;
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, 90vw);
    height: min(420px, 90vw);
  }

  .hero-copy {
    order: 2;
  }

  .hero-stage {
    order: 1;
  }

  .hero-tagline {
    margin-inline: auto;
  }

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

  .eyebrow {
    margin-inline: auto;
  }

  .section-inner,
  .buy-track,
  .join-links {
    grid-template-columns: 1fr;
  }

  .buy-track {
    gap: 0.85rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(5, 10, 20, 0.96);
    border: 1px solid rgba(255, 201, 74, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
    justify-content: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
