:root {
  --bg: #050510;
  --ink: #f9f5ff;
  --muted: #bcb6d8;
  --line: rgba(255, 255, 255, 0.14);
  --purple: #9f35ff;
  --cyan: #00e5ff;
  --lime: #b7ff16;
  --pink: #ff2fb9;
  --gold: #ffd650;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(0, 229, 255, 0.08), transparent 35%),
    linear-gradient(245deg, rgba(183, 255, 22, 0.07), transparent 32%),
    linear-gradient(180deg, #050510 0%, #101234 48%, #07070f 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 72%, transparent);
}

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

button {
  font: inherit;
}

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

.glooby-site {
  position: relative;
  isolation: isolate;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--pink));
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.55);
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(255, 47, 185, 0.16), transparent 36%),
    #030308;
  animation: loader-out 0.55s ease 2.08s forwards;
}

.loader-screen.is-hidden {
  display: none;
}

.loader-video {
  position: relative;
  width: min(720px, 92vw);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #030308;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 80px rgba(0, 0, 0, 0.55);
}

.loader-video img {
  width: 100%;
  aspect-ratio: 12 / 7;
  object-fit: cover;
}

.loader-copy {
  position: absolute;
  bottom: 84px;
  left: 50%;
  display: grid;
  gap: 6px;
  transform: translateX(-50%);
  text-align: center;
  text-transform: uppercase;
}

.loader-copy span {
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 800;
}

.loader-copy strong {
  font-size: 3rem;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(159, 53, 255, 0.85),
    0 0 34px rgba(0, 229, 255, 0.42);
}

.loader-screen button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 15, 0.68);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.brand-mark {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(159, 53, 255, 0.55);
}

.brand-mark span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.profile-links a,
.primary-action,
.ghost-action,
.game-pump {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.profile-links a {
  background: rgba(255, 255, 255, 0.07);
}

.profile-links a:hover,
.primary-action:hover,
.ghost-action:hover,
.game-pump:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 255, 22, 0.48);
  background: rgba(183, 255, 22, 0.12);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 128px 24px 116px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 36%;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 5, 16, 0.94), transparent);
}

.glooby-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.glooby-canvas.is-fallback {
  background: url("../assets/glooby-coin-icon.png") center / min(62vw, 560px) no-repeat;
  opacity: 0.88;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  margin-right: min(38vw, 520px);
}

.coin-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 6px 14px 6px 6px;
  border: 1px solid rgba(183, 255, 22, 0.26);
  border-radius: 999px;
  background: rgba(183, 255, 22, 0.08);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coin-chip img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero__content .eyebrow {
  margin-top: 28px;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 7rem;
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow:
    0 0 28px rgba(159, 53, 255, 0.72),
    0 0 50px rgba(0, 229, 255, 0.2);
}

.hero-copy {
  max-width: 620px;
  color: #ddd8ee;
  font-size: 1.2rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action {
  border-color: rgba(183, 255, 22, 0.4);
  background: linear-gradient(90deg, var(--lime), #57ffcb);
  color: #06100b;
  box-shadow: 0 18px 42px rgba(183, 255, 22, 0.16);
}

.ghost-action {
  background: rgba(255, 255, 255, 0.08);
}

.launch-board {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 88px;
  z-index: 2;
  display: grid;
  width: min(330px, calc(100% - 48px));
  gap: 10px;
}

.launch-board div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 11, 28, 0.68);
  backdrop-filter: blur(14px);
}

.launch-board span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-board strong {
  color: var(--lime);
  font-size: 1rem;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  animation: cue 1.6s ease-in-out infinite;
}

.lore-band,
.story-section,
.game-section {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading h2,
.motion-panel h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.05;
}

.lore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lore-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(0, 229, 255, 0.1), transparent 38%),
    rgba(11, 12, 28, 0.72);
}

.card-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--lime);
  font-size: 1.4rem;
  font-weight: 950;
}

.lore-grid h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.lore-grid p,
.story-card p,
.motion-panel p {
  color: var(--muted);
  line-height: 1.72;
}

.story-stack {
  display: grid;
  gap: 20px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 1.08fr);
  gap: 22px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 47, 185, 0.08), transparent 38%),
    rgba(7, 8, 20, 0.76);
  transform-style: preserve-3d;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.story-card:nth-child(even) {
  grid-template-columns: minmax(280px, 1.08fr) minmax(260px, 0.92fr);
}

.story-card:nth-child(even) .story-card__media {
  order: 2;
}

.story-card:hover {
  border-color: rgba(0, 229, 255, 0.42);
  transform: perspective(900px) rotateX(1.5deg) translateY(-4px);
}

.story-card__media {
  overflow: hidden;
  border-radius: 8px;
  background: #050510;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover img {
  transform: scale(1.045);
}

.story-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.story-card__copy span,
.story-card__copy small {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.story-card__copy h3 {
  margin: 10px 0 16px;
  font-size: 2rem;
  line-height: 1.12;
}

.story-card__copy small {
  margin-top: 22px;
  color: var(--cyan);
}

.motion-band {
  position: relative;
  overflow: hidden;
  margin: 52px 0;
  padding: 84px 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.08), transparent 50%),
    linear-gradient(270deg, rgba(183, 255, 22, 0.08), transparent 50%),
    rgba(3, 4, 11, 0.82);
}

.ticker-row {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-bottom: 48px;
  animation: ticker 22s linear infinite;
}

.ticker-row span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.motion-panel {
  width: min(800px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.game-section {
  padding-bottom: 130px;
}

.game-shell {
  display: grid;
  width: min(520px, 100%);
  gap: 14px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(0, 229, 255, 0.1), transparent 44%),
    rgba(9, 10, 24, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.game-hud {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--lime);
  font-weight: 950;
  text-transform: uppercase;
}

.game-canvas-wrap {
  position: relative;
  overflow: hidden;
  width: min(360px, 100%);
  margin: 0 auto;
  aspect-ratio: 360 / 520;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #050510, #11143a 52%, #090916),
    #050510;
}

.game-canvas {
  width: 100%;
  height: 100%;
  touch-action: none;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(5, 5, 16, 0.2), rgba(5, 5, 16, 0.88)),
    url("../assets/glooby-story-4.jpg") center / cover;
  text-align: center;
}

.game-overlay.is-hidden {
  display: none;
}

.game-overlay.is-celebrating {
  background: rgba(5, 5, 16, 0.45);
  backdrop-filter: blur(2px);
}

.game-overlay strong {
  font-size: 2rem;
  line-height: 1.05;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
}

.game-overlay button,
.game-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 255, 22, 0.36);
  background: var(--lime);
  color: #06100b;
  cursor: pointer;
  font-weight: 950;
}

.game-overlay button {
  min-height: 48px;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
}

.game-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.game-controls button {
  height: 54px;
  border-radius: 8px;
  touch-action: none;
  font-size: 2rem;
}

.game-pump {
  justify-self: center;
  background: rgba(255, 255, 255, 0.08);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-ready [data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cue {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

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

@keyframes loader-out {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 980px) {
  .hero {
    align-items: start;
    padding-top: 124px;
  }

  .hero__content {
    margin-right: 0;
  }

  h1 {
    font-size: 5rem;
  }

  .launch-board {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(280px, calc(100vw - 44px));
    margin: 32px auto 0;
    justify-self: center;
  }

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

  .story-card,
  .story-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .story-card:nth-child(even) .story-card__media {
    order: 0;
  }
}

@media (max-width: 700px) {
  .topbar {
    top: 10px;
    left: 10px;
    width: min(370px, calc(100vw - 20px));
    align-items: stretch;
    flex-direction: column;
    transform: none;
  }

  .brand-mark {
    justify-content: center;
  }

  .profile-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    width: 100%;
  }

  .profile-links a {
    min-width: 0;
    overflow: hidden;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .profile-links a span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    justify-items: start;
    padding: 176px 16px 92px;
  }

  .hero__content {
    width: min(100%, 360px);
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero-copy {
    max-width: 360px;
    font-size: 1.02rem;
  }

  .section-heading h2,
  .motion-panel h2 {
    font-size: 2.25rem;
  }

  .lore-band,
  .story-section,
  .game-section {
    width: min(100% - 20px, 1120px);
    padding: 66px 0;
  }

  .story-card {
    padding: 10px;
  }

  .story-card__media img {
    min-height: 270px;
  }

  .story-card__copy {
    padding: 18px 8px 10px;
  }

  .story-card__copy h3 {
    font-size: 1.55rem;
  }

  .loader-copy {
    bottom: 74px;
  }

  .loader-copy strong {
    font-size: 2.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Launch controls, market chart, roadmap, and purchasing guide. */
html {
  scroll-padding-top: 108px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero-launch {
  position: relative;
  display: grid;
  width: min(520px, 100%);
  margin-top: 22px;
  justify-items: start;
  gap: 10px;
}

.pump-launch,
.ca-copy {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.pump-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  background: rgba(17, 21, 26, 0.94);
  color: #f8f8fb;
  font-size: 1rem;
  font-weight: 950;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.pump-launch:hover {
  border-color: var(--lime);
  background: rgba(183, 255, 22, 0.14);
  transform: translateY(-3px);
}

.ca-copy {
  display: grid;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(7, 8, 20, 0.88);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.ca-copy:hover,
.ca-copy.is-copied {
  border-color: rgba(0, 229, 255, 0.82);
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
}

.ca-copy__label {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 4px;
  background: var(--lime);
  color: #06100b;
  font-size: 0.76rem;
  font-weight: 1000;
}

.ca-copy code {
  overflow: hidden;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-icon {
  color: var(--cyan);
  font-size: 1.2rem;
}

.copy-feedback {
  min-height: 18px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chart-section,
.roadmap-section,
.buy-section {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-lead {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.72;
}

.chart-frame {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a0a13;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.chart-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 510px;
  border: 0;
  background: #0a0a13;
}

.chart-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-content: center;
  gap: 16px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.chart-fallback span {
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 950;
}

.chart-fallback a {
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 900;
}

.roadmap-section {
  padding-top: 30px;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li,
.buy-grid article {
  min-height: 224px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 10, 24, 0.72);
}

.roadmap-list li > span,
.buy-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 1000;
}

.roadmap-list h3,
.buy-grid h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.roadmap-list p,
.buy-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.buy-section {
  padding-top: 30px;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.buy-grid article {
  background:
    linear-gradient(140deg, rgba(159, 53, 255, 0.12), transparent 46%),
    rgba(9, 10, 24, 0.72);
}

.cursor-core,
.cursor-orbit {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  display: none;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
}

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button {
    cursor: none;
  }

  .cursor-core,
  .cursor-orbit {
    display: block;
  }

  .cursor-core {
    width: 13px;
    height: 13px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 16px var(--purple), 0 0 30px rgba(0, 229, 255, 0.62);
  }

  .cursor-orbit {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(183, 255, 22, 0.86);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(183, 255, 22, 0.35);
  }

  .cursor-orbit::after {
    position: absolute;
    top: 50%;
    left: -6px;
    width: 44px;
    height: 12px;
    border: 1px solid rgba(0, 229, 255, 0.8);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%) rotate(-22deg);
  }

  body.cursor-active .cursor-orbit {
    border-color: var(--pink);
    transform: scale(1.24);
  }
}

@media (max-width: 980px) {
  .hero-launch {
    margin-top: 22px;
    justify-self: start;
  }

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

@media (max-width: 700px) {
  html {
    scroll-padding-top: 148px;
  }

  .hero-launch {
    width: min(100%, 360px);
  }

  .chart-section,
  .roadmap-section,
  .buy-section {
    width: min(100% - 20px, 1120px);
    padding: 66px 0;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 400px;
  }

  .roadmap-list,
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-list li,
  .buy-grid article {
    min-height: 0;
  }
}
