/* Where is it / Paint Roll — neon magenta on deep space */

:root {
  --void: #020205;
  --deep: #05060C;
  --panel: #0C0F1E;
  --ink: #F3F6FF;
  --muted: #97A3C6;
  --pink: #FF2D8A;
  --pink-hot: #FF5CA8;
  --pink-deep: #E6006E;
  --ring: #FFFFFF;
  --display: "Encode Sans", "Nunito", system-ui, sans-serif;
  --body: "Nunito", "Avenir Next", system-ui, sans-serif;
  --shell: 68rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  background: var(--deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--pink-hot);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -4rem;
  transform: translateX(-50%);
  z-index: 100;
  padding: 0.55rem 1rem;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1rem 0;
}

.top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
}

.mark img {
  width: 40px;
  height: 40px;
  border-radius: 22%;
  box-shadow: 0 0 0 1px rgba(255, 45, 138, 0.35), 0 0 24px rgba(255, 45, 138, 0.25);
}

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

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

.top__nav a:hover {
  color: var(--ink);
}

.top__cta {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  color: #fff !important;
  box-shadow: 0 0 28px rgba(255, 45, 138, 0.35);
}

@media (min-width: 760px) {
  .top__nav {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--void);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 2, 5, 0.25) 0%, rgba(2, 2, 5, 0.15) 40%, rgba(2, 2, 5, 0.92) 100%),
    radial-gradient(ellipse at 50% 20%, rgba(255, 45, 138, 0.18), transparent 55%);
}

.hero__stage {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 3.5rem;
}

.brand-lockup {
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  color: #fff;
  text-shadow: 0 0 40px rgba(255, 45, 138, 0.45);
  max-width: 12ch;
}

.hero__lede {
  margin: 0.9rem 0 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
}

.hero__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 1rem;
  font-weight: 800;
  text-decoration: none;
  border: 0;
}

.btn small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.8;
  letter-spacing: 0.02em;
}

.btn--neon {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  box-shadow: 0 10px 40px rgba(255, 45, 138, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--neon:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 48px rgba(255, 45, 138, 0.45);
}

.btn--quiet {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(151, 163, 198, 0.25);
}

.play {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 45, 138, 0.12), transparent 45%),
    var(--deep);
}

.play__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .play__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.play__frame {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 45, 138, 0.25),
    0 30px 80px rgba(0, 0, 0, 0.55);
}

.play__frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.play__copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.85rem;
}

.play__copy p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.how {
  padding: 1rem 0 5rem;
}

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.steps li {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 45, 138, 0.08), rgba(12, 15, 30, 0.9));
  border: 1px solid rgba(255, 45, 138, 0.18);
}

.steps strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--pink-hot);
}

.steps span {
  color: var(--muted);
  font-weight: 600;
}

.foot {
  border-top: 1px solid rgba(151, 163, 198, 0.15);
  padding: 1.75rem 0 2.25rem;
  background: var(--void);
}

.foot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.foot__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.foot__brand img {
  width: 36px;
  height: 36px;
  border-radius: 22%;
}

.foot__brand strong {
  display: block;
  font-family: var(--display);
}

.foot__brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

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

.foot__nav a:hover {
  color: var(--ink);
}

.motion-rise {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.motion-rise--2 {
  animation-delay: 0.12s;
}

.motion-rise--3 {
  animation-delay: 0.24s;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-2%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-rise,
  .reveal,
  .hero__media img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
