/* Harper. Apple product-page storefront. Near-black, white type, film on scroll. */

:root {
  color-scheme: dark;
  --bg: #000;
  --bg-elev: #050505;
  --bg-soft: #0c0c0e;
  --text: #f5f5f7;
  --text-2: #a1a1a6;
  --text-3: #6e6e73;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --champagne: #c6b59a;
  --champagne-dim: rgba(198, 181, 154, 0.22);
  --blue: #0a84ff;
  --focus: #f5f5f7;
  --header: 3.15rem;
  --gutter: clamp(1.2rem, 4.5vw, 3.2rem);
  --wrap: 72rem;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Inter, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --phone-w: clamp(15.5rem, 28vw, 20.5rem);
}

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

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

html.is-film {
  scroll-behavior: auto;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: clamp(1.02rem, 0.96rem + 0.28vw, 1.125rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

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

.skip {
  position: absolute;
  left: var(--gutter);
  top: -5rem;
  z-index: 500;
  background: #fff;
  color: #000;
  padding: 0.45rem 0.9rem;
  font-weight: 600;
  border-radius: 999px;
}

.skip:focus {
  top: 0.7rem;
}

.wrap {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header);
  background: rgba(0, 0, 0, 0.36);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), opacity 0.4s var(--ease);
}

.site-header.is-on {
  background: rgba(0, 0, 0, 0.72);
  border-bottom-color: var(--line);
}

.site-header.is-recessed {
  opacity: 0.42;
}

.site-header.is-recessed:hover,
.site-header.is-recessed:focus-within {
  opacity: 1;
}

@supports not (backdrop-filter: blur(18px)) {
  .site-header {
    background: #000;
  }
}

.header-inner {
  width: min(96rem, 100% - var(--gutter) * 2);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav-cb {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  background: transparent;
}

.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 0.95rem;
  height: 1px;
  background: var(--text);
  position: relative;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle .bars::before { top: -5px; }
.nav-toggle .bars::after { top: 5px; }

.site-nav {
  display: none;
  position: absolute;
  top: var(--header);
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--line);
  padding: 0.6rem var(--gutter) 1.2rem;
}

.site-nav ul {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.site-nav a:not(.btn) {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

.site-nav a:not(.btn):hover {
  color: #fff;
}

.nav-cb:checked ~ .site-nav {
  display: block;
}

.nav-cb:focus-visible + .nav-toggle {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

@media (min-width: 780px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: flex;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    align-items: center;
    gap: 1.6rem;
  }

  .site-nav ul {
    flex-direction: row;
    margin: 0;
    gap: 1.55rem;
  }

  .site-nav a:not(.btn) {
    padding: 0;
    font-size: 0.78rem;
    letter-spacing: -0.005em;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  color: #000;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  padding: 0.78rem 1.35rem;
  border-radius: 980px;
  border: 1px solid transparent;
  line-height: 1.15;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease;
  will-change: transform;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-small {
  padding: 0.42rem 0.9rem;
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
}

/* Type */

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lede {
  margin: 0;
  max-width: 36rem;
  color: var(--text-2);
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.28rem);
  line-height: 1.45;
  letter-spacing: -0.018em;
}

/* Hero */

.hero {
  position: relative;
  min-height: min(100svh - var(--header), 46rem);
  display: grid;
  place-items: center;
  padding: clamp(2.4rem, 7vh, 5.5rem) var(--gutter) clamp(2.8rem, 8vh, 6rem);
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translate(-50%, 0);
  margin: 0;
  font-size: clamp(5.2rem, 16vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.8;
  color: #fff;
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 54rem;
}

.hero .eyebrow {
  color: var(--champagne);
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.35rem, 1.55rem + 3.1vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero .lede {
  margin: 0 auto 2rem;
}

.hero-stars {
  margin: 0 0 0.85rem;
  color: var(--champagne);
  letter-spacing: 0.22em;
  font-size: 1.05rem;
  line-height: 1;
}
.hero-review {
  margin: -1.1rem auto 1.7rem;
  max-width: 34rem;
  color: var(--text-3);
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  line-height: 1.4;
}
.hero-review a {
  color: var(--text-2);
}
.hero-review a:hover {
  color: #fff;
}
.steps-list {
  list-style: none;
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 1.6rem;
}
.steps-list li {
  padding: 1.6rem 1.5rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--bg-soft);
}
.step-num {
  margin: 0 0 0.85rem;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.steps-list h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.steps-list p:not(.step-num) {
  margin: 0;
  color: var(--text-2);
  max-width: 34rem;
}
@media (min-width: 860px) {
  .steps-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.4rem;
  }
}



@supports (animation-timeline: view()) {
  html.is-film .hero-mark {
    animation: mark-drift linear both;
    animation-timeline: view();
    animation-range: exit 0% exit 80%;
  }
}

@keyframes mark-drift {
  to {
    transform: translate(-50%, -12%) scale(1.04);
    opacity: 0;
  }
}

/* Stage. Default is a static stack (no-JS and reduced motion).
   html.is-film turns it into a pinned scrubber. */

.stage {
  background: var(--bg);
}

.stage-track {
  position: relative;
}

.stage-sticky {
  position: relative;
  padding: 4rem var(--gutter) 2rem;
}

.stage-progress {
  display: none;
}

.stage-index {
  display: none;
}

.stage-scene {
  display: grid;
  gap: 2.2rem;
  align-items: center;
  margin: 0 auto 6.5rem;
  max-width: 78rem;
}

.stage-scene:last-child {
  margin-bottom: 3rem;
}

.scene-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.042em;
  line-height: 1.02;
  max-width: 13.5ch;
  text-wrap: balance;
}

.scene-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 32rem;
  color: var(--text-2);
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.2rem);
  line-height: 1.5;
}

.scene-device {
  display: flex;
  justify-content: center;
}

html.is-film .stage-track {
  height: 820vh;
}

html.is-film .stage-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  padding: 4.6rem var(--gutter) 2.4rem;
  overflow: hidden;
}

html.is-film .stage-scene {
  position: absolute;
  inset: 4.6rem var(--gutter) 2.4rem;
  margin: 0 auto;
  width: calc(100% - var(--gutter) * 2);
  max-width: 78rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(10px);
  transform: scale(0.97);
  will-change: opacity, transform, filter;
}

html.is-film .stage-progress {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 3;
}

html.is-film .stage-progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--text);
  transform: scaleX(var(--p, 0));
  transform-origin: left center;
}

html.is-film .stage-index {
  display: block;
  position: absolute;
  top: 1.15rem;
  right: var(--gutter);
  margin: 0;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 960px) {
  .stage-scene {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 22.5rem);
    gap: clamp(2rem, 6vw, 6rem);
  }

  html.is-film .stage-sticky {
    padding-block: 0;
  }

  html.is-film .stage-scene {
    inset: 0 var(--gutter);
    align-content: center;
  }
}

@media (max-width: 959px) {
  .stage-sticky {
    padding: 1.2rem var(--gutter) 2rem;
  }

  .stage-scene {
    grid-template-rows: auto 1fr;
    gap: 0.85rem;
    margin-bottom: 3rem;
  }

  .scene-copy h2 {
    max-width: none;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .phone {
    width: min(24rem, 94vw);
  }

  .phone-glass {
    font-size: 0.9rem;
  }

  html.is-film .stage-sticky {
    top: 0;
    height: 100svh;
    height: 100dvh;
    padding: calc(var(--header) + 0.25rem) 0.7rem 0.45rem;
    overflow: hidden;
  }

  html.is-film .stage-scene {
    inset: calc(var(--header) + 0.2rem) 0.7rem 0.4rem;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.55rem;
    align-content: stretch;
    width: auto;
    max-width: none;
  }

  html.is-film .scene-copy .eyebrow {
    margin-bottom: 0.25rem;
    font-size: 0.62rem;
  }

  html.is-film .scene-copy h2 {
    font-size: clamp(1.35rem, 6.4vw, 1.85rem);
    margin-bottom: 0.25rem;
    max-width: none;
  }

  html.is-film .scene-copy p:not(.eyebrow) {
    font-size: 0.86rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  html.is-film .scene-device {
    min-height: 0;
    height: 100%;
    align-items: stretch;
    justify-content: center;
  }

  html.is-film .phone {
    width: min(26rem, 96vw);
    height: 100%;
    max-height: 100%;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.5));
  }

  html.is-film .phone-frame {
    height: 100%;
    display: flex;
    padding: 0.28rem;
    border-radius: 2.1rem;
  }

  html.is-film .phone-glass {
    aspect-ratio: auto;
    flex: 1;
    height: 100%;
    min-height: 0;
    border-radius: 1.85rem;
    font-size: 0.98rem;
    line-height: 1.32;
  }

  html.is-film .app-nav strong {
    font-size: 0.95rem;
  }

  html.is-film .bubble {
    font-size: 0.95rem;
  }
}

/* Phone */

.phone {
  width: var(--phone-w);
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.55));
}

.phone-frame {
  border-radius: 2.55rem;
  padding: 0.42rem;
  background:
    linear-gradient(160deg, #3a3a3c 0%, #1a1a1c 38%, #0b0b0c 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(198, 181, 154, 0.18);
}

.phone-glass {
  position: relative;
  aspect-ratio: 390 / 844;
  border-radius: 2.2rem;
  overflow: hidden;
  background: #000;
  color: #f5f5f7;
  font-size: 0.72rem;
  line-height: 1.3;
}

.island {
  position: absolute;
  top: 0.72rem;
  left: 50%;
  z-index: 4;
  width: 5.6rem;
  height: 1.55rem;
  transform: translateX(-50%);
  background: #000;
  border-radius: 999px;
}

.statusbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 2.9rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 1.35rem 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.sb-end {
  width: 3.4rem;
  height: 0.7rem;
  background:
    linear-gradient(#fff, #fff) right / 1.35rem 0.55rem no-repeat,
    linear-gradient(#fff, #fff) calc(100% - 1.55rem) / 0.85rem 0.55rem no-repeat;
  opacity: 0.9;
}

.homebar {
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  z-index: 4;
  width: 6.4rem;
  height: 0.28rem;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 999px;
  opacity: 0.85;
}

.app {
  position: absolute;
  inset: 0;
  padding: 3.1rem 0.85rem 1.4rem;
  background: #000;
}

.app-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.app-nav strong {
  display: block;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-nav small {
  color: var(--text-3);
  font-size: 0.62rem;
}

.chev {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-left: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(45deg);
}

.app-nav.group {
  gap: 0.4rem;
}

.app-nav > div {
  min-width: 0;
}

.faces {
  position: relative;
  flex-shrink: 0;
  width: 2.55rem;
  height: 1.55rem;
}

.face {
  display: grid;
  place-items: center;
  width: 1.38rem;
  height: 1.38rem;
  border-radius: 50%;
  font-size: 0.52rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.04em;
  border: 1.5px solid #000;
  color: #f5f5f7;
}

.face.solo {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  font-size: 0.7rem;
  border-width: 0;
}

.faces .face {
  position: absolute;
}

.faces .face.you {
  left: 0;
  top: 0.18rem;
  z-index: 1;
  background: #3a3a3e;
}

.faces .face.harper {
  left: 0.62rem;
  top: 0;
  z-index: 3;
}

.faces .face.jordan {
  left: 1.18rem;
  top: 0.18rem;
  z-index: 2;
  background: #5e5ce6;
}

.face.harper {
  background: var(--champagne);
  color: #111;
}

/* iMessage */

.thread {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stamp {
  margin: 0.2rem 0 0.45rem;
  text-align: center;
  color: var(--text-3);
  font-size: 0.58rem;
}

.bubble {
  max-width: 84%;
  padding: 0.48rem 0.65rem;
  border-radius: 1.05rem;
  font-size: 0.72rem;
}

.bubble.in {
  align-self: flex-start;
  background: #1c1c1e;
}

.bubble.out {
  align-self: flex-end;
  background: var(--blue);
}

.bubble.times {
  display: grid;
  gap: 0.28rem;
  padding: 0.55rem 0.7rem;
}

.bubble.times span {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  font-weight: 600;
}

.bubble.times em {
  font-style: normal;
  font-weight: 500;
  opacity: 0.8;
  font-size: 0.62rem;
}

.delivered {
  align-self: flex-end;
  margin: -0.15rem 0.15rem 0.15rem;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--text-3);
}

.sys {
  margin: 0.1rem 0 0.35rem;
  text-align: center;
  color: var(--text-3);
  font-size: 0.58rem;
}

.bubble.in.named {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  background: transparent;
  padding: 0;
  max-width: 88%;
}

.bubble.in.named small {
  padding-left: 0.55rem;
  font-size: 0.55rem;
  font-weight: 600;
}

.bubble.in.named span {
  display: block;
  padding: 0.48rem 0.65rem;
  border-radius: 1.05rem;
  background: #1c1c1e;
}

.who-jordan { color: #bf5af2; }
.who-harper { color: var(--champagne); }


/* Mail */

.app-mail {
  background: #000;
}

.mail-body {
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.85rem 0.9rem 1rem;
}

.mail-from {
  margin: 0 0 0.7rem;
  color: var(--text-3);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mail-body p {
  margin: 0 0 0.55rem;
}

.mail-body .sign {
  margin: 0.85rem 0 0;
  color: var(--champagne);
  font-weight: 600;
}

.pill-badge {
  margin-top: 0.75rem;
  display: inline-flex;
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--champagne-dim);
  border-radius: 999px;
  color: var(--champagne);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Calendar */

.app-cal {
  display: flex;
  flex-direction: column;
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.7rem;
}

.cal-head strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.cal-head span,
.cal-days {
  color: var(--text-3);
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  font-size: 0.58rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  padding-left: 1.3rem;
}

.cal-days .on { color: var(--text); }

.cal-grid {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  min-height: 0;
}

.gutter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-3);
  font-size: 0.52rem;
  padding-block: 0.2rem 1.4rem;
}

.cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.18rem;
  position: relative;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 19%,
    rgba(255, 255, 255, 0.05) 19% 20%
  );
  border-radius: 0.4rem;
}

.col {
  position: relative;
}

.col.on {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.3rem;
}

.blk {
  position: absolute;
  left: 0.08rem;
  right: 0.08rem;
  border-radius: 0.28rem;
  font-size: 0.48rem;
  font-style: normal;
  font-weight: 600;
  overflow: hidden;
  padding: 0.15rem 0.18rem;
}

.blk.protect {
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.07) 3px,
    rgba(255, 255, 255, 0.13) 3px,
    rgba(255, 255, 255, 0.13) 6px
  );
  color: #c7c7cc;
}

.blk.people {
  background: #3a3a3e;
  color: #f5f5f7;
  box-shadow: inset 0 0 0 1px rgba(198, 181, 154, 0.55);
}

.blk.hole {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* Inbox-zero */

.zero-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.zero-head strong {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.count {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--champagne);
}

.zero-empty {
  margin: 0 0 1.2rem;
  color: var(--text-3);
}

.label-row {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  color: var(--text-2);
}

.label-row span:first-child {
  color: var(--champagne);
  font-weight: 600;
}

.action-card {
  margin-top: 1rem;
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.85rem 0.95rem 1rem;
}

.action-card small {
  color: var(--text-3);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.action-card strong {
  display: block;
  margin: 0.2rem 0 0.55rem;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.action-card ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-2);
}

/* Split texts */

.app-split {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
  padding-bottom: 1.6rem;
}

.split-pane {
  background: #0c0c0e;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.7rem 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.split-pane small {
  color: var(--text-3);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-pane .bubble {
  font-size: 0.68rem;
}

/* Send classes */

.send-head {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.send-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: #111113;
}

.send-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
}

.send-list li + li {
  border-top: 1px solid var(--line);
}

.send-list strong {
  display: block;
  font-size: 0.78rem;
}

.send-list span {
  color: var(--text-3);
  font-size: 0.62rem;
}

.send-list em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.send-list .go { color: #30d158; }
.send-list .wait { color: var(--champagne); }

.draft-card {
  margin-top: 0.85rem;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: #111113;
  border: 1px dashed var(--line-strong);
}

.draft-card small {
  color: var(--champagne);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.draft-card p {
  margin: 0.35rem 0 0;
}

/* Week notes */

.app-week {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.note {
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.75rem 0.85rem 0.85rem;
}

.note.on {
  border-color: rgba(198, 181, 154, 0.4);
  background: #161412;
}

.note small {
  color: var(--text-3);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.note strong {
  display: block;
  margin: 0.15rem 0 0.3rem;
  font-size: 0.88rem;
  letter-spacing: -0.03em;
}

.note p {
  margin: 0;
  color: var(--text-2);
}

/* Noise */

.noise-head {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}

.mail-row {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.mail-row strong {
  display: block;
  font-size: 0.78rem;
}

.mail-row span {
  color: var(--text-3);
  font-size: 0.62rem;
}

.mail-row em {
  font-style: normal;
  color: var(--champagne);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: center;
}

.mail-row.gone {
  opacity: 0.45;
}

.noise-foot {
  margin: 0.9rem 0 0;
  color: var(--text-3);
  font-size: 0.62rem;
  line-height: 1.4;
}

/* Watch */

.watch {
  background: #000;
}

.watch-stage {
  position: relative;
  min-height: 0;
  background: #000;
  padding: 0.5rem 0 0;
}

.watch-stage video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: none;
  object-fit: contain;
  display: block;
  margin-inline: auto;
  background: #000;
}

.watch-overlay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--gutter) 1.3rem;
  background: #000;
  pointer-events: none;
}

@media (min-width: 860px) {
  .watch-stage video {
    max-height: min(100svh - 6rem, 42rem);
  }
}

@media (max-width: 859px) {
  .watch {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .watch-stage {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .watch-overlay {
    flex: 0 0 auto;
    padding: calc(var(--header) + 0.45rem) var(--gutter) 0.7rem;
    align-items: flex-end;
  }

  .watch-copy h2 {
    font-size: 1.35rem;
  }

  .watch-stage video {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    max-height: none;
    object-fit: cover;
    object-position: 82% 50%;
  }
}

.watch-copy {
  pointer-events: none;
}

.watch-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 1.2rem + 3vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.watch-btn {
  pointer-events: auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
}

.watch-btn svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.watch-btn .icon-play { display: none; }
.watch-btn.is-paused .icon-play { display: block; }
.watch-btn.is-paused .icon-pause { display: none; }

/* Bands */

.band {
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
  border-top: 1px solid var(--line);
}

.band-head {
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.band-head h2,
.final h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 1.3rem + 3.6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  max-width: 16ch;
  text-wrap: balance;
}

.lane,
.sitting {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(var(--wrap), 100% - var(--gutter) * 2);
}

.lane li,
.sitting li {
  display: grid;
  gap: 0.35rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
}

.lane h3,
.sitting h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.lane p,
.sitting p {
  margin: 0;
  color: var(--text-2);
  max-width: 40rem;
}

@media (min-width: 860px) {
  .lane li {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.1fr);
    gap: 2rem;
    padding: 1.8rem 0;
    align-items: start;
  }

  .sitting {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3.2rem;
  }

  .sitting li {
    padding: 1.8rem 0;
  }
}




/* Reviews */
.review-clip {
  width: 100%;
  margin-top: 1.4rem;
  border-radius: 1rem;
  background: #111;
}
.review-feature {
  width: min(42rem, 100% - var(--gutter) * 2);
  margin: 0 auto 3.2rem;
}
.review-feature blockquote {
  margin: 0.4rem 0 0.9rem;
}
.review-feature blockquote p {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.review-feature figcaption,
.review-grid .who {
  margin: 0;
  color: var(--text-3);
  font-size: 0.92rem;
}
.stars {
  margin: 0 0 0.55rem;
  color: var(--champagne);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  line-height: 1;
}
.review-grid {
  list-style: none;
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}
.review-grid li {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--bg-soft);
}
.review-grid blockquote {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
@media (min-width: 860px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }
}

/* FAQ */

.faq-grid {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin: 0 auto;
  display: grid;
  gap: 2.4rem 3.2rem;
}

@media (min-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-grid h3,
.faq-more h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.faq-grid p,
.faq-more p {
  margin: 0;
  color: var(--text-2);
}

.faq-more {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin: 2.8rem auto 0;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.faq-more summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

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

.faq-more summary::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.12rem);
}

.faq-more-grid {
  display: grid;
  gap: 1.6rem 3rem;
  padding: 1.4rem 0 0.4rem;
}

@media (min-width: 860px) {
  .faq-more-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Final CTA */

.final {
  padding: clamp(5.5rem, 14vw, 11rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
}

.final h2 {
  margin-inline: auto;
}

.final .lede {
  margin: 0 auto 2rem;
}

.final .hero-actions {
  margin-bottom: 1.2rem;
}

.fine,
.plans {
  margin: 0.7rem auto 0;
  max-width: 34rem;
  color: var(--text-3);
  font-size: 0.92rem;
}

.plans {
  color: var(--text-2);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.6rem;
  color: var(--text-3);
  font-size: 0.86rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.site-footer strong {
  color: var(--text-2);
  font-weight: 600;
}

.site-footer p {
  margin: 0;
  max-width: 46rem;
}

.colophon {
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: -0.02em;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 2rem;
  }
}


@supports (animation-timeline: view()) {
  html.is-film .lane li,
  html.is-film .sitting li,
  html.is-film .faq-grid article {
    animation: rise-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }

}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.15rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Reduced motion: never pin, never parallax, stack the screens. */

@media (prefers-reduced-motion: reduce) {
  html.is-film .stage-track {
    height: auto;
  }

  html.is-film .stage-sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding: 4rem var(--gutter) 2rem;
  }

  html.is-film .stage-scene {
    position: relative;
    inset: auto;
    width: auto;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    filter: none !important;
    transform: none !important;
    margin: 0 auto 6.5rem;
  }

  html.is-film .stage-progress,
  html.is-film .stage-index {
    display: none;
  }

  .hero-mark,
  .btn,
  html.is-film .lane li,
  html.is-film .sitting li,
  html.is-film .faq-grid article {
    animation: none !important;
    transform: none !important;
  }

}

@media print {
  .site-header,
  .skip,
  .watch,
  .hero-mark {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }
}
