/* ==========================================================================
   IN7 GAME — Home page
   Hero unlock • OG banner • Unboxing • Install grid • Screenshots • Shield
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Hero — the progress-ring unlock
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(38px, 4.6vw, 78px) clamp(56px, 6.4vw, 104px);
  background:
    radial-gradient(900px 520px at 78% 4%, rgba(203, 159, 42, 0.2), transparent 60%),
    radial-gradient(760px 460px at 6% 86%, rgba(193, 26, 50, 0.11), transparent 62%),
    var(--grad-canvas);
}

/* Faint grid texture — depth without darkening the canvas */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 10, 11, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 10, 11, 0.028) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000, transparent 76%);
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 76%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
}

.hero__copy { min-width: 0; }

/* Copy stays hidden until the "download" finishes, then fades/scales in */
.hero__copy > * {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.hero.is-unlocked .hero__copy > * {
  opacity: 1;
  transform: none;
}

.hero.is-unlocked .hero__copy > *:nth-child(1) { transition-delay: 0.05s; }
.hero.is-unlocked .hero__copy > *:nth-child(2) { transition-delay: 0.13s; }
.hero.is-unlocked .hero__copy > *:nth-child(3) { transition-delay: 0.21s; }
.hero.is-unlocked .hero__copy > *:nth-child(4) { transition-delay: 0.29s; }
.hero.is-unlocked .hero__copy > *:nth-child(5) { transition-delay: 0.37s; }
.hero.is-unlocked .hero__copy > *:nth-child(6) { transition-delay: 0.45s; }
.hero.is-unlocked .hero__copy > *:nth-child(7) { transition-delay: 0.53s; }

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 8px;
  border-radius: var(--r-pill);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
}

.hero__status b {
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: #3A2C05;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__status span { padding-right: 10px; }

.hero h1 {
  font-size: var(--fs-hero);
  line-height: 1.02;
  margin-bottom: var(--sp-4);
}

.hero h1 .gold-word { position: relative; display: inline-block; }

.hero h1 .gold-word::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.11em;
  border-radius: 4px;
  background: var(--grad-gold);
  opacity: 0.28;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-out) 0.55s;
}

.hero.is-unlocked h1 .gold-word::after { transform: scaleX(1); }

.hero__lead {
  font-size: clamp(1.02rem, 0.96rem + 0.34vw, 1.19rem);
  color: var(--color-text-muted);
  line-height: 1.82;
  max-width: 56ch;
  margin-bottom: var(--sp-5);
}

.hero__bonus {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px 13px 14px;
  border-radius: var(--r-md);
  background: linear-gradient(120deg, #FFFCF2, #FBF4DF);
  border: 1px solid var(--color-gold-light);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--sp-5);
  max-width: 460px;
}

.hero__bonus-amt {
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex: none;
}

.hero__bonus-txt { font-size: var(--fs-xs); color: var(--color-text-muted); line-height: 1.5; }
.hero__bonus-txt b { display: block; color: var(--color-black); font-size: 0.92rem; font-family: var(--font-display); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: var(--sp-4);
}

.hero__microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.hero__microcopy li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__microcopy svg { width: 15px; height: 15px; color: var(--color-success); flex: none; }

/* --- Stage: phone mockup + unlock ring --- */

.hero__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  perspective: 1400px;
}

.hero__glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 159, 42, 0.34) 0%, rgba(203, 159, 42, 0.08) 46%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

/* concentric decorative rings behind the device */
.hero__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(203, 159, 42, 0.34);
  pointer-events: none;
}

.hero__orbit--1 { width: 400px; height: 400px; animation: spinSlow 46s linear infinite; }
.hero__orbit--2 { width: 520px; height: 520px; border-style: solid; border-color: rgba(11, 10, 11, 0.06); }

/* The device */
.phone {
  position: relative;
  width: min(300px, 74vw);
  aspect-ratio: 848 / 1855;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(158deg, #3A3740 0%, #101014 32%, #26242B 62%, #0B0A0B 100%);
  box-shadow:
    0 40px 80px -22px rgba(11, 10, 11, 0.5),
    0 12px 28px rgba(11, 10, 11, 0.22),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.26);
  transform-style: preserve-3d;
  transform: rotateY(-11deg) rotateX(4deg) rotateZ(-1.2deg);
  transition: transform 1.1s var(--ease-out), opacity 0.8s var(--ease-out);
  z-index: 2;
}

.hero .phone {
  opacity: 0;
  transform: rotateY(-24deg) rotateX(10deg) translateY(38px) scale(0.9);
}

.hero.is-unlocked .phone {
  opacity: 1;
  transform: rotateY(-11deg) rotateX(4deg) rotateZ(-1.2deg);
  animation: floaty 7s var(--ease-in-out) 1.4s infinite;
}

.hero.is-unlocked .phone:hover {
  animation-play-state: paused;
  transform: rotateY(-4deg) rotateX(1deg) scale(1.02);
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #0B0A0B;
}

.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Dynamic-island style pill */
.phone__island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 31%;
  height: 20px;
  border-radius: var(--r-pill);
  background: #050506;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 4;
}

.phone__island::after {
  content: "";
  position: absolute;
  right: 11px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #2E3B52, #080A0F 70%);
  box-shadow: 0 0 4px rgba(90, 140, 220, 0.5);
}

/* Glass sheen sweeping across the screen */
.phone__sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  border-radius: 34px;
  pointer-events: none;
}

.phone__sheen::before {
  content: "";
  position: absolute;
  top: -30%; left: 0;
  width: 46%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmerSweep 5.6s var(--ease-in-out) 2.2s infinite;
}

/* Side hardware */
.phone__btn {
  position: absolute;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #4A4753, #1B1A20);
}

.phone__btn--power { right: -3px; top: 27%; height: 62px; }
.phone__btn--vol-up { left: -3px; top: 20%; height: 38px; }
.phone__btn--vol-dn { left: -3px; top: 29%; height: 38px; }

/* --- The unlock progress ring --- */
.unlock-ring {
  position: absolute;
  left: 1%;
  bottom: 11%;
  width: 138px;
  z-index: 5;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 14px 30px rgba(11, 10, 11, 0.2));
}

.unlock-ring__svg {
  width: 138px;
  height: 138px;
  transform: rotate(-90deg);
}

.unlock-ring__track {
  fill: #fff;
  stroke: var(--color-gold-light);
  stroke-width: 9;
}

.unlock-ring__bar {
  fill: none;
  stroke: url(#unlockGrad);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 383;
  stroke-dashoffset: 383;
  transition: stroke-dashoffset 0.12s linear;
}

.unlock-ring__face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.1;
}

.unlock-ring__pct {
  font-family: var(--font-display);
  font-size: 1.62rem;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: -0.03em;
}

.unlock-ring__pct sup { font-size: 0.52em; top: -0.55em; color: var(--color-gold); }

.unlock-ring__label {
  display: block;
  margin-top: 3px;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.unlock-ring__done {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.45s var(--ease-out), transform 0.5s var(--ease-spring);
}

.unlock-ring.is-done .unlock-ring__face { opacity: 0; transform: scale(0.85); transition: all 0.3s var(--ease-out); }
.unlock-ring.is-done .unlock-ring__done { opacity: 1; transform: scale(1); }

.unlock-ring__check {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  color: #3A2C05;
  box-shadow: var(--shadow-gold-glow);
}

.unlock-ring__check svg { width: 26px; height: 26px; }

/* Gold light-burst on completion */
.unlock-burst {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 236, 176, 0.85) 0%, rgba(203, 159, 42, 0.36) 34%, transparent 66%);
}

.unlock-ring.is-done .unlock-burst { animation: burst 1.15s var(--ease-out) forwards; }

@keyframes burst {
  0% { opacity: 0.95; transform: scale(0.25); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* Floating info chips around the device */
.hero__chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  font-size: var(--fs-xs);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.hero.is-unlocked .hero__chip { opacity: 1; transform: none; }
.hero.is-unlocked .hero__chip--a { transition-delay: 0.6s; animation: floaty 6.4s var(--ease-in-out) 1.6s infinite; }
.hero.is-unlocked .hero__chip--b { transition-delay: 0.78s; animation: floaty 7.6s var(--ease-in-out) 2.1s infinite; }

.hero__chip--a { top: 12%; right: -4%; }
.hero__chip--b { bottom: 22%; right: -7%; }

.hero__chip b { display: block; font-family: var(--font-display); font-size: 0.9rem; color: var(--color-black); line-height: 1.2; }
.hero__chip small { color: var(--color-text-muted); font-size: 0.7rem; }

.hero__chip-ic {
  width: 32px; height: 32px;
  flex: none;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--color-gold-tint);
  color: var(--color-crimson);
}

.hero__chip-ic svg { width: 17px; height: 17px; }

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { max-width: 660px; }
  .hero__stage { min-height: 440px; margin-top: var(--sp-5); }
  .hero__chip--a { top: 6%; right: 2%; }
  .hero__chip--b { bottom: 14%; right: 0; }
  .unlock-ring { left: 2%; }
}

@media (max-width: 620px) {
  .hero__stage { min-height: 400px; }
  .hero__orbit--1 { width: 300px; height: 300px; }
  .hero__orbit--2 { width: 372px; height: 372px; }
  .unlock-ring, .unlock-ring__svg { width: 104px; }
  .unlock-ring__svg { height: 104px; }
  .unlock-ring__pct { font-size: 1.2rem; }
  .unlock-ring { left: 3%; bottom: 6%; }
  .unlock-ring__check { width: 42px; height: 42px; }
  .hero__chip { padding: 8px 12px; }
  .hero__chip--a { right: -1%; }
  .hero__chip--b { display: none; }
}

/* --------------------------------------------------------------------------
   2. OG banner showcase
   -------------------------------------------------------------------------- */

.og-showcase {
  position: relative;
  overflow: hidden;
  background: var(--grad-black);
  padding-block: var(--section-y);
}

.og-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 340px at 14% 0%, rgba(193, 26, 50, 0.3), transparent 62%),
    radial-gradient(760px 380px at 90% 100%, rgba(203, 159, 42, 0.2), transparent 60%);
  pointer-events: none;
}

.og-showcase__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

.og-showcase h2 { color: #fff; }
.og-showcase .eyebrow { color: var(--color-gold-light); }
.og-showcase p { color: var(--color-text-inverse-muted); }

.og-facts {
  display: grid;
  gap: 12px;
  margin: var(--sp-5) 0;
  padding: 0;
  list-style: none;
}

.og-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-inverse-muted);
}

.og-facts svg { width: 20px; height: 20px; flex: none; color: var(--color-gold); margin-top: 2px; }
.og-facts b { color: #fff; font-weight: 650; }

/* Gold-framed banner with a slow parallax float */
.og-frame {
  position: relative;
  border-radius: var(--r-lg);
  padding: 8px;
  background: var(--grad-gold);
  box-shadow: 0 34px 70px -20px rgba(0, 0, 0, 0.7), var(--shadow-gold-glow);
  transform: perspective(1600px) rotateY(-4deg);
  transition: transform 0.9s var(--ease-out);
}

.og-frame:hover { transform: perspective(1600px) rotateY(0deg) translateY(-6px); }

.og-frame__inner {
  position: relative;
  border-radius: calc(var(--r-lg) - 6px);
  overflow: hidden;
  background: #0B0A0B;
}

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

.og-frame__shine {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.og-frame__shine::before {
  content: "";
  position: absolute;
  top: -40%; left: 0;
  width: 34%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  animation: shimmerSweep 6.5s var(--ease-in-out) infinite;
}

.og-frame__tag {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  z-index: 4;
  white-space: nowrap;
}

.og-showcase__actions { margin-top: var(--sp-6); }

@media (max-width: 940px) {
  .og-showcase__inner { grid-template-columns: 1fr; }
  .og-frame { transform: none; }
}

/* --------------------------------------------------------------------------
   3. Unboxing bonus reveal
   -------------------------------------------------------------------------- */

.unbox {
  position: relative;
  overflow: hidden;
}

.unbox__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
}

/* --- The parcel --- */
.parcel {
  position: relative;
  width: min(400px, 86vw);
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.parcel__rays {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  opacity: 0;
  background:
    conic-gradient(from 0deg,
      rgba(203, 159, 42, 0.34) 0deg 8deg, transparent 8deg 30deg,
      rgba(203, 159, 42, 0.24) 30deg 36deg, transparent 36deg 62deg,
      rgba(203, 159, 42, 0.3) 62deg 70deg, transparent 70deg 96deg,
      rgba(203, 159, 42, 0.22) 96deg 102deg, transparent 102deg 130deg,
      rgba(203, 159, 42, 0.32) 130deg 138deg, transparent 138deg 168deg,
      rgba(203, 159, 42, 0.24) 168deg 174deg, transparent 174deg 204deg,
      rgba(203, 159, 42, 0.3) 204deg 212deg, transparent 212deg 240deg,
      rgba(203, 159, 42, 0.22) 240deg 246deg, transparent 246deg 276deg,
      rgba(203, 159, 42, 0.32) 276deg 284deg, transparent 284deg 312deg,
      rgba(203, 159, 42, 0.24) 312deg 318deg, transparent 318deg 348deg,
      rgba(203, 159, 42, 0.3) 348deg 356deg, transparent 356deg 360deg);
  -webkit-mask-image: radial-gradient(circle, transparent 24%, #000 40%, transparent 74%);
  mask-image: radial-gradient(circle, transparent 24%, #000 40%, transparent 74%);
  transition: opacity 0.8s var(--ease-out) 0.35s;
}

.parcel.is-open .parcel__rays { opacity: 1; animation: spinSlow 30s linear infinite; }

.parcel__halo {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 190, 0.9), rgba(203, 159, 42, 0.18) 52%, transparent 72%);
  opacity: 0;
  transition: opacity 0.7s var(--ease-out) 0.3s;
}

.parcel.is-open .parcel__halo { opacity: 1; }

.parcel__box {
  position: relative;
  width: 62%;
  aspect-ratio: 1.18 / 1;
  align-self: end;
  margin-bottom: 16%;
  z-index: 3;
}

/* box body */
.parcel__body {
  position: absolute;
  inset: 18% 0 0 0;
  border-radius: 10px 10px 14px 14px;
  background: linear-gradient(160deg, #D4243D 0%, #C11A32 46%, #8C1224 100%);
  box-shadow: 0 22px 40px -12px rgba(140, 18, 36, 0.55), inset 0 2px 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.parcel__body::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 15%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  opacity: 0.94;
}

.parcel__body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 26%, transparent 74%, rgba(0, 0, 0, 0.2));
}

.parcel__amount {
  position: absolute;
  inset: auto 0 14% 0;
  text-align: center;
  z-index: 4;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out) 0.5s, transform 0.6s var(--ease-out) 0.5s;
}

.parcel.is-open .parcel__amount { opacity: 1; transform: none; }

/* box lid — hinges open */
.parcel__lid {
  position: absolute;
  left: -5%; right: -5%;
  top: 4%;
  height: 26%;
  transform-origin: 8% 100%;
  transform: rotate(0deg);
  transition: transform 0.95s var(--ease-spring);
  z-index: 5;
}

.parcel.is-open .parcel__lid { transform: rotate(-46deg) translate(-6%, -14%); }

.parcel__lid-face {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(160deg, #E03A52 0%, #C11A32 60%, #9E1529 100%);
  box-shadow: 0 8px 18px rgba(140, 18, 36, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.parcel__lid-face::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 15%;
  transform: translateX(-50%);
  background: var(--grad-gold);
}

/* ribbon bow — two loops plus a centre knot */
.parcel__bow {
  position: absolute;
  left: 50%; top: -30%;
  transform: translateX(-50%);
  width: 46%;
  aspect-ratio: 2.1 / 1;
  z-index: 6;
}

.parcel__bow span {
  position: absolute;
  bottom: 0;
  width: 46%;
  height: 96%;
  background: var(--grad-gold);
  box-shadow: inset 0 -3px 8px rgba(120, 88, 10, 0.32);
}

.parcel__bow span:first-child {
  left: 0;
  border-radius: 90% 30% 60% 12% / 80% 40% 60% 20%;
  transform: rotate(-8deg);
}

.parcel__bow span:last-child {
  right: 0;
  border-radius: 30% 90% 12% 60% / 40% 80% 20% 60%;
  transform: rotate(8deg);
}

.parcel__bow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6%;
  transform: translateX(-50%);
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: inset 0 -2px 5px rgba(120, 88, 10, 0.4), 0 3px 8px rgba(120, 88, 10, 0.28);
  z-index: 2;
}

/* floating coins */
.parcel__coins {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.parcel__coins i {
  position: absolute;
  left: 50%;
  bottom: 40%;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: inset 0 -3px 6px rgba(120, 88, 10, 0.42), 0 4px 12px rgba(203, 159, 42, 0.4);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 0.85rem;
  color: #6B540F;
  opacity: 0;
}

.parcel.is-open .parcel__coins i { animation: coinRise 2.4s var(--ease-out) infinite; }

.parcel__coins i:nth-child(1) { --cx: -74px; animation-delay: 0.55s !important; }
.parcel__coins i:nth-child(2) { --cx: 8px;  animation-delay: 0.85s !important; width: 24px; height: 24px; font-size: 0.72rem; }
.parcel__coins i:nth-child(3) { --cx: 66px; animation-delay: 1.15s !important; }
.parcel__coins i:nth-child(4) { --cx: -30px; animation-delay: 1.45s !important; width: 21px; height: 21px; font-size: 0.66rem; }

/* shadow under the parcel */
.parcel__shadow {
  position: absolute;
  bottom: 10%;
  width: 52%;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(11, 10, 11, 0.28), transparent 70%);
  filter: blur(3px);
  z-index: 1;
}

/* --- Bonus breakdown --- */
.bonus-tiers {
  display: grid;
  gap: 12px;
  margin-block: var(--sp-5);
}

.bonus-tier {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 15px 18px;
  border-radius: var(--r-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.bonus-tier:hover { transform: translateX(6px); border-color: var(--color-gold); }

.bonus-tier__amt {
  flex: none;
  min-width: 92px;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--color-crimson);
  letter-spacing: -0.02em;
}

.bonus-tier__txt { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.55; }
.bonus-tier__txt b { display: block; color: var(--color-black); font-family: var(--font-display); font-size: 0.96rem; }

@media (max-width: 940px) {
  .unbox__inner { grid-template-columns: 1fr; }
  .unbox__art { order: -1; }
}

/* --------------------------------------------------------------------------
   4. App-icon install grid
   -------------------------------------------------------------------------- */

.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: clamp(14px, 2vw, 26px);
  max-width: 940px;
  margin-inline: auto;
  /* headroom for the install ring and the count badge */
  padding-top: 14px;
}

.app-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* Art wrapper keeps the count badge and install ring outside the icon's
   overflow:hidden clip while staying locked to the icon's box */
.app-tile__art {
  position: relative;
  width: 100%;
  max-width: 110px;
  aspect-ratio: 1;
  margin-inline: auto;
}

.app-tile__ring {
  position: absolute;
  inset: -9px;
  transform: rotate(-90deg);
  width: auto;
  aspect-ratio: 1;
  pointer-events: none;
}

.app-tile__ring circle {
  fill: none;
  stroke-width: 3;
}

.app-tile__ring .bg { stroke: transparent; }

.app-tile__ring .bar {
  stroke: var(--color-gold);
  stroke-linecap: round;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  transition: stroke-dashoffset 0.62s var(--ease-out);
}

.app-tile:hover .app-tile__ring .bar,
.app-tile:focus-visible .app-tile__ring .bar,
.app-tile[aria-selected="true"] .app-tile__ring .bar { stroke-dashoffset: 0; }

.app-tile__icon {
  position: absolute;
  inset: 0;
  border-radius: var(--r-app);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--tile-grad, var(--grad-crimson));
  box-shadow: 0 14px 30px -8px var(--tile-shadow, rgba(193, 26, 50, 0.44)),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-out);
}

.app-tile__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.26), transparent 46%);
}

.app-tile:hover .app-tile__icon,
.app-tile[aria-selected="true"] .app-tile__icon {
  box-shadow: 0 22px 44px -10px var(--tile-shadow, rgba(193, 26, 50, 0.5));
}

.app-tile__icon > svg { width: 46%; height: 46%; position: relative; z-index: 2; }

.app-tile__art { transition: transform var(--dur-base) var(--ease-spring); }
.app-tile:hover .app-tile__art,
.app-tile[aria-selected="true"] .app-tile__art { transform: translateY(-6px) scale(1.04); }

.app-tile__count {
  position: absolute;
  top: -6px; right: -6px;
  z-index: 4;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  background: var(--color-black);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  border: 2px solid var(--color-bg);
}

.app-tile__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  line-height: 1.25;
}

.app-tile__state {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: -7px;
}

.app-tile[aria-selected="true"] .app-tile__state { color: var(--color-gold); font-weight: 700; }

/* --- Preview panel --- */
.install-preview {
  margin-top: var(--sp-7);
  border-radius: var(--r-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.install-preview__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--color-border-soft);
  background: linear-gradient(120deg, var(--color-gold-tint), var(--color-surface));
}

.install-preview__badge {
  width: 50px; height: 50px;
  flex: none;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--tile-grad, var(--grad-crimson));
}

.install-preview__badge svg { width: 24px; height: 24px; }

.install-preview__title { min-width: 0; flex: 1; }
.install-preview__title h3 { margin-bottom: 3px; font-size: var(--fs-h4); }
.install-preview__title p { font-size: var(--fs-xs); color: var(--color-text-muted); margin: 0; max-width: 62ch; }

.install-preview__body { padding: var(--sp-6); }

/* Fixed column counts so the eight preview tiles always fill complete rows */
.install-preview__body .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 560px) {
  .install-preview__body .games-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.install-preview__foot {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--color-border-soft);
  background: var(--color-surface-sunken);
}

.install-preview__foot p { margin: 0; font-size: var(--fs-sm); color: var(--color-text-muted); }

.install-preview.is-swapping .install-preview__body { opacity: 0.25; transform: translateY(8px); }
.install-preview__body { transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }

@media (max-width: 560px) {
  .install-grid { grid-template-columns: repeat(3, 1fr); gap: 16px 10px; }
  .app-tile__name { font-size: 0.78rem; }
  .install-preview__head,
  .install-preview__body,
  .install-preview__foot { padding: var(--sp-5) var(--sp-4); }
}

/* --------------------------------------------------------------------------
   5. Screenshot slider
   -------------------------------------------------------------------------- */

.shots {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(203, 159, 42, 0.14), transparent 62%),
    var(--color-surface-alt);
}

.shots__viewport {
  overflow: hidden;
  padding-block: var(--sp-5) var(--sp-6);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.shots__track {
  display: flex;
  gap: clamp(16px, 2.2vw, 30px);
  will-change: transform;
  transition: transform 0.75s var(--ease-out);
  padding-inline: 4px;
}

.shot {
  flex: 0 0 auto;
  width: clamp(178px, 22vw, 232px);
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out), filter 0.6s var(--ease-out);
  opacity: 0.52;
  transform: scale(0.9);
  filter: saturate(0.72);
}

.shot.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.shot__device {
  position: relative;
  border-radius: 30px;
  padding: 8px;
  background: linear-gradient(158deg, #3A3740 0%, #101014 34%, #26242B 66%, #0B0A0B 100%);
  box-shadow: 0 26px 52px -18px rgba(11, 10, 11, 0.48), inset 0 0 0 1.2px rgba(255, 255, 255, 0.12);
}

.shot__device::before {
  content: "";
  position: absolute;
  top: 15px; left: 50%;
  transform: translateX(-50%);
  width: 30%; height: 12px;
  border-radius: var(--r-pill);
  background: #050506;
  z-index: 3;
}

.shot__screen {
  border-radius: 23px;
  overflow: hidden;
  background: #0B0A0B;
  aspect-ratio: 1280 / 2800;
}

.shot__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.shot__caption {
  margin-top: 14px;
  text-align: center;
}

.shot__caption b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-black);
}

.shot__caption span { font-size: var(--fs-xs); color: var(--color-text-muted); }

.shots__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.shots__nav {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-black);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all var(--dur-base) var(--ease-out);
}

.shots__nav svg { width: 20px; height: 20px; }
.shots__nav:hover { background: var(--grad-gold); border-color: transparent; color: #3A2C05; transform: scale(1.06); }
.shots__nav:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.shots__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shots__dot {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}

.shots__dot.is-active {
  width: 30px;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
}

.shots__progress {
  width: min(420px, 80%);
  height: 3px;
  margin: var(--sp-5) auto 0;
  border-radius: 3px;
  background: var(--color-border);
  overflow: hidden;
}

.shots__progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: var(--grad-gold);
  transition: width 0.4s var(--ease-out);
}

/* --------------------------------------------------------------------------
   6. Verified-safe-download / shield section
   -------------------------------------------------------------------------- */

.safe {
  position: relative;
  overflow: hidden;
}

.safe__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 4vw, 68px);
  align-items: center;
}

.shield-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: var(--sp-5);
}

.shield-stage::before {
  content: "";
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 159, 42, 0.2), transparent 66%);
}

.shield-svg {
  position: relative;
  width: min(280px, 68vw);
  height: auto;
}

.shield-svg .s-body,
.shield-svg .s-tick,
.shield-svg .s-inner {
  fill: none;
  stroke: var(--color-black);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--len, 900);
  stroke-dashoffset: var(--len, 900);
}

.shield-svg .s-inner { stroke: var(--color-gold); stroke-width: 2.5; opacity: 0.8; }
.shield-svg .s-tick { stroke: var(--color-crimson); stroke-width: 8; }

.shield-stage.is-drawn .s-body { animation: drawPath 1.5s var(--ease-out) forwards; }
.shield-stage.is-drawn .s-inner { animation: drawPath 1.3s var(--ease-out) 0.35s forwards; }
.shield-stage.is-drawn .s-tick { animation: drawPath 0.7s var(--ease-out) 1.15s forwards; }

.shield-stage__pill {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.6s var(--ease-out) 1.6s, transform 0.6s var(--ease-out) 1.6s;
}

.shield-stage.is-drawn .shield-stage__pill { opacity: 1; transform: translateX(-50%) translateY(0); }

.safe__checks {
  display: grid;
  gap: 10px;
  margin-top: var(--sp-5);
  padding: 0;
  list-style: none;
}

.safe__checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 12px 15px;
  border-radius: var(--r-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.safe__checks svg { width: 19px; height: 19px; flex: none; color: var(--color-success); margin-top: 2px; }
.safe__checks b { color: var(--color-black); }

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

/* --------------------------------------------------------------------------
   7. Feature / benefit blocks
   -------------------------------------------------------------------------- */

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: var(--sp-5);
}

.feature {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.feature::before {
  content: "";
  position: absolute;
  right: -34px; top: -34px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--color-gold-tint);
  transition: transform var(--dur-slow) var(--ease-out);
}

.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.feature:hover::before { transform: scale(1.9); }

.feature > * { position: relative; }

.feature__ic {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--grad-black);
  color: var(--color-gold-light);
  margin-bottom: var(--sp-4);
}

.feature__ic svg { width: 25px; height: 25px; }

.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: 0; }

/* Split "compare" table block */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
}

.compare-col {
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.compare-col--yes { border-color: rgba(31, 122, 77, 0.34); background: linear-gradient(180deg, #F4FBF7, #fff); }
.compare-col--no { border-color: rgba(193, 26, 50, 0.25); background: linear-gradient(180deg, #FDF5F6, #fff); }

.compare-col h3 { display: flex; align-items: center; gap: 10px; font-size: 1.08rem; }
.compare-col h3 svg { width: 22px; height: 22px; }
.compare-col--yes h3 svg { color: var(--color-success); }
.compare-col--no h3 svg { color: var(--color-crimson); }

.compare-col ul { list-style: none; padding: 0; margin: var(--sp-4) 0 0; }

.compare-col li {
  display: flex;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding: 9px 0;
  border-bottom: 1px dashed var(--color-border-soft);
}

.compare-col li:last-child { border-bottom: 0; }
.compare-col li::before { content: "•"; color: var(--color-gold); font-weight: 700; }

/* Testimonials */
.quote-card {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 6px; right: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-gold-light);
}

.quote-card p { font-size: var(--fs-sm); color: var(--color-text-muted); font-style: italic; }

.quote-card__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border-soft);
}

.quote-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-gold);
  color: #3A2C05;
  font-family: var(--font-display);
  font-weight: 800;
  flex: none;
}

.quote-card__name { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--color-black); line-height: 1.3; }
.quote-card__meta { font-size: var(--fs-xs); color: var(--color-text-muted); }

.stars { display: flex; gap: 2px; color: var(--color-gold); margin-bottom: 12px; }
.stars svg { width: 16px; height: 16px; }

/* Payment / withdrawal method tiles */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--sp-3);
}

.pay {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  text-align: left;
  transition: all var(--dur-base) var(--ease-out);
}

.pay:hover { border-color: var(--color-gold); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pay b { font-family: var(--font-display); font-size: 0.95rem; color: var(--color-black); }
.pay span { font-size: var(--fs-xs); color: var(--color-text-muted); }
.pay em { font-style: normal; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-success); font-weight: 700; }
