:root {
  --bg: #07111f;
  --card: rgba(11, 24, 44, 0.76);
  --line: rgba(120, 185, 255, 0.22);
  --text: #eaf3ff;
  --muted: #8fb0cf;
  --brand: #ff9b00;
  --brand-2: #4de6ff;
  --good: #53d47a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Chakra Petch", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(77, 230, 255, 0.16), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(255, 155, 0, 0.2), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, #03070e 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 28rem;
  aspect-ratio: 1;
  filter: blur(56px);
  opacity: 0.33;
  pointer-events: none;
  z-index: 0;
}

.orb-a {
  background: #ff9b00;
  top: -10rem;
  left: -8rem;
}

.orb-b {
  background: #34d6ff;
  right: -10rem;
  bottom: -12rem;
}

.status-strip,
.site-header,
main,
.site-footer,
.floating-buy {
  position: relative;
  z-index: 1;
}

.status-strip {
  width: min(1100px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(83, 212, 122, 0.4);
  border-radius: 999px;
  background: rgba(6, 24, 12, 0.55);
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
  color: #ccf8d8;
  font-size: 0.9rem;
}

#lastUpdated {
  margin-left: auto;
  color: #90d7a7;
}

.dot-live {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 14px rgba(83, 212, 122, 0.8);
}

.site-header {
  width: min(1100px, calc(100% - 2rem));
  margin: 0.9rem auto 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 12, 24, 0.78);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Bungee", cursive;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
}

.brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: contain;
  background: #b4bcc8;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.94rem;
  opacity: 0.9;
}

nav a:hover {
  color: var(--brand-2);
}

main {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.eyebrow {
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin: 0 0 0.9rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1rem, 3.6vw, 2.6rem);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-logo {
  width: clamp(5.2rem, 11vw, 7rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
  object-fit: contain;
  background: #aab3bf;
}

.hero h1 {
  font-family: "Bungee", cursive;
  font-size: clamp(2.5rem, 10vw, 6rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.hero h1 span {
  display: block;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1rem, 2.7vw, 1.55rem);
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.8rem;
  letter-spacing: 0;
}

.lead {
  margin-top: 1.1rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-solid {
  background: linear-gradient(120deg, var(--brand), #ffcc4d);
  color: #111;
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  color: #b6cbdf;
  background: rgba(255, 255, 255, 0.03);
}

.coin-panel {
  padding: clamp(0.9rem, 2.4vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 214, 122, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(17, 33, 57, 0.9), rgba(7, 14, 24, 0.9));
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.hero-coin {
  width: min(100%, 420px);
  aspect-ratio: 1;
  object-fit: contain;
  animation: coin-float 4.4s ease-in-out infinite;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.38));
}

.coin-note {
  color: #c4ceda;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.stats-grid,
.tokenomics-grid,
.proof-grid,
.timeline,
.steps {
  display: grid;
  gap: 0.9rem;
}

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

.stat-card,
.token-item,
.proof-card,
.milestone,
.step,
.contract,
.socials,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  backdrop-filter: blur(8px);
}

.stat-card,
.token-item,
.proof-card,
.milestone,
.step {
  padding: 1rem;
}

.stat-card p,
.stat-card small,
.token-item p,
.token-item small,
.milestone p,
.step p,
.proof-card p {
  color: var(--muted);
}

.stat-card h3,
.token-item h3 {
  margin: 0.35rem 0;
  font-size: 1.45rem;
}

.market-links {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.market-links a,
.socials a {
  text-decoration: none;
  color: var(--text);
  text-align: center;
  padding: 0.95rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.market-links a:hover,
.socials a:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.token-item {
  text-align: center;
}

.token-item h3 {
  color: var(--brand);
}

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

.proof-list {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.proof-list li {
  margin: 0.35rem 0;
}

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

.milestone span {
  font-size: 0.78rem;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.milestone h3,
.step h3 {
  margin-top: 0.45rem;
  margin-bottom: 0.4rem;
}

.milestone.done {
  border-color: rgba(83, 212, 122, 0.45);
}

.milestone.done span {
  color: #8fefad;
}

.milestone.live {
  border-color: rgba(255, 194, 89, 0.5);
}

.milestone.live span {
  color: #ffd58a;
}

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

.contract {
  margin-top: 1rem;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.contract p {
  width: 100%;
}

.contract code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font-size: 0.88rem;
}

#copyBtn {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.45rem 0.65rem;
  font-family: inherit;
}

.socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0.8rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.faq-grid details {
  padding: 0.95rem 1rem;
}

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

.faq-grid p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.site-footer {
  width: min(1100px, calc(100% - 2rem));
  margin: 1rem auto 5.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  display: grid;
  gap: 0.45rem;
}

.floating-buy {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: linear-gradient(120deg, var(--brand), #ffcc4d);
  color: #111;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.7s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.07s;
}

.reveal:nth-child(3) {
  animation-delay: 0.14s;
}

.reveal:nth-child(4) {
  animation-delay: 0.21s;
}

.reveal:nth-child(5) {
  animation-delay: 0.28s;
}

.reveal:nth-child(6) {
  animation-delay: 0.35s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 960px) {
  #lastUpdated {
    margin-left: 0;
  }

  .hero-layout,
  .stats-grid,
  .tokenomics-grid,
  .proof-grid,
  .market-links,
  .steps,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .coin-panel {
    max-width: 460px;
    width: 100%;
  }

  .site-header {
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .status-strip,
  .site-header {
    border-radius: 16px;
  }

  nav {
    gap: 0.7rem;
  }

  nav a {
    font-size: 0.83rem;
  }

  .hero-layout,
  .stats-grid,
  .tokenomics-grid,
  .proof-grid,
  .market-links,
  .steps,
  .socials,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contract code {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .floating-buy {
    left: 1rem;
    text-align: center;
  }
}
