:root {
  --void: #050505;
  --carbon: #121214;
  --graphite: #1c1c1f;
  --steel: #2a2a30;
  --mist: #8a8a93;
  --ash: #b0b0b8;
  --white: #f5f5f5;
  --yellow: #ffe500;
  --ink: #0a0a0a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--void);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}

a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.mark {
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: 20px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 8px;
}

h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}

.lede {
  color: var(--ash);
  margin: 0 0 32px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 40px;
  padding: 16px 18px;
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: 16px;
}

h2 {
  font-size: 18px;
  margin: 36px 0 10px;
}

p, li { color: var(--ash); }
ul { padding-left: 1.2em; }
li { margin: 6px 0; }
strong { color: var(--white); font-weight: 600; }

.card {
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 16px 0 24px;
}

.card p:last-child { margin-bottom: 0; }

.cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  margin: 8px 8px 0 0;
}
.cta:hover { text-decoration: none; }

.ghost {
  display: inline-block;
  border: 1px solid var(--steel);
  color: var(--white);
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
}

footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--steel);
  color: var(--mist);
  font-size: 13px;
}

/* Install landing — scoped so legal pages stay unchanged */
.home {
  overflow-x: hidden;
}

.home::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--yellow);
  pointer-events: none;
}

.home .wrap {
  max-width: 920px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 32px 20px 28px;
}

.home .mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
}

.home .eyebrow {
  margin-bottom: 6px;
}

.home h1 {
  font-size: clamp(36px, 7vw, 52px);
  letter-spacing: -0.8px;
  line-height: 1.05;
  margin: 0 0 12px;
}

.home .lede {
  max-width: 28em;
  margin: 0 auto 4px;
  font-size: 17px;
  line-height: 1.45;
}

.play-badge {
  display: inline-block;
  margin: 4px 0 8px;
  line-height: 0;
  touch-action: manipulation;
}

.play-badge img {
  height: 80px;
  width: auto;
  display: block;
  transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease;
}

.play-badge:hover {
  text-decoration: none;
}

.play-badge:hover img {
  opacity: 0.92;
}

.play-badge:active img {
  transform: scale(0.97);
}

.shots {
  display: flex;
  gap: 12px;
  width: calc(100% + 40px);
  margin: 0 -20px;
  padding: 4px 20px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.shots::-webkit-scrollbar {
  display: none;
}

.shots a {
  flex: 0 0 auto;
  width: min(46vw, 220px);
  scroll-snap-align: center;
  line-height: 0;
  touch-action: manipulation;
}

.shots a:hover {
  text-decoration: none;
}

.shots img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--steel);
  display: block;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.shots a:hover img {
  transform: translateY(-4px);
}

.home footer {
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
  max-width: 36em;
  line-height: 1.5;
}

.home footer nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 0 12px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.home .mark,
.home .eyebrow,
.home h1,
.home .lede,
.home .play-badge,
.home .shots,
.home footer {
  animation: rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home .eyebrow { animation-delay: 40ms; }
.home h1 { animation-delay: 80ms; }
.home .lede { animation-delay: 120ms; }
.home .play-badge { animation-delay: 160ms; }
.home .shots { animation-delay: 220ms; }
.home footer { animation-delay: 300ms; }

@media (min-width: 720px) {
  .shots {
    width: 100%;
    margin: 0;
    padding: 8px 0 12px;
    overflow: visible;
    justify-content: center;
  }

  .shots a {
    width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .mark,
  .home .eyebrow,
  .home h1,
  .home .lede,
  .home .play-badge,
  .home .shots,
  .home footer,
  .shots img,
  .play-badge img {
    animation: none;
    transition: none;
  }

  .shots a:hover img,
  .play-badge:active img {
    transform: none;
  }
}
