:root {
  --bg: #1f160c;
  --bg-deep: #120c06;
  --bg-soft: #2e2315;
  --panel: rgba(24, 21, 23, 0.9);
  --panel-strong: rgba(16, 14, 16, 0.94);
  --panel-soft: rgba(242, 200, 106, 0.05);
  --text: #f7efe4;
  --muted: #ccb09b;
  --muted-strong: #e7d4c6;
  --accent: #b0886e;
  --accent-strong: #884233;
  --accent-soft: rgba(176, 136, 110, 0.18);
  --line: rgba(242, 200, 106, 0.26);
  --line-soft: rgba(242, 200, 106, 0.11);
  --shadow: 0 24px 60px rgba(10, 4, 2, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Source Sans 3", sans-serif;
  color-scheme: dark;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 228, 153, 0.18), transparent 22%),
    radial-gradient(circle at 20% 14%, rgba(242, 200, 106, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(176, 136, 110, 0.16), transparent 24%),
    linear-gradient(180deg, #2e2214 0%, #1d140c 48%, #120c06 100%);
  overflow-x: hidden;
}

.hero-copy,
.experience-card,
.screen-panel,
.details-panel,
.faq-item,
.about,
.legal-shell {
  animation: fade-up 0.72s ease both;
}

.experience-card:nth-child(1) {
  animation-delay: 0.14s;
}

.experience-card:nth-child(2) {
  animation-delay: 0.2s;
}

.experience-card:nth-child(3) {
  animation-delay: 0.26s;
}

.screen-panel:nth-of-type(1) {
  animation-delay: 0.3s;
}

.screen-panel:nth-of-type(2) {
  animation-delay: 0.36s;
}

.screen-panel:nth-of-type(3) {
  animation-delay: 0.42s;
}

.details-panel {
  animation-delay: 0.48s;
}

.faq-item:nth-child(1) {
  animation-delay: 0.58s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.62s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.66s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.7s;
}

.bg-glow,
.bg-noise,
.bg-spotlight,
.bg-arc {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-glow {
  opacity: 0.85;
  background:
    radial-gradient(circle at 50% -2%, rgba(244, 227, 183, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 36%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3) 72%, transparent);
}

.bg-noise {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 84%);
}

.bg-spotlight {
  opacity: 0.9;
  background:
    linear-gradient(180deg, rgba(248, 233, 189, 0.16), transparent 16%),
    radial-gradient(circle at 50% 0%, rgba(255, 247, 225, 0.14), transparent 22%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.12) 56%, transparent 86%);
}

.bg-arc {
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  border: 1px solid rgba(242, 200, 106, 0.08);
  filter: blur(12px);
  opacity: 0.22;
}

.bg-arc-left {
  top: -10vw;
  left: -14vw;
}

.bg-arc-right {
  top: 4vw;
  right: -16vw;
}

.site-header,
main,
.site-footer {
  position: relative;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.16em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted-strong);
  text-decoration: none;
  font-weight: 700;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}

.top-nav a:hover {
  color: var(--text);
  background: rgba(255, 245, 225, 0.05);
  transform: translateY(-1px);
}

.top-nav a[aria-current="page"] {
  color: var(--text);
}

main {
  padding-bottom: 28px;
}

.hero,
.experience-section,
.screens-section,
.faq-section {
  margin-top: 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 20px;
  align-items: start;
}

.hero-single {
  grid-template-columns: 1fr;
}

.hero-with-phone {
  grid-template-columns: 1fr minmax(220px, 340px);
  gap: 28px;
  align-items: center;
}

.hero-phone {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.hero-phone-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(242, 200, 106, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 247, 225, 0.12), rgba(242, 200, 106, 0.2)),
    rgba(34, 25, 15, 0.9);
  color: var(--muted-strong);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 16px 36px rgba(12, 7, 3, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
  text-wrap: balance;
}

.hero-phone img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 276px;
  max-height: 560px;
  border-radius: 32px;
  border: 1px solid var(--line-soft);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(242, 200, 106, 0.06);
  transform: rotate(2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-phone::before {
  content: "";
  position: absolute;
  inset: auto 10% -12% 10%;
  height: 30%;
  border-radius: 999px;
  background: rgba(242, 200, 106, 0.14);
  filter: blur(30px);
  pointer-events: none;
}

.hero-with-phone:hover .hero-phone img {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(242, 200, 106, 0.1);
}

.hero-copy,
.experience-card,
.screen-panel,
.details-panel,
.faq-item,
.legal-shell {
  border-radius: 32px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 246, 226, 0.05), rgba(255, 246, 226, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-copy,
.experience-card,
.screen-panel,
.faq-item {
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.experience-card:hover,
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 200, 106, 0.18);
  box-shadow: 0 28px 66px rgba(10, 4, 2, 0.54);
}

.hero-copy {
  padding: 38px 40px 34px;
}

.hero-copy-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 32px;
  align-items: center;
}

.hero-copy-main {
  max-width: none;
}

.eyebrow,
.screen-label,
.hero-panel-label,
.experience-label {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 0.92;
  max-width: 16ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  line-height: 0.98;
}

.lede {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.56;
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  max-width: 44ch;
}

.lede.compact {
  max-width: 40ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #8d632d 0%, #c79141 36%, #f2c86a 100%);
  color: #1a1010;
  text-decoration: none;
  font-weight: 800;
  box-shadow:
    0 14px 34px rgba(196, 140, 55, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 18px 40px rgba(196, 140, 55, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.cta.ghost {
  background: rgba(255, 245, 225, 0.03);
  border-color: var(--line);
  color: var(--muted-strong);
  box-shadow: none;
}

.text-link {
  color: var(--muted-strong);
  text-decoration: none;
  font-weight: 700;
}

.hero-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
  align-content: center;
}

.hero-strip div,
.details-item {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  background: var(--panel-soft);
}

.hero-strip strong {
  display: block;
  font-size: 1rem;
}

.hero-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.44;
}

.hero-qr-card {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.hero-qr-code {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 18px;
  border: 1px solid rgba(242, 200, 106, 0.18);
  background:
    linear-gradient(90deg, rgba(16, 14, 16, 0.95) 50%, rgba(255, 245, 225, 0.06) 50%),
    linear-gradient(rgba(16, 14, 16, 0.95) 50%, rgba(255, 245, 225, 0.06) 50%);
  background-size: 18px 18px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 245, 225, 0.04),
    0 14px 26px rgba(7, 3, 1, 0.26);
}

.hero-qr-code::before,
.hero-qr-code::after,
.hero-qr-code span::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 6px solid rgba(247, 239, 228, 0.92);
  border-radius: 8px;
}

.hero-qr-code::before {
  top: 10px;
  left: 10px;
}

.hero-qr-code::after {
  top: 10px;
  right: 10px;
}

.hero-qr-code span {
  position: absolute;
  inset: 0;
}

.hero-qr-code span::before {
  bottom: 10px;
  left: 10px;
}
.screen-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line-soft);
  background: var(--panel-strong);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.screen-shot::before {
  content: "";
  position: absolute;
  inset: auto 14% -18% 14%;
  height: 24%;
  border-radius: 999px;
  background: rgba(242, 200, 106, 0.18);
  filter: blur(26px);
  pointer-events: none;
}

.screen-shot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.section-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  text-align: center;
}

.section-intro-split {
  justify-content: space-between;
  align-items: end;
  text-align: left;
}

.section-note {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.experience-card {
  padding: 24px;
}

.experience-card-spotlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(242, 200, 106, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(188, 141, 52, 0.16), rgba(22, 16, 10, 0.88)),
    var(--panel);
}

.experience-card-spotlight::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(242, 200, 106, 0.16);
  pointer-events: none;
}

.experience-card h3,
.screen-copy h3,
.details-panel h3 {
  max-width: 14ch;
}

.experience-card p:last-child,
.screen-copy p:last-child,
.details-item p,
.about-copy,
.faq-item p,
.legal-list,
.legal-contact {
  color: var(--muted);
  line-height: 1.56;
}

.experience-card-wide {
  background:
    linear-gradient(135deg, rgba(242, 200, 106, 0.08), rgba(255, 245, 225, 0.02)),
    var(--panel);
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.experience-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(242, 200, 106, 0.18);
  background: rgba(255, 248, 234, 0.05);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.screens-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screen-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.screen-panel:hover {
  transform: translateY(-3px);
}

.screen-panel:hover .screen-shot {
  transform: translateY(-2px) rotate(-1deg);
}

.screen-panel:nth-of-type(2) {
  margin-top: 38px;
}

.screen-panel:nth-of-type(3) {
  margin-top: -18px;
}

.screen-shot {
  transform: rotate(-2deg);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.details-panel {
  padding: 24px 22px;
}

.details-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.details-item h4 {
  font-size: 1.35rem;
}

.legal-shell a,
.legal-list a,
.site-footer a {
  color: var(--muted-strong);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  max-width: 62ch;
}

.legal-page {
  padding: 28px 0 38px;
}

.legal-shell {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px);
}

.legal-shell h1 {
  max-width: none;
}

.legal-shell .lede {
  max-width: none;
}

.legal-shell-centered {
  text-align: center;
}

.legal-lede-full {
  max-width: none;
}

.hero-actions-centered {
  justify-content: center;
  margin-top: 28px;
}

.legal-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 245, 225, 0.03);
}

.legal-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-list {
  margin: 14px 0 0;
  padding-left: 1.25rem;
}

.legal-list li + li {
  margin-top: 10px;
}

.about {
  margin: 18px 0 4px;
  padding: 12px 0 0;
  border-top: 1px solid var(--line-soft);
}

.about-label {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.site-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.footer-meta {
  display: grid;
  gap: 4px;
}

.legal-contact {
  margin: 0;
  font-size: 0.92rem;
}

.tmdb-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.tmdb-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #01b4e4;
  color: #032541;
  font-size: 0.82rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

a:focus-visible,
.cta:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .hero-with-phone,
  .experience-grid,
  .screens-layout,
  .screen-panel {
    grid-template-columns: 1fr;
  }

  .hero-phone {
    order: -1;
  }

  .hero-phone img {
    max-width: 228px;
    max-height: 500px;
    transform: rotate(0deg);
  }

  .hero-phone-banner {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .hero-copy-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-intro-split {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .screen-panel:nth-of-type(2),
  .screen-panel:nth-of-type(3) {
    margin-top: 0;
  }

  .screen-copy p:last-child,
  .lede,
  .section-note {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .screens-section,
  .top-nav a[href="#screens"],
  .hero-actions .text-link[href="#screens"] {
    display: none;
  }

  .site-header,
  main,
  .site-footer {
    width: min(100vw - 20px, 1180px);
  }

  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0 8px;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

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

  .top-nav a {
    flex: 0 0 auto;
  }

  .hero-copy,
  .experience-card,
  .legal-shell,
  .screen-panel,
  .details-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy {
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .hero,
  .experience-section,
  .screens-section,
  .faq-section {
    margin-top: 14px;
  }

  .hero-with-phone {
    grid-template-areas:
      "copy"
      "phone";
  }

  .hero-with-phone .hero-copy {
    grid-area: copy;
  }

  .hero-phone {
    grid-area: phone;
    gap: 10px;
    margin-top: -2px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
    max-width: 10ch;
  }

  .hero-copy-shell {
    gap: 14px;
  }

  .lede {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .cta {
    width: 100%;
  }

  .hero-actions .text-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-strip div,
  .experience-card,
  .details-item {
    padding: 13px;
  }

  .hero-qr-code {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    background-size: 15px 15px;
  }

  .section-intro {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .screen-panel {
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .screen-shot {
    max-width: 260px;
    margin-inline: auto;
  }

  .hero-phone img {
    max-width: 178px;
    max-height: 364px;
    border-radius: 22px;
  }

  .hero-phone-banner {
    width: min(100%, 248px);
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .experience-tags {
    gap: 8px;
    margin-top: 14px;
  }

  .experience-tags span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .details-list {
    gap: 10px;
    margin-top: 14px;
  }

  .details-item h4 {
    font-size: 1.15rem;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item summary {
    padding: 16px 18px;
    font-size: 1.22rem;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .about {
    margin-top: 14px;
  }

  .site-footer {
    margin-top: 6px;
    gap: 12px;
    padding: 14px 0 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-contact {
    word-break: break-word;
  }

  .tmdb-footer {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 10px;
    font-size: 1.06rem;
    letter-spacing: 0.12em;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .hero-copy,
  .experience-card,
  .screen-panel,
  .details-panel,
  .faq-item,
  .legal-shell {
    border-radius: 24px;
  }

  .hero-copy,
  .experience-card,
  .screen-panel,
  .details-panel,
  .legal-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .eyebrow,
  .screen-label,
  .hero-panel-label,
  .experience-label {
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 0.13em;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.95;
  }

  .lede,
  .experience-card p:last-child,
  .screen-copy p:last-child,
  .details-item p,
  .about-copy,
  .faq-item p {
    font-size: 0.96rem;
    line-height: 1.46;
  }

  .hero-strip strong {
    font-size: 0.94rem;
  }

  .hero-strip span {
    margin-top: 4px;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .hero-qr-code {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    background-size: 14px 14px;
  }

  .hero-qr-code::before,
  .hero-qr-code::after,
  .hero-qr-code span::before {
    width: 20px;
    height: 20px;
    border-width: 5px;
    border-radius: 6px;
  }

  .screen-shot {
    max-width: 220px;
    border-radius: 22px;
  }

  .screen-panel {
    gap: 10px;
  }

  .faq-item summary {
    font-size: 1.12rem;
    line-height: 1.05;
  }

  .tmdb-footer,
  .legal-contact,
  .site-footer small {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .hero-copy,
  .experience-card,
  .screen-panel,
  .details-panel,
  .faq-item,
  .about,
  .legal-shell {
    animation: none;
  }

  .cta,
  .screen-panel,
  .screen-shot,
  .hero-phone img {
    transition: none;
  }
}
