@font-face {
  font-family: "JF Flat";
  src: url("../fonts/jf-flat-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JF Flat";
  src: url("../fonts/jf-flat-medium.ttf") format("truetype");
  font-weight: 500 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #f9f5ea;
  --muted: #c9c0b2;
  --bg: #10100f;
  --paper: #f2efe6;
  --paper-2: #e8e3d7;
  --coal: #171614;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(20, 18, 15, 0.16);
  --yellow: #eee11f;
  --mint: #72d4c6;
  --purple: #6044ad;
  --rose: #d65b84;
  --orange: #df6d2d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --pattern-image: url("../img/deal-pattern-web.png");
  --font-main: "JF Flat", "Tahoma", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.55;
}

main,
section,
header,
footer {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 78px;
  padding: 13px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 16, 15, 0.82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    min-height 180ms ease,
    padding 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 60px;
  padding-block: 8px;
  background: rgba(16, 16, 15, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.brand img {
  width: clamp(82px, 8vw, 118px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
  transition: width 180ms ease, filter 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: clamp(70px, 6vw, 96px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.nav-actions,
.hero-actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 100%;
}

.nav-actions a,
.primary,
.secondary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid var(--line);
  white-space: nowrap;
  max-width: 100%;
  font-size: 14px;
}

.buy-link,
.primary {
  background: var(--ink);
  color: #171513;
  border-color: transparent;
  font-weight: 800;
}

.secondary {
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding: 108px clamp(20px, 5vw, 72px) 48px;
  background:
    radial-gradient(circle at 18% 16%, rgba(114, 212, 198, 0.16), transparent 30%),
    radial-gradient(circle at 82% 15%, rgba(238, 225, 31, 0.12), transparent 28%),
    linear-gradient(155deg, #151412, #070707 76%);
}

.hero::before,
.hero::after,
.play-section::before,
.tatbeeq-section::before,
.purchase-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  inset: 0;
  background-image: var(--pattern-image);
  background-size: min(1380px, 180vw) auto;
  background-position: left -32vw bottom -22vw;
  background-repeat: no-repeat;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.hero::after {
  inset: auto -10vw -22vw auto;
  width: min(560px, 70vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(238, 225, 31, 0.11), transparent 62%),
    radial-gradient(circle, rgba(114, 212, 198, 0.1), transparent 72%);
  filter: blur(8px);
}

.hero > *,
.play-section > *,
.tatbeeq-section > *,
.purchase-section > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.hero-media {
  position: relative;
  filter: drop-shadow(var(--shadow));
}

.hero-media img {
  width: min(820px, 100%);
  margin-inline: auto;
}

.hero-clean-start {
  grid-template-columns: minmax(0, 1fr);
  min-height: 52svh;
  align-content: center;
  padding-top: clamp(88px, 9vw, 124px);
  padding-bottom: clamp(16px, 3vw, 36px);
}

.hero-clean-start .hero-copy {
  max-width: 980px;
}

.hero-clean-start h1 {
  max-width: 900px;
  font-size: clamp(38px, 7.4vw, 78px);
  line-height: 1.12;
}

.hero-box-preview {
  justify-self: center;
  width: min(560px, 100%);
  opacity: 0.98;
}

.hero-box-preview img {
  border-radius: 8px;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.38));
}

.hero-copy,
.section-copy,
.stage-copy {
  max-width: 620px;
}

.unbox-message {
  max-width: 960px;
}

.unbox-message .unbox-game-label {
  margin: 0 0 12px;
  color: #5f584e;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 900;
}

.unbox-message h2 {
  max-width: 1060px;
  font-size: clamp(42px, 9vw, 96px);
  line-height: 1.08;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(56px, 15vw, 132px);
}

h2 {
  font-size: clamp(36px, 8vw, 82px);
}

p {
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 20px);
}

.hero-actions {
  margin-top: 26px;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.scroll-cue span {
  width: 22px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateX(-50%);
}

.scroll-stage {
  position: relative;
  min-height: 360svh;
  margin-top: -6svh;
  background:
    linear-gradient(180deg, #080808 0%, #151414 42%, var(--paper) 42%, var(--paper) 100%);
}

.sticky-product {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-content: start;
  align-items: start;
  gap: 18px;
  padding: clamp(68px, 7vw, 96px) clamp(14px, 4vw, 56px) 32px;
}

.sequence-wrap {
  position: relative;
  width: min(1120px, 100%);
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 1200 / 760;
  overflow: hidden;
  background: #f1eee6;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.sequence-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-sequence-shell,
.box-sequence-shell img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.box-sequence-shell {
  touch-action: pan-y;
}

.box-protection-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0);
  pointer-events: auto;
  touch-action: pan-y;
}

.stage-copy {
  width: min(720px, 100%);
  margin-inline: auto;
  color: #15130f;
}

.stage-copy h2,
.play-section h2 {
  color: #15130f;
}

.stage-copy p,
.play-section p,
.purchase-section p {
  color: #5f584e;
}

.play-section,
.tatbeeq-section,
.app-section,
.faq-section,
.purchase-section {
  display: grid;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  gap: clamp(30px, 6vw, 88px);
  padding: clamp(76px, 12vw, 152px) clamp(20px, 5vw, 72px);
}

.land-transition-section {
  position: relative;
  min-height: 260svh;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(circle at 20% 14%, rgba(114, 212, 198, 0.16), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(238, 225, 31, 0.12), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, #ece6d9 52%, #11100f 52%, #0b0b0a 100%);
}

.land-transition-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--pattern-image);
  background-size: min(1180px, 220vw) auto;
  background-position: center 58%;
  background-repeat: no-repeat;
  opacity: 0.075;
  mix-blend-mode: multiply;
}

.land-transition-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 100svh;
  padding: 84px clamp(20px, 5vw, 72px) 44px;
}

.land-transition-copy {
  max-width: 660px;
}

.land-transition-copy h2 {
  color: #171513;
}

.land-transition-copy p {
  color: #5f584e;
}

.land-transition-stage {
  position: relative;
  min-height: min(560px, 62svh);
  perspective: 1200px;
}

.tray-echo {
  position: absolute;
  inset: auto 50% 9% auto;
  width: min(540px, 88vw);
  height: min(168px, 24vw);
  border: 1px solid rgba(23, 21, 19, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(214, 207, 192, 0.9)),
    var(--paper-2);
  box-shadow:
    inset 0 18px 26px rgba(255, 255, 255, 0.38),
    0 26px 60px rgba(37, 30, 22, 0.16);
  transform: translateX(50%) rotateX(58deg) rotateZ(-1deg);
}

.tray-echo span {
  position: absolute;
  inset: 24px 34px;
  border-radius: 12px;
  border: 1px solid rgba(23, 21, 19, 0.08);
  background: rgba(255, 255, 255, 0.35);
}

.flying-land-card {
  position: absolute;
  left: 50%;
  top: 62%;
  z-index: calc(3 + var(--i));
  width: clamp(84px, 16vw, 172px);
  aspect-ratio: 756 / 1063;
  opacity: var(--op, 0);
  transform:
    translate3d(var(--tx, 0), var(--ty, 0), 0)
    rotate(var(--rot, 0deg))
    scale(var(--scale, 0.62));
  transform-origin: center center;
  transform-style: preserve-3d;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.24));
  will-change: transform, opacity;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateY(var(--flip, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  backface-visibility: hidden;
}

.card-front {
  transform: rotateY(180deg);
}

.land-sets-preview-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: clamp(30px, 6vw, 88px);
  padding: clamp(76px, 12vw, 152px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 18%, rgba(96, 68, 173, 0.2), transparent 30%),
    linear-gradient(180deg, #10100f, #17131c);
}

.land-sets-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--pattern-image);
  background-size: min(1280px, 210vw) auto;
  background-position: center bottom -22vw;
  background-repeat: no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.land-sets-preview-section > * {
  position: relative;
  z-index: 1;
}

.set-preview-grid {
  display: grid;
  gap: 12px;
}

.set-preview-grid article {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: clamp(15px, 3vw, 22px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.set-preview-grid span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.set-preview-grid strong {
  color: var(--ink);
  font-size: clamp(16px, 2.6vw, 22px);
  line-height: 1.35;
}

.play-section,
.purchase-section {
  background:
    radial-gradient(circle at 85% 24%, rgba(238, 225, 31, 0.11), transparent 26%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  color: #15130f;
}

.play-section::before {
  inset: 0;
  background-image: var(--pattern-image);
  background-size: min(1160px, 220vw) auto;
  background-position: right -26vw top -12vw;
  background-repeat: no-repeat;
  opacity: 0.055;
  mix-blend-mode: multiply;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 3vw, 20px);
}

.teaser-card {
  position: relative;
  min-height: 0;
}

.teaser-card img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(37, 31, 22, 0.18);
}

.teaser-card span {
  position: absolute;
  inset: auto 10px 10px auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(16, 15, 14, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.money-card {
  grid-column: span 2;
}

.player-area-section {
  align-items: start;
}

.player-board {
  width: min(980px, 100%);
  justify-self: center;
}

.player-table {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  border: 1px solid rgba(23, 21, 19, 0.1);
  border-radius: 18px;
  padding: clamp(14px, 3vw, 22px);
  background:
    radial-gradient(circle at 18% 10%, rgba(238, 225, 31, 0.13), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(114, 212, 198, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(226, 219, 205, 0.94));
  box-shadow: 0 24px 80px rgba(44, 37, 28, 0.18);
}

.player-zone {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: 12px;
  padding: clamp(14px, 3vw, 18px);
  background: rgba(255, 255, 255, 0.55);
}

.zone-heading {
  display: grid;
  gap: 3px;
}

.zone-heading span,
.stack-label {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(96, 68, 173, 0.1);
  color: #30215d;
  font-size: 12px;
  font-weight: 900;
}

.zone-heading strong {
  color: #171513;
  font-size: clamp(18px, 3vw, 26px);
  line-height: 1.2;
}

.player-zone p {
  margin: 0;
  color: #5f584e;
  font-size: clamp(14px, 2vw, 16px);
}

.land-stack-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.land-stack-card {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(23, 21, 19, 0.07);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.52);
}

.stacked-card-pile {
  position: relative;
  min-height: clamp(190px, 34vw, 310px);
}

.stacked-card-pile img,
.money-pile img,
.hand-card-fan img {
  border-radius: 12px;
  filter: drop-shadow(0 16px 24px rgba(37, 31, 22, 0.18));
}

.stacked-card-pile img {
  position: absolute;
  inset: calc(var(--i) * 28px) auto auto 50%;
  width: min(150px, 36vw);
  transform: translateX(-50%) rotate(calc((var(--i) - 1.5) * 1.3deg));
  z-index: calc(1 + var(--i));
}

.player-zone-bank {
  overflow: hidden;
}

.money-pile {
  position: relative;
  min-height: clamp(190px, 32vw, 285px);
}

.money-pile img {
  position: absolute;
  top: calc(var(--i) * 20px);
  right: calc(var(--i) * 8px);
  width: min(176px, 44vw);
  transform: rotate(calc((var(--i) - 2) * -2deg));
  z-index: calc(1 + var(--i));
}

.player-zone-hand {
  grid-column: 1 / -1;
}

.hand-card-fan {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
}

.hand-card-fan figure {
  display: grid;
  gap: 7px;
  margin: 0;
  transform: translateY(calc((2 - var(--i)) * 5px)) rotate(calc((var(--i) - 2) * 2deg));
}

.hand-card-fan img {
  width: 100%;
  aspect-ratio: 756 / 1063;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.34);
}

.hand-card-fan .hand-card-protected-art {
  width: 100%;
  aspect-ratio: 756 / 1063;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.34);
}

.hand-card-fan figcaption {
  color: #3c342c;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.player-note {
  border-right: 3px solid rgba(238, 225, 31, 0.9);
  padding-right: 12px;
}

.approved-action-section {
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(238, 225, 31, 0.12), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(96, 68, 173, 0.22), transparent 34%),
    linear-gradient(145deg, #141016, #211a27 54%, #11100f);
}

.approved-action-section::before {
  inset: 0;
  background-image: var(--pattern-image);
  background-size: min(1280px, 210vw) auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.approved-action-gallery {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 170px);
  gap: 14px;
  width: 100%;
  max-width: min(980px, 100%);
  padding: 6px clamp(18px, 5vw, 28px) 18px;
  overflow-x: auto;
  scroll-padding-inline: clamp(18px, 5vw, 28px);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.approved-action-gallery-minimal {
  grid-auto-columns: minmax(150px, 190px);
  justify-content: center;
  max-width: min(520px, 100%);
  padding-inline: clamp(18px, 5vw, 28px);
  scroll-padding-inline: clamp(18px, 5vw, 28px);
}

.approved-action-gallery::after {
  content: "";
  width: 1px;
}

.approved-action-card {
  display: grid;
  gap: 10px;
  margin: 0;
  scroll-snap-align: start;
}

.approved-action-card img {
  width: 100%;
  aspect-ratio: 756 / 1063;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.approved-action-card figcaption {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.tatbeeq-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(96, 68, 173, 0.36), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(114, 212, 198, 0.12), transparent 32%),
    linear-gradient(135deg, #0a080d, #15101c 54%, #080708);
}

.tatbeeq-section::before {
  inset: 0;
  background-image: var(--pattern-image);
  background-size: min(1320px, 210vw) auto;
  background-position: center bottom -22vw;
  background-repeat: no-repeat;
  opacity: 0.24;
  mix-blend-mode: screen;
}

.tatbeeq-card {
  justify-self: center;
  width: min(330px, 72vw);
  transform: rotate(-4deg);
  filter: drop-shadow(0 26px 80px rgba(0, 0, 0, 0.45));
}

.tatbeeq-card img {
  border-radius: 16px;
}

.app-section {
  background:
    radial-gradient(circle at 22% 22%, rgba(96, 68, 173, 0.34), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(211, 165, 55, 0.18), transparent 26%),
    linear-gradient(135deg, #0b090e, #151017 48%, #0d0d0b);
}

.app-screenshots-section {
  align-items: center;
}

.app-screenshots-copy {
  align-self: center;
}

.app-download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.app-download-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(249, 245, 234, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.app-store-link {
  border-color: rgba(249, 245, 234, 0.78);
  background: #f9f5ea;
  color: #151212;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.app-store-link:hover,
.app-store-link:focus-visible {
  border-color: #fffdf7;
  background: #fffdf7;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.app-download-link:focus-visible {
  outline: 3px solid rgba(238, 225, 31, 0.72);
  outline-offset: 3px;
}

.apple-symbol {
  display: inline-block;
  color: currentColor;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Symbol", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.google-play-soon {
  border-color: rgba(249, 245, 234, 0.16);
  background: rgba(249, 245, 234, 0.07);
  color: rgba(249, 245, 234, 0.78);
  cursor: default;
}

.play-symbol {
  color: var(--yellow);
  font-size: 16px;
  line-height: 1;
}

.app-selector-story-section {
  align-items: center;
}

.selector-story-copy {
  align-self: center;
}

.faq-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(96, 68, 173, 0.35), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(114, 212, 198, 0.12), transparent 28%),
    linear-gradient(145deg, #09080d, #15111f 52%, #090807);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--pattern-image);
  background-size: min(1180px, 220vw) auto;
  background-position: center top -16vw;
  background-repeat: no-repeat;
  opacity: 0.17;
  mix-blend-mode: screen;
}

.faq-copy {
  align-self: center;
}

.faq-assistant {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(720px, 100%);
  justify-self: center;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(10, 9, 13, 0.82);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.faq-search-label {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.faq-search-row {
  display: grid;
}

.faq-search-row input {
  min-height: 54px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.faq-search-row input::placeholder {
  color: rgba(249, 245, 234, 0.56);
}

.faq-search-row input:focus {
  border-color: rgba(238, 225, 31, 0.72);
  box-shadow: 0 0 0 3px rgba(238, 225, 31, 0.12);
}

.faq-chips,
.faq-tags,
.faq-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-chips button,
.faq-related button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.faq-chips button:hover,
.faq-related button:hover {
  border-color: rgba(114, 212, 198, 0.55);
  background: rgba(114, 212, 198, 0.12);
}

.faq-answer {
  display: grid;
  gap: 10px;
  min-height: 248px;
  border-radius: 8px;
  padding: clamp(18px, 4vw, 26px);
  background: rgba(249, 245, 234, 0.92);
  color: #171513;
}

.faq-answer h3 {
  margin: 0;
  color: #171513;
  font-size: clamp(24px, 5vw, 42px);
  line-height: 1.15;
}

.faq-answer p {
  margin: 0;
  color: #4f473e;
}

.faq-answer-body {
  display: grid;
  gap: 14px;
}

.faq-short-answer {
  font-size: clamp(17px, 3vw, 21px);
  font-weight: 850;
  line-height: 1.55;
}

.faq-full-answer {
  line-height: 1.65;
}

.faq-steps {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-steps li {
  position: relative;
  padding: 11px 14px;
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  color: #373028;
  line-height: 1.55;
}

.faq-preview {
  display: grid;
  gap: 10px;
  justify-items: start;
  width: min(260px, 100%);
  margin-top: 2px;
  padding: 12px;
  border: 1px solid rgba(96, 68, 173, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(96, 68, 173, 0.1), rgba(114, 212, 198, 0.1)),
    rgba(255, 255, 255, 0.54);
  transform-origin: center bottom;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.faq-preview-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  isolation: isolate;
}

.faq-preview-gallery .faq-preview {
  width: min(124px, calc(50% - 5px));
  margin-top: 0;
  padding: 10px;
  animation: cardRise 420ms ease both;
}

.faq-preview-gallery .faq-preview img {
  width: min(100%, 118px);
}

.faq-preview-gallery .faq-preview span {
  font-size: 12px;
}

.faq-preview-gallery .faq-preview small {
  display: none;
}

.faq-gallery-fan .faq-preview:nth-child(odd) {
  transform: rotate(-1.6deg);
}

.faq-gallery-fan .faq-preview:nth-child(even) {
  transform: rotate(1.4deg);
}

.faq-gallery-fan .faq-preview:nth-child(3n) {
  transform: translateY(4px) rotate(0.8deg);
}

.faq-gallery-money .faq-preview {
  background:
    linear-gradient(145deg, rgba(238, 225, 31, 0.12), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.64);
}

.faq-gallery-rent .faq-preview {
  background:
    linear-gradient(145deg, rgba(114, 212, 198, 0.14), rgba(96, 68, 173, 0.1)),
    rgba(255, 255, 255, 0.64);
}

.faq-gallery-action {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding: 2px clamp(16px, 5vw, 24px) 12px;
  scroll-padding-inline: clamp(16px, 5vw, 24px);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.faq-gallery-action .faq-preview {
  flex: 0 0 132px;
  width: 132px;
  scroll-snap-align: start;
  background:
    linear-gradient(145deg, rgba(96, 68, 173, 0.15), rgba(238, 225, 31, 0.08)),
    rgba(255, 255, 255, 0.66);
}

.faq-gallery-action .faq-preview img {
  width: 116px;
}

.faq-gallery-action.faq-gallery-fan .faq-preview,
.faq-gallery-action.faq-gallery-fan .faq-preview:nth-child(odd),
.faq-gallery-action.faq-gallery-fan .faq-preview:nth-child(even),
.faq-gallery-action.faq-gallery-fan .faq-preview:nth-child(3n) {
  transform: none;
}

.faq-gallery-land {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding: 2px clamp(16px, 5vw, 24px) 12px;
  scroll-padding-inline: clamp(16px, 5vw, 24px);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.faq-gallery-land .faq-preview {
  flex: 0 0 138px;
  width: 138px;
  scroll-snap-align: start;
  background:
    linear-gradient(145deg, rgba(238, 225, 31, 0.1), rgba(114, 212, 198, 0.12)),
    rgba(255, 255, 255, 0.68);
}

.faq-gallery-land .faq-preview img {
  width: 118px;
}

.faq-gallery-land.faq-gallery-fan .faq-preview,
.faq-gallery-land.faq-gallery-fan .faq-preview:nth-child(odd),
.faq-gallery-land.faq-gallery-fan .faq-preview:nth-child(even),
.faq-gallery-land.faq-gallery-fan .faq-preview:nth-child(3n) {
  transform: none;
}

.land-example-stack {
  display: grid;
  gap: 16px;
  margin-block: 6px 10px;
}

.land-example {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(96, 68, 173, 0.16);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(238, 225, 31, 0.11), rgba(114, 212, 198, 0.12)),
    rgba(255, 255, 255, 0.62);
}

.land-example-header {
  display: grid;
  gap: 5px;
}

.land-example-kicker,
.land-stage-index,
.land-rent-value {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(96, 68, 173, 0.1);
  color: #30215d;
  font-size: 12px;
  font-weight: 900;
}

.land-example-header strong {
  color: #21192f;
  font-size: 18px;
}

.land-example-header p,
.land-stage p,
.land-example-note {
  margin: 0;
  color: #564c43;
  font-size: 14px;
  line-height: 1.55;
}

.land-stage-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 clamp(14px, 4vw, 22px) 8px;
  scroll-padding-inline: clamp(14px, 4vw, 22px);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.land-stage {
  flex: 0 0 min(260px, 86vw);
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.62);
  scroll-snap-align: start;
}

.land-mini-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 130px;
}

.land-mini-row img {
  width: min(84px, 28vw);
  border-radius: 8px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16));
}

.land-rent-value {
  background: rgba(238, 225, 31, 0.22);
  color: #3e3210;
}

.faq-preview-approved::after {
  content: "معتمد";
  justify-self: start;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(96, 68, 173, 0.1);
  color: #30215d;
  font-size: 11px;
  font-weight: 900;
}

.faq-land-link-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 2px 6px;
}

.faq-land-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  background: #171513;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

@media (hover: hover) {
  .faq-preview:hover {
    z-index: 2;
    border-color: rgba(96, 68, 173, 0.34);
    box-shadow: 0 16px 36px rgba(48, 33, 93, 0.14);
    transform: translateY(-5px) rotate(0deg);
  }
}

.faq-preview strong {
  color: #241846;
  font-size: 14px;
}

.faq-preview img {
  width: min(136px, 54vw);
  border-radius: 8px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.18));
}

@keyframes cardRise {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.faq-preview span {
  color: #5a5149;
  font-size: 13px;
  line-height: 1.5;
}

.faq-preview small {
  color: rgba(48, 33, 93, 0.66);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.faq-preview-placeholder {
  display: grid;
  min-height: 150px;
  width: min(148px, 54vw);
  place-items: center;
  border: 1px dashed rgba(96, 68, 173, 0.35);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 30%, rgba(114, 212, 198, 0.22), transparent 46%),
    rgba(255, 255, 255, 0.6);
  color: #30215d;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.faq-visual-lock {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(96, 68, 173, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background:
    linear-gradient(145deg, rgba(96, 68, 173, 0.08), rgba(238, 225, 31, 0.08)),
    rgba(255, 255, 255, 0.5);
  color: #3b332c;
  font-weight: 850;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .faq-preview-gallery .faq-preview {
    animation: none;
  }

  .faq-preview,
  .faq-gallery-fan .faq-preview,
  .faq-gallery-fan .faq-preview:nth-child(odd),
  .faq-gallery-fan .faq-preview:nth-child(even),
  .faq-gallery-fan .faq-preview:nth-child(3n) {
    transform: none;
    transition: none;
  }
}

.faq-visual-lock span {
  color: #6a5d50;
  font-size: 13px;
  font-weight: 700;
}

.faq-notes {
  display: grid;
  gap: 8px;
  border-right: 3px solid rgba(238, 225, 31, 0.8);
  padding: 2px 12px 2px 0;
}

.faq-notes p {
  color: #5a5149;
  font-size: 14px;
  line-height: 1.55;
}

.faq-answer .faq-category {
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
}

.faq-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(96, 68, 173, 0.12);
  color: #30215d;
  font-size: 12px;
  font-weight: 800;
}

.faq-related {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 21, 19, 0.1);
}

.faq-related button {
  border-color: rgba(23, 21, 19, 0.12);
  background: rgba(23, 21, 19, 0.06);
  color: #171513;
}

.faq-note {
  margin: 0;
  color: rgba(249, 245, 234, 0.66);
  font-size: 13px;
}

.faq-support-helper {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(238, 225, 31, 0.16);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(238, 225, 31, 0.09), rgba(114, 212, 198, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.faq-support-helper p {
  margin: 0;
  color: rgba(249, 245, 234, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.faq-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-support-actions button,
.faq-support-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.faq-support-actions a {
  background: var(--ink);
  color: #171513;
  border-color: transparent;
}

[data-copy-status] {
  min-height: 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.phone-preview {
  justify-self: center;
  display: grid;
  gap: 16px;
  justify-items: center;
  width: min(410px, 100%);
}

.phone-shell {
  position: relative;
  justify-self: center;
  width: min(330px, 78vw);
  aspect-ratio: 9 / 19.5;
  padding: 12px;
  border-radius: 49px;
  background:
    linear-gradient(90deg, #8f351a, #f08a3b 13%, #f7b072 45%, #9e3f1d 87%, #5f2018);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 0 0 4px rgba(78, 25, 15, 0.2),
    0 30px 90px rgba(0, 0, 0, 0.52);
}

.iphone-orange::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 43px;
  border: 1px solid rgba(255, 241, 222, 0.3);
  pointer-events: none;
}

.phone-side-button {
  position: absolute;
  right: -4px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(#c96830, #7c2c19);
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.18);
}

.phone-side-button-top {
  top: 118px;
  height: 52px;
}

.phone-side-button-bottom {
  top: 188px;
  height: 78px;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 2px solid rgba(20, 15, 12, 0.92);
  border-radius: 38px;
  background: #12100f;
  color: #f8f3e7;
}

.dynamic-island {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 50%;
  width: 86px;
  height: 27px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #030303;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.24);
}

.dynamic-island::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #23c95e;
  box-shadow: 0 0 10px rgba(35, 201, 94, 0.5);
}

.app-shot-stack {
  position: absolute;
  inset: 0;
}

.app-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  transition:
    opacity 240ms ease,
    transform 420ms ease;
}

.app-shot.active {
  opacity: 1;
  transform: scale(1);
}

.app-shot-stack .app-auto-shot-1 {
  opacity: 1;
  transform: scale(1);
}

.app-auto-shot {
  object-position: center top;
  transform: scale(1);
  animation: appScreenshotCycle 24s infinite;
}

.app-auto-shot-1 {
  animation-delay: 0s;
}

.app-auto-shot-2 {
  animation-delay: 4.8s;
}

.app-auto-shot-3 {
  animation-delay: 9.6s;
}

.app-auto-shot-4 {
  animation-delay: 14.4s;
}

.app-auto-shot-5 {
  animation-delay: 19.2s;
}

@keyframes appScreenshotCycle {
  0%,
  17% {
    opacity: 1;
    transform: scale(1);
  }

  21%,
  100% {
    opacity: 0;
    transform: scale(1.012);
  }
}

.app-screenshot-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(430px, 100%);
  padding-inline: clamp(8px, 2vw, 14px);
}

.app-screenshot-strip figure {
  margin: 0;
  border: 1px solid rgba(249, 245, 234, 0.14);
  border-radius: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.app-screenshot-strip img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}

.app-screenshot-strip figcaption {
  margin-top: 5px;
  color: rgba(249, 245, 234, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.app-selector-shot {
  object-position: center top;
}

.app-selector-story-section .app-home-shot {
  transform-origin: 50% 20%;
}

.app-selector-story-section[data-active-selector="black"] .app-home-shot {
  transform: scale(1.12);
  transform-origin: 50% 18%;
}

.app-selector-story-section[data-active-selector="gold"] .app-home-shot {
  transform: scale(1.13);
  transform-origin: 50% 39%;
}

.app-selector-story-section[data-active-selector="white"] .app-home-shot {
  transform: scale(1.13);
  transform-origin: 50% 59%;
}

.selector-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.selector-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateY(-110%);
}

.app-selector-story-section.is-scanning .selector-overlay::before {
  opacity: 1;
  animation: selectorScan 880ms ease-out;
}

@keyframes selectorScan {
  from {
    transform: translateY(-110%);
  }
  to {
    transform: translateY(110%);
  }
}

.selector-focus-ring {
  position: absolute;
  left: 50%;
  width: 39%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition:
    opacity 220ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.selector-focus-black {
  top: 19%;
  border-color: rgba(166, 96, 255, 0.78);
  box-shadow: 0 0 0 8px rgba(126, 56, 210, 0.12), 0 0 34px rgba(166, 96, 255, 0.38);
}

.selector-focus-gold {
  top: 39.4%;
  border-color: rgba(232, 185, 68, 0.85);
  box-shadow: 0 0 0 8px rgba(232, 185, 68, 0.11), 0 0 34px rgba(232, 185, 68, 0.36);
}

.selector-focus-white {
  top: 59.5%;
  border-color: rgba(225, 237, 248, 0.88);
  box-shadow: 0 0 0 8px rgba(225, 237, 248, 0.11), 0 0 34px rgba(225, 237, 248, 0.34);
}

.app-selector-story-section[data-active-selector="black"] .selector-focus-black,
.app-selector-story-section[data-active-selector="gold"] .selector-focus-gold,
.app-selector-story-section[data-active-selector="white"] .selector-focus-white {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.selector-story-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(430px, 100%);
}

.selector-story-step {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 52px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(249, 245, 234, 0.16);
  border-radius: 8px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(249, 245, 234, 0.78);
  font-family: inherit;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  cursor: pointer;
}

.selector-dot {
  display: inline-block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #161414;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(0, 0, 0, 0.22);
}

.selector-story-step-black .selector-dot {
  background:
    radial-gradient(circle at 42% 42%, rgba(171, 91, 255, 0.58), transparent 24%),
    #050307;
  box-shadow:
    inset 0 0 0 1px rgba(171, 91, 255, 0.34),
    0 0 22px rgba(126, 56, 210, 0.22);
}

.selector-story-step-gold .selector-dot {
  background:
    radial-gradient(circle at 42% 42%, rgba(238, 204, 93, 0.82), transparent 27%),
    #211808;
  box-shadow:
    inset 0 0 0 1px rgba(238, 204, 93, 0.4),
    0 0 22px rgba(238, 204, 93, 0.18);
}

.selector-story-step-white .selector-dot {
  background:
    radial-gradient(circle at 42% 42%, rgba(241, 247, 255, 0.92), transparent 27%),
    #30343a;
  box-shadow:
    inset 0 0 0 1px rgba(225, 237, 248, 0.46),
    0 0 22px rgba(225, 237, 248, 0.16);
}

.selector-story-step.active {
  background:
    linear-gradient(135deg, rgba(238, 225, 31, 0.15), rgba(96, 68, 173, 0.16)),
    rgba(255, 255, 255, 0.08);
  color: #fff8cf;
  border-color: rgba(238, 225, 31, 0.58);
}

.selector-story-step.active .selector-dot {
  transform: scale(1.08);
}

.scan-story-panel,
.app-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.scan-story-panel article,
.app-pricing-grid article {
  border: 1px solid rgba(249, 245, 234, 0.13);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.scan-story-panel article {
  display: grid;
  gap: 6px;
}

.scan-story-panel strong {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(238, 225, 31, 0.16);
  color: #fff8cf;
  font-size: 13px;
}

.scan-story-panel span,
.app-pricing-grid span {
  color: rgba(249, 245, 234, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.app-pricing-grid strong {
  display: block;
  color: #fff8cf;
  font-size: 15px;
}

.app-card-count-note {
  margin: 12px 0 0;
  color: rgba(249, 245, 234, 0.68);
  font-size: 13px;
}

.app-sample-stage {
  position: relative;
  min-height: clamp(520px, 92vw, 760px);
  margin-top: 22px;
}

.app-sample-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(170px, 0.56fr);
  gap: 16px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 300ms ease;
}

.app-sample-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sample-copy {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(249, 245, 234, 0.13);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 14% 18%, rgba(238, 225, 31, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.055);
}

.sample-copy h3,
.sample-copy p {
  margin: 0;
}

.sample-copy h3 {
  color: #fff8cf;
  font-size: clamp(22px, 5.6vw, 34px);
}

.sample-copy p:not(.sample-kicker) {
  color: rgba(249, 245, 234, 0.76);
}

.sample-kicker {
  width: max-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(238, 225, 31, 0.14);
  color: #fff8cf;
  font-size: 12px;
  font-weight: 900;
}

.sample-flip-card {
  position: relative;
  width: min(240px, 52vw);
  justify-self: center;
  aspect-ratio: 1058 / 1487;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  perspective: 1300px;
}

.sample-card-inner {
  position: absolute;
  inset: 0;
  display: block;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sample-flip-card.is-flipped .sample-card-inner {
  transform: rotateY(180deg);
}

.sample-card-face {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  backface-visibility: hidden;
  background: #080708;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sample-card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-card-back {
  transform: rotateY(180deg);
}

.app-sample-black .sample-card-face {
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.48),
    0 0 46px rgba(122, 57, 207, 0.22);
}

.app-sample-gold .sample-card-face {
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.44),
    0 0 46px rgba(211, 165, 55, 0.22);
}

.app-sample-white .sample-card-face {
  background: #f5f5f2;
}

@media (max-width: 680px) {
  .scan-story-panel,
  .app-pricing-grid {
    grid-template-columns: 1fr;
  }

  .app-screenshot-strip {
    grid-template-columns: repeat(4, minmax(62px, 1fr));
    gap: 6px;
  }

  .app-screenshot-strip figure {
    padding: 4px;
  }

  .app-screenshot-strip figcaption {
    font-size: 10px;
  }

  .selector-story-controls {
    gap: 6px;
  }

  .selector-story-step {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 70px;
    padding: 8px 6px;
    text-align: center;
    font-size: 12px;
  }

  .selector-dot {
    width: 24px;
    height: 24px;
  }

  .app-sample-stage {
    min-height: 720px;
  }

  .app-sample-card {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .sample-flip-card {
    width: min(260px, 70vw);
  }
}

.purchase-section {
  min-height: 56svh;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(238, 225, 31, 0.15), transparent 42%),
    linear-gradient(160deg, #171513, #0f0e0c);
  color: var(--ink);
}

.purchase-section::before {
  inset: 0;
  background-image: var(--pattern-image);
  background-size: min(1280px, 210vw) auto;
  background-position: center 58%;
  background-repeat: no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.purchase-section h2 {
  color: var(--ink);
}

.purchase-section p {
  color: var(--muted);
}

.purchase-box-preview {
  position: relative;
  width: min(260px, 72vw);
  margin: 8px auto 4px;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.36));
}

.purchase-box-preview::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 0;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(14px);
  transform: translateY(50%);
  z-index: -1;
}

.purchase-box-preview img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  transform: rotate(-1.5deg);
}

.purchase-section .primary {
  min-height: 50px;
  padding-inline: 28px;
  background: #15130f;
  color: var(--ink);
}

.purchase-section .purchase-cta-glow {
  position: relative;
  isolation: isolate;
  min-width: min(320px, 84vw);
  border-color: rgba(238, 225, 31, 0.76);
  box-shadow:
    0 0 0 1px rgba(238, 225, 31, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(238, 225, 31, 0.22);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
  animation: purchaseCtaGlow 3s ease-in-out infinite;
}

.purchase-section .purchase-cta-glow::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(238, 225, 31, 0.28);
  border-radius: inherit;
  box-shadow: 0 0 26px rgba(238, 225, 31, 0.18);
  pointer-events: none;
}

.purchase-section .purchase-cta-glow:hover,
.purchase-section .purchase-cta-glow:focus-visible {
  background: #211f17;
  border-color: rgba(255, 242, 96, 0.96);
  transform: translateY(-1px);
  outline: none;
}

.purchase-section .purchase-cta-glow:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 0 0 6px rgba(238, 225, 31, 0.7),
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(238, 225, 31, 0.34);
}

@keyframes purchaseCtaGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(238, 225, 31, 0.16),
      0 10px 24px rgba(0, 0, 0, 0.3),
      0 0 18px rgba(238, 225, 31, 0.16);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 242, 96, 0.44),
      0 12px 28px rgba(0, 0, 0, 0.34),
      0 0 32px rgba(238, 225, 31, 0.36);
  }
}

.text-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: clamp(172px, 14vw, 196px) clamp(20px, 5vw, 72px) 56px;
  background:
    radial-gradient(circle at 82% 18%, rgba(238, 225, 31, 0.12), transparent 32%),
    radial-gradient(circle at 16% 18%, rgba(96, 68, 173, 0.32), transparent 34%),
    linear-gradient(145deg, #0b0a0e, #17111e 56%, #0b0b0a);
  color: var(--ink);
}

.text-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--pattern-image);
  background-size: min(1180px, 220vw) auto;
  background-position: center top -80px;
  background-repeat: no-repeat;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.text-page-panel {
  width: min(960px, 100%);
  margin-inline: auto;
}

.text-page h1 {
  margin: 4px 0 12px;
  color: var(--ink);
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.05;
}

.text-page .lead {
  max-width: 760px;
  margin: 0 0 14px;
  color: rgba(249, 245, 234, 0.84);
  font-size: clamp(17px, 3vw, 22px);
}

.draft-note {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 28px;
  border: 1px solid rgba(238, 225, 31, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(238, 225, 31, 0.08);
  color: #fff7c6;
  font-size: 14px;
  font-weight: 800;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.text-grid article {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.text-grid h2 {
  margin: 0 0 10px;
  color: #fff9dc;
  font-size: 19px;
}

.text-grid p {
  margin: 0;
  color: rgba(249, 245, 234, 0.72);
}

.text-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-list li {
  position: relative;
  padding-inline-start: 22px;
  color: rgba(249, 245, 234, 0.78);
}

.text-list li::before {
  content: "#";
  position: absolute;
  inset-inline-start: 0;
  color: var(--yellow);
  font-weight: 900;
}

.disabled-link {
  display: inline-grid;
  min-height: 40px;
  align-items: center;
  margin-top: 16px !important;
  border: 1px dashed rgba(249, 245, 234, 0.24);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(249, 245, 234, 0.62) !important;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #0b0b0a;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 150px;
  font-weight: 800;
  color: rgba(249, 245, 234, 0.82);
}

.footer-brand img {
  width: clamp(92px, 12vw, 136px);
  height: auto;
  object-fit: contain;
  opacity: 0.86;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.footer-year {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(249, 245, 234, 0.54);
}

.footer-partner-link {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  width: min(100%, 190px);
  min-height: 96px;
  padding: 12px 14px;
  border: 1px solid rgba(249, 245, 234, 0.14);
  border-radius: 16px;
  color: rgba(249, 245, 234, 0.68);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(249, 245, 234, 0.055), rgba(249, 245, 234, 0.015)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-partner-link:hover,
.footer-partner-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(238, 225, 31, 0.34);
  background:
    linear-gradient(135deg, rgba(238, 225, 31, 0.08), rgba(114, 212, 198, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.footer-partner-link img {
  display: block;
  width: min(148px, 100%);
  height: auto;
  max-height: 82px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

.footer-partner-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(249, 245, 234, 0.48);
}

.site-footer::before {
  inset: -80px 0 auto;
  height: 180px;
  background-image: var(--pattern-image);
  background-size: 760px auto;
  background-position: center top;
  background-repeat: repeat-x;
  opacity: 0.11;
  mix-blend-mode: screen;
}

.land-sets-main {
  background:
    radial-gradient(circle at 16% 4%, rgba(114, 212, 198, 0.14), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(238, 225, 31, 0.12), transparent 28%),
    linear-gradient(180deg, #10100f, #191716 38%, #f1eee6 38%, #f1eee6);
}

.land-sets-hero,
.land-guide-section,
.land-gallery-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(88px, 12vw, 140px) clamp(20px, 5vw, 72px) clamp(48px, 8vw, 92px);
}

.land-sets-hero {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: 92svh;
  padding-top: clamp(176px, 14vw, 196px);
}

.land-sets-hero::before,
.land-guide-section::before,
.land-gallery-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-image: var(--pattern-image);
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}

.land-sets-hero::before {
  inset: 0;
  background-size: min(1300px, 190vw) auto;
  background-position: left -34vw bottom -20vw;
  opacity: 0.13;
}

.land-sets-hero > *,
.land-guide-section > *,
.land-gallery-section > * {
  position: relative;
  z-index: 1;
}

.land-sets-copy {
  max-width: 760px;
}

.land-sets-copy h1 {
  font-size: clamp(46px, 10vw, 112px);
}

.city-example-note {
  margin: 10px 0 0;
  color: rgba(18, 17, 15, 0.72);
  font-size: clamp(0.82rem, 2.6vw, 0.98rem);
  line-height: 1.9;
}

.land-sets-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-land-row {
  display: flex;
  align-items: end;
  gap: clamp(8px, 2vw, 18px);
  min-height: 280px;
  max-width: 100%;
  padding: 18px clamp(18px, 5vw, 28px);
  overflow-x: auto;
  scroll-padding-inline: clamp(18px, 5vw, 28px);
}

.hero-land-row img,
.hero-land-row .protected-card-art,
.set-card-row img,
.set-card-row .protected-card-art,
.all-land-grid img,
.all-land-grid .protected-card-art,
.double-focus-card img,
.double-focus-card .protected-card-art {
  border-radius: 8px;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.24));
}

.hero-land-row img,
.hero-land-row .protected-card-art {
  flex: 0 0 auto;
  width: min(156px, 38vw);
}

.hero-land-row img:nth-child(2),
.hero-land-row .protected-card-art:nth-child(2) {
  transform: translateY(-28px) rotate(-2deg);
}

.hero-land-row img:nth-child(3),
.hero-land-row .protected-card-art:nth-child(3) {
  transform: translateY(12px) rotate(2deg);
}

.hero-land-row img:nth-child(4),
.hero-land-row .protected-card-art:nth-child(4) {
  transform: translateY(-12px) rotate(1deg);
}

.land-guide-section {
  color: #211d18;
  background: #f1eee6;
}

.land-guide-section::before {
  inset: auto 0 0;
  height: 280px;
  background-size: 980px auto;
  background-position: center bottom -90px;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.land-guide-section .eyebrow,
.land-gallery-section .eyebrow {
  color: #6044ad;
}

.land-guide-section h2,
.land-gallery-section h2 {
  color: #171513;
}

.land-guide-section p,
.land-gallery-section p {
  color: #5a5149;
}

.set-explainer-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.set-explainer {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(23, 21, 19, 0.1);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(248, 246, 238, 0.82)),
    #fff;
  box-shadow: 0 22px 60px rgba(37, 30, 22, 0.08);
}

.set-explainer header {
  display: grid;
  gap: 8px;
}

.set-label {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(96, 68, 173, 0.1);
  color: #30215d;
  font-size: 13px;
  font-weight: 900;
}

.set-explainer h3 {
  margin: 0;
  color: #171513;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.1;
}

.set-progress-strip {
  display: flex;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: 4px clamp(16px, 5vw, 24px) 10px;
  scroll-padding-inline: clamp(16px, 5vw, 24px);
  scroll-snap-type: x mandatory;
}

.land-sets-page .set-progress-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 12px;
  overflow: visible;
  padding-inline: 0;
  scroll-padding-inline: 0;
  scroll-snap-type: none;
}

.set-step {
  flex: 0 0 min(290px, 86vw);
  display: grid;
  gap: 11px;
  align-content: start;
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  scroll-snap-align: start;
}

.land-sets-page .set-step {
  flex: initial;
  min-width: 0;
  width: 100%;
  scroll-snap-align: none;
}

.set-step strong {
  color: #21192f;
}

.set-card-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 150px;
  max-width: 100%;
  overflow: visible;
}

.land-sets-page .set-card-row {
  align-items: center;
  justify-content: center;
  padding-inline: 0;
}

.set-card-row img,
.set-card-row .protected-card-art {
  flex: 0 0 auto;
  width: min(92px, 27vw);
}

.land-sets-page .set-card-row .protected-card-art {
  width: clamp(58px, 6.8vw, 92px);
}

.rent-note {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(238, 225, 31, 0.28);
  color: #382f08;
  font-size: 13px;
  font-weight: 900;
}

.double-land-layout {
  display: grid;
  gap: 18px;
  align-items: center;
}

.double-focus-card {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.double-focus-card img,
.double-focus-card .protected-card-art {
  width: min(250px, 74vw);
}

.double-choice-grid {
  display: grid;
  gap: 10px;
}

.double-choice-grid article {
  border: 1px solid rgba(96, 68, 173, 0.16);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.62);
}

.land-gallery-section {
  color: #211d18;
  background: #ebe6d9;
}

.land-gallery-section::before {
  inset: -60px 0 auto;
  height: 240px;
  background-size: 940px auto;
  background-position: center top;
  opacity: 0.07;
  mix-blend-mode: multiply;
}

.all-land-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.all-land-grid figure {
  margin: 0;
  display: grid;
  gap: 8px;
}

.all-land-grid img,
.all-land-grid .protected-card-art {
  width: 100%;
}

.all-land-grid figcaption {
  color: #51483f;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.premium-land-main {
  --story-progress: 0;
}

.premium-land-hero {
  background:
    radial-gradient(circle at 15% 16%, rgba(238, 225, 31, 0.1), transparent 30%),
    radial-gradient(circle at 82% 6%, rgba(114, 212, 198, 0.16), transparent 26%),
    #11100f;
}

.hero-land-row-premium {
  align-items: center;
  min-height: 340px;
  border: 1px solid rgba(249, 245, 234, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.18);
}

.premium-land-story {
  min-height: 220svh;
  padding: 0;
  color: #f9f5ea;
  background:
    radial-gradient(circle at 50% 38%, rgba(96, 68, 173, 0.22), transparent 34%),
    linear-gradient(180deg, #12100f, #191413 58%, #f1eee6 58%);
}

.premium-story-sticky {
  position: sticky;
  top: 0;
  display: grid;
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(82px, 12vw, 132px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.premium-story-copy {
  max-width: 650px;
}

.premium-story-copy h2 {
  color: #fff8df;
  font-size: clamp(34px, 7vw, 74px);
}

.premium-story-copy p {
  color: rgba(249, 245, 234, 0.76);
}

.story-micro-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.story-micro-steps span {
  border: 1px solid rgba(249, 245, 234, 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(249, 245, 234, 0.78);
  background: rgba(255, 255, 255, 0.05);
}

.neom-focus-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(58svh, 620px);
}

.neom-card-cloud {
  position: absolute;
  inset: 0;
  opacity: var(--fan-op, 1);
  filter: blur(var(--fan-blur, 0));
  transition: opacity 180ms ease, filter 180ms ease;
}

.cloud-card {
  position: absolute;
  width: clamp(88px, 14vw, 158px);
  border-radius: 8px;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.35));
}

.cloud-card-a {
  inset-block-start: 10%;
  inset-inline-start: 7%;
  transform: rotate(-12deg);
}

.cloud-card-b {
  inset-block-start: 6%;
  inset-inline-end: 12%;
  transform: rotate(9deg);
}

.cloud-card-c {
  inset-block-end: 12%;
  inset-inline-start: 15%;
  transform: rotate(8deg);
}

.cloud-card-d {
  inset-block-end: 8%;
  inset-inline-end: 5%;
  transform: rotate(-10deg);
}

.cloud-card-e {
  inset-block-start: 40%;
  inset-inline-start: 3%;
  transform: rotate(15deg);
}

.neom-hero-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  transform: translateY(var(--neom-y, 0)) scale(var(--neom-scale, 1));
  transition: transform 180ms ease;
}

.neom-hero-card img,
.neom-hero-card .protected-card-art {
  width: min(330px, 66vw);
  border-radius: 8px;
  filter: drop-shadow(0 38px 46px rgba(0, 0, 0, 0.38));
}

.neom-hero-card figcaption {
  color: rgba(249, 245, 234, 0.82);
  font-weight: 900;
}

.saudi-set-section {
  background:
    radial-gradient(circle at 14% 4%, rgba(238, 225, 31, 0.15), transparent 28%),
    #f1eee6;
}

.premium-progress-strip .set-step {
  min-height: 330px;
}

.is-featured-step,
.is-complete-step {
  border-color: rgba(96, 68, 173, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(242, 237, 221, 0.88));
}

.is-complete-step {
  box-shadow: inset 0 0 0 1px rgba(238, 225, 31, 0.34), 0 22px 44px rgba(37, 30, 22, 0.1);
}

.player-tableau-section,
.money-bank-section,
.action-hand-section,
.app-scan-story-section {
  --section-progress: 0;
}

.player-tableau-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(114, 212, 198, 0.16), transparent 28%),
    #f1eee6;
}

.player-space-board,
.bank-layout,
.turn-layout,
.scan-layout {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.player-space-board {
  grid-template-columns: minmax(0, 1fr);
}

.player-land-zone {
  display: grid;
  gap: 14px;
}

.tableau-group,
.bank-land-zone,
.money-bank-zone,
.player-hand-panel,
.draw-zone,
.scan-card-focus,
.scan-phone-frame {
  border: 1px solid rgba(23, 21, 19, 0.1);
  border-radius: 8px;
  padding: clamp(14px, 3vw, 22px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 50px rgba(37, 30, 22, 0.08);
}

.tableau-group {
  display: grid;
  gap: 10px;
  transform: translateY(calc((1 - var(--section-progress, 0)) * 18px));
  opacity: calc(0.62 + (var(--section-progress, 0) * 0.38));
}

.tableau-group h3 {
  margin: 0;
  color: #21192f;
  font-size: clamp(20px, 3vw, 30px);
}

.tableau-group-featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(243, 238, 224, 0.92)),
    #fff;
}

.tableau-card-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 112px;
  overflow-x: auto;
  padding: 2px clamp(14px, 4vw, 22px) 8px;
  scroll-padding-inline: clamp(14px, 4vw, 22px);
}

.tableau-card-row img,
.land-sets-page .tableau-card-row .protected-card-art {
  flex: 0 0 auto;
  width: clamp(58px, 18vw, 92px);
  border-radius: 8px;
  filter: drop-shadow(0 16px 20px rgba(37, 30, 22, 0.16));
}

.money-bank-section {
  color: #f8f0d2;
  background:
    radial-gradient(circle at 78% 10%, rgba(238, 225, 31, 0.16), transparent 30%),
    linear-gradient(180deg, #201b17, #10100f);
}

.money-bank-section::before {
  opacity: 0.12;
  mix-blend-mode: screen;
}

.money-bank-section .eyebrow,
.money-bank-section h2,
.money-bank-section p {
  color: inherit;
}

.money-bank-section p {
  color: rgba(248, 240, 210, 0.76);
}

.bank-layout {
  align-items: stretch;
}

.bank-land-zone,
.money-bank-zone {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(248, 240, 210, 0.12);
}

.bank-land-row img {
  opacity: 0.72;
}

.bank-money-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 150px;
  overflow-x: auto;
  padding: 2px clamp(14px, 4vw, 22px) 10px;
  scroll-padding-inline: clamp(14px, 4vw, 22px);
}

.bank-money-row img,
.land-sets-page .bank-money-row .protected-card-art {
  flex: 0 0 auto;
  width: clamp(76px, 22vw, 118px);
  border-radius: 8px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.3));
  transform: translateY(calc((1 - var(--section-progress, 0)) * 20px)) rotate(-2deg);
}

.bank-money-row img:nth-child(even),
.land-sets-page .bank-money-row .protected-card-art:nth-child(even) {
  transform: translateY(calc((1 - var(--section-progress, 0)) * 8px)) rotate(3deg);
}

.action-hand-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(96, 68, 173, 0.18), transparent 30%),
    #f4f0e5;
}

.turn-layout {
  align-items: center;
}

.draw-zone {
  display: grid;
  gap: 16px;
}

.deck-pile {
  position: relative;
  min-height: 226px;
}

.deck-pile img,
.deck-pile .protected-card-art {
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 50%;
  width: min(156px, 42vw);
  border-radius: 8px;
  filter: drop-shadow(0 18px 22px rgba(37, 30, 22, 0.2));
  transform: translateX(50%) rotate(var(--deck-rot, 0deg));
}

.deck-pile img:nth-child(2),
.deck-pile .protected-card-art:nth-child(2) {
  --deck-rot: -2deg;
  inset-block-start: 14px;
  inset-inline-start: calc(50% + 8px);
}

.deck-pile img:nth-child(3),
.deck-pile .protected-card-art:nth-child(3) {
  --deck-rot: 2deg;
  inset-block-start: 20px;
  inset-inline-start: calc(50% + 16px);
}

.draw-lane {
  position: relative;
  display: grid;
  min-height: 146px;
  place-items: center;
  border: 1px dashed rgba(96, 68, 173, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(96, 68, 173, 0.06);
}

.draw-lane span {
  position: relative;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 12px;
  color: #21192f;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.draw-card {
  position: absolute;
  width: 72px;
  border-radius: 8px;
  opacity: calc(0.2 + (var(--section-progress, 0) * 0.8));
  filter: drop-shadow(0 16px 18px rgba(37, 30, 22, 0.18));
}

.draw-card-one {
  transform: translateX(calc((1 - var(--section-progress, 0)) * 70px)) rotate(-12deg);
  inset-inline-start: 22%;
}

.draw-card-two {
  transform: translateX(calc((1 - var(--section-progress, 0)) * -70px)) rotate(12deg);
  inset-inline-end: 22%;
}

.player-hand-panel {
  overflow: hidden;
}

.player-hand-fan {
  position: relative;
  min-height: 360px;
  margin-top: 16px;
}

.hand-card {
  position: absolute;
  inset-block-end: 24px;
  inset-inline-start: 50%;
  width: clamp(82px, 22vw, 128px);
  border-radius: 8px;
  filter: drop-shadow(0 22px 24px rgba(37, 30, 22, 0.18));
  transform:
    translateX(calc(50% + var(--hand-x, 0px)))
    translateY(calc((1 - var(--section-progress, 0)) * 36px))
    rotate(var(--hand-rot, 0deg));
  transform-origin: 50% 100%;
}

.hand-card-back {
  --hand-x: 100px;
  --hand-rot: -18deg;
}

.hand-card-money {
  --hand-x: 48px;
  --hand-rot: -8deg;
}

.hand-card-land {
  --hand-x: -62px;
  --hand-rot: 10deg;
}

.hand-card-tatbeeq {
  --hand-x: -124px;
  --hand-rot: 20deg;
}

.generic-action-back {
  --hand-x: -8px;
  --hand-rot: 0deg;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  aspect-ratio: 0.7;
  border: 1px solid rgba(96, 68, 173, 0.2);
  color: #21192f;
  background:
    linear-gradient(145deg, rgba(96, 68, 173, 0.16), rgba(238, 225, 31, 0.12)),
    #f8f4e8;
  text-align: center;
}

.generic-action-back span {
  color: #21192f;
  font-weight: 900;
}

.generic-action-back small {
  color: #6d6258;
  font-size: 11px;
}

.move-counter-row,
.allowed-moves-grid,
.recharge-note-grid {
  display: grid;
  gap: 10px;
}

.move-counter-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.move-counter-row span,
.allowed-moves-grid article,
.recharge-note-grid article {
  border: 1px solid rgba(96, 68, 173, 0.15);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.move-counter-row span {
  text-align: center;
  color: #2d214d;
  font-weight: 900;
}

.allowed-moves-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-top: 18px;
}

.allowed-moves-grid strong,
.recharge-note-grid strong {
  color: #21192f;
}

.app-scan-story-section {
  color: #f9f5ea;
  background:
    radial-gradient(circle at 28% 16%, rgba(114, 212, 198, 0.16), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(96, 68, 173, 0.22), transparent 32%),
    #090908;
}

.app-scan-story-section::before {
  opacity: 0.18;
  mix-blend-mode: screen;
}

.app-scan-story-section .eyebrow,
.app-scan-story-section h2,
.app-scan-story-section p {
  color: inherit;
}

.app-scan-story-section p {
  color: rgba(249, 245, 234, 0.76);
}

.scan-layout {
  align-items: center;
}

.scan-card-focus,
.scan-phone-frame {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  border-color: rgba(249, 245, 234, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.scan-card-focus img,
.scan-card-focus .protected-card-art {
  width: min(240px, 68vw);
  border-radius: 8px;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.45));
  transform: scale(calc(0.94 + (var(--section-progress, 0) * 0.06)));
}

.scan-phone-frame {
  position: relative;
  overflow: hidden;
}

.scan-phone-frame::after {
  content: "";
  position: absolute;
  inset: 12% 18%;
  border: 1px solid rgba(114, 212, 198, 0.46);
  border-radius: 8px;
  opacity: calc(0.28 + (var(--section-progress, 0) * 0.5));
  box-shadow: 0 0 34px rgba(114, 212, 198, 0.24);
  pointer-events: none;
}

.scan-phone-frame img {
  width: min(300px, 72vw);
  border-radius: 30px;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.46));
}

.scan-card-focus figcaption,
.scan-phone-frame figcaption {
  color: rgba(249, 245, 234, 0.76);
  font-weight: 900;
  text-align: center;
}

.recharge-note-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 18px;
}

.recharge-note-grid article {
  border-color: rgba(249, 245, 234, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.recharge-note-grid p {
  margin: 7px 0 0;
}

.homepage-land-story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  padding: clamp(74px, 10vw, 116px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(238, 225, 31, 0.11), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(114, 212, 198, 0.13), transparent 30%),
    linear-gradient(145deg, #151412, #090908);
}

.homepage-land-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--pattern-image);
  background-size: 1120px auto;
  background-position: center top;
  opacity: 0.08;
  pointer-events: none;
}

.homepage-land-story::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(96, 68, 173, 0.14));
  pointer-events: none;
}

.land-story-home-copy {
  max-width: 720px;
}

.land-story-spotlight,
.land-story-set-grid,
.land-tableau-preview {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.land-story-spotlight {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.restored-land-flip-wrap,
.neom-focus-panel,
.land-story-set-card,
.land-tableau-preview {
  border: 1px solid rgba(249, 245, 234, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(14, 13, 12, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.restored-land-flip-wrap {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: clamp(18px, 4vw, 28px);
}

.restored-land-flip-card {
  width: min(238px, 62vw);
  aspect-ratio: 0.714;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  perspective: 1100px;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.38));
}

.restored-land-flip-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.restored-land-flip-card.is-flipped .restored-land-flip-inner {
  transform: rotateY(180deg);
}

.restored-land-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 8px;
  backface-visibility: hidden;
}

.restored-land-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restored-land-front {
  transform: rotateY(180deg);
}

.neom-focus-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
}

.neom-focus-panel h3,
.land-story-set-card h3,
.land-tableau-preview h3 {
  margin: 0;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.15;
}

.neom-focus-panel p,
.land-story-set-card p,
.land-tableau-preview p {
  margin: 0;
  color: rgba(249, 245, 234, 0.72);
}

.story-card-row,
.tableau-card-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 1.6vw, 14px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px clamp(16px, 5vw, 26px) 18px;
  scroll-padding-inline: clamp(16px, 5vw, 26px);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.story-card-row img,
.tableau-card-row img {
  flex: 0 0 auto;
  width: clamp(78px, 13vw, 126px);
  border-radius: 8px;
  scroll-snap-align: start;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.22));
}

.story-card-row-featured img:first-child {
  width: clamp(96px, 16vw, 152px);
  transform: translateY(-6px) rotate(-2deg);
}

.land-story-set-grid {
  display: grid;
  gap: 16px;
}

.land-story-set-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 4vw, 28px);
}

.land-story-set-card-wide {
  background:
    linear-gradient(145deg, rgba(238, 225, 31, 0.12), rgba(96, 68, 173, 0.08)),
    rgba(14, 13, 12, 0.74);
}

.double-land-card {
  background:
    linear-gradient(145deg, rgba(114, 212, 198, 0.1), rgba(238, 225, 31, 0.08)),
    rgba(14, 13, 12, 0.74);
}

.double-land-card .story-card-row img {
  width: clamp(118px, 22vw, 196px);
}

.land-tableau-preview {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(249, 245, 234, 0.09), rgba(114, 212, 198, 0.07)),
    rgba(14, 13, 12, 0.78);
}

.land-scroll-story-section {
  position: relative;
  isolation: isolate;
  min-height: 760svh;
  background:
    radial-gradient(circle at 12% 12%, rgba(238, 225, 31, 0.15), transparent 25%),
    radial-gradient(circle at 82% 20%, rgba(114, 212, 198, 0.17), transparent 28%),
    radial-gradient(circle at 48% 58%, rgba(96, 68, 173, 0.16), transparent 34%),
    linear-gradient(150deg, #161513, #070707 72%);
}

.land-scroll-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--pattern-image);
  background-position: center top;
  background-size: 1180px auto;
  opacity: 0.075;
  pointer-events: none;
}

.land-scroll-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  padding: 90px clamp(18px, 5vw, 72px) 38px;
}

.land-scroll-copy {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 14px;
  align-content: center;
  max-width: 620px;
}

.land-scroll-copy h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 74px);
  line-height: 1.04;
}

.land-scroll-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(249, 245, 234, 0.76);
  font-size: clamp(15px, 2vw, 19px);
}

.land-story-progress,
.land-rent-meter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.land-story-progress span,
.land-rent-meter span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(249, 245, 234, 0.12);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(249, 245, 234, 0.68);
  font-size: 12px;
  font-weight: 900;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.land-story-progress span.active,
.land-rent-meter span.active {
  border-color: rgba(238, 225, 31, 0.5);
  background: rgba(238, 225, 31, 0.16);
  color: #fff8a8;
  transform: translateY(-1px);
}

.land-rent-meter {
  max-width: 570px;
}

.land-scroll-stage {
  position: relative;
  z-index: 3;
  overflow: hidden;
  min-height: min(62svh, 620px);
  border: 1px solid rgba(249, 245, 234, 0.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at center 55%, rgba(249, 245, 234, 0.08), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(14, 13, 12, 0.74);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.land-scroll-stage::before {
  content: "";
  position: absolute;
  inset: auto 10% 10% 10%;
  height: 22%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(238, 225, 31, 0.13), transparent 68%);
  opacity: calc(0.24 + (var(--land-scroll-progress, 0) * 0.24));
  pointer-events: none;
}

.land-scroll-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(238, 225, 31, 0.1) 50%, transparent 52%),
    linear-gradient(0deg, transparent 0 48%, rgba(114, 212, 198, 0.08) 50%, transparent 52%);
  opacity: calc(0.03 + (var(--land-focus, 0) * 0.12));
  pointer-events: none;
  mix-blend-mode: screen;
}

.land-burst-core,
.land-energy-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
}

.land-burst-core {
  z-index: 1;
  width: min(42vw, 320px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(238, 225, 31, 0.32), rgba(114, 212, 198, 0.13) 36%, transparent 68%);
  filter: blur(18px);
  opacity: calc(var(--land-burst, 0) * 0.78);
  transform:
    translate(-50%, -50%)
    scale(calc(0.34 + (var(--land-burst, 0) * 1.45) + (var(--land-scatter, 0) * 0.35)));
}

.land-energy-ring {
  z-index: 2;
  width: min(58vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(238, 225, 31, 0.34);
  border-radius: 999px;
  opacity: calc(0.04 + (var(--land-burst, 0) * 0.26) + (var(--set2-lock, 0) * 0.14));
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--land-scroll-progress, 0) * 90deg))
    scale(calc(0.48 + (var(--land-burst, 0) * 0.74) + (var(--saudi-explode, 0) * 0.28)));
}

.land-energy-ring-two {
  width: min(44vw, 330px);
  border-color: rgba(114, 212, 198, 0.28);
  opacity: calc(0.04 + (var(--land-focus, 0) * 0.24) + (var(--set3-explode, 0) * 0.16));
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--land-scroll-progress, 0) * -130deg))
    scale(calc(0.62 + (var(--land-focus, 0) * 0.56) + (var(--set3-explode, 0) * 0.34)));
}

.land-action-labels {
  position: absolute;
  z-index: 12;
  top: clamp(16px, 4vw, 30px);
  right: clamp(16px, 4vw, 30px);
  display: grid;
  gap: 8px;
  justify-items: end;
  pointer-events: none;
}

.land-action-labels span {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  border: 1px solid rgba(249, 245, 234, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(12, 11, 10, 0.72);
  color: #fff7af;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.land-action-labels span.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(238, 225, 31, 0.48);
}

.land-cloud,
.motion-set {
  position: absolute;
  inset: 0;
}

@media (max-width: 839px) {
  #land-story-home .land-scroll-stage {
    --home-land-stage-y: clamp(118px, 30vw, 136px);
  }

  #land-story-home .land-cloud,
  #land-story-home .motion-set {
    transform: translateY(var(--home-land-stage-y));
  }

  #land-story-home .land-burst-core,
  #land-story-home .land-energy-ring {
    top: calc(50% + var(--home-land-stage-y));
  }
}

.land-cloud-card,
.motion-land-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(76px, 9vw, 116px);
  border-radius: 8px;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.land-cloud-card {
  opacity: 0;
}

.motion-land-card {
  opacity: 0;
  width: clamp(98px, 13vw, 160px);
  transform-origin: center center;
}

.motion-neom {
  width: clamp(112px, 15vw, 182px);
}

.motion-double-card {
  width: clamp(138px, 20vw, 224px);
}

.motion-madrid-card {
  width: clamp(118px, 17vw, 188px);
}

.double-use-clues {
  position: absolute;
  left: 50%;
  bottom: 10%;
  display: flex;
  gap: 8px;
  opacity: var(--double-clue-op, 0);
  transform: translateX(-50%);
  transition: opacity 120ms linear;
}

.double-use-clues span {
  border: 1px solid rgba(114, 212, 198, 0.32);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(114, 212, 198, 0.11);
  color: #cffff7;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.land-scroll-story-section[data-land-scene="many"] .land-scroll-stage {
  border-color: rgba(238, 225, 31, 0.18);
}

.land-scroll-story-section[data-land-scene="set4"] .land-scroll-stage {
  border-color: rgba(114, 212, 198, 0.2);
}

.land-scroll-story-section[data-land-scene="set3"] .land-scroll-stage {
  border-color: rgba(238, 225, 31, 0.22);
}

.land-scroll-story-section[data-land-scene="set2"] .land-scroll-stage {
  border-color: rgba(255, 159, 85, 0.28);
}

.land-scroll-story-section[data-land-scene="double"] .land-scroll-stage {
  border-color: rgba(96, 68, 173, 0.36);
}

@media (min-width: 840px) {
  .hero,
  .play-section,
  .land-transition-sticky,
  .land-sets-preview-section,
  .tatbeeq-section,
  .app-section,
  .faq-section,
  .land-story-spotlight,
  .land-tableau-preview {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .hero-clean-start {
    grid-template-columns: minmax(0, 1fr);
  }

  .homepage-land-story {
    grid-template-columns: 1fr;
  }

  .land-story-set-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .land-story-set-card-wide {
    grid-column: span 2;
  }

  .hero-media,
  .tatbeeq-card,
  .phone-preview {
    order: -1;
  }

  .teaser-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
  }

  .money-card {
    grid-column: auto;
  }

  .player-table {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.36fr);
    align-items: stretch;
  }

  .player-zone-lands {
    grid-column: 1;
  }

  .player-zone-bank {
    grid-column: 2;
    grid-row: 1;
  }

  .special-card {
    transform: translateY(-28px);
  }

  .land-card {
    transform: translateY(18px);
  }

  .land-sets-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .set-explainer {
    grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
  }

  .double-land-layout {
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  }

  .set-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-story-sticky,
  .player-space-board,
  .bank-layout,
  .turn-layout,
  .scan-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .player-land-zone {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .land-scroll-sticky {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 14px;
  }

  [id] {
    scroll-margin-top: 24px;
  }

  .site-header {
    position: relative;
    top: auto;
    min-height: 58px;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(16, 16, 15, 0.9);
    transform: none;
  }

  .brand img {
    width: clamp(50px, 15vw, 64px);
  }

  .site-header.is-scrolled {
    min-height: 52px;
    padding-block: 7px;
    transform: none;
    pointer-events: auto;
    background: rgba(16, 16, 15, 0.96);
  }

  .site-header.is-scrolled .brand img {
    width: clamp(44px, 13vw, 56px);
  }

  .site-header:focus-within {
    transform: none;
    pointer-events: auto;
  }

  .nav-actions {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 6px;
    max-width: calc(100vw - 76px);
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-actions::-webkit-scrollbar {
    display: none;
  }

  .nav-actions a {
    max-width: 100%;
    min-width: 0;
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .nav-actions a:not(.buy-link):nth-child(n + 2) {
    display: none;
  }

  .nav-actions .buy-link {
    display: inline-flex;
  }

  .hero {
    align-content: start;
    gap: 20px;
    min-height: auto;
    padding-top: clamp(22px, 7vw, 48px);
    padding-bottom: 32px;
  }

  .hero-clean-start {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(28px, 8vw, 54px);
  }

  .land-sets-hero {
    padding-top: clamp(42px, 12vw, 78px);
  }

  .text-page {
    padding-top: clamp(42px, 12vw, 78px);
  }

  .hero-media {
    order: 0;
    margin-top: 4px;
  }

  .hero-media img {
    width: min(370px, 100%);
  }

  .hero-clean-start h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.08;
  }

  .hero::before {
    background-size: 760px auto;
    background-position: center -92px;
    opacity: 0.12;
  }

  .play-section::before {
    background-size: 820px auto;
    background-position: center top -64px;
    opacity: 0.05;
  }

  .tatbeeq-section::before,
  .purchase-section::before {
    background-size: 860px auto;
  }

  .hero-copy p:not(.eyebrow) {
    margin-bottom: 14px;
    font-size: 15px;
  }

  h1,
  h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .unbox-message h2,
  .land-transition-copy h2,
  .section-copy h2,
  .app-screenshots-copy h2,
  .faq-copy h2,
  .purchase-section h2,
  .land-sets-copy h1,
  .premium-story-copy h2,
  .land-guide-section h2,
  .double-land-copy h2,
  .bank-copy h2,
  .turn-copy h2,
  .scan-copy h2 {
    font-size: clamp(25px, 7.4vw, 36px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .unbox-message .unbox-game-label {
    font-size: clamp(18px, 5vw, 24px);
  }

  .hero-actions {
    margin-top: 18px;
    width: 100%;
    min-width: 0;
  }

  .hero-actions a {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding-inline: 16px;
  }

  .app-download-links {
    width: 100%;
  }

  .app-download-link {
    width: 100%;
  }

  .player-table {
    gap: 12px;
    padding: 12px;
  }

  .land-stack-row,
  .hand-card-fan {
    grid-template-columns: 1fr;
  }

  .stacked-card-pile {
    min-height: 310px;
  }

  .stacked-card-pile img {
    width: min(168px, 54vw);
  }

  .money-pile {
    min-height: 300px;
  }

  .money-pile img {
    width: min(186px, 58vw);
  }

  .hand-card-fan {
    display: flex;
    overflow-x: auto;
    padding: 2px clamp(16px, 5vw, 24px) 14px;
    scroll-padding-inline: clamp(16px, 5vw, 24px);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .hand-card-fan figure {
    flex: 0 0 136px;
    scroll-snap-align: start;
    transform: none;
  }

  .scroll-cue {
    margin-top: 16px;
  }

  .scroll-stage {
    min-height: 330svh;
    margin-top: 0;
  }

  .land-transition-section {
    min-height: 230svh;
  }

  .land-transition-sticky {
    align-content: start;
    padding-top: 76px;
  }

  .land-transition-stage {
    min-height: 440px;
  }

  .flying-land-card {
    width: clamp(76px, 24vw, 118px);
  }

  .set-card-row,
  .land-mini-row {
    max-width: 100%;
    gap: 6px;
    min-height: 128px;
    justify-content: center;
  }

  .set-card-row img,
  .set-card-row .protected-card-art,
  .land-mini-row img,
  .land-mini-row .protected-card-art {
    flex: 0 0 auto;
    width: clamp(54px, 17vw, 76px);
  }

  .sequence-wrap {
    width: min(100%, calc(100vw - 18px));
  }

  .sticky-product {
    padding-top: 34px;
    gap: 10px;
  }

  .set-step {
    min-width: 0;
  }

  .land-sets-page .set-progress-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding-inline: 0;
    scroll-padding-inline: 0;
    scroll-snap-type: none;
  }

  .land-sets-page .set-step {
    flex-basis: auto;
    width: 100%;
    padding-inline: 12px;
    scroll-snap-align: none;
  }

  .land-sets-page .set-card-row,
  .land-sets-page .tableau-card-row,
  .land-sets-page .bank-money-row {
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 1.5vw, 6px);
    overflow: visible;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .land-sets-page .set-card-row .protected-card-art,
  .land-sets-page .tableau-card-row .protected-card-art,
  .land-sets-page .bank-money-row .protected-card-art {
    width: clamp(48px, 15.5vw, 62px);
  }

  .land-sets-page .hero-land-row {
    align-items: center;
  }

  .money-card {
    grid-column: span 2;
  }

  .premium-story-sticky {
    align-content: start;
    padding-top: 82px;
  }

  .neom-focus-stage {
    min-height: 440px;
  }

  .player-hand-fan {
    min-height: 310px;
  }

  .hand-card {
    width: clamp(68px, 20vw, 94px);
  }

  .hand-card-back {
    --hand-x: 76px;
  }

  .hand-card-money {
    --hand-x: 36px;
  }

  .hand-card-land {
    --hand-x: -48px;
  }

  .hand-card-tatbeeq {
    --hand-x: -88px;
  }

  .deck-pile {
    min-height: 190px;
  }

  .scan-phone-frame img {
    border-radius: 24px;
  }

  .homepage-land-story {
    padding-inline: 16px;
  }

  .homepage-land-story::before {
    background-size: 820px auto;
    opacity: 0.07;
  }

  .restored-land-flip-card {
    width: min(220px, 70vw);
  }

  .neom-focus-panel h3,
  .land-story-set-card h3,
  .land-tableau-preview h3 {
    font-size: 24px;
  }

  .story-card-row img,
  .tableau-card-row img {
    width: clamp(72px, 24vw, 104px);
  }

  .land-story-set-card,
  .land-tableau-preview {
    padding: 18px;
  }

  .land-scroll-story-section {
    min-height: 820svh;
  }

  .land-scroll-sticky {
    align-content: start;
    padding: 78px 14px 28px;
  }

  .land-scroll-copy {
    gap: 10px;
  }

  .land-scroll-copy h2 {
    font-size: clamp(26px, 8.4vw, 36px);
    line-height: 1.08;
  }

  .land-scroll-stage {
    min-height: 420px;
  }

  .land-action-labels {
    top: 12px;
    right: 12px;
    gap: 6px;
  }

  .land-action-labels span {
    padding: 7px 9px;
    font-size: 10px;
  }

  .land-burst-core {
    width: 210px;
  }

  .land-energy-ring {
    width: 265px;
  }

  .land-energy-ring-two {
    width: 210px;
  }

  .land-story-progress span,
  .land-rent-meter span {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .land-cloud-card {
    width: clamp(52px, 16vw, 72px);
  }

  .motion-land-card {
    width: clamp(76px, 25vw, 102px);
  }

  .motion-neom {
    width: clamp(86px, 28vw, 116px);
  }

  .motion-double-card {
    width: clamp(112px, 36vw, 148px);
  }

  .motion-madrid-card {
    width: clamp(100px, 32vw, 132px);
  }

  .double-use-clues {
    bottom: 8%;
  }
}

.protected-card-shell,
[data-card-protected="true"],
.protected-card-image,
.app-shot-stack,
.card-protection-surface {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.card-protection-surface {
  position: relative;
  touch-action: pan-x pan-y;
}

.protected-card-shell {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  touch-action: pan-x pan-y;
}

.protected-card-art {
  display: block;
  aspect-ratio: 744 / 1039;
  overflow: hidden;
  border-radius: 8px;
  background-color: rgba(249, 245, 234, 0.04);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.protected-card-shell.is-background-protected {
  background-image: var(--protected-card-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.protected-card-shell.is-background-protected > img {
  opacity: 0;
}

.protected-card-shell > img,
.protected-card-image,
.app-shot {
  pointer-events: none;
}

.protected-card-overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0);
  pointer-events: auto;
  touch-action: pan-x pan-y;
}

.app-shot-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  touch-action: auto;
}

.app-shot-stack::after {
  border-radius: 34px;
}

.premium-card-motion {
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    filter 220ms ease;
  will-change: transform;
}

.premium-card-motion.is-tilting {
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28)) saturate(1.04);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .app-auto-shot {
    animation: none;
    opacity: 0;
    transform: scale(1);
  }

  .app-auto-shot-1 {
    opacity: 1;
  }

  .scroll-cue span::after {
    display: none;
  }

  .flying-land-card {
    opacity: 1;
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) rotate(var(--rot, 0deg)) scale(0.9);
  }

  .flip-card {
    transform: rotateY(180deg);
  }

  .tableau-group,
  .bank-money-row img,
  .hand-card,
  .scan-card-focus img,
  .app-shot,
  .selector-focus-ring,
  .app-sample-card {
    transform: none;
    transition: none;
  }

  .selector-overlay::before {
    animation: none;
  }

  .sample-card-inner {
    transition: none;
  }

  .restored-land-flip-inner {
    transition: none;
  }

  .land-scroll-story-section {
    min-height: auto;
  }

  .land-scroll-sticky {
    position: relative;
  }

  .land-cloud-card,
  .motion-land-card {
    transition: none;
  }

  .premium-card-motion {
    transform: none !important;
    transition: none;
  }

  .purchase-section .purchase-cta-glow {
    animation: none;
  }
}
