:root {
  color-scheme: dark;
  --bg-primary: #07070a;
  --bg-surface: #15131a;
  --bg-elevated: #211d28;
  --bg-live-subtle: #2a220f;
  --text-primary: #f7f2ff;
  --text-secondary: #b8b1c4;
  --text-tertiary: #91899f;
  --text-inverse: #09080b;
  --accent-primary: #ffb000;
  --accent-live: #ffcf4a;
  --accent-actual: #5ca7ff;
  --accent-possible: #b86bff;
  --accent-edited: #e8d7ff;
  --border-subtle: #2e2938;
  --border-strong: #4a4158;
  --accent: #f2a900;
  --accent-text: #09080b;
  --content: 1240px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 300ms;
  --duration-normal: 520ms;
  --duration-slow: 900ms;
  font-family: var(--font);
  font-synthesis: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #f2a900;
    --accent-text: #09080b;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg-primary);
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: clip;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 8%, rgb(255 176 0 / 0.075), transparent 30rem),
    radial-gradient(circle at 10% 56%, rgb(255 176 0 / 0.03), transparent 34rem),
    var(--bg-primary);
  content: "";
  pointer-events: none;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

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

:focus-visible {
  outline: 3px solid var(--accent-live);
  outline-offset: 4px;
  border-radius: 8px;
}

::selection {
  background: var(--accent-primary);
  color: var(--text-inverse);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 70;
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--text-primary);
  color: var(--text-inverse);
  font-weight: 760;
  transform: translateY(-160%);
}

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

.header-inner,
.section-shell,
.page-shell,
.footer-inner {
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
}

/* Navigation glass is functional chrome, not a content treatment. */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  height: 68px;
  border-bottom: 1px solid rgb(247 242 255 / 0.08);
  background:
    linear-gradient(135deg, rgb(247 242 255 / 0.085), transparent 42%),
    rgb(7 7 10 / 0.72);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  box-shadow: inset 0 1px 0 rgb(247 242 255 / 0.08);
}

.header-inner {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text-primary);
  font-weight: 740;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 18px;
  height: 25px;
  flex: 0 0 auto;
  border: 3px solid var(--accent-primary);
  border-radius: 7px;
  transform: rotate(8deg);
}

.brand-mark::after {
  position: absolute;
  top: 8px;
  right: -5px;
  width: 4px;
  height: 5px;
  border-radius: 2px;
  background: var(--accent-live);
  content: "";
}

.header-navigation,
.primary-nav,
.footer-nav {
  display: flex;
  align-items: center;
}

.header-navigation {
  gap: 10px;
}

.primary-nav,
.footer-nav {
  gap: 2px;
}

.nav-divider {
  width: 1px;
  height: 22px;
  margin-inline: 5px;
  background: rgb(247 242 255 / 0.14);
}

.primary-nav a {
  position: relative;
  padding: 8px 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.primary-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 2px;
  left: 10px;
  height: 2px;
  background: var(--accent-primary);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  box-shadow: 0 0 14px rgb(255 176 0 / 0.22);
  transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.primary-nav a[aria-current="location"],
.primary-nav a.is-active {
  color: var(--text-primary);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after,
.primary-nav a[aria-current="location"]::after,
.primary-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav a:active,
.footer-nav a:active,
.footer-group a:active,
.text-link:active {
  transform: translateY(1px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid rgb(255 255 255 / 0.3);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.5),
    0 14px 38px rgb(0 0 0 / 0.24);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition: transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out), background 360ms var(--ease-out);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-live), var(--accent-primary) 64%);
  color: var(--text-inverse);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffe08a, var(--accent-live) 62%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.68),
    0 18px 52px rgb(255 176 0 / 0.2);
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button-compact {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

/* CSS icon primitives keep the static site dependency-free. */

.icon,
.tab-icon,
.search-symbol {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: currentColor;
}

.icon-add::before,
.icon-add::after {
  position: absolute;
  top: 8px;
  left: 3px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.icon-add::after {
  transform: rotate(90deg);
}

.search-symbol::before,
.tab-icon-search::before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  content: "";
}

.search-symbol::after,
.tab-icon-search::after {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 7px;
  height: 1.8px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: right center;
}

.tab-icon-browse::before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 5px;
  height: 5px;
  border: 1.4px solid currentColor;
  border-radius: 1.5px;
  box-shadow:
    7px 0 0 -1.4px var(--bg-elevated),
    7px 0 0 0 currentColor,
    0 7px 0 -1.4px var(--bg-elevated),
    0 7px 0 0 currentColor,
    7px 7px 0 -1.4px var(--bg-elevated),
    7px 7px 0 0 currentColor;
  content: "";
}

.icon-filter::before,
.icon-filter::after {
  position: absolute;
  left: 2px;
  width: 14px;
  height: 1.7px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
  content: "";
}

.icon-filter::after {
  top: -2px;
  left: 5px;
  width: 3px;
  height: 3px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: var(--bg-elevated);
  box-shadow: 5px 6px 0 -1px var(--bg-elevated), 5px 6px 0 0 currentColor, -1px 12px 0 -1px var(--bg-elevated), -1px 12px 0 0 currentColor;
}

.icon-back::before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.icon-bookmark {
  width: 14px;
  height: 17px;
  border: 1.7px solid currentColor;
  border-radius: 3px 3px 1px 1px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 74%, 0 100%);
}

.icon-watch {
  width: 13px;
  height: 18px;
  border: 1.7px solid currentColor;
  border-radius: 5px;
}

.icon-watch::before,
.icon-watch::after {
  position: absolute;
  left: 3px;
  width: 5px;
  height: 4px;
  border: 1.5px solid currentColor;
  content: "";
}

.icon-watch::before {
  top: -5px;
  border-radius: 2px 2px 0 0;
}

.icon-watch::after {
  bottom: -5px;
  border-radius: 0 0 2px 2px;
}

.tab-icon-shows {
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.tab-icon-shows::before {
  position: absolute;
  top: 4px;
  right: 2px;
  left: 2px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
  content: "";
}

.tab-icon-settings {
  border: 1.5px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--bg-elevated);
}

.tab-icon-settings::before,
.tab-icon-settings::after {
  position: absolute;
  top: -3px;
  left: 7px;
  width: 2px;
  height: 22px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.tab-icon-settings::after {
  transform: rotate(90deg);
}

/* Homepage */

.home-page main {
  position: relative;
  isolation: isolate;
}

.home-page {
  timeline-scope: --home-nav, --find-nav, --review-nav, --watch-nav, --wristband-nav;
}

.hero-cinema {
  position: relative;
  min-height: 146svh;
  overflow: clip;
  view-timeline-name: --home-nav;
  view-timeline-axis: block;
}

.hero-sticky {
  position: sticky;
  top: 68px;
  display: grid;
  min-height: calc(100svh - 68px);
  grid-template-columns: minmax(360px, 0.84fr) minmax(610px, 1.16fr);
  align-items: center;
  gap: clamp(44px, 5.5vw, 88px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 520px;
  transform-origin: left center;
}

.hero-copy h1 {
  max-width: 10.75ch;
  margin-bottom: 28px;
  font-size: clamp(52px, 4.7vw, 68px);
  font-weight: 660;
  letter-spacing: -0.047em;
  line-height: 1.01;
}

.hero-copy > p {
  max-width: 38ch;
  margin-bottom: 34px;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.6;
}

.stage-light {
  position: absolute;
  top: -38svh;
  width: 70vw;
  height: 145svh;
  filter: blur(8px);
  opacity: 0.82;
  pointer-events: none;
  transform-origin: top center;
}

.stage-light-one {
  left: 44%;
  background: linear-gradient(104deg, transparent 35%, rgb(255 176 0 / 0.13) 48%, transparent 62%);
  transform: rotate(-7deg);
}

.stage-light-two {
  right: -25%;
  background: linear-gradient(80deg, transparent 37%, rgb(92 167 255 / 0.05) 50%, transparent 64%);
  opacity: 0.52;
  transform: rotate(10deg);
}

.venue-haze {
  position: absolute;
  right: 4%;
  bottom: -18%;
  width: 62vw;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgb(255 176 0 / 0.16), rgb(255 176 0 / 0.03) 42%, transparent 70%);
  filter: blur(32px);
  pointer-events: none;
}

.paired-devices {
  position: relative;
  display: grid;
  min-height: 730px;
  place-items: center;
  perspective: 1450px;
  perspective-origin: 58% 42%;
}

.phone-device {
  position: absolute;
  width: 374px;
  filter: drop-shadow(0 32px 26px rgb(0 0 0 / 0.32));
  scale: 1;
  transform-style: preserve-3d;
  transition: scale var(--duration-slow) var(--ease-out);
}

.hero-phone {
  left: -3%;
  z-index: 2;
  transform: rotateX(0.75deg) rotateY(8deg) rotateZ(-1deg) translateZ(-24px);
}

.phone-shell {
  position: relative;
  aspect-ratio: 0.49;
  padding: 10px;
  border: 1px solid #716c78;
  border-radius: 54px;
  background:
    linear-gradient(104deg, rgb(255 255 255 / 0.2), transparent 8% 72%, rgb(255 255 255 / 0.06) 86%, transparent),
    linear-gradient(145deg, #5a5561, #17151a 25%, #39353e 66%, #0b0a0d);
  box-shadow:
    inset 1px 1px 0 rgb(255 255 255 / 0.18),
    inset -2px -2px 3px rgb(0 0 0 / 0.62),
    -8px 11px 0 -2px #0b0a0d,
    -16px 24px 42px rgb(0 0 0 / 0.42),
    0 58px 128px rgb(0 0 0 / 0.56);
  transform-style: preserve-3d;
}

.phone-shell::before {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 4;
  width: 94px;
  height: 27px;
  border-radius: 18px;
  background: #050507;
  content: "";
  box-shadow: inset 0 -1px 0 rgb(255 255 255 / 0.045), 0 1px 4px rgb(0 0 0 / 0.74);
  transform: translateX(-50%) translateZ(5px);
}

.phone-shell::after {
  position: absolute;
  inset: -2px;
  z-index: -1;
  border: 1px solid #2e2a33;
  border-radius: 56px;
  background:
    linear-gradient(264deg, #111015, #514c57 34%, #19171d 75%),
    #17151a;
  box-shadow: -10px 14px 24px rgb(0 0 0 / 0.48);
  content: "";
  transform: translate3d(-10px, 8px, -22px);
}

.phone-screen {
  position: relative;
  z-index: 2;
  isolation: isolate;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgb(247 242 255 / 0.07);
  border-radius: 44px;
  background: #07070a;
  box-shadow:
    inset 0 0 0 1px rgb(0 0 0 / 0.88),
    inset 0 0 18px rgb(0 0 0 / 0.48),
    inset 8px 0 18px rgb(255 255 255 / 0.012),
    0 0 0 1px rgb(0 0 0 / 0.62);
  transform: translateZ(3px);
}

.phone-screen::before {
  position: absolute;
  inset: 0;
  z-index: 7;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgb(176 191 211 / 0.022), transparent 33%, rgb(0 0 0 / 0.075)),
    radial-gradient(ellipse at 18% 0%, rgb(255 255 255 / 0.035), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.07),
    inset 0 0 22px rgb(0 0 0 / 0.2),
    inset -9px 0 18px rgb(0 0 0 / 0.13);
  content: "";
  pointer-events: none;
}

.phone-screen::after {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -18%;
  z-index: 8;
  width: 36%;
  background: linear-gradient(100deg, transparent 8%, rgb(224 235 247 / 0.04) 48%, transparent 88%);
  content: "";
  opacity: 0.3;
  pointer-events: none;
  transform: translateX(0) rotate(7deg);
}

.phone-status {
  display: flex;
  height: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 28px 0;
  color: var(--text-primary);
  font-size: 9px;
  font-weight: 720;
}

.phone-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 5px 22px 12px;
}

.phone-toolbar > strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

/* App-faithful phone screenshot */
.phone-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.round-control,
.glass-control {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgb(247 242 255 / 0.16);
  background:
    linear-gradient(135deg, rgb(247 242 255 / 0.16), transparent 62%),
    rgb(33 29 40 / 0.78);
  box-shadow: inset 0 1px 0 rgb(247 242 255 / 0.15);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.round-control {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--accent-live);
}

.app-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 9px;
  font-size: 13px;
}

.app-section-heading span {
  color: var(--text-tertiary);
  font-size: 9px;
}

.past-heading {
  padding-top: 22px;
}

.app-list {
  margin-inline: 18px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: rgb(21 19 26 / 0.86);
}

.app-list-compact .app-row {
  min-height: 76px;
}

.app-row {
  position: relative;
  display: grid;
  min-height: 86px;
  grid-template-columns: 42px minmax(0, 1fr) 10px;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
}

.app-row + .app-row::before {
  position: absolute;
  top: 0;
  right: 14px;
  left: 68px;
  height: 1px;
  background: var(--border-subtle);
  content: "";
}

.app-row.selected {
  background: linear-gradient(90deg, rgb(255 176 0 / 0.16), transparent 88%);
}

.app-row.selected::after {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--accent-primary);
  content: "";
}

.app-row time,
.search-result time {
  display: grid;
  justify-items: center;
  line-height: 1;
}

.app-row time b,
.search-result time b {
  color: var(--accent-live);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.app-row time strong {
  margin-top: 5px;
  font-size: 19px;
}

.app-row > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.app-row > div strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-row > div span,
.app-row em {
  color: var(--text-secondary);
  font-size: 9px;
  font-style: normal;
}

.app-tabbar {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  min-height: 64px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid rgb(247 242 255 / 0.16);
  border-radius: 25px;
  background:
    linear-gradient(135deg, rgb(247 242 255 / 0.14), transparent 50%),
    rgb(33 29 40 / 0.72);
  box-shadow: inset 0 1px 0 rgb(247 242 255 / 0.14), 0 12px 30px rgb(0 0 0 / 0.3);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.tab-item {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: var(--text-tertiary);
}

.tab-item b {
  font-size: 8px;
  font-weight: 620;
}

.tab-item.is-active {
  color: var(--accent-live);
}

.tab-icon {
  width: 16px;
  height: 16px;
}

.watch-screen {
  position: relative;
  z-index: 2;
  display: flex;
  isolation: isolate;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 25px 23px 22px;
  border: 0;
  border-radius: 53px;
  background:
    radial-gradient(ellipse at 70% -10%, rgb(164 172 182 / 0.032), transparent 40%),
    radial-gradient(ellipse at 50% 108%, rgb(255 176 0 / 0.045), transparent 44%),
    linear-gradient(155deg, rgb(8 8 9 / 0.94), rgb(4 4 5 / 0.975) 56%, rgb(2 2 3 / 0.99));
  box-shadow: inset 0 0 22px rgb(0 0 0 / 0.48);
  -webkit-mask-image: radial-gradient(ellipse 100% 98% at 50% 50%, #000 0 68%, rgb(0 0 0 / 0.97) 76%, rgb(0 0 0 / 0.78) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse 100% 98% at 50% 50%, #000 0 68%, rgb(0 0 0 / 0.97) 76%, rgb(0 0 0 / 0.78) 86%, transparent 100%);
  transform: translateZ(3px);
}

.watch-screen > * {
  z-index: 1;
}

.watch-screen::before {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgb(174 183 194 / 0.024), transparent 30%, rgb(0 0 0 / 0.13) 74%, rgb(0 0 0 / 0.26)),
    linear-gradient(90deg, rgb(0 0 0 / 0.66), rgb(0 0 0 / 0.18) 15%, transparent 26% 74%, rgb(0 0 0 / 0.2) 85%, rgb(0 0 0 / 0.68)),
    radial-gradient(ellipse at 68% -4%, rgb(255 255 255 / 0.028), transparent 40%);
  box-shadow:
    inset 0 0 4.2cqw rgb(0 0 0 / 0.62),
    inset 2.8cqw 0 4.2cqw -1.5cqw rgb(0 0 0 / 0.78),
    inset -2.8cqw 0 4.2cqw -1.5cqw rgb(0 0 0 / 0.8);
  content: "";
  pointer-events: none;
}

.watch-screen::after {
  position: absolute;
  top: -22%;
  bottom: -22%;
  left: -48%;
  z-index: 6;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(104deg, transparent 10%, rgb(210 220 232 / 0.055) 48%, transparent 88%);
  content: "";
  opacity: 0.2;
  pointer-events: none;
  transform: translateX(0) rotate(8deg);
}

.paired-devices:hover .hero-phone {
  scale: 1.012;
}

.paired-devices:hover .hero-watch {
  scale: 1.022;
}

.watch-context {
  display: grid;
  gap: 2px;
  margin: 0 4px 12px;
}

.watch-context strong {
  overflow: hidden;
  font-size: 9.5px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-context span {
  color: var(--text-tertiary);
  font-size: 8px;
}

.watch-song-card {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 16px 17px;
  overflow: hidden;
  border: 1px solid rgb(255 176 0 / 0.28);
  border-radius: 20px;
  background: linear-gradient(145deg, rgb(255 176 0 / 0.08), rgb(21 19 26 / 0.96) 54%);
}

.watch-song-card strong {
  max-width: 10ch;
  font-size: 24px;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.watch-song-card span {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 9px;
}

.watch-next {
  display: grid;
  gap: 2px;
  min-height: 44px;
  align-content: center;
  padding-inline: 5px;
}

.watch-next span {
  color: var(--accent-live);
  font-size: 7.5px;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.watch-next strong {
  overflow: hidden;
  font-size: 9.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-controls {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.5fr;
  gap: 7px;
  margin-top: auto;
}

.watch-controls span,
.watch-controls strong {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: 7.5px;
  font-style: normal;
  font-weight: 720;
}

.watch-controls strong {
  border-color: rgb(255 176 0 / 0.58);
  background: var(--accent-primary);
  color: var(--text-inverse);
}

.watch-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding-inline: 3px;
  color: var(--text-tertiary);
  font-size: 7px;
  font-variant-numeric: tabular-nums;
}

.watch-progress i {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--border-strong);
}

.watch-progress i::after {
  position: absolute;
  inset: 0;
  background: var(--accent-primary);
  content: "";
  transform: scaleX(0.214);
  transform-origin: left;
}

.hero-watch-screen .hero-song-two,
.hero-watch-screen .hero-position-three {
  opacity: 1;
}

/* Find */

.story-scene {
  position: relative;
  padding: clamp(112px, 12vw, 178px) 0;
  overflow: clip;
}

.story-copy,
.review-heading {
  position: relative;
  z-index: 3;
}

.scene-label,
.interior-kicker,
.page-kicker {
  margin-bottom: 16px;
  color: var(--accent-live);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-copy h2,
.review-heading h2 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.story-copy > p:not(.scene-label),
.review-heading > p:not(.scene-label) {
  max-width: 38ch;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.5vw, 19px);
}

.find-scene {
  view-timeline-name: --find-nav;
  view-timeline-axis: block;
  background:
    radial-gradient(ellipse at 86% 48%, rgb(255 176 0 / 0.11), transparent 38%),
    linear-gradient(180deg, transparent, rgb(21 19 26 / 0.22), transparent);
}

.story-layout {
  display: block;
}

.search-stage {
  width: min(100%, 1080px);
  margin-inline: auto;
}

.app-stage {
  position: relative;
  padding: clamp(20px, 3vw, 38px);
  border: 1px solid rgb(247 242 255 / 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgb(247 242 255 / 0.075), transparent 34%),
    rgb(15 14 18 / 0.92);
  box-shadow:
    inset 0 1px 0 rgb(247 242 255 / 0.09),
    0 34px 90px rgb(0 0 0 / 0.36);
  transform: perspective(1600px) rotateX(0.5deg);
  transform-origin: center;
}

.app-stage-toolbar,
.result-context,
.group-heading,
.handoff-header,
.watch-handoff,
.show-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-stage-toolbar {
  margin-bottom: 18px;
}

.app-stage-toolbar > strong {
  font-size: clamp(23px, 2vw, 30px);
  letter-spacing: -0.035em;
}

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

.icon-control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-primary);
}

.app-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-subtle);
  background: rgb(21 19 26 / 0.9);
  color: var(--text-tertiary);
}

.app-search-large {
  min-height: 54px;
  padding-inline: 17px;
  border-radius: 14px;
  font-size: 14px;
}

.app-search-large strong {
  color: var(--text-primary);
}

.filter-chips {
  display: flex;
  gap: 7px;
  padding-block: 16px 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chips span {
  padding: 7px 11px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 11px;
  white-space: nowrap;
}

.filter-chips .is-selected {
  border-color: rgb(255 176 0 / 0.55);
  background: var(--bg-live-subtle);
  color: var(--accent-live);
}

.result-context {
  padding: 18px 4px 11px;
}

.result-context strong {
  font-size: 14px;
}

.result-context span {
  color: var(--text-tertiary);
  font-size: 12px;
}

.search-results {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: rgb(21 19 26 / 0.86);
}

.search-result {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) minmax(120px, auto);
  min-height: 94px;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  transition: background-color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.search-result + .search-result::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 95px;
  height: 1px;
  background: var(--border-subtle);
  content: "";
}

.search-result:hover {
  background: rgb(247 242 255 / 0.045);
}

.selected-result {
  background: linear-gradient(90deg, rgb(255 176 0 / 0.15), rgb(255 176 0 / 0.025) 74%);
}

.selected-result::after {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--accent-primary);
  content: "";
}

.search-result time strong {
  margin-top: 7px;
  font-size: 26px;
}

.search-result > span {
  display: grid;
  gap: 4px;
}

.search-result > span strong {
  font-size: clamp(16px, 1.55vw, 20px);
  letter-spacing: -0.02em;
}

.search-result small,
.search-result em {
  color: var(--text-secondary);
  font-size: 13px;
  font-style: normal;
}

.search-result em {
  text-align: right;
}

/* Show review */

.review-scene {
  view-timeline-name: --review-nav;
  view-timeline-axis: block;
  background:
    radial-gradient(ellipse at 35% 48%, rgb(255 176 0 / 0.07), transparent 42%),
    linear-gradient(180deg, transparent, rgb(21 19 26 / 0.2) 52%, transparent);
}

.review-heading {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.review-heading h2 {
  max-width: 12ch;
}

.show-overview {
  width: min(calc(100% - 64px), 1120px);
  overflow: hidden;
  border: 1px solid rgb(247 242 255 / 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgb(247 242 255 / 0.055), transparent 32%),
    rgb(14 13 17 / 0.95);
  box-shadow: inset 0 1px 0 rgb(247 242 255 / 0.08), 0 40px 100px rgb(0 0 0 / 0.34);
}

.show-toolbar {
  min-height: 62px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border-subtle);
  background:
    linear-gradient(135deg, rgb(247 242 255 / 0.08), transparent 44%),
    rgb(33 29 40 / 0.55);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.show-toolbar > strong {
  font-size: 14px;
}

.show-toolbar-actions {
  display: inline-flex;
  min-width: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--accent-live);
  font-size: 12px;
  font-weight: 650;
}

.toolbar-back,
.toolbar-save {
  display: inline-flex;
  min-width: auto;
  align-items: center;
  gap: 7px;
  color: var(--accent-live);
  font-size: 12px;
  font-weight: 650;
}

.toolbar-save {
  justify-content: flex-end;
  padding: 8px 12px;
  border: 1px solid rgb(255 176 0 / 0.24);
  border-radius: 999px;
  background: rgb(255 176 0 / 0.08);
}

.show-identity {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  min-height: 270px;
  align-items: stretch;
  border-bottom: 1px solid var(--border-subtle);
}

.artist-monogram {
  position: relative;
  display: grid;
  min-height: 270px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(125deg, transparent 8%, rgb(255 176 0 / 0.14) 8% 10%, transparent 10% 27%, rgb(255 176 0 / 0.08) 27% 31%, transparent 31%),
    radial-gradient(circle at 68% 42%, rgb(255 176 0 / 0.23), transparent 38%),
    linear-gradient(145deg, #2a1b0a, #0a090d 68%);
}

.artist-monogram::before,
.artist-monogram::after {
  position: absolute;
  border: 1px solid rgb(255 176 0 / 0.22);
  border-radius: 50%;
  content: "";
}

.artist-monogram::before {
  width: 170px;
  height: 170px;
  transform: translate(-30%, 34%);
}

.artist-monogram::after {
  width: 300px;
  height: 300px;
  transform: translate(40%, -42%);
}

.artist-monogram span {
  position: relative;
  z-index: 2;
  color: var(--accent-live);
  font-size: clamp(46px, 6vw, 90px);
  font-weight: 820;
  letter-spacing: -0.085em;
  opacity: 0.84;
  transform: skewY(-6deg);
}

.show-identity > div:last-child {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(32px, 5vw, 70px);
}

.show-identity h3 {
  max-width: 18ch;
  margin-bottom: 10px;
  font-size: clamp(31px, 3.4vw, 48px);
  font-weight: 660;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.show-identity p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.show-metadata {
  display: grid;
  width: min(100%, 580px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 0;
}

.show-metadata div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgb(247 242 255 / 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(247 242 255 / 0.045), rgb(16 15 20 / 0.78));
}

.show-metadata dt {
  color: var(--text-tertiary);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.show-metadata dd {
  color: var(--text-primary);
  font-size: 14px;
}

.overview-columns {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
}

.lineup-group {
  border-right: 1px solid var(--border-subtle);
}

.lineup-group,
.setlist-group {
  min-width: 0;
}

.group-heading {
  min-height: 68px;
  padding: 17px 22px;
}

.group-heading h3 {
  margin-bottom: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.setlist-heading h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setlist-heading .button {
  min-height: 40px;
}

.playlist-action {
  color: var(--text-secondary);
}

.playlist-action strong {
  color: var(--text-primary);
}

.playlist-action small {
  color: var(--text-tertiary);
  font-size: 11px;
}

.source-cue {
  flex: 0 0 auto;
  color: var(--accent-actual);
  font-size: 11px;
  font-weight: 680;
}

.lineup-row,
.quiet-action {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
}

.lineup-row::before,
.quiet-action::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 1px;
  background: var(--border-subtle);
  content: "";
}

.lineup-row.active {
  background: linear-gradient(90deg, rgb(255 176 0 / 0.11), transparent 84%);
}

.lineup-row.active::after {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 0;
  width: 2px;
  background: var(--accent-primary);
  content: "";
}

.lineup-row > span {
  display: grid;
  gap: 3px;
}

.lineup-row small {
  color: var(--text-tertiary);
  font-size: 11px;
}

.lineup-row em,
.quiet-action em {
  color: var(--text-secondary);
  font-size: 11px;
  font-style: normal;
}

.quiet-action {
  min-height: 66px;
  color: var(--text-secondary);
  font-size: 13px;
}

.quiet-action:hover {
  color: var(--text-primary);
}

.song-list,
.watch-setlist ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.song-list li,
.watch-setlist li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  min-height: 55px;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
}

.song-list li + li::before,
.watch-setlist li + li::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 76px;
  height: 1px;
  background: var(--border-subtle);
  content: "";
}

.song-list li > span,
.watch-setlist li > span {
  color: var(--text-tertiary);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.song-list li > strong,
.watch-setlist li > strong {
  font-size: 13px;
}

.source-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 22px 17px;
  color: var(--text-tertiary);
  font-size: 10px;
}

.source-note span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-actual);
}

.watch-handoff {
  min-height: 84px;
  padding: 16px 22px;
}

.watch-handoff > div {
  display: grid;
  gap: 2px;
}

.watch-handoff > div strong {
  font-size: 14px;
}

.watch-handoff > div span {
  color: var(--text-secondary);
  font-size: 12px;
}

/* Tall watch scene uses the section view timeline as a truthful manual progression demo. */

.watch-story {
  position: relative;
  min-height: 285svh;
  view-timeline-name: --watch-story, --watch-nav;
  view-timeline-axis: block;
}

.watch-story::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 48%, rgb(255 176 0 / 0.15), rgb(255 176 0 / 0.025) 38%, transparent 66%),
    linear-gradient(180deg, transparent, rgb(21 19 26 / 0.2) 45%, transparent);
  content: "";
  pointer-events: none;
}

.watch-story-sticky {
  position: sticky;
  top: 68px;
  display: grid;
  min-height: calc(100svh - 68px);
  grid-template-columns: minmax(300px, 0.82fr) minmax(390px, 1.15fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
}

.watch-setlist {
  overflow: hidden;
  border: 1px solid rgb(247 242 255 / 0.11);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgb(247 242 255 / 0.055), transparent 38%),
    rgb(21 19 26 / 0.84);
  box-shadow: inset 0 1px 0 rgb(247 242 255 / 0.07);
  transform: perspective(1200px) rotateY(7deg) translateX(-3%);
}

.handoff-header {
  min-height: 72px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.handoff-header strong {
  font-size: 13px;
}

.handoff-header span {
  color: var(--text-tertiary);
  font-size: 10px;
}

.watch-setlist li {
  min-height: 68px;
}

.watch-setlist li > em {
  background-color: transparent !important;
  color: var(--accent-live);
  font-size: 9px;
  font-style: normal;
  font-weight: 720;
  opacity: 0;
}

.watch-row-two {
  background-color: rgb(255 176 0 / 0.13);
  box-shadow: inset 3px 0 0 var(--accent-primary);
}

.watch-row-two > em {
  opacity: 1;
}

.watch-centerpiece {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  perspective: 1500px;
}

.watch-device-large {
  position: relative;
  width: min(390px, 31vw);
  transform: rotateX(4deg) rotateY(-4deg) rotateZ(1deg);
}

.watch-device-large .watch-screen {
  border-radius: 62px;
}

.watch-device-large .watch-song-card strong {
  font-size: clamp(24px, 2.55vw, 36px);
}

.watch-device-large .watch-song-card {
  min-height: 132px;
}

.watch-device-large .watch-screen {
  padding: 31px 24px 23px;
}

.watch-device-large .watch-context {
  margin-inline: 10px;
}

.watch-device-large .watch-song-card span {
  font-size: clamp(9px, 0.9vw, 13px);
}

.watch-device-large .watch-controls span,
.watch-device-large .watch-controls strong {
  min-height: 45px;
  font-size: clamp(8px, 0.75vw, 11px);
}

.watch-copy h2 {
  max-width: 8.5ch;
  font-size: clamp(40px, 4vw, 58px);
}

.offline-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--accent-live);
  font-size: 12px;
  font-weight: 680;
}

.watch-song-stack,
.watch-next-stack,
.progress-position {
  position: relative;
}

.watch-song-step,
.watch-next-step,
.progress-position b {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  opacity: 0;
}

.watch-song-step {
  padding: 16px 17px;
}

.watch-song-two,
.watch-next-two,
.position-three {
  opacity: 1;
}

.watch-next-step {
  padding-inline: 7px;
}

.progress-position {
  width: 8px;
  height: 12px;
}

.progress-position b {
  font-weight: 500;
}

/* Closing action */

.final-cinema {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  place-items: center;
  border-top: 1px solid rgb(247 242 255 / 0.07);
  view-timeline-name: --wristband-nav;
  view-timeline-axis: block;
}

.final-light {
  position: absolute;
  right: -8%;
  bottom: -48%;
  width: min(980px, 86vw);
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgb(255 176 0 / 0.23), rgb(255 176 0 / 0.045) 42%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.final-content {
  position: relative;
  z-index: 2;
}

.final-content h2 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(50px, 6.5vw, 88px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.final-content > p {
  max-width: 42ch;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.4vw, 19px);
}

.final-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 650;
  transition: color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.text-link:hover {
  color: var(--text-primary);
}

/* Interior pages */

.interior-page main {
  padding-top: 68px;
}

.page-shell {
  min-height: calc(100dvh - 68px);
  padding-block: clamp(92px, 11vw, 152px);
}

.interior-hero {
  max-width: 780px;
  margin-bottom: clamp(58px, 7vw, 96px);
}

.interior-hero h1,
.document h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.interior-hero > p:not(.interior-kicker),
.page-lede {
  max-width: 43ch;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.6vw, 20px);
}

.interior-page main.support-page-shell {
  padding-top: clamp(128px, 13vw, 176px);
}

.support-guide h2,
.faq-section h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.03em;
}

.support-guide {
  display: grid;
  gap: clamp(78px, 9vw, 112px);
}

.support-guide-wide {
  width: min(100%, 940px);
  margin-inline: auto;
}

.support-block > p {
  color: var(--text-secondary);
}

.support-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 7vw, 86px);
}

.support-features article {
  padding: 24px 0 28px;
  border-top: 1px solid var(--border-subtle);
}

.support-features h3 {
  margin-bottom: 7px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.support-features p {
  max-width: 34ch;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-accordion {
  display: grid;
  gap: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgb(247 242 255 / 0.11);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgb(247 242 255 / 0.04), transparent 38%),
    rgb(21 19 26 / 0.82);
}

.feature-accordion h2 {
  margin-bottom: 18px;
}

.feature-accordion details {
  border-top: 1px solid var(--border-subtle);
}

.feature-accordion details:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.feature-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  list-style: none;
}

.feature-accordion summary::-webkit-details-marker {
  display: none;
}

.feature-accordion summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--text-tertiary);
  transition: transform var(--duration-fast) var(--ease-out);
}

.feature-accordion details[open] summary::after {
  content: "\2212";
}

.feature-accordion details p {
  max-width: 52ch;
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.support-checklist,
.workflow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-checklist li,
.workflow-list li {
  position: relative;
  padding: 18px 0;
  color: var(--text-secondary);
}

.support-checklist li,
.workflow-list li {
  border-top: 1px solid var(--border-subtle);
}

.workflow-list li {
  display: grid;
  gap: 3px;
}

.workflow-list strong {
  color: var(--text-primary);
}

.workflow-list span {
  font-size: 14px;
}

.support-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 2px solid var(--accent-primary);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: 13px;
}

.faq-section {
  display: grid;
  gap: 0;
}

.faq-section h2 {
  margin-bottom: 18px;
}

.faq-section details {
  border-top: 1px solid var(--border-subtle);
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-section summary {
  position: relative;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

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

.faq-section summary::before,
.faq-section summary::after {
  position: absolute;
  top: 29px;
  right: 7px;
  width: 12px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--accent-live);
  content: "";
  transition: transform 360ms var(--ease-out);
}

.faq-section summary::after {
  transform: rotate(90deg);
}

.faq-section details[open] summary::after {
  transform: rotate(0deg);
}

.faq-section details p {
  max-width: 65ch;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(40px, 7vw, 76px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgb(247 242 255 / 0.11);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgb(247 242 255 / 0.045), transparent 38%),
    rgb(21 19 26 / 0.82);
}

.contact-details > p,
.privacy-panel p {
  color: var(--text-secondary);
}

.contact-details > p {
  max-width: 42ch;
  margin-bottom: 24px;
}

.contact-details h3 {
  margin: 42px 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.privacy-panel {
  align-self: stretch;
  padding-left: clamp(32px, 5vw, 56px);
  border-left: 1px solid var(--border-subtle);
}

.privacy-panel h2 {
  max-width: 9ch;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.privacy-panel p {
  max-width: 30ch;
  margin-bottom: 22px;
}

.privacy-panel .text-link {
  color: var(--accent-live);
}

.document-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 0.68fr);
  align-items: start;
  gap: clamp(50px, 9vw, 140px);
}

.document-meta {
  position: sticky;
  top: 112px;
  padding-top: 18px;
  color: var(--text-tertiary);
  font-size: 12px;
}

.privacy-shell {
  display: grid;
  gap: 44px;
  padding-top: 132px;
}

.document-meta p {
  margin-bottom: 8px;
}

.document-meta a,
.document a {
  color: var(--accent-live);
}

.document {
  max-width: 760px;
}

.document .page-lede {
  margin-bottom: 66px;
}

.document section {
  padding-block: 30px;
  border-top: 1px solid var(--border-subtle);
}

.document section h2 {
  margin-bottom: 13px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.document section p {
  color: var(--text-secondary);
}

.document section p:last-child {
  margin-bottom: 0;
}

.route-notice {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.route-notice div {
  max-width: 520px;
}

.route-notice h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.05em;
}

.route-notice p {
  margin-bottom: 26px;
  color: var(--text-secondary);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgb(247 242 255 / 0.08);
  background: rgb(7 7 10 / 0.84);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(170px, auto) minmax(360px, 1fr) auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  padding-block: 28px;
}

.footer-groups {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-group {
  display: grid;
  min-width: 128px;
  align-content: start;
  gap: 8px;
}

.footer-group strong {
  margin-bottom: 5px;
  color: var(--text-primary);
  font-size: 12px;
  letter-spacing: -0.01em;
}

.footer-group a {
  color: var(--text-secondary);
  font-size: 12px;
  transition: color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.footer-group a:hover,
.footer-group a[aria-current="page"] {
  color: var(--text-primary);
}

.footer-divider {
  width: 1px;
  background: var(--border-subtle);
}

.footer-copy {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 12px;
  text-align: right;
}

.footer-copy a:hover {
  color: var(--text-primary);
}

/* The homepage remains script-free; named view timelines keep its journey nav truthful. */

@supports (animation-timeline: view()) {
  .journey-nav a[href="#home"] {
    animation: nav-section-color linear both;
    animation-range: entry 0% exit 84%;
    animation-timeline: --home-nav;
  }

  .journey-nav a[href="#home"]::after {
    animation: nav-section-underline linear both;
    animation-range: entry 0% exit 84%;
    animation-timeline: --home-nav;
  }

  .journey-nav a[href="#find"] {
    animation: nav-section-color linear both;
    animation-range: entry 12% exit 88%;
    animation-timeline: --find-nav;
  }

  .journey-nav a[href="#find"]::after {
    animation: nav-section-underline linear both;
    animation-range: entry 12% exit 88%;
    animation-timeline: --find-nav;
  }

  .journey-nav a[href="#review"] {
    animation: nav-section-color linear both;
    animation-range: entry 12% exit 88%;
    animation-timeline: --review-nav;
  }

  .journey-nav a[href="#review"]::after {
    animation: nav-section-underline linear both;
    animation-range: entry 12% exit 88%;
    animation-timeline: --review-nav;
  }

  .journey-nav a[href="#watch"] {
    animation: nav-section-color linear both;
    animation-range: entry 5% exit 95%;
    animation-timeline: --watch-nav;
  }

  .journey-nav a[href="#watch"]::after {
    animation: nav-section-underline linear both;
    animation-range: entry 5% exit 95%;
    animation-timeline: --watch-nav;
  }

  .journey-nav a[href="#get-wristband"] {
    animation: nav-section-color linear both;
    animation-range: entry 12% exit 88%;
    animation-timeline: --wristband-nav;
  }

  .journey-nav a[href="#get-wristband"]::after {
    animation: nav-section-underline linear both;
    animation-range: entry 12% exit 88%;
    animation-timeline: --wristband-nav;
  }

  .journey-nav a:hover,
  .journey-nav a:hover::after {
    animation: none;
  }
}

.home-page:has(#home:target) .journey-nav a[href="#home"],
.home-page:has(#find:target) .journey-nav a[href="#find"],
.home-page:has(#review:target) .journey-nav a[href="#review"],
.home-page:has(#watch:target) .journey-nav a[href="#watch"],
.home-page:has(#get-wristband:target) .journey-nav a[href="#get-wristband"] {
  color: var(--text-primary);
}

.home-page:has(#home:target) .journey-nav a[href="#home"]::after,
.home-page:has(#find:target) .journey-nav a[href="#find"]::after,
.home-page:has(#review:target) .journey-nav a[href="#review"]::after,
.home-page:has(#watch:target) .journey-nav a[href="#watch"]::after,
.home-page:has(#get-wristband:target) .journey-nav a[href="#get-wristband"]::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Motion communicates hierarchy, browsing state, handoff, and manual cursor progression. */

@media (prefers-reduced-motion: no-preference) {
  .stage-light-one {
    animation: light-sway 16s ease-in-out infinite alternate;
  }

  .stage-light-two {
    animation: light-sway-secondary 20s ease-in-out infinite alternate;
  }

  .hero-copy {
    animation: hero-enter 1150ms var(--ease-out) both;
  }

  .hero-phone {
    animation:
      phone-enter 1300ms 120ms var(--ease-out) both,
      hero-phone-float 9.5s 1.5s ease-in-out infinite alternate;
  }

  .hero-watch {
    animation:
      watch-enter 1450ms 220ms var(--ease-out) both,
      hero-watch-float 10.5s 1.7s ease-in-out infinite alternate;
  }

  .phone-screen::after,
  .watch-screen::after {
    animation: screen-reflection 13s 1.8s ease-in-out infinite alternate;
  }

  @supports (animation-timeline: scroll()) {
    .hero-copy {
      animation: hero-copy-exit linear both;
      animation-range: 0 58svh;
      animation-timeline: scroll(root block);
    }

    .hero-phone {
      animation:
        phone-recede linear both,
        hero-phone-float 9.5s 1.5s ease-in-out infinite alternate;
      animation-range: 0 92svh, normal;
      animation-timeline: scroll(root block), auto;
    }

    .hero-watch {
      animation:
        watch-pull-forward linear both,
        hero-watch-float 10.5s 1.7s ease-in-out infinite alternate;
      animation-range: 0 98svh, normal;
      animation-timeline: scroll(root block), auto;
    }

    .hero-song-one,
    .hero-position-two {
      animation: hero-sequence-one linear both;
      animation-range: 0 96svh;
      animation-timeline: scroll(root block);
    }

    .hero-song-two,
    .hero-position-three {
      animation: hero-sequence-two linear both;
      animation-range: 0 96svh;
      animation-timeline: scroll(root block);
    }

    .hero-song-three,
    .hero-position-four {
      animation: hero-sequence-three linear both;
      animation-range: 0 96svh;
      animation-timeline: scroll(root block);
    }

    .hero-song-four,
    .hero-position-five {
      animation: hero-sequence-four linear both;
      animation-range: 0 96svh;
      animation-timeline: scroll(root block);
    }

    .hero-progress i::after {
      animation: hero-progress-live linear both;
      animation-range: 0 96svh;
      animation-timeline: scroll(root block);
    }

    .story-copy,
    .app-stage,
    .review-heading,
    .show-overview,
    .final-content {
      animation: reveal-story linear both;
      animation-range: entry 2% cover 42%;
      animation-timeline: view(block);
    }

    .search-result {
      animation: reveal-row linear both;
      animation-range: entry 6% cover 34%;
      animation-timeline: view(block);
    }

    .show-identity,
    .overview-columns,
    .watch-handoff {
      animation: reveal-story linear both;
      animation-range: entry 2% cover 40%;
      animation-timeline: view(block);
    }

    .watch-song-one,
    .watch-next-one,
    .position-two,
    .watch-row-one > em {
      animation: sequence-one linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .watch-song-two,
    .watch-next-two,
    .position-three,
    .watch-row-two > em {
      animation: sequence-two linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .watch-song-three,
    .watch-next-three,
    .position-four,
    .watch-row-three > em {
      animation: sequence-three linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .watch-song-four,
    .watch-next-four,
    .position-five,
    .watch-row-four > em {
      animation: sequence-four linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .watch-row-one {
      animation: row-sequence-one linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .watch-row-two {
      animation: row-sequence-two linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .watch-row-three {
      animation: row-sequence-three linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .watch-row-four {
      animation: row-sequence-four linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .live-progress i::after {
      animation: progress-live linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .watch-device-large {
      animation: watch-breathe linear both;
      animation-range: entry 100% exit 0%;
      animation-timeline: --watch-story;
    }

    .final-light {
      animation: final-light-rise linear both;
      animation-range: entry 0% cover 70%;
      animation-timeline: view(block);
    }
  }
}

@keyframes nav-section-color {
  0%, 7%, 93%, 100% { color: var(--text-secondary); }
  14%, 86% { color: var(--text-primary); }
}

@keyframes nav-section-underline {
  0%, 7%, 93%, 100% { opacity: 0; transform: scaleX(0.25); }
  14%, 86% { opacity: 1; transform: scaleX(1); }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes phone-enter {
  from { opacity: 0; transform: rotateX(2deg) rotateY(13deg) rotateZ(-1.8deg) translate3d(30px, 24px, -52px) scale(0.95); }
  to { opacity: 1; transform: rotateX(0.75deg) rotateY(8deg) rotateZ(-1deg) translateZ(-24px); }
}

@keyframes watch-enter {
  from { opacity: 0; transform: translate3d(24px, 28px, 30px) rotateZ(5deg) scale(0.95); }
  to { opacity: 1; transform: translateZ(82px) rotateZ(3deg); }
}

@keyframes hero-phone-float {
  0% { translate: 0 2px; }
  45% { translate: -2px -7px; }
  100% { translate: 2px -3px; }
}

@keyframes hero-watch-float {
  0% { translate: 0 4px; }
  42% { translate: 4px -8px; }
  100% { translate: -2px -4px; }
}

@keyframes screen-reflection {
  0%, 18% { opacity: 0.13; transform: translateX(0) rotate(8deg); }
  72%, 100% { opacity: 0.27; transform: translateX(42%) rotate(8deg); }
}

@keyframes hero-copy-exit {
  0%, 36% { filter: blur(0); opacity: 1; transform: scale(1); }
  100% { filter: blur(10px); opacity: 0.08; transform: scale(0.95); }
}

@keyframes phone-recede {
  0%, 26% { filter: blur(0); opacity: 1; transform: rotateX(0.75deg) rotateY(8deg) rotateZ(-1deg) translateZ(-24px) scale(1); }
  100% { filter: blur(6px); opacity: 0.2; transform: rotateX(0.5deg) rotateY(4deg) rotateZ(-0.5deg) translate3d(-8%, 2%, -165px) scale(0.84); }
}

@keyframes watch-pull-forward {
  0%, 24% { filter: blur(0); transform: translateZ(82px) rotateZ(3deg) scale(1); }
  74%, 100% { filter: blur(0); transform: translate3d(-8%, 1%, 140px) rotateZ(1deg) scale(1.08); }
}

@keyframes reveal-story {
  from { transform: translateY(36px); }
  to { transform: translateY(0); }
}

@keyframes reveal-row {
  from { transform: translateX(18px); }
  to { transform: translateX(0); }
}

@keyframes hero-sequence-one {
  0%, 18% { opacity: 1; }
  28%, 100% { opacity: 0; }
}

@keyframes hero-sequence-two {
  0%, 16% { opacity: 0; }
  26%, 43% { opacity: 1; }
  53%, 100% { opacity: 0; }
}

@keyframes hero-sequence-three {
  0%, 41% { opacity: 0; }
  51%, 69% { opacity: 1; }
  79%, 100% { opacity: 0; }
}

@keyframes hero-sequence-four {
  0%, 67% { opacity: 0; }
  77%, 100% { opacity: 1; }
}

@keyframes hero-progress-live {
  0%, 18% { transform: scaleX(0.143); }
  28%, 43% { transform: scaleX(0.214); }
  53%, 69% { transform: scaleX(0.286); }
  79%, 100% { transform: scaleX(0.357); }
}

@keyframes sequence-one {
  0%, 30% { opacity: 1; background-color: rgb(255 176 0 / 0.13); }
  36%, 100% { opacity: 0; background-color: transparent; }
}

@keyframes sequence-two {
  0%, 27% { opacity: 0; background-color: transparent; }
  34%, 50% { opacity: 1; background-color: rgb(255 176 0 / 0.13); }
  57%, 100% { opacity: 0; background-color: transparent; }
}

@keyframes sequence-three {
  0%, 48% { opacity: 0; background-color: transparent; }
  55%, 70% { opacity: 1; background-color: rgb(255 176 0 / 0.13); }
  77%, 100% { opacity: 0; background-color: transparent; }
}

@keyframes sequence-four {
  0%, 68% { opacity: 0; background-color: transparent; }
  76%, 100% { opacity: 1; background-color: rgb(255 176 0 / 0.13); }
}

@keyframes row-sequence-one {
  0%, 30% { background-color: rgb(255 176 0 / 0.13); box-shadow: inset 3px 0 0 var(--accent-primary); }
  36%, 100% { background-color: transparent; box-shadow: inset 3px 0 0 transparent; }
}

@keyframes row-sequence-two {
  0%, 27% { background-color: transparent; box-shadow: inset 3px 0 0 transparent; }
  34%, 50% { background-color: rgb(255 176 0 / 0.13); box-shadow: inset 3px 0 0 var(--accent-primary); }
  57%, 100% { background-color: transparent; box-shadow: inset 3px 0 0 transparent; }
}

@keyframes row-sequence-three {
  0%, 48% { background-color: transparent; box-shadow: inset 3px 0 0 transparent; }
  55%, 70% { background-color: rgb(255 176 0 / 0.13); box-shadow: inset 3px 0 0 var(--accent-primary); }
  77%, 100% { background-color: transparent; box-shadow: inset 3px 0 0 transparent; }
}

@keyframes row-sequence-four {
  0%, 68% { background-color: transparent; box-shadow: inset 3px 0 0 transparent; }
  76%, 100% { background-color: rgb(255 176 0 / 0.13); box-shadow: inset 3px 0 0 var(--accent-primary); }
}

@keyframes progress-live {
  0%, 30% { transform: scaleX(0.143); }
  36%, 50% { transform: scaleX(0.214); }
  57%, 70% { transform: scaleX(0.286); }
  77%, 100% { transform: scaleX(0.357); }
}

@keyframes watch-breathe {
  0% { transform: rotateX(4deg) rotateY(-6deg) rotateZ(1deg) scale(0.96); }
  48% { transform: rotateX(2deg) rotateY(-1deg) rotateZ(0deg) scale(1.03); }
  100% { transform: rotateX(4deg) rotateY(4deg) rotateZ(-1deg) scale(0.98); }
}

@keyframes final-light-rise {
  from { opacity: 0.35; transform: translateY(16%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes light-sway {
  from { opacity: 0.68; transform: rotate(-9deg) scaleX(0.96); }
  to { opacity: 0.9; transform: rotate(-4deg) scaleX(1.05); }
}

@keyframes light-sway-secondary {
  from { opacity: 0.44; transform: rotate(13deg) scaleX(0.92); }
  to { opacity: 0.68; transform: rotate(7deg) scaleX(1.06); }
}

@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;
  }

  .watch-story {
    min-height: auto;
    padding-block: 120px;
  }

  .watch-story-sticky {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .hero-phone,
  .hero-watch,
  .phone-screen::after,
  .watch-screen::after {
    animation: none !important;
    translate: none;
  }

  .paired-devices:hover .hero-phone,
  .paired-devices:hover .hero-watch {
    scale: 1;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .round-control,
  .glass-control,
  .app-tabbar,
  .show-toolbar {
    background: var(--bg-elevated);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 1120px) {
  .hero-sticky {
    grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1.28fr);
  }

  .phone-device {
    width: 350px;
  }

  .hero-watch {
    width: 260px;
  }

  .hero-watch .watch-screen {
    padding: 18px 15px 14px;
  }

  .hero-watch .watch-context {
    gap: 1px;
    margin-bottom: 9px;
  }

  .hero-watch .watch-context strong {
    font-size: 9px;
  }

  .hero-watch .watch-context span {
    font-size: 7px;
  }

  .hero-watch .watch-song-card {
    min-height: 96px;
    padding: 14px 15px;
  }

  .hero-watch .watch-song-card strong {
    font-size: 22px;
  }

  .hero-watch .watch-next {
    min-height: 38px;
  }

  .hero-watch .watch-controls span,
  .hero-watch .watch-controls strong {
    min-height: 35px;
    font-size: 7px;
  }

  .hero-watch .watch-progress {
    margin-top: 7px;
  }

  .story-layout {
    grid-template-columns: minmax(245px, 0.5fr) minmax(560px, 1.5fr);
    gap: 52px;
  }

  .watch-story-sticky {
    grid-template-columns: minmax(270px, 0.78fr) minmax(350px, 1.05fr) minmax(230px, 0.7fr);
    gap: 25px;
  }
}

@media (max-width: 1023px) {
  .journey-nav {
    display: none;
  }

  .nav-divider {
    display: none;
  }

  .hero-cinema {
    min-height: auto;
    padding: 132px 0 88px;
  }

  .hero-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .paired-devices {
    min-height: 670px;
  }

  .hero-phone {
    left: 13%;
  }

  .hero-watch {
    right: 12%;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .story-copy h2 {
    max-width: 12ch;
  }

  .app-stage {
    transform: none;
  }

  .show-identity {
    grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  }

  .overview-columns {
    grid-template-columns: 1fr;
  }

  .lineup-group {
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .watch-story {
    min-height: auto;
    padding-block: 120px;
  }

  .watch-story-sticky {
    position: relative;
    top: auto;
    grid-template-columns: minmax(250px, 0.75fr) minmax(370px, 1.25fr);
    min-height: auto;
  }

  .watch-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 620px;
    margin-bottom: 30px;
  }

  .watch-setlist,
  .watch-centerpiece {
    grid-row: 2;
  }

  .watch-device-large {
    width: min(380px, 46vw);
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .section-shell,
  .page-shell,
  .footer-inner {
    width: min(calc(100% - 32px), var(--content));
  }

  .site-header,
  .header-inner {
    height: 64px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 16px;
    height: 22px;
  }

  .utility-nav a {
    padding-inline: 7px;
    font-size: 12px;
  }

  .hero-cinema {
    padding-top: 112px;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-copy > p {
    max-width: 33ch;
  }

  .paired-devices {
    min-height: 590px;
    margin-inline: 0;
  }

  .phone-device {
    width: min(325px, 76vw);
  }

  .hero-phone {
    left: 2%;
  }

  .hero-watch {
    right: 2%;
    bottom: 56px;
    width: min(220px, 51vw);
  }

  .hero-watch .watch-screen {
    padding: 15px 12px 11px;
    border-radius: 42px;
  }

  .hero-watch .watch-context {
    gap: 1px;
    margin: 0 2px 8px;
  }

  .hero-watch .watch-context strong {
    font-size: 8px;
  }

  .hero-watch .watch-context span {
    font-size: 6.5px;
  }

  .hero-watch .watch-song-card {
    min-height: 76px;
    padding: 11px 12px;
    border-radius: 15px;
  }

  .hero-watch .watch-song-card strong {
    font-size: 18px;
  }

  .hero-watch .watch-song-card span {
    margin-top: 5px;
    font-size: 7px;
  }

  .hero-watch .watch-next {
    min-height: 31px;
    padding-inline: 3px;
  }

  .hero-watch .watch-next span {
    font-size: 5.5px;
  }

  .hero-watch .watch-next strong {
    font-size: 7.5px;
  }

  .hero-watch .watch-controls {
    gap: 4px;
  }

  .hero-watch .watch-controls span,
  .hero-watch .watch-controls strong {
    min-height: 28px;
    border-radius: 7px;
    font-size: 6px;
  }

  .hero-watch .watch-progress {
    gap: 5px;
    margin-top: 6px;
    padding-inline: 2px;
    font-size: 5.5px;
  }

  .story-scene {
    padding-block: 96px;
  }

  .story-copy h2,
  .review-heading h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .app-stage {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .filter-chips {
    margin-right: -14px;
  }

  .search-result {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 88px;
    gap: 13px;
    padding-inline: 12px;
  }

  .search-result::before {
    left: 70px !important;
  }

  .search-result em {
    display: none;
  }

  .search-result > span strong {
    font-size: 15px;
  }

  .search-result small {
    font-size: 11px;
  }

  .show-overview {
    width: min(calc(100% - 20px), var(--content));
    border-radius: 22px;
  }

  .show-toolbar {
    padding-inline: 14px;
  }

  .toolbar-back,
  .toolbar-save {
    min-width: auto;
  }

  .toolbar-back span,
  .toolbar-save span {
    display: none;
  }

  .show-toolbar-actions {
    min-width: auto;
  }

  .show-identity {
    grid-template-columns: 1fr;
  }

  .artist-monogram {
    min-height: 190px;
  }

  .show-identity > div:last-child {
    padding: 28px 22px 34px;
  }

  .show-identity h3 {
    font-size: 31px;
  }

  .show-metadata {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .setlist-heading {
    align-items: flex-start;
  }

  .setlist-heading h3 {
    white-space: normal;
  }

  .watch-handoff {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .watch-handoff .button {
    width: 100%;
  }

  .watch-story {
    padding-block: 96px;
  }

  .watch-story-sticky {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .watch-copy,
  .watch-setlist,
  .watch-centerpiece {
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
  }

  .watch-copy {
    grid-row: 1;
  }

  .watch-copy h2 {
    max-width: 10ch;
  }

  .watch-setlist {
    grid-row: 3;
    transform: none;
  }

  .watch-centerpiece {
    grid-row: 2;
    min-height: 550px;
  }

  .watch-device-large {
    width: min(360px, 88vw);
  }

  .final-cinema {
    min-height: 78svh;
    padding-block: 100px;
  }

  .final-content h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .final-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .final-actions .button {
    width: 100%;
  }

  .page-shell {
    padding-block: 94px;
  }

  .interior-page main.support-page-shell {
    padding-top: 112px;
  }

  .interior-hero h1,
  .document h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .document-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .support-features,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    gap: 38px;
  }

  .privacy-shell {
    gap: 32px;
    padding-top: 112px;
  }

  .privacy-panel {
    padding-top: 34px;
    padding-left: 0;
    border-top: 1px solid var(--border-subtle);
    border-left: 0;
  }

  .document-meta {
    position: relative;
    top: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
    padding-block: 34px;
  }

  .footer-groups {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .footer-divider {
    width: 100%;
    height: 1px;
  }

  .footer-group {
    min-width: 0;
    flex: 1;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .brand > span:last-child {
    display: none;
  }

  .paired-devices {
    min-height: 520px;
  }

  .phone-device {
    width: 280px;
  }

  .hero-watch {
    right: 3%;
    width: 182px;
  }

  .hero-watch .watch-screen {
    padding: 13px 10px 9px;
    border-radius: 35px;
  }

  .hero-watch .watch-context {
    margin-bottom: 6px;
  }

  .hero-watch .watch-context strong {
    font-size: 7px;
  }

  .hero-watch .watch-context span,
  .hero-watch .watch-song-card span {
    font-size: 5.5px;
  }

  .hero-watch .watch-song-card {
    min-height: 64px;
    padding: 9px 10px;
    border-radius: 13px;
  }

  .hero-watch .watch-song-card strong {
    font-size: 15px;
  }

  .hero-watch .watch-next {
    min-height: 27px;
  }

  .hero-watch .watch-controls span,
  .hero-watch .watch-controls strong {
    min-height: 25px;
    font-size: 5px;
  }

  .hero-watch .watch-progress {
    margin-top: 4px;
  }

  .watch-device-large .watch-screen {
    padding: clamp(20px, 6vw, 24px) clamp(16px, 5vw, 20px) clamp(14px, 4vw, 18px);
  }

  .watch-device-large .watch-context {
    margin-inline: 6px;
    margin-bottom: 9px;
  }

  .watch-device-large .watch-song-card {
    min-height: clamp(108px, 32vw, 126px);
  }

  .watch-device-large .watch-controls span,
  .watch-device-large .watch-controls strong {
    min-height: clamp(38px, 11vw, 43px);
  }

  .watch-centerpiece {
    min-height: 500px;
  }
}

/* Asset-first watch hardware
   The rendered object owns the case, crown, lugs, strap, loop, and material light.
   HTML remains only for the app-owned screen so live cursor states stay crisp. */

.watch-device {
  position: absolute;
  width: 390px;
  aspect-ratio: 3 / 4;
  container-type: inline-size;
  filter: drop-shadow(0 34px 34px rgb(0 0 0 / 0.3));
  transform-style: flat;
}

.hero-watch {
  right: -7%;
  bottom: 46px;
  transform: rotateZ(3deg) translateZ(82px);
}

.watch-hardware {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.watch-screen,
.watch-device-large .watch-screen {
  position: absolute;
  top: 22.15%;
  left: 11.05%;
  z-index: 2;
  width: 43.75%;
  height: 48.9%;
  padding: 4cqw 3.35cqw 3.2cqw;
  border-radius: 8.45cqw / 7.2cqw;
  clip-path: inset(0.55cqw round 7.95cqw / 6.95cqw);
  transform: none;
}

.watch-device-large {
  position: relative;
  width: min(540px, 41vw);
  transform: rotateZ(1deg);
}

.watch-device-large .watch-screen {
  padding: 4.2cqw 3.55cqw 3.35cqw;
}

.watch-device-large .watch-song-card strong {
  font-size: clamp(23px, 2.25vw, 32px);
}

@media (max-width: 1120px) {
  .hero-watch {
    right: -8%;
    width: 360px;
  }

  .watch-device-large {
    width: min(510px, 45vw);
  }
}

@media (max-width: 1023px) {
  .watch-device-large {
    width: min(500px, 54vw);
  }
}

@media (max-width: 680px) {
  .hero-watch {
    right: -2%;
    z-index: 3;
    bottom: 34px;
    width: min(300px, 72vw);
  }

  .watch-device-large {
    width: min(430px, 98vw);
  }

  .watch-device-large .watch-screen {
    padding: 3.9cqw 3.35cqw 3.1cqw;
  }
}

@media (max-width: 390px) {
  .hero-watch {
    right: -1%;
    width: 250px;
  }

  .watch-device-large {
    width: min(380px, 98vw);
  }
}
