:root {
  --ink: #1a1410;
  --ink-soft: #4a3f36;
  --paper: #fff8f0;
  --paper-deep: #f5e6d3;
  --brick: #e85d04;
  --brick-deep: #c44502;
  --teal: #0d9488;
  --teal-deep: #0f766e;
  --gold: #f4a261;
  --sky: #48cae4;
  --white: #ffffff;
  --shadow: rgba(26, 20, 16, 0.12);
  --radius: 4px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brick-deep);
}

/* —— Background atmosphere —— */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(232, 93, 4, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(13, 148, 136, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(244, 162, 97, 0.2), transparent 45%),
    var(--paper);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='24' viewBox='0 0 48 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='22' height='10' fill='%231a1410'/%3E%3Crect x='24' y='0' width='22' height='10' fill='%231a1410'/%3E%3Crect x='12' y='12' width='22' height='10' fill='%231a1410'/%3E%3Crect x='-12' y='12' width='22' height='10' fill='%231a1410'/%3E%3Crect x='36' y='12' width='22' height='10' fill='%231a1410'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 240, 0.82);
  border-bottom: 2px solid rgba(26, 20, 16, 0.06);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.logo-mark span {
  border-radius: 2px;
  animation: brickPulse 2.4s ease-in-out infinite;
}

.logo-mark span:nth-child(1) { background: var(--brick); animation-delay: 0s; }
.logo-mark span:nth-child(2) { background: var(--teal); animation-delay: 0.2s; }
.logo-mark span:nth-child(3) { background: var(--gold); animation-delay: 0.4s; }
.logo-mark span:nth-child(4) { background: var(--sky); animation-delay: 0.6s; }

@keyframes brickPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.88); opacity: 0.75; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brick);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--brick);
  transform: translateY(-1px);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

/* —— Hero —— */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
  min-height: calc(100vh - 64px);
  display: grid;
  align-content: center;
  position: relative;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 1.25rem;
  animation: riseIn 0.7s ease-out both;
}

.hero-brand .pop {
  color: var(--brick);
  display: inline-block;
  animation: popBounce 2.8s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes popBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40% { transform: translateY(-6px) rotate(-2deg); }
  60% { transform: translateY(-2px) rotate(1deg); }
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 28rem;
  margin-bottom: 2rem;
  animation: riseIn 0.7s ease-out 0.15s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.7s ease-out 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brick);
  color: var(--white);
  border-color: var(--brick-deep);
}

.btn-primary:hover {
  background: var(--brick-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Brick wall visual behind hero text */
.hero-bricks {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(48vw, 420px);
  height: min(55vw, 380px);
  pointer-events: none;
  animation: floatWall 6s ease-in-out infinite;
}

@keyframes floatWall {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50% { transform: translateY(calc(-50% - 10px)) rotate(1deg); }
}

.brick-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.brick-row:nth-child(even) {
  margin-left: 20px;
}

.brick {
  flex: 1;
  height: 42px;
  border-radius: 3px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: brickDrop 0.5s ease-out forwards;
}

.brick.c1 { background: var(--brick); }
.brick.c2 { background: var(--teal); }
.brick.c3 { background: var(--gold); }
.brick.c4 { background: var(--sky); }
.brick.c5 { background: #e76f51; }

.brick-row:nth-child(1) .brick { animation-delay: 0.1s; }
.brick-row:nth-child(2) .brick { animation-delay: 0.2s; }
.brick-row:nth-child(3) .brick { animation-delay: 0.3s; }
.brick-row:nth-child(4) .brick { animation-delay: 0.4s; }
.brick-row:nth-child(5) .brick { animation-delay: 0.5s; }
.brick-row:nth-child(6) .brick { animation-delay: 0.6s; }

@keyframes brickDrop {
  from {
    opacity: 0;
    transform: translateY(-24px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* —— Sections —— */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 36rem;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.how-item {
  position: relative;
  padding-top: 0.5rem;
}

.how-item::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  color: rgba(232, 93, 4, 0.25);
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.how-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.how-item p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.features-strip {
  background: var(--ink);
  color: var(--paper);
  margin: 2rem 0 0;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.features-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(232, 93, 4, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.features-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.features-inner h2 {
  color: var(--paper);
  margin-bottom: 0.5rem;
}

.features-inner .section-lead {
  color: rgba(255, 248, 240, 0.7);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.feature-list li:nth-child(1) .feature-dot { background: var(--brick); }
.feature-list li:nth-child(2) .feature-dot { background: var(--teal); }
.feature-list li:nth-child(3) .feature-dot { background: var(--gold); }
.feature-list li:nth-child(4) .feature-dot { background: var(--sky); }

.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.feature-list span {
  color: rgba(255, 248, 240, 0.65);
  font-size: 0.95rem;
}

.download-section {
  text-align: center;
  padding-bottom: 5rem;
}

.download-section h2 {
  margin-left: auto;
  margin-right: auto;
}

.download-section .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* —— Legal pages —— */
.legal-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 5rem;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 2.25rem 0 0.75rem;
  color: var(--ink);
}

.legal-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-body p,
.legal-body li {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.legal-body ul {
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}

.legal-body li {
  margin-bottom: 0.4rem;
}

.legal-body strong {
  color: var(--ink);
}

/* —— Footer —— */
.site-footer {
  border-top: 2px solid rgba(26, 20, 16, 0.08);
  background: var(--paper-deep);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.footer-tag {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  max-width: 220px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
}

.footer-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brick);
}

.footer-copy {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 20, 16, 0.1);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* —— Responsive —— */
@media (max-width: 860px) {
  .hero-bricks {
    opacity: 0.35;
    width: min(70vw, 280px);
    right: -8%;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    padding: 1rem 1.5rem 1.25rem;
    border-bottom: 2px solid rgba(26, 20, 16, 0.08);
    gap: 0.75rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 3rem 1.25rem 3.5rem;
  }

  .hero-bricks {
    display: none;
  }
}

/* —— Landing page (index) —— */
body.landing {
  --lp-bg: #07061c;
  --lp-bg-2: #100e2c;
  --lp-card: rgba(255, 255, 255, 0.05);
  --lp-stroke: rgba(255, 255, 255, 0.1);
  --lp-text: #f6f3ff;
  --lp-muted: #b9b4d4;
  --lp-orange: #ff7a1a;
  --lp-cyan: #3ee0d8;
  --lp-pink: #ff4d9a;
  --lp-gold: #ffd24a;
  --lp-max: 1180px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--font-body);
}

body.landing a {
  color: var(--lp-cyan);
}

body.landing a:hover {
  color: var(--lp-gold);
}

body.landing .page-bg {
  background:
    radial-gradient(ellipse 70% 50% at 12% -10%, rgba(124, 92, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 8%, rgba(255, 77, 154, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(255, 122, 26, 0.16), transparent 50%),
    var(--lp-bg);
}

body.landing .page-bg::after {
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(62, 224, 216, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 224, 216, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
}

body.landing .site-header {
  background: rgba(7, 6, 28, 0.78);
  border-bottom: 1px solid var(--lp-stroke);
  backdrop-filter: blur(16px);
}

body.landing .logo {
  color: var(--lp-text);
  gap: 0.65rem;
  font-size: 1.15rem;
}

body.landing .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

body.landing .nav-links a {
  color: var(--lp-muted);
}

body.landing .nav-links a:hover {
  color: var(--lp-text);
}

body.landing .nav-cta {
  background: linear-gradient(180deg, #ff9340, var(--lp-orange));
  color: #fff !important;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
}

body.landing .nav-cta:hover {
  background: #ff8a2a;
  transform: translateY(-1px);
}

body.landing .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--lp-text);
}

body.landing .lp-hero,
body.landing .lp-section,
body.landing .lp-download {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

body.landing .lp-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-cyan);
  margin-bottom: 0.7rem;
}

body.landing .lp-section,
body.landing .lp-download {
  scroll-margin-top: 84px;
}

body.landing .lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

body.landing .lp-hero h1,
body.landing .lp-section h2,
body.landing .lp-download h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--lp-text);
}

body.landing .lp-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  margin-bottom: 1rem;
}

body.landing .lp-lead,
body.landing .lp-download p {
  color: var(--lp-muted);
  font-size: 1.08rem;
  max-width: 36rem;
  line-height: 1.65;
}

body.landing .lp-hero .lp-lead {
  margin-bottom: 1.6rem;
}

body.landing .store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

body.landing .store-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s ease;
}

body.landing .store-badge:hover {
  transform: translateY(-2px);
}

body.landing .store-badge img {
  height: 48px;
  width: auto;
}

body.landing .store-badge.play img {
  height: 70px;
  margin: -11px -10px;
}

body.landing .lp-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(185, 180, 212, 0.85);
}

body.landing .lp-hero-shots {
  position: relative;
  min-height: 540px;
}

body.landing .shot {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #120f2a;
  aspect-ratio: 9 / 19.5;
  border: 1px solid var(--lp-stroke);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

body.landing .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.landing .lp-hero-shots .shot {
  position: absolute;
  width: min(46%, 230px);
}

body.landing .shot-front {
  width: min(52%, 260px) !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
}

body.landing .shot-back {
  left: 4%;
  top: 8%;
  transform: rotate(-8deg);
  z-index: 1;
}

body.landing .shot-side {
  right: 2%;
  bottom: 4%;
  transform: rotate(8deg);
  z-index: 2;
}

body.landing .lp-head {
  margin-bottom: 2.4rem;
}

body.landing .lp-section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 0.7rem;
}

body.landing .play-grid,
body.landing .mode-grid,
body.landing .feature-shots,
body.landing .gallery {
  display: grid;
  gap: 1.4rem;
}

body.landing .play-grid {
  grid-template-columns: repeat(3, 1fr);
}

body.landing .play-card,
body.landing .mode-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-stroke);
  border-radius: 24px;
  padding: 0.85rem 0.85rem 1.25rem;
}

body.landing .play-copy,
body.landing .mode-card > div {
  padding: 1rem 0.45rem 0.2rem;
}

body.landing .step {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--lp-orange);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

body.landing .play-card h3,
body.landing .mode-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0.3rem 0 0.4rem;
}

body.landing .play-card p,
body.landing .mode-card p,
body.landing .feature-grid span {
  color: var(--lp-muted);
  font-size: 0.96rem;
}

body.landing .mode-grid {
  grid-template-columns: 1fr 1fr;
}

body.landing .mode-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: 1rem;
}

body.landing .mode-card .shot {
  width: 160px;
  aspect-ratio: 9 / 19.5;
}

body.landing .lp-features .feature-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

body.landing .feature-grid li {
  background: var(--lp-card);
  border: 1px solid var(--lp-stroke);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
}

body.landing .feature-grid strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

body.landing .feature-shots {
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

body.landing .captioned-shot {
  margin: 0;
}

body.landing .feature-shots .shot,
body.landing .gallery .shot,
body.landing .play-card .shot {
  aspect-ratio: 9 / 19.5;
}

body.landing .feature-shots figcaption {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lp-muted);
  padding-top: 0.7rem;
}

body.landing .gallery {
  grid-template-columns: repeat(6, 1fr);
}

body.landing .lp-download {
  text-align: center;
  padding-bottom: 5.5rem;
}

body.landing .download-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin: 0 auto 1.1rem;
  box-shadow: 0 12px 30px rgba(124, 92, 255, 0.35);
}

body.landing .lp-download h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 0.7rem;
}

body.landing .lp-download p {
  margin: 0 auto 1.4rem;
}

body.landing .lp-download .store-row {
  justify-content: center;
}

body.landing .site-footer {
  background: #0a0822;
  border-top: 1px solid var(--lp-stroke);
}

body.landing .footer-brand {
  color: var(--lp-text);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

body.landing .footer-brand img {
  border-radius: 7px;
}

body.landing .footer-tag,
body.landing .footer-copy,
body.landing .footer-links a {
  color: var(--lp-muted);
}

body.landing .footer-links a:hover {
  color: var(--lp-orange);
}

body.landing .footer-copy {
  border-top-color: var(--lp-stroke);
}

body.landing .footer-links a[aria-current="page"] {
  color: var(--lp-text);
}

body.landing .legal-hero {
  max-width: 800px;
  padding: 3.5rem 1.5rem 1.25rem;
}

body.landing .legal-hero h1 {
  color: var(--lp-text);
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
}

body.landing .legal-meta {
  color: var(--lp-muted);
}

body.landing .legal-body {
  max-width: 800px;
  background: var(--lp-card);
  border: 1px solid var(--lp-stroke);
  border-radius: 24px;
  padding: 2.25rem 2rem 3rem;
  margin: 0 auto 4.5rem;
}

body.landing .legal-body h2,
body.landing .legal-body h3,
body.landing .legal-body strong {
  color: var(--lp-text);
}

body.landing .legal-body p,
body.landing .legal-body li {
  color: var(--lp-muted);
}

@media (max-width: 980px) {
  body.landing .lp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    padding-top: 2.5rem;
  }

  body.landing .lp-hero .lp-lead,
  body.landing .lp-head .lp-lead {
    margin-left: auto;
    margin-right: auto;
  }

  body.landing .store-row {
    justify-content: center;
  }

  body.landing .lp-hero-shots {
    min-height: 460px;
    max-width: 420px;
    margin: 0 auto;
  }

  body.landing .play-grid,
  body.landing .feature-grid,
  body.landing .feature-shots,
  body.landing .mode-grid {
    grid-template-columns: 1fr;
  }

  body.landing .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  body.landing .mode-card {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 640px) {
  body.landing .nav-links {
    background: #0d0b24;
    border-bottom-color: var(--lp-stroke);
  }

  body.landing .lp-hero-shots .shot-back,
  body.landing .lp-hero-shots .shot-side {
    display: none;
  }

  body.landing .lp-hero-shots {
    min-height: 0;
  }

  body.landing .lp-hero-shots .shot-front {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(72vw, 260px) !important;
    margin: 0 auto;
  }

  body.landing .mode-card {
    grid-template-columns: 1fr;
  }

  body.landing .mode-card .shot {
    width: min(70%, 200px);
    margin: 0 auto;
  }

  body.landing .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  body.landing .lp-hero,
  body.landing .lp-section,
  body.landing .lp-download,
  body.landing .legal-hero {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  body.landing .legal-body {
    margin-left: 1.15rem;
    margin-right: 1.15rem;
    padding: 1.5rem 1.2rem 2.25rem;
  }
}
