:root {
  --bg: #020617;
  --bg-deep: #000011;
  --accent: #22d3ee;
  --accent2: #a855f7;
  --accent3: #f97316;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border: rgba(148,163,184,0.35);
  --shadow-strong: 0 24px 80px rgba(0,0,0,0.95);
}

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

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, #0f172a 0, #020617 45%, #000 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2,6,23,0.96), rgba(2,6,23,0.72));
  border-bottom: 1px solid rgba(148,163,184,0.5);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-orb {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  padding: 2px;
  background: conic-gradient(from 140deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
  box-shadow: 0 0 24px rgba(34,211,238,0.8);
}

.logo-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, #0b1120, #000);
  overflow: hidden;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

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

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

.nav-cta {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.btn {
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.94);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.btn-primary {
  border: none;
  background-image: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #020617;
  font-weight: 800;
  box-shadow: 0 0 32px rgba(34,211,238,0.85);
}

.btn-pill-soft {
  background: radial-gradient(circle at top, rgba(34,211,238,0.16), rgba(15,23,42,0.96));
  border-color: rgba(94,234,212,0.65);
}

.marquee {
  width: 100%;
  border-top: 1px solid rgba(148,163,184,0.35);
  border-bottom: 1px solid rgba(148,163,184,0.35);
  overflow: hidden;
  background: radial-gradient(circle at top, #020617, #000);
}

.marquee-inner {
  display: flex;
  gap: 2rem;
  padding: 0.45rem 1.6rem;
  white-space: nowrap;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #7dd3fc;
  animation: marquee 20s linear infinite;
}

.hero-shell {
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(148,163,184,0.25) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: 0.14;
  mask-image: radial-gradient(circle at top, black 0, transparent 60%);
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at top left, rgba(34,211,238,0.22), transparent 60%),
    radial-gradient(circle at bottom right, rgba(168,85,247,0.25), transparent 60%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.9rem 1.6rem 3.6rem;
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.3fr);
  gap: 2.6rem;
}

@media (max-width: 960px) {
  .nav {
    flex-wrap: wrap;
  }
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: minmax(0,1fr);
    padding-top: 2.2rem;
  }
}

.hero-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #67e8f9;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.22rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(45,212,191,0.7);
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), rgba(15,23,42,0.7));
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,0.9);
}

.hero-title {
  margin-top: 0.9rem;
  font-size: clamp(2.5rem, 3.5vw, 3.4rem);
  line-height: 1.02;
}

.hero-title span {
  background: linear-gradient(120deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 36rem;
  color: var(--muted);
}

.hero-badge-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-soft {
  font-size: 0.78rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  color: var(--muted);
  background: rgba(15,23,42,0.9);
}

.badge-soft-strong {
  border-color: rgba(34,211,238,0.9);
  color: #e0f2fe;
  background: radial-gradient(circle at 20% 0, rgba(34,211,238,0.32), rgba(15,23,42,0.96));
}

.hero-ctas {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 30rem;
}

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: absolute;
  inset: 3%;
  border-radius: 999px;
  border: 1px dashed rgba(56,189,248,0.7);
  transform: rotate(-12deg);
}

.hero-orbit-secondary {
  position: absolute;
  inset: 14%;
  border-radius: 999px;
  border: 1px dashed rgba(168,85,247,0.7);
  transform: rotate(8deg);
}

.hero-card {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 32px;
  padding: 10px;
  background: radial-gradient(circle at top, #020617, #000);
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  animation: breathe 6s ease-in-out infinite;
}

.hero-card-main {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  align-self: flex-start;
  background: linear-gradient(90deg, rgba(34,211,238,0.2), rgba(15,23,42,0.96));
  border: 1px solid rgba(34,211,238,0.7);
}

.hero-floating-chip {
  position: absolute;
  right: -6px;
  top: 18px;
  padding: 0.22rem 0.7rem;
  font-size: 0.7rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(34,211,238,0.65);
  color: #e0f2fe;
  box-shadow: 0 0 22px rgba(34,211,238,0.8);
}

.hero-chip-emoji {
  font-size: 0.9rem;
}

.section-shell {
  border-top: 1px solid rgba(148,163,184,0.35);
  background: radial-gradient(circle at top right, rgba(34,211,238,0.12), transparent 60%);
}

.section-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.2rem 1.6rem 3.4rem;
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 2.1fr);
  gap: 2rem;
}

@media (max-width: 960px) {
  .section-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

.card {
  border-radius: 1.6rem;
  padding: 1.5rem 1.4rem;
  background: radial-gradient(circle at top, #020617, #020617);
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: var(--shadow-strong);
}

.card-title-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.card-heading {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.86rem;
  color: var(--muted);
}

.card-list {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.card-list li {
  margin-bottom: 0.35rem;
}

.presale-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.stat-block {
  font-size: 0.8rem;
}

.stat-label {
  color: var(--muted);
}

.stat-value {
  font-weight: 600;
}

.progress-wrap {
  margin-top: 0.9rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.progress-bar {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(15,23,42,0.96);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-image: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  box-shadow: 0 0 18px rgba(34,211,238,0.9);
  transition: width 0.25s ease-out;
}

.pay-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.8rem;
}

.input-group {
  border-radius: 0.9rem;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.96);
  padding: 0.55rem 0.75rem;
}

.input-label {
  font-size: 0.72rem;
  color: var(--muted);
}

.input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.input-row input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.15rem 0;
  outline: none;
}

.input-row span {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.currency-tabs {
  margin-top: 0.9rem;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  overflow: hidden;
}

.currency-tab {
  font-size: 0.75rem;
  padding: 0.38rem 0.9rem;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--muted);
}

.currency-tab.active {
  background: rgba(15,23,42,0.96);
  color: var(--text);
}

.btn-full {
  margin-top: 0.9rem;
  width: 100%;
  justify-content: center;
}

.presale-note {
  margin-top: 0.6rem;
  font-size: 0.74rem;
  color: var(--muted);
}

.meme-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.meme-thumb {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.7);
  cursor: pointer;
}

.meme-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease-out;
}

.meme-thumb:hover img {
  transform: scale(1.05);
}

.meme-thumb-label {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.88);
  font-size: 0.7rem;
}

.sections-shell {
  border-top: 1px solid rgba(148,163,184,0.35);
  background: radial-gradient(circle at bottom left, rgba(37,99,235,0.16), transparent 60%);
}

.sections-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.4rem 1.6rem 3.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.4fr);
  gap: 2rem;
}

@media (max-width: 960px) {
  .sections-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

footer {
  border-top: 1px solid rgba(148,163,184,0.4);
  padding: 1rem 1.6rem 1.4rem;
  font-size: 0.76rem;
  color: var(--muted);
  background: #020617;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

footer a {
  color: #7dd3fc;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal {
  max-width: 680px;
  width: 92%;
  max-height: 90vh;
  background: #020617;
  border-radius: 1.4rem;
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: var(--shadow-strong);
  padding: 1.1rem 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.modal img {
  width: 100%;
  border-radius: 1rem;
  object-fit: contain;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.modal-title {
  font-size: 0.9rem;
}

.modal-close {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.96);
  padding: 0.15rem 0.6rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--muted);
}

.modal-caption {
  font-size: 0.8rem;
  color: var(--muted);
}

/* animations */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes breathe {
  0% { transform: scale(1); box-shadow: var(--shadow-strong); }
  50% { transform: scale(1.03); box-shadow: 0 30px 90px rgba(34,211,238,0.6); }
  100% { transform: scale(1); box-shadow: var(--shadow-strong); }
}

.coin-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.coin {
  position: absolute;
  top: -40px;
  font-size: 1.2rem;
  animation: coinFall 14s linear infinite;
  opacity: 0.9;
}

.coin:nth-child(1) { left: 5%; animation-delay: 0s; }
.coin:nth-child(2) { left: 18%; animation-delay: 2s; }
.coin:nth-child(3) { left: 32%; animation-delay: 4s; }
.coin:nth-child(4) { left: 46%; animation-delay: 1s; }
.coin:nth-child(5) { left: 60%; animation-delay: 3s; }
.coin:nth-child(6) { left: 74%; animation-delay: 5s; }
.coin:nth-child(7) { left: 88%; animation-delay: 6s; }

@keyframes coinFall {
  0% { transform: translate3d(0, -40px, 0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translate3d(0, 120vh, 0) rotate(360deg); opacity: 0; }
}

/* Chatbot widget */
.chatbot-toggle {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
}

.chatbot-toggle button {
  border-radius: 999px;
  border: 1px solid rgba(34,211,238,0.8);
  background: radial-gradient(circle at top, rgba(34,211,238,0.3), #020617);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 26px rgba(34,211,238,0.8);
}

.chatbot-toggle img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 999px;
}

.chatbot-panel {
  position: fixed;
  right: 1.2rem;
  bottom: 4.7rem;
  width: min(320px, 90vw);
  border-radius: 1.2rem;
  background: #020617;
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: 0 26px 80px rgba(0,0,0,0.98);
  padding: 0.9rem 0.9rem 0.8rem;
  z-index: 39;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(34,211,238,0.8);
}

.chatbot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chatbot-title {
  font-size: 0.78rem;
}

.chatbot-status {
  font-size: 0.7rem;
  color: var(--muted);
}

.chatbot-close {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.8);
  background: rgba(15,23,42,0.96);
  font-size: 0.72rem;
  padding: 0.1rem 0.5rem;
  cursor: pointer;
  color: var(--muted);
}

.chatbot-body {
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(15,23,42,0.96);
  border-radius: 0.8rem;
  padding: 0.5rem 0.55rem;
  max-height: 170px;
  overflow-y: auto;
}

.chat-msg {
  margin-bottom: 0.35rem;
}

.chat-msg.me {
  text-align: right;
}

.chat-msg span {
  display: inline-block;
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.7);
}

.chat-msg.me span {
  background: radial-gradient(circle at top, rgba(34,211,238,0.3), rgba(15,23,42,0.96));
  border-color: rgba(34,211,238,0.85);
  color: #e0f2fe;
}

.chatbot-input-row {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.1rem;
}

.chatbot-input-row input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.8);
  background: rgba(15,23,42,0.96);
  padding: 0.32rem 0.6rem;
  font-size: 0.76rem;
  color: var(--text);
  outline: none;
}

.chatbot-input-row button {
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 0.32rem 0.7rem;
  font-size: 0.76rem;
  cursor: pointer;
  color: #020617;
  font-weight: 600;
}

/* Price ticker bar */
.price-ticker {
  width: 100%;
  border-top: 1px solid rgba(148,163,184,0.5);
  border-bottom: 1px solid rgba(148,163,184,0.5);
  background: radial-gradient(circle at bottom, #020617, #000);
  font-size: 0.78rem;
}

.price-ticker-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.4rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.price-pill {
  border-radius: 999px;
  padding: 0.18rem 0.7rem;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.96);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.price-pill span.symbol {
  font-weight: 600;
}

.price-pill span.value {
  color: #e0f2fe;
}

.price-pill span.change {
  font-size: 0.72rem;
}

.price-pill span.change.positive {
  color: #4ade80;
}

.price-pill span.change.negative {
  color: #f97373;
}
