:root {
  --navy-950: #040b18;
  --navy-900: #071428;
  --navy-800: #0c1f3d;
  --navy-700: #143056;
  --gold-100: #fff3c4;
  --gold-200: #ffe58a;
  --gold-300: #f5c542;
  --gold-400: #d4a017;
  --gold-500: #b8860b;
  --orange: #ff7a18;
  --cyan: #8fd4ff;
  --paper: #f6f1e4;
  --muted: rgba(246, 241, 228, 0.62);
  --line: rgba(245, 197, 66, 0.22);
  --glass: rgba(7, 20, 40, 0.72);
  --radius: 22px;
  --shadow-gold: 0 0 80px rgba(245, 197, 66, 0.18);
  --font-display: "Playfair Display", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: var(--font-ui);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 122, 24, 0.16), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(245, 197, 66, 0.12), transparent 50%),
    linear-gradient(180deg, #071428 0%, #040b18 100%);
  overflow-x: hidden;
}

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

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

button,
.btn {
  font-family: inherit;
}

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--gold-300);
  color: #111;
  border-radius: 8px;
}

.skip:focus {
  top: 16px;
}

.noise,
.grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.noise {
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(143, 212, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 212, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
}

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

.egg {
  position: absolute;
  width: 28px;
  height: 36px;
  border-radius: 50% 50% 48% 48%;
  background: radial-gradient(circle at 35% 30%, #fff3c4, #f5c542 42%, #b8860b);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset -6px -8px 12px rgba(120, 70, 0, 0.35);
  opacity: 0.35;
  animation: float-egg 16s ease-in-out infinite;
}

.egg:nth-child(1) { left: 8%; top: 18%; animation-delay: 0s; }
.egg:nth-child(2) { left: 18%; top: 72%; width: 18px; height: 24px; animation-delay: -4s; }
.egg:nth-child(3) { right: 12%; top: 28%; animation-delay: -7s; }
.egg:nth-child(4) { right: 22%; top: 78%; width: 22px; height: 28px; animation-delay: -2s; }
.egg:nth-child(5) { left: 46%; top: 88%; width: 16px; height: 21px; animation-delay: -9s; }

@keyframes float-egg {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-28px) rotate(10deg); }
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(4, 11, 24, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(245, 197, 66, 0.45), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.brand b {
  color: var(--gold-300);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-200);
}

.nav-links .btn-gold,
.nav-links .btn-gold:hover,
.nav-links .btn-gold:focus-visible {
  color: #1a1204;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 31, 61, 0.55);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  animation: marquee 28s linear infinite;
}

.ticker b {
  color: var(--gold-300);
  font-weight: 600;
}

.up { color: #5dff9f; }
.down { color: #ff6b6b; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-200);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5dff9f;
  box-shadow: 0 0 0 0 rgba(93, 255, 159, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px transparent; }
}

h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.92;
  font-weight: 800;
  background: linear-gradient(100deg, #fff8dc 12%, #f5c542 38%, #fff3c4 50%, #d4a017 62%, #b8860b 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}

@keyframes shine {
  to { background-position: 220% center; }
}

.lead {
  max-width: 34rem;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.55;
}

.lead strong {
  color: var(--gold-200);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, #ffe58a, #d4a017);
  color: #1a1204;
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.28);
}

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

.btn-orange {
  background: linear-gradient(180deg, #ff9a3c, #ff7a18);
  color: #1a0c02;
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 16px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(12, 31, 61, 0.6);
}

.ca-label {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ca {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--gold-200);
  word-break: break-all;
}

.copy-btn {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: var(--gold-300);
  color: #1a1204;
  font-weight: 700;
  cursor: pointer;
}

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

.glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.35), transparent 68%);
  filter: blur(18px);
  animation: glow 4.5s ease-in-out infinite;
}

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

.arrow {
  position: absolute;
  right: 4%;
  top: 8%;
  width: 120px;
  height: 120px;
  opacity: 0.85;
  animation: rise 2.8s ease-in-out infinite;
}

@keyframes rise {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -10px); }
}

.logo-frame {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border-radius: 36px;
  overflow: hidden;
  animation: float-logo 5.5s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(245, 197, 66, 0.4),
    0 30px 80px rgba(0, 0, 0, 0.45),
    var(--shadow-gold);
}

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

::selection {
  background: rgba(245, 197, 66, 0.35);
  color: #fff8dc;
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 243, 196, 0.18) 50%, transparent 60%);
  background-size: 220% 100%;
  animation: sheen 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sheen {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0 0; }
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticker-track span {
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 8px 0 64px;
}

.chart-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.chart-head h2 {
  margin-bottom: 0;
}

.chart-lead {
  margin: 10px 0 18px;
}

.chart-shell {
  position: relative;
  height: min(680px, 78vh);
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #0b1220;
  box-shadow: var(--shadow-gold);
}

.chart-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.stat {
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 48, 86, 0.45), rgba(7, 20, 40, 0.4));
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
  color: var(--gold-200);
}

section {
  padding: 28px 0 72px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

.about-grid,
.buy-grid,
.token-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(12, 31, 61, 0.45);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.quote {
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--gold-400);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-100);
}

.token-grid {
  grid-template-columns: repeat(3, 1fr);
}

.token-card {
  min-height: 180px;
}

.big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-300);
}

.buy-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gold-300);
  color: #1a1204;
  font-weight: 700;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.phase {
  position: relative;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(7, 20, 40, 0.55);
}

.phase::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-300), var(--orange));
  border-radius: 999px;
}

.phase ol {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.phase li + li {
  margin-top: 6px;
}

.faq details {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(12, 31, 61, 0.4);
}

.faq details + details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(245, 197, 66, 0.16), rgba(255, 122, 24, 0.12)),
    rgba(12, 31, 61, 0.7);
  border: 1px solid var(--line);
}

.cta-band h2 {
  margin: 0 0 6px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

a.pill:hover,
a.pill:focus-visible {
  color: var(--gold-200);
  border-color: rgba(245, 197, 66, 0.45);
}

footer {
  position: relative;
  z-index: 1;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 12px;
  background: #122;
  color: #5dff9f;
  border: 1px solid rgba(93, 255, 159, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .stats,
  .token-grid,
  .buy-grid,
  .roadmap {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 36px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 16px;
    background: var(--navy-900);
    border: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .about-grid,
  .stats,
  .token-grid,
  .buy-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .ca-row {
    width: 100%;
  }

  h1 {
    font-size: 3rem;
  }

  .chart-shell {
    height: 520px;
    min-height: 420px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
