:root {
  --black: #050607;
  --blue-black: #080c11;
  --surface: #0d1116;
  --surface-raised: #12171d;
  --ink: #f2eee4;
  --muted: #aaa9a3;
  --dim: #777a7c;
  --gold: #c7a35e;
  --gold-pale: #e2c98f;
  --line: rgba(226, 201, 143, .2);
  --line-cool: rgba(222, 231, 235, .12);
  --ease: cubic-bezier(.22, .72, .2, 1);
  --header-height: 66px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: dark;
  background: var(--black);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 12%, rgba(34, 51, 68, .24), transparent 34rem),
    var(--black);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-pale);
  outline-offset: 4px;
}

::selection {
  color: #08090b;
  background: var(--gold-pale);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 12px;
  transform: translateY(-160%);
  border: 1px solid var(--gold);
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-pale);
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.drop-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) clamp(18px, 4vw, 58px) 0;
  border-bottom: 1px solid var(--line-cool);
  background: rgba(5, 6, 7, .91);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.studio-brand,
.studio-return {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  transition: color 180ms ease;
}

.studio-brand {
  justify-self: start;
  gap: 12px;
}

.studio-return {
  justify-self: end;
  gap: 8px;
}

.studio-brand:hover,
.studio-return:hover {
  color: var(--ink);
}

.studio-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-pale);
  font-size: 9px;
  letter-spacing: -.04em;
}

.header-mark {
  justify-self: center;
  color: var(--dim);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .2em;
}

.auralia-drop {
  position: relative;
  isolation: isolate;
}

.auralia-drop::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 163, 94, .42), transparent);
}

.release {
  width: min(1480px, 100%);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 116px) clamp(20px, 5vw, 76px) clamp(76px, 9vw, 132px);
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(650px, 1.55fr);
  align-items: start;
  gap: clamp(54px, 7vw, 112px);
}

.release-copy {
  position: sticky;
  top: calc(var(--header-height) + 52px);
  align-self: start;
  max-width: 440px;
}

.release-brand,
.eyebrow {
  margin: 0;
  color: var(--gold-pale);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
}

.free-mark {
  width: max-content;
  display: block;
  margin: 24px 0 30px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--line);
  padding: 7px 0;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .2em;
}

.release-copy h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 7vw, 112px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.edition-title {
  margin: 20px 0 0;
  color: var(--gold-pale);
  text-transform: uppercase;
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: .22em;
}

.release-lead {
  max-width: 35rem;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
}

.release-lead strong {
  color: var(--ink);
  font-weight: 500;
}

.explore-button {
  min-height: 52px;
  width: max-content;
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--gold);
  padding: 0 19px;
  color: var(--gold-pale);
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  transition: color 180ms ease, background 180ms ease;
}

.explore-button:hover {
  color: var(--black);
  background: var(--gold-pale);
}

.release-facts {
  margin: 44px 0 0;
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid var(--line-cool);
  list-style: none;
}

.release-facts li {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.release-facts strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.release-facts span {
  color: var(--dim);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .12em;
}

.gallery-shell {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.phone-stage {
  min-width: 0;
  display: grid;
  place-items: center;
  scroll-margin-top: calc(var(--header-height) + 26px);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.phone-frame {
  width: min(100%, 354px);
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border: 7px solid #161a1e;
  border-radius: 46px;
  background: #111;
  box-shadow:
    0 36px 88px rgba(0, 0, 0, .58),
    0 0 0 1px rgba(226, 201, 143, .19),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
  transition: border-radius 300ms var(--ease);
}

.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 38px;
  background: #080a0c;
}

.wallpaper-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  opacity: 0;
  transform: scale(1.008);
  transition: opacity 520ms var(--ease), transform 900ms var(--ease);
}

.wallpaper-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.screen-tone {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .28), transparent 24%, transparent 72%, rgba(0, 0, 0, .28));
  opacity: .72;
  transition: opacity 300ms ease;
}

.phone-status {
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .88);
  font-size: 10px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .8);
}

.status-symbols {
  display: flex;
  align-items: end;
  gap: 3px;
}

.status-symbols i {
  width: 3px;
  height: 7px;
  display: block;
  border-radius: 4px;
  background: currentColor;
}

.status-symbols i:nth-child(2) {
  width: 8px;
  height: 6px;
  border-radius: 8px 8px 2px 2px;
}

.status-symbols i:nth-child(3) {
  width: 12px;
  height: 6px;
  border: 1px solid currentColor;
  background: linear-gradient(90deg, currentColor 70%, transparent 70%);
}

.phone-island {
  position: absolute;
  z-index: 7;
  top: 10px;
  left: 50%;
  width: 78px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #020303;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
  transition: width 300ms var(--ease), border-radius 300ms var(--ease);
}

.lock-preview-ui,
.home-preview-ui {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 360ms var(--ease);
}

.lock-preview-ui {
  padding-top: 64px;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .82);
}

.lock-glyph {
  width: 15px;
  height: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  transform: rotate(180deg);
  font-size: 13px;
}

.lock-preview-ui time {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 55px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}

.lock-preview-ui > span:last-of-type {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
}

.notification-sample {
  width: calc(100% - 28px);
  min-height: 50px;
  position: absolute;
  right: 14px;
  bottom: 54px;
  left: 14px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, .9);
  background: rgba(13, 16, 18, .48);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .75);
}

.notification-sample i {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(226, 201, 143, .55);
  border-radius: 8px;
  background: rgba(199, 163, 94, .18);
}

.notification-sample p {
  margin: 0;
  display: grid;
  line-height: 1.15;
}

.notification-sample strong {
  font-size: 9px;
}

.notification-sample small,
.notification-sample b {
  color: rgba(255, 255, 255, .68);
  font-size: 8px;
  font-weight: 500;
}

.home-preview-ui {
  padding: 66px 18px 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(6px);
}

.home-widget {
  width: 76px;
  min-height: 76px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  color: rgba(255, 255, 255, .9);
  background: rgba(8, 10, 12, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}

.home-widget span,
.home-widget small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
}

.home-widget strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: .95;
}

.icon-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.4vw, 21px) clamp(15px, 2.6vw, 23px);
}

.icon-grid i,
.icon-dock i {
  aspect-ratio: 1;
  display: block;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(232, 229, 219, .17);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, .035), 0 2px 7px rgba(0, 0, 0, .2);
}

.icon-dock {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  padding: 10px;
  background: rgba(235, 235, 229, .1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-mode="home"] .lock-preview-ui {
  opacity: 0;
  transform: translateY(-6px);
}

[data-mode="home"] .home-preview-ui {
  opacity: 1;
  transform: translateY(0);
}

[data-mode="home"] .screen-tone {
  opacity: .36;
}

[data-device="android"] .phone-frame {
  border-radius: 36px;
}

[data-device="android"] .phone-screen {
  border-radius: 28px;
}

[data-device="android"] .phone-island {
  width: 10px;
  height: 10px;
  top: 12px;
  border-radius: 50%;
}

[data-device="android"] .icon-grid i,
[data-device="android"] .icon-dock i {
  border-radius: 50%;
}

.swipe-cue {
  min-height: 34px;
  margin: 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--dim);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}

.swipe-cue span {
  color: var(--gold);
  font-size: 15px;
}

.theme-panel {
  min-width: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-cool);
  padding: 30px 0 32px;
}

.theme-counter {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-pale);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: .17em;
}

.theme-counter i {
  width: 28px;
  height: 1px;
  display: block;
  margin: 0 3px;
  background: var(--line);
}

.theme-panel h2 {
  margin: 15px 0 0;
  max-width: 12ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}

.theme-focal {
  min-height: 18px;
  margin: 14px 0 0;
  color: var(--dim);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .13em;
}

.mode-section {
  margin-top: 30px;
}

.mode-toggle,
.device-toggle {
  width: max-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  border: 1px solid var(--line-cool);
  padding: 3px;
  background: #080a0d;
}

.mode-toggle button,
.device-toggle button {
  min-width: 0;
  min-height: 46px;
  appearance: none;
  border: 1px solid transparent;
  padding: 0 17px;
  color: var(--dim);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .17em;
  transition: color 170ms ease, border-color 170ms ease, background 170ms ease;
}

.mode-toggle button[aria-pressed="true"],
.device-toggle button[aria-pressed="true"] {
  border-color: rgba(199, 163, 94, .65);
  color: var(--gold-pale);
  background: rgba(199, 163, 94, .06);
}

#mode-copy {
  min-height: 46px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.download-actions {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.download-button,
.complete-download {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line-cool);
  padding: 13px 16px;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.download-button span,
.complete-download span {
  font-size: 12px;
  font-weight: 650;
}

.download-button small,
.complete-download small {
  color: var(--dim);
  text-align: right;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.download-button:hover,
.complete-download:hover {
  border-color: rgba(199, 163, 94, .68);
  color: var(--gold-pale);
  background: rgba(199, 163, 94, .035);
}

.download-button--primary {
  border-color: var(--gold-pale);
  color: #090a0b;
  background: var(--gold-pale);
}

.download-button--primary small {
  color: rgba(9, 10, 11, .62);
}

.download-button--primary:hover {
  border-color: #f0dda9;
  color: #050607;
  background: #f0dda9;
}

.theme-navigation {
  margin: 26px 0;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 13px;
}

.arrow-button {
  width: 48px;
  height: 48px;
  appearance: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-cool);
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: color 170ms ease, border-color 170ms ease;
}

.arrow-button:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

.arrow-button:disabled {
  opacity: .38;
  cursor: not-allowed;
}

.theme-dots {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 1vw, 9px);
}

.theme-dots button {
  width: 28px;
  height: 44px;
  position: relative;
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.theme-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #5e6163;
  transition: width 190ms var(--ease), border-radius 190ms var(--ease), background 190ms ease;
}

.theme-dots button.is-active::before {
  width: 20px;
  border-radius: 8px;
  background: var(--gold-pale);
}

.complete-download {
  border-color: rgba(199, 163, 94, .46);
}

.gift-line,
.gallery-error {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 10px;
  line-height: 1.6;
}

.gallery-error {
  color: var(--gold-pale);
}

.install-guide {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 122px) 0;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(360px, 1fr);
  gap: clamp(48px, 9vw, 118px);
  border-top: 1px solid var(--line);
}

.guide-heading h2 {
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}

.guide-heading > p:last-child {
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.guide-content {
  min-width: 0;
}

.device-toggle {
  margin-bottom: 28px;
}

.device-guide h3 {
  margin: 0 0 20px;
  color: var(--gold-pale);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .2em;
}

.device-guide ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
  counter-reset: guide;
}

.device-guide li {
  min-height: 52px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line-cool);
  color: var(--muted);
  font-size: 13px;
  counter-increment: guide;
}

.device-guide li:last-child {
  border-bottom: 1px solid var(--line-cool);
}

.device-guide li::before {
  content: "0" counter(guide);
  color: var(--gold);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}

.device-guide strong {
  color: var(--ink);
  font-weight: 600;
}

.device-tip {
  margin: 18px 0 0;
  color: var(--dim);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.noscript-note {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto 64px;
  border: 1px solid var(--line);
  padding: 22px;
  color: var(--muted);
  text-align: center;
}

.noscript-note a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  border: 1px solid var(--gold);
  padding: 0 16px;
  color: var(--gold-pale);
  text-decoration: none;
}

.drop-footer {
  min-height: 150px;
  padding: 45px max(22px, env(safe-area-inset-right)) calc(36px + env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line-cool);
  color: var(--dim);
  text-align: center;
  font-size: 11px;
}

.drop-footer p {
  margin: 0;
}

.drop-footer strong {
  color: var(--muted);
  font-weight: 600;
}

.drop-footer a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: var(--gold-pale);
  text-decoration: none;
  letter-spacing: .08em;
}

.download-toast {
  position: fixed;
  z-index: 80;
  right: max(18px, env(safe-area-inset-right));
  bottom: calc(18px + env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  max-width: 430px;
  min-height: 48px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199, 163, 94, .7);
  padding: 11px 16px;
  color: var(--ink);
  background: rgba(10, 12, 15, .96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .44);
  text-align: center;
  font-size: 11px;
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 260ms var(--ease), visibility 200ms ease;
}

.download-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media (max-width: 1160px) {
  .release {
    width: min(920px, 100%);
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .release-copy {
    position: static;
    max-width: 650px;
  }

  .release-copy h1 {
    font-size: clamp(76px, 12vw, 118px);
  }

  .gallery-shell {
    grid-template-columns: minmax(270px, .82fr) minmax(320px, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 62px;
  }

  .drop-header {
    grid-template-columns: 1fr auto;
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .header-mark {
    display: none;
  }

  .studio-brand {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .studio-return {
    font-size: 9px;
  }

  .release {
    min-height: 0;
    padding: 54px max(18px, env(safe-area-inset-right)) 86px max(18px, env(safe-area-inset-left));
    gap: 68px;
  }

  .release-copy {
    max-width: 100%;
  }

  .free-mark {
    margin: 22px 0 26px;
  }

  .release-copy h1 {
    font-size: clamp(61px, 20vw, 86px);
  }

  .edition-title {
    margin-top: 17px;
    font-size: 11px;
    letter-spacing: .17em;
  }

  .release-lead {
    margin-top: 26px;
    font-size: 15px;
    line-height: 1.72;
  }

  .explore-button {
    width: 100%;
    min-height: 54px;
    margin-top: 28px;
  }

  .release-facts {
    margin-top: 32px;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .phone-frame {
    width: min(82vw, 332px);
  }

  .theme-panel {
    padding-top: 27px;
  }

  .theme-panel h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .mode-toggle {
    width: 100%;
  }

  .mode-toggle button {
    min-height: 49px;
  }

  #mode-copy {
    min-height: 42px;
  }

  .download-button,
  .complete-download {
    min-height: 62px;
  }

  .install-guide {
    width: min(100% - 36px, 620px);
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 76px 0 84px;
  }

  .guide-heading h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .device-toggle {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .studio-brand > span:last-child {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .phone-frame {
    width: min(84vw, 292px);
    border-width: 6px;
    border-radius: 40px;
  }

  .phone-screen {
    border-radius: 32px;
  }

  .download-button,
  .complete-download {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
  }

  .download-button small,
  .complete-download small {
    text-align: left;
  }

  .theme-navigation {
    gap: 6px;
  }

  .theme-dots {
    gap: 1px;
  }

  .theme-dots button {
    width: 23px;
  }
}

@media (min-width: 1600px) {
  .release {
    grid-template-columns: 400px minmax(720px, 1fr);
  }

  .gallery-shell {
    grid-template-columns: 370px minmax(360px, 440px);
    justify-content: end;
  }
}

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

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

@media (forced-colors: active) {
  .phone-frame,
  .mode-toggle,
  .device-toggle,
  .download-button,
  .complete-download,
  .arrow-button {
    border: 1px solid CanvasText;
  }

  .theme-dots button::before {
    background: CanvasText;
  }
}
