:root {
  --iced-mint: #eff5df;
  --cadet-blue: #5f9ea0;
  --deep-graphite: #111514;
  --soft-graphite: #2a2e2d;
  --paper: #fafbf4;
  --ink: oklch(18% 0.012 178);
  --ink-soft: oklch(38% 0.018 178);
  --mint-wash: oklch(95% 0.032 116);
  --mint-veil: oklch(97% 0.02 116);
  --cadet: oklch(63% 0.071 196);
  --cadet-ink: oklch(48% 0.078 196);
  --graphite: oklch(18% 0.012 178);
  --graphite-2: oklch(25% 0.012 178);
  --paper-tint: oklch(98% 0.018 106);
  --muted-text: rgba(17, 21, 20, 0.66);
  --hairline: rgba(17, 21, 20, 0.12);
  --hairline-light: rgba(250, 251, 244, 0.16);
  --space-1: clamp(0.55rem, 0.45rem + 0.35vw, 0.85rem);
  --space-2: clamp(0.9rem, 0.72rem + 0.55vw, 1.35rem);
  --space-3: clamp(1.35rem, 1rem + 1vw, 2.2rem);
  --space-4: clamp(2rem, 1.35rem + 2vw, 3.7rem);
  --space-5: clamp(3.2rem, 2rem + 4vw, 6.4rem);
  --space-6: clamp(4.8rem, 3rem + 6vw, 10rem);
  --radius-soft: 28px;
  --radius-section: clamp(28px, 4vw, 56px);
  --shadow-soft: 0 26px 70px rgba(17, 21, 20, 0.14);
  --shadow-phone: 0 34px 60px rgba(17, 21, 20, 0.26);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-family: var(--font-sans);
  font-kerning: normal;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--iced-mint);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 79% 10%, rgba(95, 158, 160, 0.22), transparent 28rem),
    linear-gradient(120deg, rgba(239, 245, 223, 0.98), rgba(250, 251, 244, 0.88) 42%, rgba(239, 245, 223, 0.96));
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 21, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 20, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 62%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--cadet-ink);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  width: min(1188px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 9px 9px 9px 14px;
  border: 1px solid rgba(17, 21, 20, 0.1);
  border-radius: 999px;
  background: color-mix(in oklch, var(--paper-tint) 94%, var(--iced-mint));
  box-shadow: 0 16px 44px rgba(17, 21, 20, 0.08);
}

.brand-link,
.nav-links,
.hero-actions,
.source-cards,
.details-grid,
.recognition-phones,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 10px;
  font-weight: 800;
}

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

.nav-links {
  justify-self: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(17, 21, 20, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease-out-quint),
    background 220ms var(--ease-out-quint),
    color 220ms var(--ease-out-quint),
    box-shadow 220ms var(--ease-out-quint);
}

.header-cta {
  padding: 0 19px;
  background: var(--graphite);
  color: var(--paper);
  font-size: 0.86rem;
}

.button {
  padding: 0 25px;
  border: 1px solid transparent;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--cadet);
  color: var(--paper);
  box-shadow: 0 20px 34px rgba(95, 158, 160, 0.28);
}

.button-primary:hover {
  color: var(--paper);
  background: var(--cadet-ink);
}

.button-secondary {
  border-color: rgba(17, 21, 20, 0.14);
  background: rgba(250, 251, 244, 0.76);
}

.section-shell,
.dark-section,
.art-section,
.themes-section,
.wallpaper-section,
.final-cta,
.site-footer {
  position: relative;
  width: min(1188px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(18px, 3.5vw, 58px);
  padding: clamp(22px, 3vw, 44px) 0 clamp(12px, 2vw, 24px);
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 790px;
}

.brand-line,
.section-kicker,
.accuracy-note {
  margin: 0 0 var(--space-2);
  color: var(--cadet-ink);
  font-family: var(--font-display);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.art-copy h2,
.recognition-copy h2,
.wallpaper-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.brand-line {
  display: inline-block;
  max-width: 8ch;
  margin-bottom: 0.1em;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(5.6rem, 12vw, 12.2rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.78;
  text-transform: none;
  transform-origin: 46% 72%;
}

.serif-keyword {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.065em;
  transform-origin: 50% 70%;
  transition:
    color 240ms var(--ease-out-quint),
    font-style 240ms var(--ease-out-quint),
    transform 240ms var(--ease-out-quint),
    text-shadow 240ms var(--ease-out-quint);
  cursor: default;
}

.serif-keyword.keyword-enter,
.serif-keyword.keyword-locked,
.serif-keyword:hover,
.serif-keyword:focus-visible {
  color: #5f9ea0;
  font-style: italic;
  outline: 0;
  animation: smurf-wink 640ms var(--ease-out-quint);
  text-shadow: 0 10px 26px rgba(95, 158, 160, 0.24);
}

.hero h1 {
  max-width: none;
  color: var(--cadet-ink);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.hero-subhead {
  max-width: 58ch;
  margin: var(--space-2) 0 0;
  color: var(--muted-text);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

.small-note {
  margin: var(--space-2) 0 0;
  color: rgba(17, 21, 20, 0.54);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(480px, calc(100vh - 240px));
  min-width: 0;
  justify-self: end;
  width: 100%;
  isolation: isolate;
}

.phone {
  width: min(100%, var(--phone-width, 360px));
  object-fit: contain;
}

.hero-phone {
  --phone-width: 264px;
  position: relative;
  z-index: 1;
  max-height: min(510px, calc(100vh - 210px));
  filter: drop-shadow(0 24px 34px rgba(17, 21, 20, 0.2));
  animation: phone-drift 7s var(--ease-out-expo) 500ms infinite alternate;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  min-width: 320px;
  height: min(600px, calc(100vh - 142px));
  overflow: visible;
  padding: 20px 0 56px;
}

.hero-primary-shot,
.hero-secondary-shot {
  object-fit: contain;
  filter:
    drop-shadow(0 42px 70px rgba(17, 21, 20, 0.14))
    drop-shadow(0 14px 26px rgba(17, 21, 20, 0.08));
  transition:
    transform 520ms var(--ease-out-quint),
    filter 520ms var(--ease-out-quint);
}

.hero-primary-shot {
  position: relative;
  z-index: 2;
  width: clamp(218px, 22vw, 310px);
  max-height: 100%;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.hero-secondary-shot {
  position: absolute;
  z-index: 1;
  right: clamp(12px, 2vw, 36px);
  top: clamp(46px, 8vh, 86px);
  width: clamp(170px, 17vw, 246px);
  max-height: calc(100% - 112px);
  transform: translate3d(28%, 0, 0) rotate(3.2deg);
}

.hero-showcase:hover .hero-primary-shot {
  transform: translate3d(-8px, -8px, 0) rotate(-0.6deg);
  filter:
    drop-shadow(0 48px 78px rgba(17, 21, 20, 0.16))
    drop-shadow(0 16px 30px rgba(17, 21, 20, 0.1));
}

.hero-showcase:hover .hero-secondary-shot {
  transform: translate3d(34%, -10px, 0) rotate(4.2deg);
  filter:
    drop-shadow(0 48px 78px rgba(17, 21, 20, 0.14))
    drop-shadow(0 16px 30px rgba(17, 21, 20, 0.08));
}

.section-copy,
.art-copy,
.recognition-copy,
.wallpaper-copy {
  max-width: 66ch;
}

.section-copy h2,
.art-copy h2,
.recognition-copy h2,
.wallpaper-copy h2,
.final-cta h2 {
  font-size: clamp(3.1rem, 6.8vw, 6.9rem);
}

.section-copy p,
.art-copy p,
.recognition-copy p,
.wallpaper-copy p {
  max-width: 64ch;
  margin: var(--space-2) 0 0;
  color: var(--muted-text);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.7;
}

.centered-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.centered-copy p {
  margin-left: auto;
  margin-right: auto;
}

.dark-section {
  margin-top: var(--space-2);
  padding: clamp(58px, 9vw, 118px);
  border-radius: var(--radius-section);
  background:
    radial-gradient(circle at 82% 12%, rgba(95, 158, 160, 0.26), transparent 30rem),
    linear-gradient(135deg, var(--graphite), var(--graphite-2));
  color: var(--paper);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(250, 251, 244, 0.08) 1px, transparent 1px);
  background-size: 96px 100%;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent);
}

.dark-section .section-copy p,
.dark-section .art-copy p,
.dark-section .recognition-copy p,
.dark-section .wallpaper-copy p {
  color: rgba(250, 251, 244, 0.7);
}

.concept {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  align-items: end;
  gap: clamp(42px, 7vw, 108px);
}

.principles {
  display: grid;
  gap: 10px;
  counter-reset: principle;
}

.principles p {
  position: relative;
  margin: 0;
  padding: 18px 0 18px 54px;
  border-top: 1px solid var(--hairline-light);
  color: rgba(250, 251, 244, 0.86);
  font-weight: 800;
}

.principles p::before {
  counter-increment: principle;
  content: "0" counter(principle);
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--cadet);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.player-section,
.sources-section,
.recognition-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 118px);
  padding: var(--space-6) 0;
}

.sources-section {
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.feature-list {
  display: grid;
  gap: 12px;
  max-width: 48ch;
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 0 0 12px 32px;
  border-bottom: 1px solid rgba(17, 21, 20, 0.11);
  color: rgba(17, 21, 20, 0.74);
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cadet);
  box-shadow: inset 0 0 0 4px rgba(250, 251, 244, 0.86);
}

.dual-phones,
.details-phones,
.recognition-phones {
  position: relative;
}

.dual-phones {
  min-height: 690px;
  perspective: 900px;
}

.phone-card {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform 360ms var(--ease-out-quint),
    box-shadow 360ms var(--ease-out-quint);
}

.phone-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.phone-card img {
  margin: 0 auto;
  filter: drop-shadow(0 18px 22px rgba(17, 21, 20, 0.16));
}

.phone-card figcaption,
.theme-lineup figcaption {
  max-width: 28ch;
  margin: 15px auto 0;
  color: rgba(17, 21, 20, 0.58);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.offset-card {
  position: absolute;
  right: 0;
  bottom: 22px;
  max-width: 310px;
  transform: rotate(5deg) translateZ(0);
}

.offset-card:hover {
  transform: rotate(3deg) translateY(-8px);
}

.dual-phones > .phone-card:first-child {
  max-width: 360px;
  transform: rotate(-5deg) translateY(10px);
}

.dual-phones > .phone-card:first-child:hover {
  transform: rotate(-3deg) translateY(0);
}

.art-section {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
  padding: clamp(64px, 10vw, 132px) clamp(24px, 5vw, 72px);
  border-radius: var(--radius-section);
  background:
    radial-gradient(circle at 75% 44%, rgba(95, 158, 160, 0.22), transparent 28rem),
    rgba(250, 251, 244, 0.58);
  overflow: hidden;
}

.album-frame {
  display: grid;
  place-items: center;
}

.album-frame .phone {
  --phone-width: 280px;
  filter: drop-shadow(0 24px 34px rgba(17, 21, 20, 0.18));
}

.source-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.34fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
}

.source-cards {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(17, 21, 20, 0.14);
}

.source-card {
  display: grid;
  grid-template-columns: 64px minmax(140px, 0.34fr) minmax(250px, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  min-height: 126px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 21, 20, 0.14);
  transition: transform 260ms var(--ease-out-quint);
}

.source-card:hover {
  transform: translateX(8px);
}

.featured-source {
  color: var(--ink);
}

.source-card h3,
.details-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.15;
}

.source-card p,
.details-grid p {
  margin: 0;
  color: rgba(17, 21, 20, 0.64);
  max-width: 38ch;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.55;
}

.icon-line {
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  width: 50px;
  height: 50px;
  color: var(--cadet-ink);
}

.apple-music-icon {
  justify-self: center;
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(255, 45, 85, 0.18);
}

.icon-line svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stream-icon svg {
  width: 54px;
  height: 54px;
  stroke-width: 1.65;
}

.stream-icon circle {
  fill: currentColor;
  stroke: none;
}

.source-shot {
  justify-self: center;
  max-width: 300px;
}

.details-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.details-section .accuracy-note {
  margin-top: var(--space-1);
  color: rgba(250, 251, 244, 0.5);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: none;
}

.details-phones {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.details-phones .phone {
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.32));
}

.details-shot {
  margin: 0;
}

.details-shot .phone {
  --phone-width: 330px;
}

.secondary-detail .phone {
  --phone-width: 260px;
}

.secondary-phone {
  opacity: 0.92;
}

.recognition-section {
  grid-template-columns: minmax(0, 0.64fr) minmax(420px, 1fr);
}

.recognition-phones {
  gap: 20px;
  justify-content: center;
}

.recognition-phones .phone-card {
  max-width: 310px;
}

.shazam-logo {
  width: min(180px, 54vw);
  margin-top: 8px;
  opacity: 1;
}

.shazam-lockup {
  margin-top: var(--space-3);
}

.shazam-lockup span {
  display: block;
  color: rgba(17, 21, 20, 0.52);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
}

.themes-section {
  padding: var(--space-6) 0;
}

.theme-lineup {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  align-items: end;
  gap: clamp(12px, 2vw, 22px);
  margin-top: var(--space-4);
  overflow: visible;
  padding: 34px 0 44px;
}

.theme-lineup figure {
  min-width: 0;
  margin: 0;
  transform-origin: bottom center;
}

.theme-lineup figure:nth-child(1) {
  transform: rotate(-7deg) translateY(18px);
}

.theme-lineup figure:nth-child(2) {
  transform: rotate(-4deg) translateY(5px);
}

.theme-lineup figure:nth-child(3) {
  transform: rotate(-1deg) translateY(22px);
}

.theme-lineup figure:nth-child(4) {
  transform: rotate(2deg) translateY(4px);
}

.theme-lineup figure:nth-child(5) {
  transform: rotate(5deg) translateY(18px);
}

.theme-lineup figure:nth-child(6) {
  transform: rotate(8deg) translateY(8px);
}

.theme-lineup .phone {
  --phone-width: 210px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 28px rgba(17, 21, 20, 0.21));
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.52fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.privacy-list {
  display: grid;
  gap: 0;
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hairline-light);
}

.privacy-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--hairline-light);
  color: rgba(250, 251, 244, 0.82);
  font-weight: 800;
}

.privacy-phone {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.wallpaper-section {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
  padding: var(--space-6) 0;
}

.wallpaper-copy .button {
  margin-top: var(--space-3);
}

.wallpaper-preview {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(17, 21, 20, 0.1);
  border-radius: var(--radius-section);
  background: var(--paper-tint);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.wallpaper-preview::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: rgba(95, 158, 160, 0.18);
  filter: blur(28px);
}

.wallpaper-preview img {
  position: relative;
  width: 100%;
  border-radius: calc(var(--radius-section) - 14px);
}

.final-cta {
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: clamp(64px, 10vw, 112px) 24px;
  border-radius: var(--radius-section);
  background:
    radial-gradient(circle at 50% 10%, rgba(95, 158, 160, 0.25), transparent 28rem),
    var(--paper-tint);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(17, 21, 20, 0.08);
}

.final-cta img {
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(17, 21, 20, 0.16);
}

.final-cta h2 {
  max-width: 760px;
  margin-top: var(--space-3);
}

.final-cta p {
  margin: var(--space-2) 0 0;
  color: var(--muted-text);
  font-size: 1.16rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  width: 100%;
  margin-top: 28px;
  padding: 64px max(24px, calc((100vw - 1188px) / 2)) 70px;
  background:
    radial-gradient(circle at 86% 10%, rgba(95, 158, 160, 0.2), transparent 28rem),
    linear-gradient(135deg, #111514, #1d2422);
  color: var(--paper);
}

.site-footer::before {
  content: none;
}

.site-footer h2,
.site-footer p {
  margin: 0;
}

.site-footer h2 {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.35rem;
  color: rgba(250, 251, 244, 0.96);
}

.site-footer div > p,
.site-footer a {
  color: rgba(250, 251, 244, 0.82);
}

.site-footer nav {
  align-self: start;
  gap: 20px;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 760px;
  color: rgba(250, 251, 244, 0.72);
  font-size: 0.88rem;
}

.legal-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0 clamp(56px, 8vw, 96px);
}

.legal-document {
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid rgba(17, 21, 20, 0.1);
  border-radius: var(--radius-section);
  background: rgba(250, 251, 244, 0.72);
  box-shadow: 0 24px 70px rgba(17, 21, 20, 0.08);
}

.legal-document h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.legal-document h2 {
  margin: var(--space-4) 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.legal-document p {
  max-width: 68ch;
  margin: var(--space-1) 0 0;
  color: rgba(17, 21, 20, 0.68);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.72;
}

.legal-updated {
  color: var(--cadet-ink) !important;
  font-weight: 800;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 760ms var(--ease-out-quint),
    transform 760ms var(--ease-out-quint);
}

.source-card.motion-reveal:nth-child(2),
.phone-card.motion-reveal:nth-child(2),
.theme-lineup figure.motion-reveal:nth-child(2) {
  transition-delay: 90ms;
}

.source-card.motion-reveal:nth-child(3),
.theme-lineup figure.motion-reveal:nth-child(3) {
  transition-delay: 160ms;
}

.theme-lineup figure.motion-reveal:nth-child(4) {
  transition-delay: 230ms;
}

.theme-lineup figure.motion-reveal:nth-child(5) {
  transition-delay: 300ms;
}

.theme-lineup figure.motion-reveal:nth-child(6) {
  transition-delay: 370ms;
}

@keyframes phone-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }
  to {
    transform: translate3d(0, -12px, 0) rotate(0.7deg);
  }
}

@keyframes glow-breathe {
  from {
    opacity: 0.62;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes smurf-wink {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  35% {
    transform: translate3d(0, -0.04em, 0) rotate(-2deg);
    color: #5f9ea0;
  }
  70% {
    transform: translate3d(0, 0.02em, 0) rotate(1.4deg);
    color: #71b7bb;
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    color: #5f9ea0;
  }
}

@media (max-width: 1040px) {
  .hero,
  .player-section,
  .art-section,
  .sources-section,
  .details-section,
  .recognition-section,
  .privacy-section,
  .wallpaper-section,
  .concept,
  .source-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-copy,
  .hero-subhead,
  .section-copy,
  .art-copy,
  .recognition-copy,
  .wallpaper-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subhead,
  .section-copy p,
  .art-copy p,
  .recognition-copy p,
  .wallpaper-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-showcase {
    width: min(620px, 100%);
    min-width: 0;
    height: 390px;
    padding: 18px 0 42px;
  }

  .hero-primary-shot {
    width: 206px;
  }

  .hero-secondary-shot {
    right: 16%;
    top: 42px;
    width: 166px;
    max-height: calc(100% - 76px);
  }

  .privacy-phone {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
  }

  .details-phones {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 12px;
    width: min(100% - 24px, 720px);
    grid-template-columns: auto 1fr;
    border-radius: 26px;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 6px 2px;
    overflow-x: auto;
  }

  .header-cta {
    justify-self: end;
    min-height: 38px;
    padding: 0 14px;
  }

  .section-shell,
  .dark-section,
  .art-section,
  .themes-section,
  .wallpaper-section,
  .final-cta,
  .site-footer {
    width: min(100% - 24px, 680px);
  }

  .hero {
    min-height: calc(100vh - 164px);
    padding-top: 28px;
    padding-bottom: 0;
    gap: 14px;
  }

  .brand-line {
    max-width: 7.2ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(4.35rem, 20vw, 6.25rem);
    line-height: 0.82;
  }

  .hero h1 {
    font-size: clamp(0.92rem, 3.6vw, 1.12rem);
  }

  .hero-subhead {
    margin-top: 16px;
    font-size: 1.02rem;
    line-height: 1.52;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .small-note {
    margin-top: 13px;
  }

  .hero-visual {
    min-height: 206px;
  }

  .hero-phone {
    --phone-width: 104px;
    max-height: 214px;
  }

  .hero-showcase {
    height: 260px;
    padding: 8px 0 26px;
  }

  .hero-primary-shot {
    width: 138px;
  }

  .hero-secondary-shot {
    right: 15%;
    top: 24px;
    width: 108px;
    max-height: calc(100% - 46px);
    transform: translate3d(32%, 0, 0) rotate(3.2deg);
  }

  .hero-showcase:hover .hero-secondary-shot {
    transform: translate3d(38%, -8px, 0) rotate(4.2deg);
  }

  .dark-section {
    padding: 52px 24px;
    border-radius: 28px;
  }

  .concept {
    margin-top: 0;
  }

  .source-card {
    grid-template-columns: 46px 1fr;
    gap: 16px;
  }

  .source-card p {
    grid-column: 2;
  }

  .source-cards,
  .recognition-phones {
    flex-direction: column;
  }

  .recognition-phones {
    gap: 18px;
  }

  .source-card,
  .recognition-phones .phone-card,
  .source-shot {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .dual-phones {
    display: grid;
    gap: 20px;
    min-height: auto;
  }

  .dual-phones > .phone-card:first-child,
  .offset-card {
    position: static;
    max-width: 420px;
    transform: none;
    margin: 0 auto;
  }

  .details-phones {
    grid-template-columns: 1fr;
  }

  .secondary-phone {
    display: none;
  }

  .theme-lineup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    overflow: visible;
  }

  .theme-lineup figure {
    transform: none !important;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .brand-link span {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }

  .section-copy h2,
  .art-copy h2,
  .recognition-copy h2,
  .wallpaper-copy h2,
  .final-cta h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .art-section {
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 30px;
  }

  .phone-card {
    padding: 12px;
    border-radius: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
  }
}
