@font-face {
  font-family: 'Zain';
  src: url('/assets/fonts/zain-regular.ttf') format('truetype');
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

:root {
  color-scheme: dark;
  font-family: 'Zain', Tahoma, Arial, sans-serif;
  --night: #0c0d14;
  --night-soft: #121420;
  --plum: #25182b;
  --panel: #171926;
  --panel-raised: #1d1f2e;
  --ink: #fcf8fd;
  --muted: #b9b2c1;
  --soft: #8c8697;
  --pink: #f45da9;
  --pink-strong: #ec3f98;
  --lavender: #cc8af1;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .18);
  --focus: rgba(246, 102, 181, .34);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
  scrollbar-color: #56485d #0c0d14;
  scrollbar-width: thin;
}

html {
  min-width: 320px;
  background: var(--night);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(139, 76, 161, .12), transparent 24rem),
    var(--night);
  font-size: 18px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #291224;
  background: #f7a8d3;
}

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

a {
  color: inherit;
  text-underline-offset: .2em;
}

a:focus-visible,
button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px var(--focus);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: #21101d;
  border-radius: 10px;
  background: white;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: max(22px, calc((100vw - 1260px) / 2));
  left: max(22px, calc((100vw - 1260px) / 2));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  height: 84px;
  margin: 0;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 84px;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 13, 20, .86);
  backdrop-filter: blur(18px);
  content: '';
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(239, 62, 152, .3);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name strong,
.brand-name small {
  display: block;
}

.brand-name strong {
  font-size: 18px;
  line-height: 1;
}

.brand-name small {
  margin-top: 4px;
  color: var(--soft);
  font-size: 11px;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-navigation > a {
  color: #c6c0ca;
  text-decoration: none;
  font-size: 14px;
  transition: color 150ms ease;
}

.site-navigation > a:hover {
  color: white;
}

.site-navigation .nav-download {
  padding: 10px 18px;
  color: white;
  border: 1px solid rgba(244, 93, 169, .55);
  border-radius: 22px;
  background: rgba(244, 93, 169, .12);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  width: min(100% - 44px, 1260px);
  min-height: 900px;
  margin: 0 auto;
  padding-top: 86px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-block: 80px;
}

.hero h1 {
  max-width: 9.2ch;
  margin: 0;
  color: white;
  font-size: clamp(68px, 7.4vw, 108px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-copy > p:not(.availability) {
  max-width: 34ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}

.store-actions {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}

.store-button {
  position: relative;
  display: grid;
  min-width: 176px;
  min-height: 68px;
  padding: 11px 18px 10px;
  color: #1c1220;
  border-radius: 13px;
  background: white;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-button.secondary {
  color: white;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .07);
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .25);
}

.store-button span,
.store-button strong,
.store-button small {
  display: block;
}

.store-button span {
  font-size: 10px;
  line-height: 1;
  opacity: .68;
}

.store-button strong {
  margin-top: 3px;
  direction: ltr;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.1;
  text-align: right;
}

.store-button small {
  min-height: 10px;
  margin-top: 3px;
  color: var(--pink-strong);
  font-size: 9px;
}

.store-button.is-recommended::after,
.platform-row.is-recommended::after {
  position: absolute;
  top: -8px;
  left: 12px;
  padding: 3px 8px;
  color: #28111f;
  border-radius: 10px;
  background: #ff91c9;
  content: 'الأنسب لجهازك';
  font-size: 8px;
  font-weight: 800;
}

.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0 0;
  color: var(--soft);
  font-size: 11px;
}

.availability span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
}

.hero-stage {
  position: relative;
  min-height: 790px;
  isolation: isolate;
  perspective: 1400px;
}

.hero-stage::before {
  position: absolute;
  top: 10%;
  right: 3%;
  width: 86%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 79, 163, .2), rgba(143, 91, 193, .09) 38%, transparent 70%);
  filter: blur(16px);
  content: '';
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(242, 93, 173, .17);
  border-radius: 50%;
}

.orbit-one {
  top: 10%;
  right: 5%;
  width: 76%;
  aspect-ratio: 1;
}

.orbit-two {
  top: 21%;
  right: 17%;
  width: 53%;
  aspect-ratio: 1;
}

.phone,
.screen {
  overflow: hidden;
  margin: 0;
  background: #08090f;
}

.phone {
  position: absolute;
  width: clamp(210px, 20vw, 270px);
  aspect-ratio: 9 / 20;
  padding: 6px;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .48);
  animation: stage-settle 1.05s var(--ease-out) both;
}

.phone::after,
.screen::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
  content: '';
  pointer-events: none;
}

.phone img,
.screen img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: top;
}

.phone-discover {
  top: 6%;
  right: 31%;
  z-index: 3;
  width: clamp(245px, 23vw, 315px);
  transform: rotate(1.5deg);
}

.phone-profile {
  top: 19%;
  right: 2%;
  z-index: 2;
  transform: rotate(7deg) translateZ(-50px);
  animation-delay: 90ms;
}

.phone-community {
  top: 28%;
  right: 64%;
  z-index: 1;
  transform: rotate(-7deg) translateZ(-70px);
  animation-delay: 150ms;
}

.scene-note {
  position: absolute;
  right: 4%;
  bottom: 9%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #bbb4c1;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 15, 24, .78);
  backdrop-filter: blur(12px);
  font-size: 11px;
}

.scene-note strong {
  color: #ff84c6;
}

@keyframes stage-settle {
  from { filter: blur(10px); translate: 0 34px; scale: .96; }
  to { filter: blur(0); translate: 0 0; scale: 1; }
}

.inside {
  padding: 120px 0 70px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, rgba(153, 91, 184, .11), transparent 27rem),
    linear-gradient(180deg, #0e0f17 0%, #10121c 55%, #0c0d14 100%);
}

.section-heading {
  width: min(100% - 44px, 1100px);
  margin: 0 auto 100px;
}

.section-heading h2 {
  max-width: 11ch;
  margin: 0;
  color: white;
  font-size: clamp(52px, 6.2vw, 86px);
  line-height: .96;
  letter-spacing: -.03em;
}

.section-heading p {
  max-width: 50ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  width: min(100% - 44px, 1160px);
  min-height: 760px;
  margin: 0 auto 110px;
}

.chapter:nth-of-type(odd) .chapter-copy {
  order: 2;
}

.chapter-copy h3 {
  max-width: 10ch;
  margin: 0;
  color: white;
  font-size: clamp(45px, 5vw, 67px);
  line-height: 1;
  letter-spacing: -.025em;
}

.chapter-copy > p {
  max-width: 40ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.chapter-copy ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  color: #d4ced7;
  list-style: none;
  font-size: 14px;
}

.chapter-copy li {
  position: relative;
  padding-right: 19px;
}

.chapter-copy li::before {
  position: absolute;
  top: .72em;
  right: 0;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--pink);
  content: '';
}

.chapter-visual {
  position: relative;
  min-height: 680px;
}

.chapter-visual::before {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 80%;
  height: 78%;
  border-radius: 42%;
  background: rgba(121, 72, 143, .12);
  filter: blur(42px);
  content: '';
}

.screen {
  position: absolute;
  width: 275px;
  aspect-ratio: 9 / 20;
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, .42);
}

.discovery-visual .tall,
.community-visual .feed,
.identity-visual .profile {
  top: 0;
  right: 5%;
  z-index: 2;
}

.discovery-visual .detail,
.community-visual .comments,
.identity-visual .watchlist {
  top: 74px;
  right: 45%;
  z-index: 1;
  transform: rotate(-4deg);
}

.community-visual .feed {
  right: 42%;
}

.community-visual .comments {
  right: 4%;
  transform: rotate(4deg);
}

.identity-visual .profile {
  right: 4%;
}

.identity-visual .watchlist {
  right: 44%;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(520px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  width: min(100% - 44px, 1160px);
  margin: 0 auto;
  padding: 130px 0 150px;
  border-top: 1px solid var(--line);
}

.download-copy h2 {
  max-width: 10ch;
  margin: 0;
  color: white;
  font-size: clamp(50px, 5.7vw, 78px);
  line-height: .96;
  letter-spacing: -.03em;
}

.download-copy p {
  max-width: 32ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.platform-list {
  border-top: 1px solid var(--line-strong);
}

.platform-row {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 112px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

a.platform-row:hover {
  background: rgba(255, 255, 255, .035);
  box-shadow: inset -4px 0 0 var(--pink);
}

.platform-code {
  color: var(--pink);
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
}

.platform-row strong,
.platform-row small {
  display: block;
}

.platform-row strong {
  direction: ltr;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 22px;
  text-align: right;
}

.platform-row small {
  margin-top: 4px;
  color: var(--soft);
  font-size: 11px;
}

.platform-row b {
  color: #d7d0dc;
  font-size: 10px;
  font-weight: 700;
}

.platform-row.is-disabled {
  color: #736e7a;
}

.platform-row.is-disabled .platform-code {
  color: #736e7a;
}

.platform-row.is-disabled b {
  color: #9a93a0;
  font-size: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 44px, 1260px);
  min-height: 100px;
  margin: 0 auto;
  color: var(--soft);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-brand strong {
  color: white;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

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

.footer-meta nav,
.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-meta a,
.legal-footer nav a,
.legal-header a {
  color: #d8d0dc;
  text-decoration: none;
}

.footer-meta a:hover,
.legal-footer nav a:hover,
.legal-header a:hover {
  color: white;
}

.legal-body {
  min-height: 100vh;
  padding: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(244, 93, 169, .16), transparent 30%),
    radial-gradient(circle at 80% 38%, rgba(164, 102, 224, .12), transparent 34%),
    #110d15;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 44px, 960px);
  min-height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.legal-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 14px;
}

.legal-main {
  width: min(100% - 44px, 880px);
  min-height: calc(100vh - 192px);
  margin: 0 auto;
  padding: 90px 0 110px;
}

.legal-main h1 {
  max-width: 18ch;
  margin: 0;
  color: white;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
}

.legal-copy {
  max-width: 76ch;
  margin: 36px 0 0;
  color: #d9d1dd;
  font-size: 17px;
  line-height: 1.95;
  white-space: pre-line;
}

.deletion-request {
  margin-top: 46px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, .045);
}

.legal-retention {
  margin-top: 44px;
}

.deletion-request[hidden] {
  display: none;
}

.deletion-request h2 {
  margin: 0;
  color: white;
  font-size: 30px;
}

.deletion-request > p {
  margin: 8px 0 0;
  color: var(--muted);
}

.deletion-request form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.deletion-request label {
  display: grid;
  gap: 8px;
  color: #eee8f1;
  font-size: 13px;
}

.deletion-request .full {
  grid-column: 1 / -1;
}

.deletion-request input,
.deletion-request textarea {
  width: 100%;
  padding: 13px 14px;
  color: white;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: none;
  background: #17131d;
  font: inherit;
}

.deletion-request input:focus,
.deletion-request textarea:focus {
  border-color: #ff85c5;
  box-shadow: 0 0 0 3px rgba(255, 133, 197, .14);
}

.deletion-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.deletion-consent input {
  width: 18px;
  margin-top: 3px;
}

.deletion-request button[type='submit'] {
  min-height: 48px;
  padding: 10px 24px;
  color: #26121f;
  border: 0;
  border-radius: 12px;
  background: #ff85c5;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.deletion-request button:disabled {
  cursor: wait;
  opacity: .62;
}

.request-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.request-status {
  min-height: 28px;
  margin-top: 18px !important;
  color: #d9d1dd !important;
}

.request-status.success { color: #8ce9b0 !important; }
.request-status.error { color: #ff9393 !important; }

.legal-footer {
  grid-template-columns: 1fr auto auto;
  width: min(100% - 44px, 960px);
}

.mobile-download {
  display: none;
}

.analytics-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(680px, calc(100vw - 44px));
  padding: 18px;
  color: var(--ink);
  border-radius: 16px;
  background: #202230;
  box-shadow: 0 24px 62px rgba(0, 0, 0, .48);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent strong {
  display: block;
  color: white;
  font-size: 17px;
}

.analytics-consent p {
  max-width: 52ch;
  margin: 4px 0 0;
  color: #cbc4d0;
  font-size: 13px;
}

.analytics-consent-actions {
  display: flex;
  gap: 8px;
}

.analytics-consent button {
  min-height: 42px;
  padding: 9px 14px;
  color: #e2dce6;
  border: 0;
  border-radius: 11px;
  background: #303241;
  cursor: pointer;
  font-weight: 700;
}

.analytics-consent .consent-accept {
  color: #26121f;
  background: #ff85c5;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(330px, .8fr) minmax(450px, 1.2fr);
  }

  .hero h1 {
    font-size: 70px;
  }

  .hero-stage {
    transform: scale(.88);
    transform-origin: center;
  }

  .chapter {
    grid-template-columns: 320px minmax(440px, 1fr);
    gap: 48px;
  }

  .screen {
    width: 245px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    right: 14px;
    left: 14px;
    width: auto;
    height: 72px;
  }

  .brand-name small {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    color: white;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    top: 66px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 15px;
    background: rgba(19, 19, 30, .96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .42);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-navigation > a,
  .site-navigation .nav-download {
    padding: 12px 13px;
    border: 0;
    border-radius: 9px;
    background: transparent;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 680px);
    min-height: auto;
    padding-top: 116px;
  }

  .hero-copy {
    padding: 30px 0 0;
    text-align: center;
  }

  .hero h1,
  .hero-copy > p:not(.availability) {
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(54px, 13vw, 82px);
  }

  .store-actions,
  .availability {
    justify-content: center;
  }

  .hero-stage {
    min-height: 660px;
    transform: none;
  }

  .phone {
    width: 220px;
  }

  .phone-discover {
    top: 5%;
    right: calc(50% - 110px);
    width: 250px;
  }

  .phone-profile {
    top: 18%;
    right: calc(50% - 285px);
  }

  .phone-community {
    top: 23%;
    right: calc(50% + 75px);
  }

  .scene-note {
    right: 50%;
    bottom: 4%;
    transform: translateX(50%);
  }

  .inside {
    padding-top: 90px;
  }

  .section-heading {
    margin-bottom: 70px;
    text-align: center;
  }

  .section-heading h2,
  .section-heading p {
    margin-inline: auto;
  }

  .chapter,
  .download-section {
    grid-template-columns: 1fr;
  }

  .chapter {
    width: min(100% - 32px, 680px);
    min-height: auto;
    margin-bottom: 120px;
  }

  .chapter:nth-of-type(odd) .chapter-copy {
    order: 0;
  }

  .chapter-copy {
    text-align: center;
  }

  .chapter-copy h3,
  .chapter-copy > p {
    margin-inline: auto;
  }

  .chapter-copy ul {
    justify-items: center;
  }

  .chapter-visual {
    min-height: 630px;
  }

  .screen {
    width: 250px;
  }

  .discovery-visual .tall,
  .community-visual .feed,
  .identity-visual .profile {
    right: calc(50% - 62px);
  }

  .discovery-visual .detail,
  .community-visual .comments,
  .identity-visual .watchlist {
    right: calc(50% - 188px);
  }

  .download-section {
    width: min(100% - 32px, 680px);
    padding-block: 95px 110px;
  }

  .download-copy {
    text-align: center;
  }

  .download-copy h2,
  .download-copy p {
    margin-inline: auto;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    width: calc(100% - 32px);
  }

  .site-footer p {
    display: none;
  }

  .legal-header {
    align-items: flex-start;
    padding-block: 20px;
  }

  .legal-main {
    padding-top: 62px;
  }

  .legal-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 22px;
  }

  .mobile-download {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 90;
    display: grid;
    min-height: 52px;
    place-items: center;
    color: #251121;
    border-radius: 14px;
    background: linear-gradient(112deg, #ff71b8, #ce8af3);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    text-decoration: none;
    font-weight: 800;
  }

  .analytics-consent {
    right: 14px;
    bottom: 78px;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
  }

  .analytics-consent-actions {
    justify-content: stretch;
  }

  .analytics-consent button {
    flex: 1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .legal-header {
    display: grid;
  }

  .legal-header nav {
    gap: 8px 14px;
  }

  .legal-main {
    width: calc(100% - 28px);
    padding: 50px 0 80px;
  }

  .legal-copy {
    font-size: 16px;
  }

  .deletion-request form {
    grid-template-columns: 1fr;
  }

  .deletion-request .full {
    grid-column: auto;
  }

  .site-header.is-scrolled::before {
    height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .hero-copy > p:not(.availability) {
    font-size: 18px;
  }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .store-button {
    min-width: 0;
    min-height: 64px;
    padding-inline: 13px;
  }

  .store-button strong {
    font-size: 14px;
  }

  .availability {
    flex-wrap: wrap;
    font-size: 10px;
  }

  .hero-stage {
    min-height: 525px;
    margin-top: 22px;
  }

  .phone {
    width: 164px;
    padding: 4px;
    border-radius: 22px;
  }

  .phone-discover {
    right: calc(50% - 82px);
    width: 190px;
  }

  .phone-profile {
    right: calc(50% - 208px);
  }

  .phone-community {
    right: calc(50% + 45px);
  }

  .scene-note {
    bottom: 0;
  }

  .section-heading {
    width: calc(100% - 32px);
  }

  .section-heading h2,
  .chapter-copy h3,
  .download-copy h2 {
    font-size: clamp(42px, 13vw, 57px);
  }

  .section-heading p,
  .chapter-copy > p,
  .download-copy p {
    font-size: 16px;
  }

  .chapter {
    gap: 40px;
  }

  .chapter-visual {
    min-height: 480px;
  }

  .screen {
    width: 190px;
    border-radius: 22px;
  }

  .discovery-visual .tall,
  .community-visual .feed,
  .identity-visual .profile {
    right: calc(50% - 42px);
  }

  .discovery-visual .detail,
  .community-visual .comments,
  .identity-visual .watchlist {
    top: 52px;
    right: calc(50% - 146px);
  }

  .platform-row {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 13px;
    min-height: 98px;
  }

  .platform-row strong {
    font-size: 17px;
  }

  .site-footer {
    min-height: 86px;
  }
}

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

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