/* GameStop-inspired retail energy: red, black, high contrast */
:root {
  --gme-red: #e60012;
  --gme-red-dark: #b3000e;
  --ink: #0a0a0a;
  --panel: #111111;
  --line: #2a2a2a;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --yellow: #ffd400;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.55;
  font-size: 1.05rem;
}

a {
  color: inherit;
}

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

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  border-bottom: 4px solid var(--gme-red);
}

.header-inner {
  width: min(1200px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  border-radius: 8px;
  border: 2px solid var(--gme-red);
  object-fit: cover;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.15s;
}

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

.nav .nav-cta {
  background: var(--gme-red);
  color: #fff !important;
  padding: 0.45rem 1rem;
  border: 2px solid #fff;
  box-shadow: 4px 4px 0 var(--yellow);
}

.nav .nav-cta:hover {
  background: var(--gme-red-dark);
}

@media (min-width: 880px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none !important;
  }
}

.nav-toggle {
  background: transparent;
  border: 2px solid var(--line);
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  background: #050505;
  border-top: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.5rem 0;
  color: var(--muted);
}

.mobile-nav .nav-cta {
  color: #fff;
  background: var(--gme-red);
  padding: 0.65rem 1rem;
  text-align: center;
  border: 2px solid #fff;
}

@media (min-width: 880px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #1a0508 0%, var(--ink) 45%, #0d0d0d 100%);
  border-bottom: 6px solid var(--gme-red);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-grid {
  width: min(1200px, 94vw);
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--yellow);
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  line-height: 0.95;
}

.ticker {
  display: block;
  font-size: clamp(4rem, 14vw, 7.5rem);
  color: var(--gme-red);
  text-shadow: 4px 4px 0 #fff, 8px 8px 0 rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
}

.hero-name {
  display: block;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.04em;
  color: var(--text);
}

.hero-bio {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border: 3px solid #fff;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: none !important;
}

.btn-primary {
  background: var(--gme-red);
  color: #fff;
  box-shadow: 5px 5px 0 var(--yellow);
}

.btn-primary:hover {
  background: var(--gme-red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  box-shadow: 5px 5px 0 var(--line);
}

.btn-outline:hover {
  border-color: var(--gme-red);
  color: #fff;
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--panel);
  border: 4px solid #fff;
  box-shadow: 12px 12px 0 var(--gme-red);
  padding: 1.5rem 2rem 1.25rem;
  text-align: center;
  max-width: 360px;
}

.hero-logo {
  margin-inline: auto;
  border-radius: 12px;
}

.hero-tag {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 4.5rem) 0;
}

.section:nth-of-type(even) {
  background: #0e0e0e;
}

.section-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--text);
  border-left: 6px solid var(--gme-red);
  padding-left: 0.75rem;
  line-height: 1;
}

.section-sub {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-weight: 600;
}

.about-panel {
  margin-top: 1.5rem;
  background: var(--panel);
  border: 2px solid var(--line);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: inset 0 0 0 1px #000;
}

.about-panel p {
  margin: 0 0 1rem;
  color: #e0e0e0;
}

.about-panel .lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.about-panel .closing {
  margin-top: 1.25rem;
  font-weight: 700;
}

.about-panel .moon {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--gme-red);
}

/* How to buy */
.steps {
  margin: 1.5rem 0 2rem;
  padding-left: 1.25rem;
  max-width: 52rem;
}

.steps li {
  margin-bottom: 0.85rem;
  padding-left: 0.35rem;
}

.steps strong {
  color: var(--yellow);
}

.how-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Chart */
.chart-section {
  background: #080808;
}

.chart-frame-wrap {
  margin-top: 1rem;
  border: 4px solid var(--gme-red);
  box-shadow: 8px 8px 0 #fff;
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 420px;
}

.chart-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Join — banner only here */
.join {
  padding-top: 0;
  background: linear-gradient(180deg, #120306 0%, var(--ink) 35%);
}

.join-banner-wrap {
  width: 100%;
  border-bottom: 6px solid var(--gme-red);
  background: #000;
}

.join-banner {
  width: 100%;
  max-height: min(45vh, 420px);
  object-fit: cover;
  object-position: center;
}

.join-inner {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 6vw, 4rem);
}

.join-lead {
  margin: 1rem 0 1.5rem;
  max-width: 40rem;
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 600;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Footer */
.site-footer {
  border-top: 4px solid var(--gme-red);
  background: #000;
  padding: 1.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-inner p {
  margin: 0.35rem 0;
}

.footer-inner strong {
  color: var(--text);
}

.footer-links a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gme-red);
}
