/* SparkoraSocialStudio.games — Jackpot Wins promo */

:root {
  --void: #050608;
  --ink: #0e1218;
  --panel: rgba(18, 24, 34, 0.82);
  --stroke: rgba(249, 115, 22, 0.22);
  --copper: #f97316;
  --aqua: #22d3ee;
  --cream: #f1f5f9;
  --dim: #94a3b8;
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  --slant: 3deg;
  --r: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--cream);
  background: var(--void);
  background-image:
    radial-gradient(
      ellipse 100% 80% at 50% -20%,
      rgba(249, 115, 22, 0.12),
      transparent
    ),
    radial-gradient(
      ellipse 80% 50% at 100% 50%,
      rgba(34, 211, 238, 0.06),
      transparent
    ),
    linear-gradient(180deg, #0a0c10 0%, var(--void) 40%);
  overflow-x: hidden;
}

#particle-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}

.shell img,
.shell picture img {
  object-fit: contain;
  vertical-align: middle;
}

/* Header */
.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid var(--stroke);
  animation: drop-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}

.identity__badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  padding: 5px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.12);
  flex-shrink: 0;
}

.identity__badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.identity__text {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  /* max-width: 14rem; */
  text-transform: uppercase;
  background: linear-gradient(
    105deg,
    var(--cream) 0%,
    var(--aqua) 45%,
    var(--copper) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.1rem;
}

.menu a {
  color: var(--dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    color 0.2s,
    text-shadow 0.2s;
}

.menu a:hover,
.menu a[aria-current="page"] {
  color: var(--aqua);
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}

/* Google Play CTA */
.gplay {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #1c2433, #0f141c);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.gplay:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--copper);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.2);
}

.gplay__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 40px;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
}

.gplay__badge img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.gplay__lines {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.gplay__tiny {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 3rem;
  min-height: min(78vh, 720px);
}

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

.hero-copy {
  position: relative;
  padding: 2rem 1.5rem 2rem 0;
  animation: slide-right 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

@keyframes slide-right {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -30%;
  top: -10%;
  width: 140%;
  height: 120%;
  background: linear-gradient(
    115deg,
    rgba(249, 115, 22, 0.08),
    transparent 55%
  );
  transform: skewY(calc(-1 * var(--slant)));
  z-index: -1;
  border-radius: var(--r);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper);
  margin-bottom: 1rem;
}

.hero-eyebrow span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  padding: 4px;
  background: var(--panel);
  border: 1px solid var(--stroke);
}

.hero-eyebrow span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-grid h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-grid h1 em {
  font-style: normal;
  color: var(--aqua);
  text-shadow: 0 0 40px rgba(34, 211, 238, 0.35);
}

.lede {
  color: var(--dim);
  font-size: 1.05rem;
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  animation: slide-left 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@keyframes slide-left {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  transform: rotate(-2deg);
}

@media (max-width: 900px) {
  .hero-stack {
    transform: none;
    max-width: 420px;
    margin: 0 auto;
  }
}

.hero-frame {
  border-radius: calc(var(--r) + 4px);
  padding: 0.5rem;
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  animation: floaty 5s ease-in-out infinite;
}

.hero-frame:nth-child(2) {
  animation-delay: -1.2s;
  margin-top: 2rem;
}

.hero-frame:nth-child(3) {
  animation-delay: -2.4s;
  grid-column: span 2;
}

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

.hero-frame__inner {
  aspect-ratio: 16 / 10;
  border-radius: var(--r);
  background: #080a0e;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame__inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Marquee logos */
.marquee-wrap {
  margin: 0 -1.25rem 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.marquee {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}

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

.marquee__item {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--stroke);
}

.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Bento screenshots */
.section-head {
  margin-bottom: 1.75rem;
  animation: reveal-up 0.8s ease both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-head p {
  margin: 0;
  color: var(--dim);
  max-width: 42rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
}

.bento__cell {
  position: relative;
  border-radius: var(--r);
  background: var(--panel);
  border: 1px solid var(--stroke);
  padding: 0.65rem;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  animation: cell-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bento__cell.is-visible {
  opacity: 1;
}

@keyframes cell-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bento__cell:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
  animation-delay: 0.05s;
}
.bento__cell:nth-child(2) {
  grid-column: span 3;
  animation-delay: 0.1s;
}
.bento__cell:nth-child(3) {
  grid-column: span 2;
  animation-delay: 0.15s;
}
.bento__cell:nth-child(4) {
  grid-column: span 2;
  animation-delay: 0.2s;
}
.bento__cell:nth-child(5) {
  grid-column: span 2;
  animation-delay: 0.25s;
}
.bento__cell:nth-child(6) {
  grid-column: span 6;
  animation-delay: 0.3s;
}

@media (max-width: 900px) {
  .bento__cell:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento__cell:nth-child(6) {
    grid-column: span 2;
  }
}

.bento__cell:hover {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-4px);
}

.bento__media {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  background: #07090d;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
}

.bento__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bento__cell h3 {
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
  color: var(--copper);
  font-weight: 700;
}

.bento__cell p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--dim);
  line-height: 1.5;
}

.bento__glyph {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--stroke);
}

.bento__glyph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Feature ribbons */
.ribbons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.ribbon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-radius: var(--r);
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.06), transparent 45%);
  border: 1px solid var(--stroke);
  transform: skewX(-1deg);
  animation: reveal-up 0.85s ease both;
}

.ribbon:nth-child(even) {
  background: linear-gradient(
    270deg,
    rgba(249, 115, 22, 0.07),
    transparent 45%
  );
  transform: skewX(1deg);
}

.ribbon > * {
  transform: skewX(1deg);
}

.ribbon:nth-child(even) > * {
  transform: skewX(-1deg);
}

@media (max-width: 720px) {
  .ribbon {
    grid-template-columns: 1fr;
    text-align: center;
    transform: none;
  }
  .ribbon > *,
  .ribbon:nth-child(even) > * {
    transform: none;
  }
  .ribbon .gplay {
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

.ribbon__icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  padding: 10px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  flex-shrink: 0;
}

.ribbon__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ribbon__body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.ribbon__body p {
  margin: 0;
  color: var(--dim);
  font-size: 0.95rem;
}

/* Final CTA block */
.pulse-cta {
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 2.5rem 0 1rem;
  border-radius: calc(var(--r) + 6px);
  border: 1px solid var(--stroke);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(249, 115, 22, 0.15),
      transparent 55%
    ),
    var(--panel);
  position: relative;
  overflow: hidden;
  animation: reveal-up 0.9s ease both;
}

.pulse-cta::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 200deg,
    transparent,
    rgba(34, 211, 238, 0.07),
    transparent 35%
  );
  animation: spin 18s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pulse-cta > * {
  position: relative;
  z-index: 1;
}

.pulse-cta__logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
  border-radius: 24px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stroke);
}

.pulse-cta__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pulse-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.pulse-cta > p {
  color: var(--dim);
  margin: 0 0 1.25rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-foot {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.foot-brand__img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 4px;
  background: var(--panel);
  border: 1px solid var(--stroke);
}

.foot-brand__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.foot-brand strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.foot-nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.foot-nav a:hover {
  color: var(--copper);
}

.foot-copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--dim);
  margin: 0;
  padding-top: 0.5rem;
}

/* Inner pages */
.page-top {
  padding: 2.25rem 0 1.25rem;
  animation: reveal-up 0.75s ease both;
}

.page-top h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  color: var(--copper);
}

.page-top .lede {
  margin: 0;
  max-width: 40rem;
}

.article {
  max-width: 720px;
}

.article h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 2rem 0 0.6rem;
  text-transform: uppercase;
  color: var(--aqua);
}

.article p,
.article li {
  color: var(--dim);
}

.article ul {
  padding-left: 1.2rem;
}

.article a {
  color: var(--aqua);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  align-items: center;
}

.logo-strip span {
  width: 64px;
  height: 64px;
  border-radius: var(--r);
  padding: 8px;
  background: var(--panel);
  border: 1px solid var(--stroke);
}

.logo-strip span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inline-cta {
  margin: 2.25rem 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--r);
  background: var(--panel);
  border: 1px solid var(--stroke);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.inline-cta p {
  margin: 0;
  color: var(--cream);
  font-weight: 600;
}

/* Games list */
.game-tile {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem;
  margin-bottom: 1rem;
  border-radius: var(--r);
  background: var(--panel);
  border: 1px solid var(--stroke);
  animation: reveal-up 0.7s ease both;
}

@media (max-width: 640px) {
  .game-tile {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .game-tile .gplay {
    justify-content: center;
    margin: 0 auto;
  }
}

.game-tile__art {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  padding: 8px;
  background: #080a0e;
  border: 1px solid var(--stroke);
}

.game-tile__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.game-tile h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.game-tile p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .shot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shot-grid__cell {
  position: relative;
  border-radius: var(--r);
  background: var(--panel);
  border: 1px solid var(--stroke);
  padding: 0.5rem;
  overflow: hidden;
}

.shot-grid__glyph {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 34px;
  height: 34px;
  z-index: 2;
  border-radius: 10px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--stroke);
  pointer-events: none;
}

.shot-grid__glyph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shot-grid__inner {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  background: #07090d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot-grid__inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

/* Age gate */
body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(5, 6, 8, 0.9);
  backdrop-filter: blur(8px);
  animation: age-in 0.3s ease-out both;
}

@keyframes age-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.age-gate__panel {
  max-width: 440px;
  width: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--r) + 6px);
  background: linear-gradient(160deg, rgba(18, 24, 34, 0.98), rgba(8, 10, 14, 0.96));
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--copper);
  text-align: center;
  letter-spacing: 0.02em;
}

.age-gate__text {
  margin: 0 0 0.75rem;
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.55;
}

.age-gate__note {
  margin: 0 0 1.35rem;
  font-size: 0.85rem;
  color: var(--dim);
  line-height: 1.5;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.age-gate__btn {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s;
}

.age-gate__btn--primary {
  background: linear-gradient(135deg, #1a2330, #0d3d38);
  color: var(--cream);
  border-color: rgba(249, 115, 22, 0.45);
}

.age-gate__btn--primary:hover {
  transform: translateY(-1px);
  border-color: var(--aqua);
}

.age-gate__btn--ghost {
  background: transparent;
  color: var(--dim);
  border-color: var(--stroke);
}

.age-gate__btn--ghost:hover {
  color: var(--cream);
  border-color: rgba(248, 113, 113, 0.4);
}

/* Store description */
.free-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(90deg, var(--aqua), var(--copper));
}

.app-store-copy {
  padding: 2.25rem 0;
  border-top: 1px solid var(--stroke);
  margin-top: 0.5rem;
}

.app-store-copy__heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin: 0 0 1rem;
  color: var(--aqua);
  letter-spacing: 0.02em;
}

.app-store-copy__intro {
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.app-store-copy h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 1.35rem 0 0.5rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.app-store-copy p {
  margin: 0 0 0.9rem;
  color: var(--dim);
  font-size: 0.95rem;
}

.app-store-copy__stars {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--dim);
  font-size: 0.93rem;
}

.app-store-copy__stars li {
  margin-bottom: 0.45rem;
}

.app-store-copy__note {
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--r);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stroke);
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.55;
}

.app-store-copy__note ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.app-store-copy__note li {
  margin-bottom: 0.4rem;
}

.foot-disclaimer {
  width: 100%;
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.5;
  margin: 0;
  padding: 0 0 0.85rem;
  text-align: center;
}
