@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --black: #000000;
  --background: #09090b;
  --surface: #18181b;
  --surface-raised: #202024;
  --border: #27272a;
  --border-strong: #3f3f46;
  --white: #fafafa;
  --muted: #a1a1aa;
  --muted-dark: #71717a;
  --amber: #fbbf24;
  --amber-deep: #f59e0b;
  --amber-ink: #0f0d00;
  --amber-surface: #1c1a00;
  --amber-border: #3d3600;
  --shell: min(1200px, calc(100vw - 64px));
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--background);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--amber-ink);
  background: var(--amber);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  width: var(--shell);
  height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 11px;
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--amber);
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border-radius: 14px;
  color: var(--amber-ink);
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.18);
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 850px;
  padding: 150px max(32px, calc((100vw - 1200px) / 2)) 40px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.98fr) minmax(470px, 1.02fr);
  align-items: center;
  gap: 28px 52px;
  background:
    radial-gradient(circle at 77% 42%, rgba(251, 191, 36, 0.12), transparent 28%),
    linear-gradient(180deg, #0d0d10 0%, #09090b 72%, #050506 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(251, 191, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 191, 36, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -180px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(251, 191, 36, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(251, 191, 36, 0.02),
    0 0 0 160px rgba(251, 191, 36, 0.012);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  max-width: 670px;
  margin-bottom: 28px;
  font-size: clamp(61px, 6.8vw, 98px);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

h1 em,
h2 em {
  display: block;
  color: var(--amber);
  font-style: normal;
  font-weight: inherit;
}

.hero-intro {
  max-width: 565px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
}

.store-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  display: inline-flex;
  min-width: 178px;
  min-height: 60px;
  padding: 9px 16px 9px 13px;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  color: var(--white);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-button:hover {
  border-color: rgba(251, 191, 36, 0.65);
  background: var(--surface-raised);
  transform: translateY(-3px);
}

.store-button svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: var(--amber);
}

.store-button .play-icon {
  width: 28px;
}

.store-button span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.store-button small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.02em;
}

.store-button strong {
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.supported-games {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-top: 22px;
  grid-column: 1 / -1;
  grid-row: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.supported-games-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 16px;
}

.supported-games-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.supported-games-hint {
  display: none;
  font-size: 10px;
  white-space: nowrap;
  color: var(--muted);
}

.supported-games-hint span {
  margin-left: 5px;
  color: var(--amber);
}

.supported-games-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--amber-border) transparent;
  scroll-snap-type: x proximity;
}

.supported-games-scroll:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  border-radius: 6px;
}

.supported-games-list {
  display: grid;
  margin: 0;
  padding: 20px 0 16px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(80px, 1fr);
  align-items: center;
  gap: 12px;
  list-style: none;
}

.supported-games-list li {
  display: grid;
  height: 58px;
  place-items: center;
  scroll-snap-align: start;
}

.supported-games-list img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 620px;
  grid-column: 2;
  grid-row: 1;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 52%;
  width: min(520px, 40vw);
  height: min(520px, 40vw);
  border: 1px solid rgba(251, 191, 36, 0.16);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(251, 191, 36, 0.14), rgba(251, 191, 36, 0.015)),
    var(--amber-ink);
  box-shadow:
    inset 0 0 0 1px rgba(251, 191, 36, 0.04),
    0 40px 90px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(251, 191, 36, 0.08);
  transform: translate(-50%, -50%);
}

.phone {
  position: relative;
  padding: 8px;
  overflow: hidden;
  border: 2px solid #52525b;
  border-radius: 42px;
  background: #050506;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px #18181b,
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 33px;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 30%;
  height: 18px;
  border-radius: 999px;
  background: #050506;
  transform: translateX(-50%);
}

.phone--hero-front,
.phone--hero-back {
  position: absolute;
  width: 280px;
  aspect-ratio: 1290 / 2796;
}

.phone--hero-front {
  z-index: 3;
  right: 182px;
  bottom: 2px;
}

.phone--hero-back {
  z-index: 2;
  top: 18px;
  right: 16px;
  opacity: 0.86;
}

.hero-chip {
  position: absolute;
  z-index: 4;
  right: 6px;
  bottom: 42px;
  display: inline-flex;
  padding: 11px 14px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--amber-border);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(28, 26, 0, 0.92);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.7);
}

.how,
.features,
.download {
  color: var(--white);
  background: var(--background);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.how {
  padding: 128px 0 110px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 12% 0%, rgba(251, 191, 36, 0.06), transparent 26%),
    var(--background);
}

.how-heading {
  display: grid;
  padding-bottom: 66px;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.how-heading h2,
.feature-intro h2,
.download h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5.7vw, 78px);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.how-heading p:last-child {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.journey {
  position: relative;
  isolation: isolate;
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
}

.journey::before {
  position: absolute;
  z-index: 0;
  top: 187px;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.28) 12%, var(--amber) 50%, rgba(251, 191, 36, 0.28) 88%, transparent);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.34);
}

.journey-step {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 27%, rgba(251, 191, 36, 0.075), transparent 28%),
    linear-gradient(155deg, #1a1a1e, #121215 70%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 20px 55px rgba(0, 0, 0, 0.18);
  transition: translate 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.journey-step::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.42), transparent);
}

.journey-step::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
}

.journey-step:hover {
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 26px 65px rgba(0, 0, 0, 0.26);
  translate: 0 -6px;
}

.journey-step--focus {
  margin-top: -22px;
  border-color: rgba(251, 191, 36, 0.4);
  background:
    radial-gradient(circle at 50% 27%, rgba(251, 191, 36, 0.13), transparent 30%),
    linear-gradient(155deg, #201e10, #141416 72%);
  box-shadow:
    inset 0 1px 0 rgba(251, 191, 36, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.26),
    0 0 50px rgba(251, 191, 36, 0.04);
}

.journey-step > * {
  position: relative;
  z-index: 1;
}

.journey-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-number {
  display: inline-flex;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--amber-border);
  border-radius: 9px;
  color: var(--amber);
  background: var(--amber-surface);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.journey-kicker {
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey-vignette {
  position: relative;
  display: grid;
  height: 142px;
  margin: 20px 0 24px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.08), transparent 48%),
    rgba(7, 7, 8, 0.78);
}

.journey-vignette::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(251, 191, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 191, 36, 0.035) 1px, transparent 1px);
  background-size: 18px 18px;
}

.scan-frame {
  position: relative;
  display: grid;
  width: 108px;
  height: 124px;
  place-items: center;
  background:
    linear-gradient(var(--amber), var(--amber)) left top / 22px 2px no-repeat,
    linear-gradient(var(--amber), var(--amber)) left top / 2px 22px no-repeat,
    linear-gradient(var(--amber), var(--amber)) right top / 22px 2px no-repeat,
    linear-gradient(var(--amber), var(--amber)) right top / 2px 22px no-repeat,
    linear-gradient(var(--amber), var(--amber)) left bottom / 22px 2px no-repeat,
    linear-gradient(var(--amber), var(--amber)) left bottom / 2px 22px no-repeat,
    linear-gradient(var(--amber), var(--amber)) right bottom / 22px 2px no-repeat,
    linear-gradient(var(--amber), var(--amber)) right bottom / 2px 22px no-repeat;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.2));
}

.scan-card {
  display: block;
  width: 76px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.45);
}

.scan-beam {
  position: absolute;
  z-index: 2;
  right: 13px;
  left: 13px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fde68a, transparent);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.8);
  animation: scan-card 2.8s ease-in-out infinite;
}

.journey-vignette--insight {
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.insight-metrics {
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 238px;
  justify-content: center;
  gap: 10px;
}

.mini-metric {
  display: flex;
  min-width: 0;
  padding: 8px 10px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(248, 113, 113, 0.24);
  border-radius: 14px;
  background: rgba(38, 15, 17, 0.86);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.24);
}

.mini-metric--grade {
  border-color: rgba(251, 191, 36, 0.28);
  background: rgba(35, 29, 7, 0.86);
}

.mini-metric span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-metric strong {
  color: #f87171;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.mini-metric--grade strong {
  color: var(--amber);
}

.grader-logos {
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: 264px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.grader-logo {
  display: grid;
  height: 32px;
  padding: 4px 7px;
  place-items: center;
}

.grader-logo + .grader-logo {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.grader-logo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.grader-logo--psa img {
  max-width: 52px;
}

.metric-pulse {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(251, 191, 36, 0.09);
  border-radius: 50%;
  animation: metric-pulse 3.2s ease-out infinite;
}

.mini-binder {
  z-index: 1;
  display: grid;
  width: min(220px, calc(100% - 28px));
  padding: 11px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 14px;
  background: rgba(28, 26, 0, 0.76);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  transform: rotate(-3deg);
}

.mini-card {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow:
    0 0 0 3px rgba(7, 7, 8, 0.75),
    0 0 0 4px rgba(255, 255, 255, 0.12);
}

.binder-spark {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: max(8px, calc(50% - 120px));
  color: var(--amber);
  font-size: 24px;
  text-shadow: 0 0 16px rgba(251, 191, 36, 0.65);
}

.journey h3 {
  margin-bottom: 9px;
  font-size: 24px;
  font-weight: 770;
  letter-spacing: -0.045em;
}

.journey p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.journey-description {
  display: flex;
  margin-bottom: 18px;
  flex-direction: column;
  gap: 8px;
}

.journey .grading-note {
  font-size: 11px;
  line-height: 1.5;
}

.journey-outcome {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  margin-top: auto;
  padding: 6px 9px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(251, 191, 36, 0.045);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.journey-outcome i {
  color: var(--amber);
  font-style: normal;
}

@keyframes scan-card {
  0%, 100% { top: 18px; opacity: 0.35; }
  50% { top: 97px; opacity: 1; }
}

@keyframes metric-pulse {
  0% { opacity: 0.4; scale: 0.72; }
  70%, 100% { opacity: 0; scale: 1.12; }
}

.features {
  padding: 76px 0 132px;
}

.feature-intro {
  padding: 0 0 78px;
  border-bottom: 1px solid var(--border);
}

.feature-row {
  display: grid;
  min-height: 730px;
  padding: 92px 0;
  grid-template-columns: minmax(340px, 0.9fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 9vw;
  border-bottom: 1px solid var(--border);
}

.feature-row--reverse .feature-visual {
  order: 2;
}

.feature-row--reverse .feature-copy {
  order: 1;
}

.feature-row--ranks .feature-visual {
  align-self: stretch;
}

.rank-key {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.rank-key-heading {
  display: flex;
  margin-bottom: 14px;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.rank-key-heading h4 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.035em;
}

.rank-key-heading > span {
  color: var(--muted);
  font-size: 11px;
}

.rank-tiers {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  list-style: none;
}

.rank-tiers li {
  display: flex;
  min-height: 60px;
  padding: 8px;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--rank-color) 18%, transparent);
  border-radius: 10px;
  background: #141416;
}

.rank-symbol {
  display: grid;
  width: 36px;
  height: 40px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, color-mix(in srgb, var(--rank-color) 22%, transparent), color-mix(in srgb, var(--rank-deep) 8%, transparent) 60%, transparent 72%);
}

.rank-symbol img {
  width: 34px;
  height: 34px;
}

.rank-tiers strong,
.rank-tiers li div > span {
  display: block;
}

.rank-tiers strong {
  color: var(--rank-color);
  font-size: 13px;
  line-height: 1.3;
}

.rank-tiers li div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.rank-key-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.feature-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(251, 191, 36, 0.04), transparent 46%),
    #111114;
}

.feature-visual::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 34px 34px;
}

.visual-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.19), rgba(251, 191, 36, 0.02) 62%, transparent 72%);
  transform: translate(-50%, -50%);
}

.phone--feature {
  z-index: 1;
  width: 252px;
  aspect-ratio: 1290 / 2796;
}

.feature-tag {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid var(--amber-border);
  border-radius: 10px;
  color: var(--amber);
  background: rgba(28, 26, 0, 0.92);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-copy {
  max-width: 500px;
}

.feature-copy h3,
.insight-copy h3 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.feature-copy > p:last-child,
.feature-description,
.insight-description {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.insight-card {
  position: relative;
  display: grid;
  min-height: 650px;
  margin-top: 104px;
  padding: 72px 8%;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  align-items: center;
  gap: 60px;
  border: 1px solid var(--amber-border);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 42%, rgba(251, 191, 36, 0.14), transparent 34%),
    linear-gradient(145deg, #1c1a00, #111005 55%, #0f0f11);
  box-shadow:
    inset 0 1px 0 rgba(251, 191, 36, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.28);
}

.insight-card::before {
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.insight-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.insight-example-label {
  margin: 26px 0 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.insight-points li {
  display: grid;
  padding: 12px;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(251, 191, 36, 0.13);
  border-radius: 14px;
  background: rgba(9, 9, 11, 0.5);
}

.report-point-copy h4 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.report-point-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.report-illustration {
  position: relative;
  height: 90px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: #101014;
}

.report-illustration--value {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.price-compare-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
}

.price-compare-row strong {
  color: var(--white);
  font-size: 11px;
}

.price-compare-bar {
  display: block;
  height: 5px;
  border-radius: 3px;
}

.price-compare-bar--asking {
  width: 84%;
  margin-bottom: 5px;
  background: #34d399;
}

.price-compare-bar--market {
  width: 100%;
  background: var(--amber);
}

.report-illustration--grade {
  display: flex;
  padding: 9px 6px;
  align-items: center;
  gap: 7px;
}

.report-grade-card {
  padding: 3px;
  flex-shrink: 0;
  border: 1px dashed rgba(251, 191, 36, 0.65);
  border-radius: 5px;
}

.report-grade-card img {
  width: 38px;
  height: auto;
  border-radius: 2px;
}

.report-grade-estimate small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.3;
}

.report-grade-estimate strong {
  display: block;
  margin-top: 3px;
  color: var(--amber);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.report-grade-estimate strong span {
  margin-left: 1px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.report-illustration--seller {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.seller-feedback {
  display: flex;
  align-items: center;
  gap: 7px;
}

.seller-feedback svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #6ee7b7;
}

.seller-feedback strong {
  display: block;
  color: #6ee7b7;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.seller-feedback small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1;
}

.seller-feedback-bar {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(to right, #34d399 99.8%, #3f3f46 99.8%);
}

.seller-feedback-count {
  color: var(--muted);
  font-size: 8px;
  line-height: 1;
}

.insight-visual {
  position: relative;
  height: 520px;
}

.phone--insight {
  position: absolute;
  top: -18px;
  right: 4px;
  width: 284px;
  aspect-ratio: 1290 / 2796;
}

.report-chip {
  position: absolute;
  z-index: 3;
  right: 236px;
  bottom: 52px;
  display: inline-flex;
  padding: 10px 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 999px;
  color: #6ee7b7;
  background: rgba(6, 30, 25, 0.92);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.72);
}

.download {
  position: relative;
  isolation: isolate;
  padding: 134px 24px 126px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  text-align: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(251, 191, 36, 0.11), transparent 30%),
    var(--black);
}

.download::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(720px, 90vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.55), transparent);
  transform: translateX(-50%);
}

.download-card-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  mask-image: radial-gradient(ellipse 340px 230px at 50% 50%, transparent 65%, rgba(0, 0, 0, 0.3) 92%, #000 122%);
}

.download-card {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--width);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  opacity: var(--opacity);
  filter: saturate(0.8);
  transform: translate(-50%, -50%) rotate(var(--rotation));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.download-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.download-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: 18px;
  box-shadow: 0 0 34px rgba(251, 191, 36, 0.15);
}

.download .eyebrow {
  margin-bottom: 22px;
}

.download h2 {
  color: var(--white);
}

.download-copy {
  max-width: 590px;
  margin: 26px auto 32px;
  color: var(--muted);
  font-size: 17px;
}

.store-buttons--centered {
  justify-content: center;
}

.site-footer {
  display: grid;
  min-height: 126px;
  padding: 34px max(32px, calc((100vw - 1200px) / 2));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
  color: var(--white);
  background: var(--black);
  font-size: 11px;
}

.brand--footer {
  font-size: 18px;
}

.site-footer > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 20px;
  color: var(--muted-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1247px) {
  .supported-games-hint {
    display: inline;
  }

  .supported-games-list {
    grid-auto-columns: 110px;
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 1000px);
  }

  .hero {
    min-height: 800px;
    padding-inline: 24px;
    grid-template-columns: minmax(0, 1fr) 450px;
    gap: 18px;
  }

  h1 {
    font-size: clamp(55px, 7vw, 80px);
  }

  .hero-art {
    min-height: 570px;
  }

  .phone--hero-front,
  .phone--hero-back {
    width: 244px;
  }

  .phone--hero-front {
    right: 152px;
  }

  .feature-row {
    gap: 5vw;
  }
}

@media (max-width: 1050px) {
  .download-card {
    width: 72px;
  }

  .insight-card {
    min-height: 820px;
    padding: 62px 42px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .insight-visual {
    height: 530px;
  }

  .phone--insight {
    top: 6px;
    right: 50%;
    transform: translateX(50%);
  }

  .report-chip {
    right: calc(50% + 82px);
    bottom: 54px;
  }

  .journey {
    padding-left: 30px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .journey::before {
    top: 34px;
    right: auto;
    bottom: 34px;
    left: 8px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.65) 12%, rgba(251, 191, 36, 0.28) 88%, transparent);
  }

  .journey-step,
  .journey-step--focus {
    display: grid;
    min-height: 250px;
    margin-top: 0;
    grid-template-columns: minmax(190px, 0.65fr) 1fr;
    grid-template-rows: auto auto 1fr auto;
    column-gap: 26px;
  }

  .journey-meta {
    grid-column: 1 / -1;
  }

  .journey-meta::before {
    position: absolute;
    top: 8px;
    left: -47px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--background);
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 14px rgba(251, 191, 36, 0.55);
    content: "";
  }

  .journey-vignette {
    height: 164px;
    margin: 20px 0 0;
    grid-column: 1;
    grid-row: 2 / 5;
  }

  .journey h3 {
    align-self: end;
    margin: 24px 0 7px;
    grid-column: 2;
    grid-row: 2;
  }

  .journey p,
  .journey-description {
    grid-column: 2;
    grid-row: 3;
  }

  .journey-description {
    margin-bottom: 0;
  }

  .journey-outcome {
    margin-top: 16px;
    grid-column: 2;
    grid-row: 4;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .site-header {
    height: 74px;
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 122px 20px 72px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 690px;
  }

  h1 {
    max-width: 650px;
    font-size: clamp(51px, 12vw, 74px);
  }

  .hero-art {
    width: min(100%, 530px);
    min-height: 590px;
    margin: 12px auto 0;
    grid-column: 1;
    grid-row: 3;
  }

  .hero-glow {
    width: 440px;
    height: 440px;
  }

  .phone--hero-front,
  .phone--hero-back {
    width: 258px;
  }

  .phone--hero-front {
    right: 205px;
  }

  .how-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .how-heading p:last-child {
    max-width: 560px;
  }

  .feature-row,
  .feature-row--reverse {
    padding: 72px 0 86px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-row .feature-visual,
  .feature-row .feature-copy,
  .feature-row--reverse .feature-visual,
  .feature-row--reverse .feature-copy {
    order: initial;
  }

  .feature-copy {
    max-width: 630px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    padding: 9px 14px;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .store-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    max-width: 260px;
  }

  .hero-art {
    min-height: 465px;
  }

  .hero-glow {
    left: 56%;
    width: 340px;
    height: 340px;
    border-radius: 30px;
  }

  .phone {
    padding: 6px;
    border-radius: 31px;
  }

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

  .phone-speaker {
    top: 10px;
    height: 14px;
  }

  .phone--hero-front,
  .phone--hero-back {
    width: 194px;
  }

  .phone--hero-front {
    right: 44%;
    bottom: 0;
  }

  .phone--hero-back {
    top: 24px;
    right: -2px;
  }

  .hero-chip {
    right: -2px;
    bottom: 18px;
    padding: 9px 11px;
    font-size: 7px;
  }

  .how {
    padding: 92px 0 68px;
  }

  .how-heading {
    padding-bottom: 48px;
  }

  .how-heading h2,
  .feature-intro h2,
  .download h2 {
    font-size: clamp(41px, 12vw, 56px);
  }

  .journey {
    padding-left: 24px;
    gap: 14px;
  }

  .journey::before {
    left: 5px;
  }

  .journey-step,
  .journey-step--focus {
    display: flex;
    min-height: 410px;
    padding: 20px;
  }

  .journey-meta::before {
    top: 8px;
    left: -43px;
  }

  .journey-kicker {
    font-size: 8px;
  }

  .journey-vignette {
    width: 100%;
    height: 132px;
    margin: 18px 0 22px;
  }

  .journey-vignette--insight {
    flex-shrink: 0;
  }

  .journey-description {
    margin-bottom: 18px;
  }

  .journey h3 {
    align-self: auto;
    margin: 0 0 7px;
  }

  .journey-outcome {
    margin-top: auto;
  }

  .features {
    padding: 48px 0 90px;
  }

  .feature-intro {
    padding-bottom: 58px;
  }

  .feature-row {
    min-height: 0;
  }

  .feature-visual {
    min-height: 490px;
    border-radius: 22px;
  }

  .visual-halo {
    width: 320px;
    height: 320px;
  }

  .phone--feature {
    width: 216px;
  }

  .feature-tag {
    right: 12px;
    bottom: 12px;
  }

  .rank-tiers li {
    padding: 8px 6px;
    gap: 6px;
  }

  .rank-symbol {
    width: 30px;
    height: 36px;
  }

  .rank-symbol img {
    width: 30px;
    height: 30px;
  }

  .rank-tiers strong {
    font-size: 12px;
  }

  .feature-copy h3,
  .insight-copy h3 {
    font-size: 40px;
  }

  .feature-copy > p:last-child,
  .feature-description,
  .insight-copy > p:last-child {
    font-size: 16px;
  }

  .insight-card {
    min-height: 820px;
    margin-top: 68px;
    padding: 44px 22px 0;
    border-radius: 22px;
  }

  .insight-points li {
    padding: 8px;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 10px;
  }

  .report-point-copy h4 {
    font-size: 13px;
  }

  .report-illustration--grade {
    padding-inline: 4px;
    gap: 4px;
  }

  .report-grade-card img {
    width: 30px;
  }

  .seller-feedback {
    gap: 5px;
  }

  .seller-feedback svg {
    width: 20px;
    height: 20px;
  }

  .seller-feedback strong {
    font-size: 16px;
  }

  .insight-visual {
    height: 440px;
  }

  .phone--insight {
    width: 228px;
  }

  .report-chip {
    right: calc(50% + 54px);
    bottom: 42px;
  }

  .download {
    padding: 102px 16px 94px;
  }

  .download-card-field {
    mask-image: radial-gradient(ellipse 145px 240px at 50% 50%, transparent 45%, rgba(0, 0, 0, 0.28) 80%, #000 115%);
  }

  .download-card {
    display: none;
  }

  .download-card--mobile {
    display: block;
    top: var(--mobile-y);
    left: var(--mobile-x);
    width: 64px;
    opacity: 0.42;
  }

  .store-buttons--centered {
    align-items: center;
  }

  .site-footer {
    padding: 34px 20px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-self: start;
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
