:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f5f3;
  --muted: #8d938d;
  --accent: #3dff4a;
  --accent-dim: rgba(61, 255, 74, 0.14);
  --accent-glow: rgba(61, 255, 74, 0.28);
  --radius: 16px;
  --max: 1080px;
  --header: 68px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(61, 255, 74, 0.08), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;

  overflow-x: hidden;
}

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

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

h1,
h2 {
  font-family: "Bebas Neue", Outfit, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  padding: 8px 12px;
  background: var(--accent);
  color: #041006;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header);
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
}


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

.brand span {
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--accent-dim);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--text);
}

.nav-buy {
  padding: 8px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent) !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-buy:hover,
.nav-buy:focus-visible {
  background: var(--accent-dim);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 72px 20px 96px;
}

.hero-glow {
  display: none;
}

.hero-logo {
  position: relative;
  width: min(220px, 58vw);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #050505;
  border-radius: 28px;
  box-shadow: none;
  filter: none;
  outline: none;
  animation: logo-float 4.5s ease-in-out infinite;
  will-change: transform;
}

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

@keyframes logo-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(61, 255, 74, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(61, 255, 74, 0.7));
  }
}

.eyebrow {
  position: relative;
  margin: 28px 0 10px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  font-size: clamp(5rem, 18vw, 9.5rem);
}

.tagline {
  position: relative;
  max-width: 34rem;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.cta-row,
.link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #041006;
  box-shadow: 0 0 32px var(--accent-glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.05);
}

.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-copy {
  min-width: 92px;
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

.btn-copy:hover,
.btn-copy:focus-visible,
.btn-copy.is-copied {
  background: var(--accent);
  color: #041006;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-head h2,
.launches h2,
.hero h1 {
  text-wrap: balance;
}

.bot h2,
.launches h2 {
  font-size: clamp(3.4rem, 10vw, 6rem);
}

.about {
  max-width: 36rem;
  margin: 18px 0 32px;
  font-size: 1.2rem;
}

.about p {
  margin: 0 0 4px;
}

.ca-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.ca-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ca-value {
  display: block;
  max-width: min(72vw, 42rem);
  overflow-wrap: anywhere;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(0.78rem, 2.6vw, 0.92rem);
}

.link-row {
  justify-content: flex-start;
  margin-top: 20px;
}

.link-row a,
.footer-links a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.link-row a:hover,
.footer-links a:hover,
.link-row a:focus-visible,
.footer-links a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.media-grid {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.media-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #000;
}

.media-grid img,
.media-grid video {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.media-grid .span-wide img,
.media-grid .span-wide video {
  aspect-ratio: 16 / 9;
  background: #000;
}

.media-grid figcaption {
  padding: 10px 14px 14px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ===== FAQ ===== */
.faq-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.faq-toggle {
  flex-shrink: 0;
}
.faq-panel[hidden] {
  display: none !important;
}
.faq-panel {
  margin-top: 20px;
  animation: faqIn 0.25s ease;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq h2 {
  font-size: clamp(3.4rem, 10vw, 6rem);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.faq-q {
  margin: 0 0 10px;
}

.faq-a {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  overflow-wrap: anywhere;
}

.faq-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.faq-steps li {
  margin: 0 0 8px;
  padding-left: 4px;
}

.faq-steps li:last-child {
  margin-bottom: 0;
}

.faq-steps a,
.faq-a a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
}

.faq-steps a:hover,
.faq-a a:hover,
.faq-steps a:focus-visible,
.faq-a a:focus-visible {
  border-bottom-color: var(--accent);
}

.faq-ca {
  display: block;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #000;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(0.72rem, 2.4vw, 0.86rem);
  overflow-wrap: anywhere;
  word-break: break-all;
}

.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.faq-disclaimer {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launches {
  text-align: center;
}

.launches-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 28px 20px 40px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p,
.footer-links,
.footer-ca {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-ca {
  position: relative;
  justify-self: start;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  cursor: pointer;
}

.footer-ca:hover .ca-tip,
.footer-ca:focus-visible .ca-tip {
  opacity: 1;
  transform: translateY(0);
}

.ca-tip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  width: max-content;
  max-width: min(92vw, 28rem);
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  color: var(--text);
  font-size: 0.72rem;
  overflow-wrap: anywhere;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (min-width: 760px) {
  .site-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    padding-inline: 32px;
  }

  .site-header nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 20px;
    width: auto;
    padding-top: 0;
    border-top: 0;
    font-size: 0.92rem;
  }

  .site-header nav > a {
    text-align: left;
    padding: 0;
  }

  .hero {
    padding: 88px 32px 120px;
  }

  .media-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .span-wide:last-child {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding-inline: 32px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-ca {
    justify-self: end;
  }

  .ca-tip {
    left: auto;
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-glow,
  .hero-logo,
  .ca-tip {
    filter: none;
    box-shadow: none;
    transition: none;
    animation: none;
  }
}


/* Mobile header balance */
@media (max-width: 759px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand buy"
      "nav nav";
    align-items: center;
    column-gap: 12px;
    row-gap: 10px;
    min-height: auto;
    padding: 12px 16px 10px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .brand span {
    white-space: nowrap;
    font-size: 1rem;
  }

  .brand img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .site-header nav {
    grid-area: nav;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: 100%;
    margin-left: 0;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    font-size: 0.86rem;
  }

  .site-header nav > a {
    text-align: center;
    padding: 6px 2px;
    white-space: nowrap;
  }

  .site-header > .nav-buy {
    grid-area: buy;
    justify-self: end;
    align-self: center;
    padding: 8px 14px;
    white-space: nowrap;
    font-size: 0.86rem;
    line-height: 1;
  }
}

/* ===== TRENDING (easy remove: delete this block + TRENDING markers in HTML/JS) ===== */
.trending h2 {
  font-size: clamp(3.4rem, 10vw, 6rem);
}

.trending-head {
  position: relative;
}

.trending-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(61, 255, 74, 0.55);
  animation: live-pulse 1.6s ease-out infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 255, 74, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(61, 255, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 255, 74, 0); }
}

.trending-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.trending-root {
  margin-top: 28px;
}

.trending-panel {
  position: relative;
  border: 1px solid rgba(61, 255, 74, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(61, 255, 74, 0.06), transparent 28%),
    rgba(8, 10, 8, 0.92);
  box-shadow:
    0 0 0 1px rgba(61, 255, 74, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.trending-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 255, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 255, 74, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

.trending-panel-bar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(61, 255, 74, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trending-panel-pulse {
  color: #041006;
  background: var(--accent);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.12em;
  animation: scan-blink 1.4s steps(2, end) infinite;
}

@keyframes scan-blink {
  50% { opacity: 0.45; }
}

.trending-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 6px;
  display: grid;
  gap: 6px;
}

.trending-row {
  display: grid;
  grid-template-columns: 28px 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: inherit;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.trending-row:hover,
.trending-row:focus-visible {
  background: rgba(61, 255, 74, 0.08);
  border-color: rgba(61, 255, 74, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 255, 74, 0.08);
}

.trending-row.is-bot {
  background: linear-gradient(90deg, rgba(61, 255, 74, 0.16), rgba(61, 255, 74, 0.03));
  border-color: rgba(61, 255, 74, 0.45);
}

.trending-rank {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.trending-row:nth-child(-n+3) .trending-rank {
  color: var(--accent);
  font-weight: 600;
}

.trending-thumb {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  background: #111;
  border: 1px solid rgba(61, 255, 74, 0.22);
  box-shadow: 0 0 18px rgba(61, 255, 74, 0.12);
}

.trending-thumb-fallback {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  background: rgba(61, 255, 74, 0.08);
}

.trending-meta {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.trending-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.trending-name {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trending-hot {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d4d, #ff8a3d);
  color: #fff;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(255, 90, 60, 0.45);
  animation: hot-pop 1.8s ease-in-out infinite;
}

@keyframes hot-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.trending-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.trending-ticker {
  color: var(--accent);
  opacity: 0.9;
}

.trending-stats {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.trending-mcap {
  font-weight: 700;
  font-size: 0.98rem;
  font-variant-numeric: tabular-nums;
}

.trending-pct {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.trending-pct.is-up {
  background: var(--accent);
  color: #041006;
  box-shadow: 0 0 18px rgba(61, 255, 74, 0.35);
}

.trending-pct.is-down {
  background: rgba(255, 72, 72, 0.16);
  color: #ff8b8b;
  border: 1px solid rgba(255, 100, 100, 0.25);
}

.trending-pct.is-flat {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.trending-skeleton {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 6px;
}

.trending-skel-row {
  height: 74px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(61, 255, 74, 0.1) 45%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: trending-shimmer 1.2s ease-in-out infinite;
}

@keyframes trending-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.trending-error {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 22px 18px 24px;
  color: var(--muted);
}

.trending-error[hidden],
.trending-skeleton[hidden],
.trending-list[hidden] {
  display: none !important;
}

@media (max-width: 520px) {
  .hero-logo {
    border-radius: 22px;
  }

  .trending-row {
    grid-template-columns: 22px 42px 1fr auto;
    gap: 8px;
    padding: 11px 10px;
  }
  .trending-thumb {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .trending-name {
    font-size: 0.92rem;
  }
  .trending-panel-bar {
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot,
  .trending-panel-pulse,
  .trending-hot,
  .trending-skel-row,
  .trending-row {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
/* ===== /TRENDING ===== */



/* footer mobile compact */
@media (max-width: 640px) {
  .footer-links {
    justify-content: center;
    gap: 10px 14px;
  }
}


/* footer FAQ — same size as footer links */
.footer-faq-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: inherit;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  line-height: inherit;
}
.footer-faq-btn:hover,
.footer-faq-btn:focus-visible,
.footer-faq-btn.is-open {
  color: var(--accent);
  border-bottom-color: var(--accent);
  outline: none;
}
.site-footer .faq-panel {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}
.site-footer .faq-list {
  display: grid;
  gap: 16px;
}
@media (min-width: 760px) {
  .site-footer .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
  }
}
.site-footer .faq-item {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}
.site-footer .faq-q {
  margin-bottom: 6px;
}
.site-footer .faq-a,
.site-footer .faq-steps {
  font-size: 0.9rem;
  color: var(--muted);
}
.site-footer .faq-disclaimer {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.8;
}

