:root {
  --ink: #061018;
  --paper: #e8f4ea;
  --panel: #0c141c;
  --green: #3dff6e;
  --blue: #2eb5ff;
  --orange: #f7931a;
  --mute: #b7c7be;
  --gutter: 12px;
  --gx: 50%;
  --gy: 30%;
  --sol-green: #00ffa3;
  --sol-purple: #dc1fff;
  --sol-mid: #9945ff;
  --sol-grad: linear-gradient(105deg, #00ffa3 0%, #14f195 28%, #9945ff 68%, #dc1fff 100%);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--paper);
  background: #05080c;
  font-family: "Nunito", system-ui, sans-serif;
}

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

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

h1,
h2,
.chip,
.caption,
.ca-tag,
.seal em,
.seal strong,
.burst,
.ink {
  font-family: "Teko", Impact, sans-serif;
  letter-spacing: 0.04em;
}

.word,
.num {
  font-family: "Bungee", Impact, sans-serif;
}

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

.bg-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(46, 181, 255, 0.14), transparent 60%),
    radial-gradient(800px 480px at 82% 78%, rgba(61, 255, 110, 0.1), transparent 58%),
    linear-gradient(180deg, #070c12 0%, #05080c 42%, #08110c 100%);
}

.bg-tick {
  position: absolute;
  inset: -20%;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='84' viewBox='0 0 280 84'%3E%3Ctext x='8' y='28' fill='%233dff6e' font-family='monospace' font-size='18'%3E6900 %E2%96%B2 %2B6900.00%25%3C/text%3E%3Ctext x='8' y='62' fill='%233dff6e' font-family='monospace' font-size='18'%3ENasdaq6900 %E2%96%B2 6900%3C/text%3E%3C/svg%3E");
  background-size: 280px 84px;
  animation: drift 48s linear infinite;
}

.bg-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    transparent 18%,
    rgba(46, 181, 255, 0.06) 36%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(61, 255, 110, 0.07) 64%,
    transparent 82%
  );
  background-size: 220% 100%;
  animation: sheen 7.5s ease-in-out infinite;
  mix-blend-mode: screen;
}

.bg-glint {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px 380px at var(--gx) var(--gy),
    rgba(255, 255, 255, 0.13),
    rgba(46, 181, 255, 0.05) 38%,
    transparent 68%
  );
  mix-blend-mode: screen;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-280px, -84px, 0); }
}

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

.tape-rail {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 3px solid #07140c;
  background: #04130a;
  color: var(--green);
  font-family: "Teko", sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tape-run {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.tape-run.reverse {
  animation-direction: reverse;
  animation-duration: 34s;
}

.tape-run span {
  padding: 6px 0;
}

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

.stamp-bar {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 22px;
  background: rgba(6, 12, 16, 0.92);
  border-bottom: 4px solid #fff;
  box-shadow: 0 8px 0 #0b2a18, 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

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

.seal img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 3px 3px 0 var(--green);
  transform: rotate(-6deg);
}

.seal strong {
  display: block;
  font-size: 22px;
  line-height: 0.9;
  text-transform: uppercase;
  background: var(--sol-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.seal em {
  font-style: italic;
  font-size: 28px;
  line-height: 0.8;
  background: var(--sol-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(2px 2px 0 #000);
}

.stamp-bar nav {
  display: flex;
  gap: 22px;
  font-family: "Teko", sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stamp-bar nav a:hover {
  color: var(--green);
}

.stamp-acts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sol-icon {
  width: 18px;
  height: 14px;
  flex-shrink: 0;
  display: block;
}

.sol-icon.lg {
  width: 52px;
  height: 40px;
}

.sol-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 3px solid #fff;
  background: linear-gradient(120deg, rgba(0, 255, 163, 0.18), rgba(220, 31, 255, 0.22));
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #000;
}

.sol-pill.on-plate {
  background: linear-gradient(120deg, #00ffa3, #dc1fff);
  color: #041018;
  font-weight: 700;
}

.sol-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sol-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 2px dashed #9945ff;
  background: rgba(153, 69, 255, 0.12);
  color: #e8d7ff;
  font-weight: 700;
  font-size: 15px;
}

.sol-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px 36px;
}

.sol-strip-inner {
  border: 5px solid #fff;
  box-shadow: 10px 12px 0 #000, 0 0 0 8px rgba(153, 69, 255, 0.25);
  background:
    radial-gradient(600px 240px at 12% 20%, rgba(0, 255, 163, 0.14), transparent 60%),
    radial-gradient(520px 220px at 88% 80%, rgba(220, 31, 255, 0.16), transparent 55%),
    linear-gradient(180deg, #10141c, #0a1018);
  padding: 28px 26px;
}

.sol-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.sol-badge h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  text-transform: uppercase;
  line-height: 0.9;
  background: linear-gradient(90deg, #00ffa3, #dc1fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sol-strip-inner > p {
  margin: 0 0 20px;
  color: var(--mute);
  max-width: 62ch;
  line-height: 1.55;
}

.sol-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sol-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 3px solid #fff;
  background: #071018;
  box-shadow: 4px 4px 0 #9945ff;
}

.sol-points strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sol-points span {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.4;
}

.ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 3px solid #fff;
  background: var(--green);
  color: #041208;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000;
  transform: skewX(-8deg);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ink:hover {
  background: var(--blue);
  color: #041018;
  transform: skewX(-8deg) translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

.ink.ghost {
  background: transparent;
  color: #fff;
}

.ink.ghost:hover {
  background: #fff;
  color: #041018;
}

.ink.xl {
  padding: 12px 22px;
  font-size: 26px;
}

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

.splash {
  padding: 28px 18px 20px;
  overflow: visible;
}

.splash-desk {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.splash-board {
  position: relative;
  border: 5px solid #fff;
  box-shadow:
    14px 18px 0 #000,
    0 0 0 8px #0b2a18;
  overflow: hidden;
  background: #000;
}

.splash-banner {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.splash-tear {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 12, 0.85));
  pointer-events: none;
}

.splash-mascot {
  position: absolute;
  left: 6%;
  bottom: 0;
  width: 72%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.bubble {
  position: absolute;
  z-index: 2;
  background: #fff;
  color: #111;
  border: 3px solid #000;
  border-radius: 22px 22px 22px 6px;
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: 4px 4px 0 #000;
}

.bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -12px;
  border: 8px solid transparent;
  border-top-color: #000;
}

.pop-a {
  right: 6%;
  top: 14%;
  font-size: 15px;
  transform: rotate(4deg);
}

.pop-b {
  left: 8%;
  bottom: 10%;
  font-size: 16px;
}

.burst {
  position: absolute;
  left: 10px;
  top: 14px;
  z-index: 2;
  width: 108px;
  height: 108px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 2px;
  text-align: center;
  background: conic-gradient(from 20deg, #00ffa3, #dc1fff, #00ffa3);
  clip-path: polygon(50% 0, 62% 22%, 88% 12%, 78% 38%, 100% 50%, 78% 62%, 88% 88%, 62% 78%, 50% 100%, 38% 78%, 12% 88%, 22% 62%, 0 50%, 22% 38%, 12% 12%, 38% 22%);
  color: #041018;
  box-shadow: 0 0 0 4px #000;
  transform: rotate(-12deg);
}

.burst .sol-icon {
  width: 28px;
  height: 22px;
}

.burst strong {
  font-size: 28px;
  line-height: 0.85;
}

.splash-copy {
  background: linear-gradient(180deg, rgba(12, 20, 28, 0.92), rgba(8, 14, 18, 0.96));
  border: 5px solid #fff;
  box-shadow: 10px 12px 0 #000, inset 0 0 0 4px #0b2a18;
  padding: 28px 26px 24px;
}

.chip,
.caption {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 20px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  line-height: 0.82;
}

h1 .word {
  display: block;
  font-size: clamp(42px, 6vw, 72px);
  background: var(--sol-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(4px 4px 0 #000);
}

h1 .num {
  display: block;
  font-size: clamp(58px, 9vw, 108px);
  font-style: italic;
  background: linear-gradient(100deg, #dc1fff 0%, #9945ff 35%, #14f195 70%, #00ffa3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(6px 6px 0 #000) drop-shadow(0 0 18px rgba(220, 31, 255, 0.35));
}

.lede {
  margin: 14px 0 18px;
  color: var(--mute);
  font-size: 17px;
  line-height: 1.55;
}

.ca-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  background: #04130a;
  border: 3px dashed var(--green);
  margin-bottom: 16px;
}

.ca-strip.dark {
  background: #02080c;
}

.ca-tag {
  color: var(--green);
  font-size: 18px;
}

.ca-strip code {
  font-family: "Teko", ui-monospace, monospace;
  font-size: 26px;
  letter-spacing: 0.06em;
  word-break: break-all;
}

.copy-ca {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  background: var(--blue);
  color: #041018;
  cursor: pointer;
  box-shadow: 3px 3px 0 #000;
}

.copy-ca svg {
  width: 18px;
  height: 18px;
}

.copy-ca.is-copied {
  background: var(--green);
}

.copy-feedback {
  min-height: 1em;
  font-style: normal;
  color: var(--green);
  font-weight: 800;
  opacity: 0;
}

.copy-feedback.is-on {
  opacity: 1;
}

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

.slash {
  height: 56px;
  margin: 8px 0;
  background:
    linear-gradient(162deg, transparent 46%, #000 46.4%, #000 49%, var(--green) 49.2%, var(--green) 52.4%, var(--blue) 52.6%, var(--blue) 55.4%, #000 55.6%, #000 58%, transparent 58.4%);
}

.slash.flip {
  transform: scaleX(-1);
}

.spread {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  position: relative;
  overflow: visible;
}

.spine {
  display: none;
}

.leaf {
  position: relative;
  background: var(--panel);
  border: 5px solid #fff;
  box-shadow: 10px 12px 0 #000;
  overflow: visible;
}

.leaf.left {
  overflow: hidden;
  min-height: 0;
}

.leaf.right {
  padding: 28px 26px;
}

.leaf img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.leaf.left .caption {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #000;
  color: var(--green);
  padding: 4px 10px;
  border: 2px solid #fff;
}

.leaf.right h2 {
  margin: 8px 0 12px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  text-transform: uppercase;
}

.leaf.right p {
  color: var(--mute);
  line-height: 1.55;
  margin: 0 0 18px;
}

.stamps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.stamps li {
  border: 3px solid #fff;
  padding: 12px 14px;
  background: #071018;
  box-shadow: 4px 4px 0 var(--blue);
}

.stamps li:first-child {
  box-shadow: 4px 4px 0 #9945ff;
}

.stamps li:nth-child(2) {
  box-shadow: 4px 4px 0 var(--blue);
}

.stamps li:nth-child(3) {
  box-shadow: 4px 4px 0 var(--green);
}

.stamps li:nth-child(4) {
  box-shadow: 4px 4px 0 var(--orange);
}

.stamps b {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.chart-spread {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px 40px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
  overflow: visible;
}

.chart-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(48px, 7vw, 84px);
  text-transform: uppercase;
  line-height: 0.85;
}

.chart-copy p {
  color: var(--mute);
  line-height: 1.55;
  margin: 0 0 18px;
}

.chart-frame {
  margin: 0;
  border: 6px solid #fff;
  box-shadow: 14px 16px 0 #000, 0 0 0 10px #0b2a18;
  background: #fff;
  overflow: visible;
}

.chart-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.chart-frame figcaption {
  margin: 0;
  padding: 8px 12px;
  background: #000;
  color: var(--green);
  font-family: "Teko", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.issue-pit {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 18px 48px;
  overflow: visible;
}

.issue-head {
  max-width: 720px;
  margin-bottom: 18px;
}

.issue-head h2 {
  margin: 0 0 8px;
  font-size: clamp(42px, 6vw, 72px);
  text-transform: uppercase;
  line-height: 0.9;
}

.issue-head p {
  color: var(--mute);
  margin: 0;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
}

.mosaic figure {
  margin: 0;
  border: 4px solid #fff;
  box-shadow: 5px 5px 0 #000;
  background: #000;
  overflow: hidden;
}

.mosaic img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.mosaic figure:hover img {
  transform: scale(1.04);
}

.mosaic .wide {
  grid-column: span 2;
}

.mosaic .wide img {
  aspect-ratio: 16 / 9;
}

.token-spread {
  max-width: 1180px;
  margin: 0 auto 48px;
  padding: 10px 18px 30px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  overflow: visible;
}

.wanted,
.buy-plate {
  border: 5px solid #fff;
  box-shadow: 10px 12px 0 #000;
}

.wanted {
  padding: 28px 26px;
  background: linear-gradient(180deg, #101820, #0a1218);
}

.wanted h2 {
  margin: 0 0 10px;
  font-size: clamp(40px, 6vw, 64px);
  text-transform: uppercase;
  line-height: 0.9;
}

.wanted p {
  color: var(--mute);
}

.buy-plate {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 20px;
  background:
    repeating-linear-gradient(45deg, #0a180e, #0a180e 12px, #0e2214 12px, #0e2214 24px);
  text-align: center;
}

.buy-gif {
  display: block;
  border: 4px solid #fff;
  box-shadow: 6px 6px 0 #000;
  width: min(100%, 280px);
}

.buy-gif img {
  width: 100%;
  height: auto;
}

.buy-plate p {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.colophon {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 28px;
  border-top: 4px solid #fff;
  background: rgba(4, 10, 14, 0.9);
}

.colophon p {
  margin: 0;
  color: var(--mute);
}

.tiny {
  font-size: 12px;
  max-width: 420px;
}

@media (max-width: 980px) {
  .stamp-bar nav {
    display: none;
  }

  .splash-desk,
  .spread,
  .chart-spread,
  .token-spread,
  .sol-points {
    grid-template-columns: 1fr;
  }

  .splash-banner {
    min-height: 280px;
  }

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

  .mosaic .wide {
    grid-column: span 2;
  }

  .mosaic .wide img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic .wide {
    grid-column: span 1;
  }

  .mosaic img,
  .mosaic .wide img {
    aspect-ratio: 1;
  }
}

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