:root {
  --bg: #11081a;
  --bg-strong: #07030b;
  --purple: #8a2cff;
  --purple-bright: #b56cff;
  --gold: #f7c948;
  --gold-soft: #ffe793;
  --acid: #f8f04a;
  --ink: #f7f0ff;
  --muted: #cbb6dd;
  --line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(248, 240, 74, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 34%, rgba(181, 108, 255, 0.2), transparent 28rem),
    linear-gradient(180deg, var(--bg-strong), var(--bg) 38%, #1c0a2d);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.peek-guy {
  position: fixed;
  z-index: 20;
  width: clamp(92px, 12vw, 180px);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.45));
  transition:
    opacity 260ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.peek-guy.is-left {
  top: 44%;
  left: 0;
  transform: translate(-92%, -50%) rotate(45deg);
}

.peek-guy.is-left.is-visible {
  opacity: 1;
  transform: translate(-48%, -50%) rotate(45deg);
}

.peek-guy.is-right {
  top: 42%;
  right: 0;
  transform: translate(92%, -50%) rotate(-45deg) scaleX(-1);
}

.peek-guy.is-right.is-visible {
  opacity: 1;
  transform: translate(48%, -50%) rotate(-45deg) scaleX(-1);
}

.peek-guy.is-bottom {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 90%) rotate(45deg);
}

.peek-guy.is-bottom.is-visible {
  opacity: 1;
  transform: translate(-50%, 48%) rotate(45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(247, 201, 72, 0.32);
}

.hero__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: -3;
  filter: saturate(1.15) contrast(1.08);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 3, 11, 0.9), rgba(49, 8, 85, 0.22) 58%),
    linear-gradient(0deg, rgba(7, 3, 11, 0.94), rgba(7, 3, 11, 0.04) 52%),
    radial-gradient(circle at 68% 24%, rgba(247, 201, 72, 0.22), transparent 30rem);
  z-index: -2;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(26, 6, 44, 0.95));
  z-index: -1;
}

.hero__content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10vh 0 8vh;
}

.kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(247, 201, 72, 0.5);
}

h1,
h2 {
  margin: 0;
  font-family: Bangers, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(6rem, 18vw, 15rem);
  text-shadow:
    0 8px 0 #4d1686,
    0 12px 0 rgba(247, 201, 72, 0.8),
    0 18px 46px rgba(0, 0, 0, 0.58);
  animation: royal-pulse 4s ease-in-out infinite;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  text-shadow:
    0 6px 0 rgba(80, 21, 136, 0.85),
    0 16px 34px rgba(0, 0, 0, 0.3);
}

.contract {
  width: fit-content;
  min-width: min(100%, 390px);
  max-width: 100%;
  margin: 10px 0 28px;
  padding: 16px 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--line);
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.13), rgba(138, 44, 255, 0.3)),
    rgba(17, 8, 26, 0.74);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 231, 147, 0.32);
  backdrop-filter: blur(12px);
}

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

.contract strong {
  color: var(--gold-soft);
  font-size: 1rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: right;
}

.hero__actions,
.join {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  min-height: 52px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #190423;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 52%, var(--acid));
  box-shadow:
    0 8px 0 #8f6a13,
    0 18px 30px rgba(247, 201, 72, 0.26);
}

.button--secondary {
  color: #fff;
  border-color: rgba(255, 231, 147, 0.46);
  background: linear-gradient(135deg, rgba(138, 44, 255, 0.7), rgba(57, 13, 92, 0.72));
  box-shadow:
    0 8px 0 #42126e,
    0 18px 30px rgba(138, 44, 255, 0.24);
}

.ticker-strip {
  overflow: hidden;
  border-block: 1px solid rgba(247, 201, 72, 0.42);
  background: linear-gradient(90deg, #f7c948, #fff07a, #b56cff, #f7c948);
  color: #17051f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.ticker-strip div {
  width: max-content;
  padding: 16px 0;
  display: flex;
  gap: 34px;
  animation: ticker 18s linear infinite;
}

.ticker-strip span {
  font-family: Bangers, Impact, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  white-space: nowrap;
}

.lore,
.gallery,
.chart,
.join {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.lore {
  padding: 96px 0 70px;
}

.lore__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.lore__copy {
  display: grid;
  gap: 24px;
}

.lore__copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.7;
}

.lore__pump {
  width: min(100%, 430px);
  justify-self: center;
  border: 1px solid rgba(255, 231, 147, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(247, 201, 72, 0.14), transparent 62%),
    rgba(7, 3, 11, 0.5);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    0 0 46px rgba(247, 201, 72, 0.14),
    inset 0 1px 0 rgba(255, 231, 147, 0.28);
  animation: pump-float 5s ease-in-out infinite;
}

.gallery {
  padding: 26px 0 88px;
}

.gallery__heading {
  margin-bottom: 24px;
}

.slider {
  position: relative;
  overflow: hidden;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(247, 201, 72, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.12), rgba(138, 44, 255, 0.18)),
    rgba(10, 3, 17, 0.66);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 231, 147, 0.28);
}

.slider__viewport {
  overflow: hidden;
  border-radius: 8px;
}

.slider__track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  margin: 0;
  display: grid;
  place-items: center;
}

.slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(181, 108, 255, 0.12), transparent 32rem),
    #07030b;
}

.slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: clamp(44px, 6vw, 64px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 231, 147, 0.62);
  border-radius: 50%;
  color: #180421;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow:
    0 10px 0 rgba(113, 79, 12, 0.9),
    0 20px 34px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.slider__arrow:hover {
  transform: translateY(calc(-50% - 2px));
  box-shadow:
    0 12px 0 rgba(113, 79, 12, 0.9),
    0 24px 38px rgba(0, 0, 0, 0.34);
}

.slider__arrow span {
  line-height: 0.7;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.slider__arrow--prev {
  left: clamp(22px, 4vw, 42px);
}

.slider__arrow--next {
  right: clamp(22px, 4vw, 42px);
}

.slider__meta {
  position: absolute;
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(255, 231, 147, 0.45);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(7, 3, 11, 0.72);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.chart {
  padding: 0 0 88px;
}

.chart__heading {
  margin-bottom: 24px;
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
}

.chart__frame {
  overflow: hidden;
  height: clamp(520px, 72vh, 760px);
  border: 1px solid rgba(247, 201, 72, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.12), rgba(138, 44, 255, 0.18)),
    rgba(10, 3, 17, 0.86);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 231, 147, 0.28);
}

.chart__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #07030b;
}

.join {
  justify-content: space-between;
  padding: 46px 0 70px;
  border-top: 1px solid rgba(247, 201, 72, 0.32);
}

.join h2 {
  max-width: 700px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes royal-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(247, 201, 72, 0));
    transform: translateY(0);
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(247, 201, 72, 0.38));
    transform: translateY(-3px);
  }
}

@keyframes pump-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 10% 4%, rgba(248, 240, 74, 0.16), transparent 16rem),
      radial-gradient(circle at 88% 34%, rgba(181, 108, 255, 0.16), transparent 18rem),
      linear-gradient(180deg, var(--bg-strong), var(--bg) 38%, #1c0a2d);
  }

  .hero {
    min-height: 82svh;
  }

  .hero__banner {
    object-position: center top;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(7, 3, 11, 0.94), rgba(7, 3, 11, 0.24) 72%),
      linear-gradient(90deg, rgba(39, 8, 68, 0.78), rgba(7, 3, 11, 0.16));
  }

  .hero__content,
  .lore,
  .gallery,
  .chart,
  .join {
    width: min(100% - 24px, 1120px);
  }

  .hero__content {
    padding: 20vh 0 7vh;
  }

  .kicker,
  .section-label {
    margin-bottom: 9px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(4.8rem, 28vw, 7.4rem);
    text-shadow:
      0 5px 0 #4d1686,
      0 8px 0 rgba(247, 201, 72, 0.75),
      0 14px 34px rgba(0, 0, 0, 0.58);
  }

  h2 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
    text-shadow:
      0 4px 0 rgba(80, 21, 136, 0.85),
      0 12px 26px rgba(0, 0, 0, 0.3);
  }

  .contract {
    width: 100%;
    margin: 6px 0 22px;
    padding: 14px;
    display: grid;
    gap: 8px;
    justify-content: stretch;
  }

  .contract span,
  .contract strong {
    text-align: left;
  }

  .contract strong {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
  }

  .lore {
    padding: 64px 0 50px;
  }

  .lore__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .lore__copy {
    gap: 20px;
  }

  .lore__copy p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .peek-guy {
    width: clamp(72px, 23vw, 118px);
  }

  .ticker-strip div {
    gap: 24px;
    padding: 12px 0;
    animation-duration: 15s;
  }

  .ticker-strip span {
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  .gallery {
    padding: 18px 0 64px;
  }

  .gallery__heading {
    margin-bottom: 18px;
  }

  .chart {
    padding-bottom: 64px;
  }

  .chart__heading {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
  }

  .chart__frame {
    height: min(680px, 74svh);
  }

  .slider {
    padding: 10px;
  }

  .slide img {
    aspect-ratio: 1;
    padding-bottom: 64px;
  }

  .slider__arrow {
    top: auto;
    bottom: 18px;
    width: 46px;
    transform: none;
  }

  .slider__arrow:hover {
    transform: translateY(-2px);
  }

  .slider__arrow--prev {
    left: 20px;
  }

  .slider__arrow--next {
    right: 20px;
  }

  .slider__meta {
    left: 50%;
    right: auto;
    bottom: 20px;
    transform: translateX(-50%);
  }

  .join {
    align-items: stretch;
    padding: 38px 0 54px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 78svh;
  }

  .hero__content {
    padding-top: 17vh;
  }

  h1 {
    font-size: clamp(4.25rem, 27vw, 6.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.5rem);
  }

  .contract {
    padding: 12px;
  }

  .contract strong {
    font-size: 0.8rem;
  }

  .slider__arrow {
    bottom: 16px;
    width: 42px;
  }

  .slider__meta {
    bottom: 17px;
    padding: 7px 11px;
    font-size: 0.86rem;
  }
}

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