/* Puzzle Season landing: publisher-grade polish */

:root {
  --cream: #f3ede2;
  --cream-dark: #e8e0d4;
  --cream-well: #f5f0e8;
  --brand: #556447;
  --brand-dark: #3d4a32;
  --brand-soft: #dce8d0;
  --brand-glow: rgba(85, 100, 71, 0.14);
  --text: #1a1c18;
  --text-secondary: #3d4339;
  --text-muted: #5c6358;
  --surface: #ffffff;
  --surface-elevated: rgba(255, 255, 255, 0.82);
  --footer-bg: #2a3324;
  --footer-text: rgba(255, 255, 255, 0.72);
  --nav-height: 4.25rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 8px 32px rgba(26, 28, 24, 0.06);
  --font-display: "Plus Jakarta Sans", Roboto, sans-serif;
  --font-body: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.landing-body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

body.landing-body.has-sticky-cta {
  padding-bottom: 4.75rem;
}

/* Header */
.site-header {
  z-index: 1030;
}

.site-header .navbar {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(232, 224, 212, 0.65);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text) !important;
  text-decoration: none;
}

.site-brand-icon {
  border-radius: 0.65rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-nav-links {
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.site-nav-links a {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav-links a:hover {
  color: var(--brand-dark);
}

.site-nav-cta {
  border-radius: 999px !important;
  padding: 0.45rem 1.15rem !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 14px rgba(85, 100, 71, 0.22);
}

.btn-brand {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-focus-shadow-rgb: 85, 100, 71;
}

.btn-brand:focus-visible {
  outline: 2px solid var(--brand-dark);
  outline-offset: 2px;
  box-shadow: none;
}

/* Hero */
.hero-app-section {
  position: relative;
  overflow: visible;
  min-height: calc(100dvh - var(--nav-height));
  padding: 2rem 0 2.5rem;
  background:
    linear-gradient(165deg, #ffffff 0%, #faf7f1 38%, var(--cream) 100%);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.hero-blob-a {
  top: -8%;
  right: -6%;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  background: radial-gradient(circle, rgba(220, 232, 208, 0.85) 0%, transparent 68%);
}

.hero-blob-b {
  bottom: 8%;
  left: -10%;
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  background: radial-gradient(circle, rgba(243, 237, 226, 0.95) 0%, transparent 70%);
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-lead {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 26rem;
  margin-bottom: 1.5rem;
}

.hero-lead em {
  font-style: normal;
  color: var(--brand-dark);
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 0;
  max-width: 24rem;
}

.hero-stat {
  margin: 0;
  padding: 0.75rem 0.5rem;
  text-align: center;
  border-radius: 0.85rem;
  background: var(--surface-elevated);
  border: 1px solid rgba(232, 224, 212, 0.85);
  box-shadow: var(--shadow-soft);
}

.hero-stat dt {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-stat dd {
  margin: 0.15rem 0 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.play-badge-link {
  line-height: 0;
  border-radius: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.play-badge-link:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.play-badge-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.play-badge-img {
  max-width: 200px;
  height: auto;
}

/* Phone showcase: 3-slot shelf (peeks sit behind the main phone) */
.hero-phone-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-phone-showcase {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 720px;
}

.phone-shelf {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  width: 100%;
  max-width: 640px;
  padding: 2.75rem 0 0.35rem;
}

.phone-main {
  position: relative;
  z-index: 5;
  width: min(240px, 42vw);
  justify-self: center;
}

.phone-main-stage {
  position: relative;
  display: grid;
  width: 100%;
}

.phone-main-stage .device-shot--main {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  z-index: 0;
  transform: scale(1);
  transition:
    opacity 0.35s cubic-bezier(0.45, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.45, 0, 0.2, 1);
  filter: drop-shadow(0 22px 36px rgba(26, 28, 24, 0.22));
  pointer-events: none;
}

/* Current frame stays fully opaque underneath while the next fades in on top */
.phone-main-stage .device-shot--main.is-front {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.phone-main-stage .device-shot--main.is-entering {
  opacity: 0;
  z-index: 2;
  transform: scale(1.015);
}

.phone-main-stage .device-shot--main.is-entering.is-visible {
  opacity: 1;
  transform: scale(1);
}

.phone-peek {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1;
  width: min(168px, 30vw);
  opacity: 0.5;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.phone-peek-stage {
  position: relative;
  display: grid;
  width: 100%;
}

.phone-peek-stage .device-shot {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.35s cubic-bezier(0.45, 0, 0.2, 1);
  filter: brightness(0.88) saturate(0.9);
  pointer-events: none;
}

.phone-peek-stage .device-shot.is-front {
  opacity: 1;
  z-index: 1;
}

.phone-peek-stage .device-shot.is-entering {
  opacity: 0;
  z-index: 2;
}

.phone-peek-stage .device-shot.is-entering.is-visible {
  opacity: 1;
}

/* Dimmed peeks tuck behind the hero phone (main stays opaque on top) */
.phone-peek--prev {
  justify-self: end;
  margin-right: -26%;
  transform: scale(0.86) translateY(-2.55rem) rotate(-7deg);
  transform-origin: 100% 80%;
}

.phone-peek--next {
  justify-self: start;
  margin-left: -26%;
  transform: scale(0.86) translateY(-2.55rem) rotate(7deg);
  transform-origin: 0% 80%;
}

.phone-peek:hover,
.phone-peek:focus-visible {
  opacity: 0.7;
}

.phone-peek:hover .device-shot,
.phone-peek:focus-visible .device-shot {
  filter: brightness(0.94) saturate(0.95);
}

.phone-peek:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.device-shot {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.phone-ground-shadow {
  display: block;
  width: 42%;
  height: 1.35rem;
  margin: 0.15rem auto 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.28) 0%, transparent 72%);
  filter: blur(3px);
  pointer-events: none;
  position: relative;
  z-index: 0;
}

.device-nav {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand-dark);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
  z-index: 6;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.device-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-40%, -50%) rotate(45deg);
}

.device-nav-prev::before {
  transform: translate(-20%, -50%) rotate(-135deg);
}

.device-nav:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
}

.device-nav:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.device-nav:active {
  transform: scale(0.96);
}

/* Features: alternating product moments (no card grid) */
.features-band {
  position: relative;
  padding: 4.25rem 0 3.5rem;
  background: #fff;
  border-top: 1px solid var(--cream-dark);
}

.features-band > .container .section-head {
  margin-bottom: 2.5rem;
}

.section-head {
  max-width: 36rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section-eyebrow {
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.feature-moment {
  position: relative;
  padding: 2.75rem 0;
  border-top: 1px solid rgba(232, 224, 212, 0.85);
}

.feature-moment--path {
  background:
    radial-gradient(ellipse 70% 80% at 88% 40%, rgba(220, 232, 208, 0.55) 0%, transparent 62%),
    linear-gradient(180deg, #faf7f1 0%, #fff 100%);
}

.feature-moment--hints {
  background:
    radial-gradient(ellipse 65% 75% at 12% 50%, rgba(214, 228, 234, 0.55) 0%, transparent 60%),
    #fff;
}

.feature-moment--games {
  background:
    radial-gradient(ellipse 70% 80% at 90% 45%, rgba(236, 226, 210, 0.6) 0%, transparent 62%),
    linear-gradient(180deg, #fff 0%, #faf7f1 100%);
}

.feature-moment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-moment-copy {
  width: 100%;
  max-width: 32rem;
}

.feature-moment-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.feature-moment-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--text);
}

.feature-moment-body {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.feature-moment-games {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 1.5rem 0 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.feature-moment-games span {
  position: relative;
}

.feature-moment-games span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.65rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(85, 100, 71, 0.35);
  transform: translateY(-50%);
}

.feature-moment-visual {
  margin: 0;
  justify-self: center;
  width: min(300px, 72vw);
}

.feature-moment-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
  box-shadow:
    0 18px 40px rgba(26, 28, 24, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.5) inset;
}

.features-trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 2.5rem auto 0;
  padding: 0 1.25rem;
  max-width: 40rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* CTA */
.cta-section {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.cta-panel {
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(220, 232, 208, 0.45) 0%, transparent 70%),
    var(--surface);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-soft);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  color: #fff !important;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--cream-dark);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.sticky-cta .btn {
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(85, 100, 71, 0.22);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

/* Challenge page */
body:not(.landing-body) {
  font-family: var(--font-body);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body:not(.landing-body) .navbar {
  background: rgba(243, 237, 226, 0.92) !important;
}

.challenge-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

/* Legal pages (Privacy / Terms) */
.legal-page {
  flex: 1;
  padding: 2.5rem 0 3.5rem;
}

.legal-prose {
  max-width: 42rem;
  margin-inline: auto;
  color: var(--text);
  line-height: 1.65;
  font-size: 1.05rem;
}

.legal-prose h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.legal-prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

.legal-prose p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

.legal-prose ul {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.legal-prose li {
  margin-bottom: 0.4rem;
}

.legal-prose a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-prose a:hover {
  color: var(--brand);
}

.legal-prose code {
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  background: var(--cream-dark);
  border-radius: 0.25rem;
}

.legal-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  margin: 0 0 1.75rem;
  padding: 1rem 1.15rem;
  background: var(--cream-well);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
}

.legal-meta dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
}

.legal-meta dd {
  margin: 0;
  color: var(--text-secondary);
}

.letter-wide {
  letter-spacing: 0.07em;
}

/* Desktop */
@media (min-width: 992px) {
  .hero-app-section {
    display: flex;
    align-items: center;
  }

  .hero-container {
    width: 100%;
  }

  .hero-copy-col {
    padding-right: 1rem;
  }

  .hero-phone-showcase {
    max-width: 720px;
  }

  .phone-main {
    width: 250px;
  }

  .phone-peek {
    width: 178px;
  }

  .feature-moment {
    padding: 3.75rem 0;
  }

  /* One balanced pair: copy + phone, centered — not empty equal halves */
  .feature-moment-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(2.75rem, 5vw, 4.5rem);
    row-gap: 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 56rem;
    margin-inline: auto;
  }

  .feature-moment--flip .feature-moment-grid {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .feature-moment-copy {
    justify-self: stretch;
    max-width: 30rem;
    width: 100%;
  }

  .feature-moment-visual {
    justify-self: center;
    width: 290px;
  }

  .feature-moment--flip .feature-moment-copy {
    order: 2;
  }

  .feature-moment--flip .feature-moment-visual {
    order: 1;
  }

  .feature-moment-visual img {
    width: 100%;
  }

  .play-badge-img {
    max-width: 210px;
  }
}

/* Mobile */
@media (max-width: 991.98px) {
  .hero-app-section {
    min-height: 0;
    padding: 1.25rem 0 1.75rem;
  }

  .hero-app-row {
    flex-direction: column;
  }

  .hero-copy-col {
    display: contents;
  }

  .hero-kicker {
    order: 1;
    text-align: center;
    width: 100%;
  }

  .hero-title {
    order: 2;
    text-align: center;
    width: 100%;
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .hero-copy-col .play-badge-link {
    order: 3;
    align-self: center;
  }

  .hero-phone-col {
    order: 4;
    width: 100%;
  }

  .hero-lead,
  .hero-stats {
    display: none !important;
  }

  .hero-phone-showcase {
    position: relative;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .phone-shelf {
    padding-top: 1.75rem;
  }

  .phone-peek--prev {
    margin-right: -30%;
    transform: scale(0.82) translateY(-1.7rem) rotate(-6deg);
  }

  .phone-peek--next {
    margin-left: -30%;
    transform: scale(0.82) translateY(-1.7rem) rotate(6deg);
  }

  .device-nav {
    position: absolute;
    top: 46%;
    z-index: 8;
    width: 2.35rem;
    height: 2.35rem;
    transform: translateY(-50%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  }

  .device-nav-prev {
    left: 0.15rem;
  }

  .device-nav-next {
    right: 0.15rem;
  }

  .device-nav:active {
    transform: translateY(-50%) scale(0.96);
  }

  .features-band {
    padding: 3rem 0 2.75rem;
  }

  .feature-moment {
    padding: 2.25rem 0;
  }

  .feature-moment-copy {
    text-align: center;
    margin: 0 auto;
  }

  .feature-moment-games {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .play-badge-img {
    max-width: min(190px, 55vw);
  }

  .phone-main {
    width: min(200px, 48vw);
  }

  .phone-peek {
    width: min(132px, 28vw);
  }
}

@media (hover: hover) {
  .phone-peek:hover {
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sticky-cta,
  .play-badge-link,
  .device-nav,
  .phone-peek,
  .phone-main-stage .device-shot--main,
  .phone-peek-stage .device-shot {
    transition: none;
  }
}
