:root {
  --pink-1: #ff56b5;
  --pink-2: #ff7abb;
  --violet-1: #8a39ee;
  --violet-2: #4e1571;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 70px rgba(73, 10, 92, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 232, 120, 0.18), transparent 22rem),
    radial-gradient(circle at 82% 14%, rgba(108, 255, 214, 0.16), transparent 18rem),
    radial-gradient(circle at 52% 78%, rgba(255, 255, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--pink-1) 0%, var(--pink-2) 42%, var(--violet-1) 78%, var(--violet-2) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.06) 0 8%, transparent 8% 16%, rgba(255, 255, 255, 0.06) 16% 24%, transparent 24% 32%, rgba(255, 255, 255, 0.06) 32% 40%, transparent 40% 48%, rgba(255, 255, 255, 0.06) 48% 56%, transparent 56% 64%, rgba(255, 255, 255, 0.06) 64% 72%, transparent 72% 80%, rgba(255, 255, 255, 0.06) 80% 88%, transparent 88% 100%);
  opacity: 0.14;
  pointer-events: none;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.motion-ready [data-reveal="fade-up"] {
  transform: translate3d(0, 26px, 0);
  filter: blur(6px);
}

.motion-ready [data-reveal="zoom-in"] {
  transform: translate3d(0, 18px, 0) scale(0.965);
  filter: blur(8px);
}

.motion-ready [data-delay="1"] {
  transition-delay: 0.08s;
}

.motion-ready [data-delay="2"] {
  transition-delay: 0.16s;
}

.motion-ready [data-delay="3"] {
  transition-delay: 0.24s;
}

.motion-ready [data-delay="4"] {
  transition-delay: 0.32s;
}

.motion-ready .is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

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

.page {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 44px;
}

.float {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 28px rgba(79, 12, 96, 0.24));
  animation: bob 6.2s ease-in-out infinite;
}

.float img {
  display: block;
  width: 100%;
  height: auto;
}

.coin-a {
  top: 90px;
  right: 8px;
  width: 86px;
}

.ticket-a {
  top: 1200px;
  right: 40px;
  width: 106px;
  animation-delay: 1.1s;
}

.gem-a {
  top: 180px;
  left: -4px;
  width: 70px;
  animation-delay: 0.5s;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

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

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}

.topbar,
.copy,
.visual-shell {
  transform-origin: center;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(76, 13, 101, 0.22);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand-chip img {
  display: block;
  flex: none;
  width: 68px;
  height: 68px;
  border-radius: 22px;
}

.brand-chip span {
  display: block;
  font-size: 50px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.015em;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 30px;
  min-height: calc(100vh - 150px);
  padding: 22px 0 46px;
}

.copy {
  max-width: 34rem;
  padding: 14px 0;
}

.slogan {
  max-width: 11ch;
  margin: 24px 0 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.02em;
  word-spacing: 0.04em;
  text-transform: uppercase;
}

.subcopy {
  max-width: 24rem;
  margin: 26px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.62;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.94);
}

.cta-row {
  position: relative;
  left: -14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.play-badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 36px rgba(47, 10, 77, 0.26));
}

.play-badge img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.visual-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 215, 92, 0.18), transparent 18rem),
    radial-gradient(circle at 80% 78%, rgba(102, 255, 220, 0.14), transparent 16rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: auto auto -90px -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 86, 0.28), rgba(255, 214, 86, 0));
  z-index: 0;
}

.visual-shell::after {
  content: "";
  position: absolute;
  inset: -60px -50px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 255, 221, 0.18), rgba(128, 255, 221, 0));
  z-index: 0;
}

.hero-image {
  display: block;
  width: 90%;
  margin: auto;
}

.section {
  margin-top: 56px;
}

.section-title,
.section-copy {
  transform-origin: left center;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.015em;
  word-spacing: 0.03em;
  text-transform: uppercase;
}

.section-copy {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.feature-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: step;
}

.glass-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
  box-shadow: 0 34px 80px rgba(73, 10, 92, 0.3);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.35s ease, background 0.35s ease;
}

.feature-icon .svg-icon {
  width: 30px;
  height: 30px;
}

.glass-card:hover .feature-icon {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 255, 255, 0.22);
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.feature-card p,
.step-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.step-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 24px;
}

.step-card::before {
  content: "0" counter(step);
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  counter-increment: step;
}

.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 16px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.35s ease, background 0.35s ease;
}

.step-chip .svg-icon {
  width: 18px;
  height: 18px;
}

.glass-card:hover .step-chip {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.svg-icon {
  display: inline-block;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  width: 100%;
  margin-top: 120px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__column {
  display: flex;
  flex-direction: column;
}

.site-footer__column--left {
  text-align: left;
}

.site-footer__column--right {
  text-align: right;
}

.site-footer__link {
  color: inherit;
  text-decoration: none;
}

.site-footer__link:hover {
  color: inherit;
  text-decoration: none;
}

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

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .copy {
    max-width: 760px;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 20px, 100%);
    padding-top: 20px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-chip {
    border-radius: 28px;
  }

  .brand-chip img {
    width: 60px;
    height: 60px;
  }

  .brand-chip span {
    font-size: 24px;
  }

  .top-links {
    width: 100%;
  }

  .top-link {
    width: 100%;
  }

  .slogan {
    max-width: none;
  }

  .visual-shell {
    min-height: 560px;
  }

  .float {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__column--right {
    text-align: left;
  }
}
