:root {
  --bg: #0b0b0b;
  --panel: #101010;
  --text: #f2f2f2;
  --muted: #8d8d8d;
  --soft: #5f5f5f;
  --line: #343434;
  --line-strong: #4a4a4a;
  --side: 390px;
  --top: 43px;
  --pad: 14px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: Helvetica, Inter, "Neue Haas Grotesk Text", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
}

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

button,
input {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--side);
  min-height: 100vh;
}

.portfolio-browser {
  grid-template-columns: minmax(0, 7fr) minmax(360px, 3fr);
}

.portfolio-browser:has(.project-pane.has-selection) {
  grid-template-columns: minmax(0, 3fr) minmax(500px, 2fr);
}

.portfolio-browser.showing-live-photo {
  display: block;
}

.portfolio-browser.showing-live-photo .main-column {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  border-right: 0;
  background: var(--bg);
}

.portfolio-browser.showing-live-photo .top-header,
.portfolio-browser.showing-live-photo .category-row {
  position: static;
}

.portfolio-browser.showing-live-photo .project-list {
  display: none;
}

.portfolio-browser.showing-live-photo .project-pane {
  position: static;
  width: 100%;
  height: auto;
  padding-top: calc(var(--top) + 42px);
  overflow: visible;
  border-top: 0;
}

.portfolio-browser.showing-live-photo .live-photo-case {
  max-width: 1600px;
  margin: 0 auto;
}

.portfolio-browser.showing-live-photo .live-photo-case > .pane-close {
  display: none;
}

.main-column {
  min-width: 0;
  border-right: 1px solid var(--line-strong);
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 100px minmax(220px, 0.8fr);
  align-items: center;
  height: var(--top);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(11, 11, 11, 0.96);
}

.top-header > * {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--pad);
  border-right: 1px solid var(--line);
}

.top-header > *:last-child {
  border-right: 0;
}

.site-title {
  font-weight: 600;
  text-transform: uppercase;
}

.language,
.mail {
  color: var(--muted);
}

.language {
  gap: 6px;
}

.language button {
  color: var(--muted);
}

.language button.active,
.language button:hover {
  color: var(--text);
}

.mail {
  justify-content: flex-end;
}

.category-row {
  position: sticky;
  top: var(--top);
  z-index: 19;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  min-height: 42px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.96);
}

.category-row button {
  color: var(--soft);
  white-space: nowrap;
}

.category-row button.active,
.category-row button:hover {
  color: var(--text);
}

.project-list {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.video-template-note {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px var(--pad);
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.project-list[data-category="All"] .video-template-note {
  display: block;
  order: 31;
}

.project-list[data-category="VideoTemplate"] .video-template-note {
  display: block;
  order: -1;
}

.project-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  align-self: stretch;
  width: 100%;
  padding: var(--pad);
  border-bottom: 1px solid var(--line-strong);
  text-align: left;
}

.project-row[role="button"] {
  cursor: pointer;
}

.project-row.span-full {
  grid-column: span 6;
}

.project-row.span-half {
  grid-column: span 3;
}

.project-row.span-tall-half {
  grid-column: span 3;
  grid-row: span 2;
}

.project-row.span-stack-half {
  grid-column: span 3;
}

.project-row.span-third {
  grid-column: span 2;
}

.project-row.with-right-line {
  border-right: 1px solid var(--line-strong);
}

.project-row.motion-stack-bottom.with-right-line {
  border-right: 0;
}

.compact-archive .project-row {
  display: flex;
  min-height: 0;
  transition: background 160ms ease;
}

.compact-archive .project-row.active,
.compact-archive .project-row:hover {
  background: #111;
}

.project-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #151515;
}

.project-media[data-r2-folder]:empty::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #141414, #1b1b1b, #141414);
  background-size: 220% 100%;
  animation: media-pulse 1.5s ease-in-out infinite;
}

@keyframes media-pulse {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.project-media img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 260ms ease, opacity 260ms ease;
}

.compact-archive .project-media {
  flex: 0 0 auto;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.compact-archive .project-media.vertical-media {
  aspect-ratio: 3 / 4;
}

.compact-archive .project-media.tall-media {
  aspect-ratio: 7 / 16;
}

.compact-archive .project-media.square-media {
  aspect-ratio: 1 / 1;
}

.compact-archive .project-media.portrait-video-media {
  aspect-ratio: 9 / 16;
}

.compact-archive .project-media.live-photo-cover {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.compact-archive .project-media.live-photo-cover > video {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compact-archive .project-media.live-photo-cover > img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.live-photo-project-row {
  position: relative;
}

.compact-archive .live-photo-project-row .live-photo-cover-meta {
  position: absolute;
  inset: auto var(--pad) var(--pad) var(--pad);
  z-index: 3;
  display: flex;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px;
  overflow: visible;
  align-items: flex-end;
  justify-content: space-between;
  clip: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 8, 8, 0.76);
  color: var(--text);
  white-space: normal;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.live-photo-cover-meta .project-kicker {
  margin: 0 0 2px;
  color: #c8ff58;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.live-photo-cover-meta h2 {
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.03em;
}

.live-photo-cover-meta .project-result {
  color: #c8ff58;
  font-size: 11px;
  white-space: nowrap;
}

.project-list[data-category="GraphicPublishing"] [data-slug="on-the-edge-of-senses"] .project-media,
.project-list[data-category="GraphicPublishing"] [data-slug="in-the-heat-of-the-sun-poster"] .project-media,
.project-list[data-category="GraphicPublishing"] [data-slug="between-us"] .project-media {
  aspect-ratio: 3 / 4;
}

.project-list[data-category="All"] [data-slug="between-us"] .project-media,
.project-list[data-category="All"] [data-slug="screen-printing"] .project-media,
.project-list[data-category="All"] [data-slug="independent-design-4"] .project-media {
  aspect-ratio: 3 / 4;
}

.compact-archive .project-media img,
.compact-archive .project-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.compact-archive .project-media.contain-media img,
.compact-archive .project-media.contain-media video {
  object-fit: contain;
  object-position: center center;
}

.cover-sound-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.82);
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cover-sound-toggle:hover,
.cover-sound-toggle:focus-visible,
.cover-sound-toggle[aria-pressed="true"] {
  border-color: #fff;
  background: #f2f2f2;
  color: #0b0b0b;
  outline: none;
}

.sound-icon {
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.cover-sound-toggle[aria-pressed="false"] .sound-icon-on,
.cover-sound-toggle[aria-pressed="true"] .sound-icon-muted {
  display: none;
}

.project-list[data-category="All"] [data-slug="nervous-cat-niannian"] .project-media img,
.project-list[data-category="All"] [data-slug="nervous-cat-niannian"] .project-media video,
.project-list[data-category="All"] [data-slug="on-the-edge-of-senses"] .project-media img,
.project-list[data-category="All"] [data-slug="on-the-edge-of-senses"] .project-media video,
.project-list[data-category="All"] [data-slug="goldfish-watergrass"] .project-media img,
.project-list[data-category="All"] [data-slug="goldfish-watergrass"] .project-media video {
  object-position: center top;
}

.project-row:hover .project-media img,
.project-row:hover .project-media video {
  transform: scale(1.012);
  opacity: 0.92;
}

.project-meta {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-top: 0;
  color: var(--muted);
}

.compact-archive .project-meta {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.project-meta h2 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}

.project-meta p {
  margin: 2px 0 0;
}

.side-info {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--panel);
}

.side-tabs {
  position: sticky;
  top: 0;
  z-index: 21;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: var(--top);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(16, 16, 16, 0.98);
}

.side-tabs a {
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.side-tabs a:hover {
  color: var(--text);
}

.side-tabs a:last-child {
  border-right: 0;
}

.side-copy {
  padding: var(--pad);
  color: #bdbdbd;
}

.project-pane {
  background: var(--bg);
  overscroll-behavior: contain;
}

.project-pane.has-selection .side-tabs {
  display: none;
}

.pane-detail {
  position: relative;
  padding: var(--pad);
}

.pane-close {
  position: sticky;
  top: var(--pad);
  z-index: 30;
  display: flex;
  width: 32px;
  height: 32px;
  margin: 0 0 -32px auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: rgba(11, 11, 11, 0.78);
  color: var(--muted);
}

.pane-close::before,
.pane-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.pane-close::before {
  transform: rotate(45deg);
}

.pane-close::after {
  transform: rotate(-45deg);
}

.pane-close:hover {
  border-color: var(--muted);
  background: #111;
  color: var(--text);
}

.pane-close + .pane-intro {
  padding-right: 48px;
}

.pane-intro {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}

.pane-intro h1 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.pane-intro p {
  margin: 3px 0 0;
  color: var(--muted);
}

.pane-description {
  max-width: 720px;
  margin: 16px 0 24px;
  color: #cfcfcf;
}

.pane-description p {
  margin: 0 0 1em;
}

.pane-description p:last-child {
  margin-bottom: 0;
}

.pane-preview {
  position: relative;
  margin: 0 0 18px;
}

.video-template-preview {
  display: grid;
  place-items: center;
}

.pane-interactive-frame,
.pane-featured-video {
  display: block;
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #000;
}

.pane-interactive-frame {
  height: min(48vh, 430px);
  min-height: 300px;
}

.portrait-interactive-frame {
  width: min(100%, 540px);
  height: auto;
  min-height: 0;
  aspect-ratio: 9 / 16;
  margin-inline: auto;
}

.pane-featured-video {
  max-height: min(52vh, 460px);
}

.portrait-detail-video {
  width: auto;
  max-width: 100%;
  height: min(72vh, 760px);
  max-height: min(72vh, 760px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  margin-inline: auto;
}

.pane-preview:fullscreen,
.pane-preview:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  background: #000;
}

.pane-preview:fullscreen .pane-interactive-frame,
.pane-preview:-webkit-full-screen .pane-interactive-frame {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  min-height: 0;
  aspect-ratio: auto;
  border: 0;
}

.pane-preview:fullscreen .media-expand::before,
.pane-preview:fullscreen .media-expand::after,
.pane-preview:-webkit-full-screen .media-expand::before,
.pane-preview:-webkit-full-screen .media-expand::after {
  top: 16px;
  left: 8px;
  width: 16px;
  height: 0;
  border: 0;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.pane-preview:fullscreen .media-expand::after,
.pane-preview:-webkit-full-screen .media-expand::after {
  transform: rotate(-45deg);
}

.pane-pages {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dynamic-r2-pages {
  min-height: 72px;
}

.dynamic-r2-pages[data-loading-state="loading"]::before,
.dynamic-r2-pages[data-loading-state="empty"]::before {
  display: block;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.dynamic-r2-pages[data-loading-state="loading"]::before {
  content: "素材正在加载中 / Loading project assets...";
}

.dynamic-r2-pages[data-loading-state="empty"]::before {
  content: "素材暂未加载出来，请稍后刷新 / Assets are still unavailable.";
}

.dynamic-r2-pages[data-loading-state="done"] {
  min-height: 0;
}

.pane-page {
  margin: 0;
  background: #151515;
}

.pane-page img,
.pane-page video {
  display: block;
  width: 100%;
  height: auto;
}

.pane-page img,
.pane-page video:not([controls]) {
  cursor: zoom-in;
}

.pane-videos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 26px;
}

.live-photo-feature,
.live-photo-results {
  margin-top: 28px;
}

.live-photo-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 10px;
}

.live-photo-section-heading span:last-child {
  text-align: right;
}

.live-photo-feature > video {
  display: block;
  width: 100%;
  max-height: 72vh;
  background: #000;
  object-fit: contain;
}

.live-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.live-photo-grid figure {
  margin: 0;
  min-width: 0;
  background: var(--bg);
}

.live-photo-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  object-fit: contain;
}

.live-photo-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

/* Live Photo product case study */
.live-photo-case {
  --lp-music: #b9d77d;
  --lp-editor: #83c9ed;
  --lp-accent: var(--lp-music);
  --lp-panel: #121212;
  --lp-panel-strong: #181818;
  --lp-page-gutter: clamp(22px, 4vw, 58px);
  --lp-content-indent: 50px;
  padding: 0;
  color: var(--text);
  font-family: Inter, "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", Helvetica, Arial, sans-serif;
}

.live-photo-case > .pane-close {
  margin: 14px 14px -46px auto;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(420px, 1.02fr);
  min-height: clamp(650px, calc(100svh - 85px), 820px);
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 255, 88, 0.09), transparent 34%),
    linear-gradient(135deg, #111 0%, #090909 58%, #101010 100%);
}

.lp-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 6vw, 82px) clamp(36px, 5vw, 78px);
}

.lp-eyebrow {
  margin: 0 0 24px;
  color: var(--lp-accent);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.lp-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 3.5vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lp-hero h1 span {
  display: block;
  font-size: .86em;
  white-space: nowrap;
  word-break: keep-all;
}

.lp-hero-thesis {
  max-width: 680px;
  margin: 24px 0 0;
  color: #f0f0f0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.lp-hero-lead {
  max-width: 680px;
  margin: 18px 0 24px;
  color: #bdbdbd;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.85;
}

.lp-track-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 700px;
  margin: 0 0 20px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-track-map article {
  min-width: 0;
  padding: 13px 14px 14px;
  background: rgba(11, 11, 11, 0.9);
  border-top: 5px solid currentColor;
}

.lp-track-map article.is-music {
  color: var(--lp-music);
}

.lp-track-map article.is-editor {
  color: var(--lp-editor);
}

.lp-track-map span,
.lp-track-map p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.lp-track-map strong {
  display: block;
  margin: 7px 0 5px;
  color: currentColor;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.lp-meta-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 700px;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lp-meta-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lp-meta-list dt {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.lp-meta-list dd {
  min-width: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.lp-meta-list div:first-child dd {
  white-space: normal;
}

.lp-meta-unit {
  display: inline-block;
  white-space: nowrap;
}

.lp-opportunity-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: 30px;
}

.lp-opportunity-intro p {
  margin: 0;
  color: #c8c8c8;
  font-size: 14px;
  line-height: 1.9;
}

.lp-opportunity-intro strong {
  padding: 0 0 0 26px;
  border-left: 3px solid var(--lp-accent);
  color: var(--text);
  font-size: clamp(17px, 1.75vw, 24px);
  font-weight: 500;
  line-height: 1.5;
}

.lp-opportunity-evidence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-opportunity-evidence article {
  min-height: 190px;
  padding: 17px;
  background: var(--bg);
}

.lp-opportunity-evidence span {
  color: var(--muted);
  font-size: 9px;
}

.lp-opportunity-evidence strong {
  display: block;
  margin: 28px 0 12px;
  color: var(--lp-accent);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
}

.lp-opportunity-evidence p,
.lp-opportunity-note {
  margin: 0;
  color: #999;
  font-size: 10px;
  line-height: 1.75;
}

.lp-opportunity-note {
  margin-top: 14px;
}

.lp-objective-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-objective-grid article {
  padding: clamp(20px, 2.5vw, 30px);
  background: var(--lp-panel);
}

.lp-objective-grid span,
.lp-validation-note span,
.lp-mvp-scope article > span,
.lp-editor-mechanism span,
.lp-growth-story header span,
.lp-platform-risk span {
  color: var(--lp-accent);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .08em;
}

.lp-objective-grid strong {
  display: block;
  max-width: 470px;
  margin: 18px 0 10px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.42;
}

.lp-objective-grid p {
  margin: 0;
  color: #999;
  font-size: 11px;
  line-height: 1.8;
}

.lp-rank-badge {
  display: flex;
  max-width: 390px;
  margin-top: 18px;
  padding: 12px 14px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--lp-accent);
  color: var(--lp-accent);
}

.lp-rank-badge span {
  font-size: 10px;
  line-height: 1.4;
}

.lp-rank-badge strong {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.lp-hero-phones {
  position: relative;
  min-height: 620px;
}

.lp-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(44%, 300px);
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1080 / 2344;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 26px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.54);
  cursor: pointer;
  opacity: 1;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .72s cubic-bezier(.22, .68, .28, 1), box-shadow .6s ease, border-color .6s ease;
}

.lp-hero-phones .lp-phone::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(3, 5, 6, 0.2), rgba(3, 5, 6, 0.1) 38%, rgba(3, 5, 6, 0.25));
  opacity: 0;
  pointer-events: none;
  transition: opacity .72s cubic-bezier(.22, .68, .28, 1);
}

.lp-phone:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.lp-phone img,
.lp-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-phone-main {
  z-index: 3;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.lp-phone-left {
  z-index: 1;
  transform: translate(-106%, -46%) rotate(-5deg) scale(0.9);
}

.lp-phone-right {
  z-index: 2;
  transform: translate(8%, -47%) rotate(5deg) scale(0.92);
}

.lp-phone-left::after {
  opacity: 0.34;
}

.lp-phone-right::after {
  opacity: 0.24;
}

.lp-phone-left:hover {
  transform: translate(-106%, -48%) rotate(-3.5deg) scale(0.95);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.68), 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.lp-phone-right:hover {
  transform: translate(8%, -49%) rotate(3.5deg) scale(0.97);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.68), 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.lp-phone-left:hover::after,
.lp-phone-right:hover::after,
.lp-phone-left:focus-visible::after,
.lp-phone-right:focus-visible::after {
  opacity: 0.1;
}

.lp-hero-phones.is-switching .lp-phone {
  pointer-events: none;
}

.lp-live-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.lp-phone .lp-live-moments {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-live-hotspots {
  position: absolute;
  z-index: 2;
  display: grid;
  pointer-events: none;
}

.lp-phone-main .lp-live-hotspots,
.lp-inline-phone .lp-live-hotspots {
  pointer-events: auto;
}

.lp-live-hotspots.is-six {
  top: 21.6374%;
  left: 14.7619%;
  width: 63.8095%;
  height: 19.4079%;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.8249% 1.8657%;
}

.lp-live-hotspots.is-four {
  top: 19.1155%;
  left: 14.7619%;
  width: 42.1429%;
  height: 19.4079%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.8249%;
}

.lp-live-hotspots.is-three {
  top: 19.1155%;
  left: 14.7619%;
  width: 63.8095%;
  height: 9.4298%;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 1.8657%;
}

.lp-live-hotspots.is-one-portrait {
  top: 19.1155%;
  left: 14.7619%;
  width: 32.1429%;
  height: 19.7368%;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.lp-live-hotspots.is-nine {
  top: 19.1155%;
  left: 14.7619%;
  width: 63.8095%;
  height: 29.386%;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1.8657%;
}

.lp-live-hotspot {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 180ms ease;
}

.lp-live-hotspot:hover,
.lp-live-hotspot:focus-visible {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
  transform: scale(1.035);
}

.lp-live-hotspot.is-first {
  animation: lp-hotspot-hint 1.15s ease 1.1s 3;
}

@keyframes lp-hotspot-hint {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.88), 0 0 12px rgba(255, 255, 255, 0.24); }
}

.lp-live-viewer {
  position: absolute;
  z-index: 10;
  inset: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}

.lp-live-viewer.is-active {
  visibility: visible;
  pointer-events: auto;
}

.lp-live-backdrop {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity 360ms ease;
}

.lp-live-viewer.is-opening .lp-live-backdrop,
.lp-live-viewer.is-open .lp-live-backdrop {
  opacity: 1;
}

.lp-live-media {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  background: #000;
  transform-origin: center;
  transition:
    top 430ms cubic-bezier(.22, .78, .22, 1),
    left 430ms cubic-bezier(.22, .78, .22, 1),
    width 430ms cubic-bezier(.22, .78, .22, 1),
    height 430ms cubic-bezier(.22, .78, .22, 1),
    border-radius 430ms ease;
}

.lp-live-viewer.is-opening .lp-live-media,
.lp-live-viewer.is-open .lp-live-media {
  top: var(--live-final-top) !important;
  left: var(--live-final-left) !important;
  width: var(--live-final-width) !important;
  height: var(--live-final-height) !important;
  border-radius: 0 !important;
}

.lp-live-pane {
  position: absolute;
  inset: 0;
  transform: translateX(0);
  transition: transform 460ms cubic-bezier(.24, .72, .22, 1);
}

.lp-live-pane-next {
  transform: translateX(100%);
}

.lp-live-media.is-sliding .lp-live-pane-current {
  transform: translateX(-100%);
}

.lp-live-media.is-sliding .lp-live-pane-next {
  transform: translateX(0);
}

.lp-live-media.is-resetting .lp-live-pane {
  transition: none;
}

.lp-phone .lp-live-cover,
.lp-phone .lp-live-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.lp-phone .lp-live-cover-crop {
  z-index: 2;
  object-fit: cover;
  opacity: 1;
  transition: opacity 170ms ease 230ms;
}

.lp-phone .lp-live-cover-full {
  z-index: 3;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 190ms ease 230ms, transform 430ms cubic-bezier(.22, .78, .22, 1);
}

.lp-live-viewer.is-opening .lp-live-cover-crop,
.lp-live-viewer.is-open .lp-live-pane-current .lp-live-cover-crop,
.lp-live-pane-next .lp-live-cover-crop {
  opacity: 0;
}

.lp-live-viewer.is-opening .lp-live-pane-current .lp-live-cover-full,
.lp-live-viewer.is-open .lp-live-pane-current .lp-live-cover-full,
.lp-live-pane-next .lp-live-cover-full {
  opacity: 1;
  transform: scale(1);
}

.lp-phone .lp-live-video {
  z-index: 4;
  object-fit: contain;
  background: #000;
  opacity: 0;
  transform: scale(1);
  transition: opacity 210ms ease, transform 420ms cubic-bezier(.22, .78, .22, 1);
}

.lp-live-pane.is-playing .lp-live-cover-full {
  opacity: 0;
  transition-delay: 0ms;
}

.lp-live-pane.is-playing .lp-live-video {
  opacity: 1;
  transform: scale(1.045);
}

.lp-live-close,
.lp-live-next {
  position: absolute;
  z-index: 7;
  display: grid;
  padding: 0;
  place-items: center;
  border: 0;
  color: #fff;
  opacity: 0;
  cursor: pointer;
  transition: opacity 180ms ease, background 160ms ease;
}

.lp-live-viewer.is-open .lp-live-close,
.lp-live-viewer.is-open .lp-live-next {
  opacity: 1;
}

.lp-live-close {
  top: 3.2%;
  right: 5%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(48, 48, 48, 0.66);
  font-size: 22px;
  font-weight: 200;
  line-height: 1;
}

.lp-live-next {
  top: 50%;
  right: 4%;
  width: 30px;
  height: 48px;
  background: transparent;
  transform: translateY(-50%);
}

.lp-live-close:hover,
.lp-live-close:focus-visible {
  background: rgba(82, 82, 82, 0.88);
  outline: 1px solid rgba(255, 255, 255, 0.76);
}

.lp-live-next:hover,
.lp-live-next:focus-visible {
  background: transparent;
  outline: none;
}

.lp-live-next span {
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.9));
  transform: translateX(-3px) rotate(45deg);
  transition: transform 150ms ease;
}

.lp-live-next:hover span,
.lp-live-next:focus-visible span {
  transform: translateX(0) rotate(45deg);
}

.lp-hero-phone-hint {
  position: absolute;
  z-index: 5;
  right: 50%;
  bottom: 4px;
  display: flex;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0;
  padding: 7px 13px 7px 8px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.9);
  color: #dedede;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  transform: translateX(50%);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.48);
}

.lp-interaction-badge {
  display: inline-flex;
  padding: 4px 8px;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(183, 228, 112, 0.14);
  color: var(--lp-accent);
  font-size: 10px;
  white-space: nowrap;
}

.lp-interaction-badge i {
  position: relative;
  display: block;
  width: 11px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 7px;
  animation: lp-mouse-cue 1.6s ease-in-out infinite;
}

.lp-interaction-badge i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 1px;
  height: 4px;
  background: currentColor;
  transform: translateX(-50%);
}

.lp-interaction-copy {
  white-space: nowrap;
}

@keyframes lp-mouse-cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}

.lp-phone-main:has(.lp-live-viewer.is-active) {
  cursor: default;
}

.lp-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-strong);
}

.lp-snapshot div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line-strong);
}

.lp-snapshot div.is-music {
  border-top: 2px solid var(--lp-music);
}

.lp-snapshot div.is-editor {
  border-top: 2px solid var(--lp-editor);
}

.lp-snapshot em {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.lp-snapshot .is-editor strong {
  color: var(--lp-editor);
}

.lp-snapshot div:last-child {
  border-right: 0;
}

.lp-snapshot strong,
.lp-result-grid strong {
  display: block;
  color: var(--lp-accent);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.lp-snapshot strong {
  word-break: keep-all;
}

.lp-snapshot span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.lp-section {
  padding: clamp(38px, 5vw, 72px) var(--lp-page-gutter);
  border-bottom: 1px solid var(--line-strong);
}

.lp-section-title {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.lp-section-title > span {
  color: var(--lp-accent);
  font-size: 11px;
  line-height: 1.55;
}

.lp-section-title p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.lp-section-title .lp-track-kicker.is-music {
  color: var(--lp-music);
}

.lp-section-title .lp-track-kicker.is-editor {
  color: var(--lp-editor);
}

.lp-editor-section .lp-section-title > span {
  color: var(--lp-editor);
}

.lp-section-title h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.lp-section-lead {
  max-width: 760px;
  margin: -10px 0 34px 50px;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.85;
}

.lp-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 60px);
}

.lp-prose {
  color: #c8c8c8;
  font-size: 14px;
  line-height: 1.9;
}

.lp-prose p {
  margin: 0 0 1.35em;
}

.lp-prose strong {
  color: var(--text);
  font-weight: 500;
}

.lp-prose-wide {
  max-width: none;
  margin: 0 0 32px 50px;
}

.lp-prose-wide p {
  max-width: none;
  margin-bottom: 0;
}

.lp-insight {
  margin: 0;
  padding: 24px;
  border-left: 2px solid var(--lp-accent);
  background: var(--lp-panel);
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.lp-insight cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  font-style: normal;
  letter-spacing: 0.04em;
}

.lp-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.lp-timeline li {
  position: relative;
  min-height: 92px;
  padding: 18px 12px 0 0;
  border-top: 1px solid var(--line-strong);
}

.lp-timeline li::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-accent);
}

.lp-timeline li.is-music::before {
  background: var(--lp-music);
}

.lp-timeline li.is-music time {
  color: var(--lp-music);
}

.lp-timeline li.is-editor::before {
  background: var(--lp-editor);
}

.lp-timeline li.is-editor time {
  color: var(--lp-editor);
}

.lp-timeline time {
  display: block;
  margin-bottom: 7px;
  color: var(--lp-accent);
  font-size: 10px;
}

.lp-timeline span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.lp-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-decision-grid article {
  min-height: 188px;
  padding: 18px;
  background: var(--bg);
}

.lp-decision-grid article.is-selected {
  background: var(--lp-accent);
  color: #0b0b0b;
}

.lp-decision-grid span {
  color: var(--muted);
  font-size: 9px;
}

.lp-decision-grid .is-selected span {
  color: rgba(11, 11, 11, 0.56);
}

.lp-decision-grid h3 {
  margin: 34px 0 10px;
  font-size: 20px;
  font-weight: 500;
}

.lp-decision-grid p {
  margin: 0;
  color: #a8a8a8;
  font-size: 12px;
  line-height: 1.75;
}

.lp-decision-grid .is-selected p {
  color: rgba(11, 11, 11, 0.72);
}

.lp-validation-note {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  margin: 0 0 28px;
  padding: 18px;
  border-left: 2px solid var(--lp-music);
  background: var(--lp-panel);
}

.lp-validation-note p {
  max-width: 900px;
  margin: 0;
  color: #b3b3b3;
  font-size: 11px;
  line-height: 1.8;
}

.lp-music-experience {
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
  gap: 1px;
  width: 100%;
  margin-left: 0;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-feature-video {
  margin: 0;
  background: #000;
}

.lp-feature-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: 620px;
  object-fit: contain;
  background: #000;
}

.lp-prototype-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 24px;
  background: var(--lp-panel);
}

.lp-prototype-copy > span,
.lp-creative-tests > span,
.lp-distribution-proof > span {
  color: var(--lp-music);
  font-size: 9px;
  letter-spacing: .08em;
}

.lp-prototype-copy h3 {
  margin: 12px 0;
  font-size: clamp(19px, 2.3vw, 30px);
  font-weight: 500;
  line-height: 1.35;
}

.lp-prototype-copy p,
.lp-distribution-proof p {
  margin: 0;
  color: #aaa;
  font-size: 11px;
  line-height: 1.8;
}

.lp-prototype-flow {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line-strong);
  list-style: none;
}

.lp-prototype-flow li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 0;
  padding: 12px 14px;
  align-items: start;
  background: var(--bg);
}

.lp-prototype-flow b {
  color: var(--lp-music);
  font-size: 10px;
  font-weight: 500;
}

.lp-prototype-flow span {
  color: #c8c8c8;
  font-size: 11px;
  line-height: 1.6;
}

.lp-prototype-flow span strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
}

.lp-mvp-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-mvp-scope article {
  padding: 22px;
  background: var(--bg);
}

.lp-mvp-scope article.is-kept {
  border-top: 2px solid var(--lp-music);
  background: #11140e;
}

.lp-mvp-scope h3 {
  margin: 13px 0 18px;
  color: var(--text);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 500;
  line-height: 1.4;
}

.lp-mvp-scope ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 20px;
  margin: 0;
  padding: 0;
  color: #929292;
  font-size: 10px;
  line-height: 1.6;
  list-style: none;
}

.lp-mvp-scope li::before {
  content: "—";
  margin-right: 7px;
  color: #555;
}

.lp-mvp-scope .is-kept li::before {
  color: var(--lp-music);
}

.lp-tutorial-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  max-width: 680px;
  margin: 18px 0 0 50px;
  border: 1px solid var(--line-strong);
  background: var(--lp-panel);
}

.lp-tutorial-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}

.lp-tutorial-card figcaption {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--line-strong);
}

.lp-tutorial-card figcaption span {
  color: var(--lp-music);
  font-size: 9px;
  letter-spacing: .08em;
}

.lp-tutorial-card.is-editor figcaption span {
  color: var(--lp-editor);
}

.lp-tutorial-card figcaption strong {
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 500;
  line-height: 1.35;
}

.lp-tutorial-card figcaption p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.lp-validation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.42fr);
  gap: 36px;
  align-items: end;
}

.lp-bars {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.lp-bar-row > div {
  display: flex;
  margin-bottom: 7px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.lp-bar-row span {
  color: #bdbdbd;
  font-size: 11px;
  line-height: 1.55;
}

.lp-bar-row strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.lp-bar-row > i {
  position: relative;
  display: block;
  height: 7px;
  overflow: hidden;
  background: #232323;
}

.lp-bar-row > i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: var(--lp-accent);
}

.lp-conclusion {
  padding: 22px;
  border: 1px solid var(--line-strong);
  background: var(--lp-panel);
}

.lp-conclusion strong {
  color: var(--lp-accent);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.lp-conclusion p {
  margin: 18px 0 0;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 1.75;
}

.lp-data-note {
  margin: 22px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 10px;
  line-height: 1.7;
}

.lp-validation-data-note {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
  padding: 14px 2px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lp-validation-data-note > span {
  color: var(--lp-music);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: .06em;
}

.lp-validation-data-note p {
  margin: 0;
  color: #8d8d8d;
  font-size: 10px;
  line-height: 1.7;
}

.lp-data-disclosure {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, .16);
}

.lp-data-disclosure summary {
  display: flex;
  padding: 12px 2px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8f8f8f;
  cursor: pointer;
  list-style: none;
}

.lp-data-disclosure summary::-webkit-details-marker {
  display: none;
}

.lp-data-disclosure summary span {
  color: var(--lp-music);
  font-size: 10px;
  letter-spacing: .06em;
}

.lp-data-disclosure.is-editor summary span {
  color: var(--lp-editor);
}

.lp-data-disclosure summary small {
  color: #707070;
  font-size: 9px;
}

.lp-data-disclosure summary small::after {
  content: "＋";
  margin-left: 9px;
  color: currentColor;
}

.lp-data-disclosure[open] summary small::after {
  content: "－";
}

.lp-data-disclosure > p,
.lp-data-disclosure .lp-disclosure-body {
  margin: 0;
  padding: 14px 2px 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #777;
  font-size: 10px;
  line-height: 1.8;
}

.lp-data-disclosure .lp-disclosure-body > p {
  max-width: 980px;
  margin: 16px 0 0;
}

.lp-cohort-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.lp-cohort-compact span {
  padding: 14px;
  background: var(--bg);
  color: #8d969b;
  font-size: 9px;
  line-height: 1.65;
}

.lp-cohort-compact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lp-editor);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.lp-decision-chain {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
  gap: 8px;
  margin-top: 24px;
  align-items: center;
}

.lp-decision-chain span {
  display: flex;
  min-height: 58px;
  padding: 14px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: #c8c8c8;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.lp-decision-chain span:last-child {
  border-color: rgba(185, 215, 125, .62);
  color: var(--lp-music);
}

.lp-decision-chain i,
.lp-growth-loop i {
  position: relative;
  display: block;
  height: 1px;
  background: #4a4a4a;
}

.lp-decision-chain i::after,
.lp-growth-loop i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
  transform: rotate(45deg);
}

.lp-achievement-block {
  margin-top: 34px;
  border: 1px solid var(--line-strong);
  background: var(--lp-panel);
}

.lp-achievement-block > header {
  display: flex;
  padding: 14px 16px;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-strong);
}

.lp-achievement-block > header span {
  color: var(--lp-music);
  font-size: 11px;
  line-height: 1.55;
}

.lp-achievement-block > header p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.lp-achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.lp-achievement-grid article {
  min-height: 150px;
  padding: 18px;
  background: var(--bg);
}

.lp-achievement-grid article.lp-reward-card {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(160px, 220px);
  gap: 18px;
  padding: 18px;
  align-items: center;
}

.lp-reward-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  align-self: center;
  justify-self: center;
  border: 1px solid var(--line-strong);
  object-fit: contain;
}

.lp-reward-card > div {
  padding: 0;
}

.lp-reward-card > div > span {
  color: var(--muted);
  font-size: 9px;
}

.lp-achievement-grid article > span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.lp-achievement-grid strong {
  display: block;
  margin: 24px 0 10px;
  color: var(--lp-music);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.3;
}

.lp-achievement-grid p {
  margin: 0;
  color: #929292;
  font-size: 10px;
  line-height: 1.65;
}

.lp-achievement-grid .lp-patent-line {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.lp-achievement-grid .lp-patent-line::-webkit-scrollbar {
  display: none;
}

.lp-growth-chain {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  margin: 0 0 28px 50px;
  align-items: stretch;
}

.lp-growth-chain span {
  display: grid;
  min-height: 70px;
  padding: 13px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: #cfcfcf;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
}

.lp-growth-chain i {
  display: grid;
  padding: 0 8px;
  place-items: center;
  color: var(--lp-accent);
  font-style: normal;
}

.lp-growth-chain.is-editor i {
  color: var(--lp-editor);
}

.lp-creative-tests {
  display: flex;
  margin: 0 0 28px 50px;
  padding: 16px;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line-strong);
}

.lp-creative-tests > span {
  color: var(--lp-editor);
  white-space: nowrap;
}

.lp-creative-tests ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.lp-creative-tests li {
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  color: #999;
  font-size: 9px;
}

.lp-creative-tests li.is-chosen {
  border-color: var(--lp-editor);
  color: var(--lp-editor);
}

.lp-project-questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 28px 50px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-project-questions article {
  min-height: 150px;
  padding: 18px;
  background: var(--bg);
}

.lp-project-questions span,
.lp-showcase-heading > span,
.lp-year-feature figcaption > span {
  color: var(--lp-editor);
  font-size: 9px;
  letter-spacing: .08em;
}

.lp-project-questions p {
  margin: 28px 0 0;
  color: #b7b7b7;
  font-size: 11px;
  line-height: 1.75;
}

.lp-editor-mechanism {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 72px);
  margin: 0 0 34px 50px;
  padding: 24px;
  align-items: end;
  border-top: 2px solid var(--lp-editor);
  background: var(--lp-panel);
}

.lp-editor-mechanism span,
.lp-growth-story header span {
  color: var(--lp-editor);
}

.lp-editor-mechanism h3 {
  margin: 14px 0 0;
  font-size: clamp(20px, 2.3vw, 31px);
  font-weight: 500;
  line-height: 1.35;
}

.lp-editor-mechanism p {
  margin: 0;
  color: #aaa;
  font-size: 11px;
  line-height: 1.85;
}

.lp-editor-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(390px, 1.18fr);
  gap: 1px;
  margin-left: 50px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-editor-showcase .lp-tutorial-card {
  margin-left: 0;
}

.lp-tutorial-disclosure {
  max-width: 680px;
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  background: var(--lp-panel);
}

.lp-tutorial-disclosure summary {
  display: flex;
  padding: 14px 16px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.lp-tutorial-disclosure summary::-webkit-details-marker {
  display: none;
}

.lp-tutorial-disclosure summary span {
  color: var(--lp-editor);
  font-size: 10px;
}

.lp-tutorial-disclosure summary small {
  color: var(--muted);
  font-size: 9px;
}

.lp-tutorial-disclosure summary small::after {
  content: "＋";
  margin-left: 8px;
  color: var(--lp-editor);
}

.lp-tutorial-disclosure[open] summary small::after {
  content: "－";
}

.lp-tutorial-disclosure .lp-tutorial-card {
  margin-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.lp-showcase-heading {
  display: block;
  margin: 0;
  padding: clamp(26px, 3vw, 42px);
  border-top: 2px solid var(--lp-editor);
  background: #0b0d0f;
}

.lp-showcase-heading h3,
.lp-showcase-heading p {
  margin: 0;
}

.lp-showcase-heading h3 {
  max-width: 560px;
  margin-top: clamp(42px, 7vw, 96px);
  font-size: clamp(23px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1.35;
}

.lp-showcase-heading p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.lp-editor-series {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lp-editor-carousel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(18px, 2.3vw, 28px);
  border: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(131, 201, 237, .1), transparent 38%),
    #090b0d;
  outline: none;
}

.lp-editor-carousel:focus-visible {
  border-color: rgba(131, 201, 237, .72);
}

.lp-editor-carousel .lp-editor-series {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
}

.lp-editor-carousel .lp-editor-phone-card {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(100%, 270px);
  margin: 0;
  opacity: 1;
  filter: brightness(.34) saturate(.76);
  transform: translate(116%, -50%) scale(.88);
  transform-origin: 50% 50%;
  transition:
    transform 480ms cubic-bezier(.2, .72, .2, 1),
    filter 360ms ease;
  cursor: pointer;
  z-index: 1;
}

.lp-editor-carousel .lp-editor-phone-card.is-stack-1 {
  filter: brightness(.62) saturate(.86);
  transform: translate(42%, -50%) scale(.96);
  z-index: 3;
}

.lp-editor-carousel .lp-editor-phone-card.is-stack-2 {
  filter: brightness(.47) saturate(.8);
  transform: translate(80%, -50%) scale(.92);
  z-index: 2;
}

.lp-editor-carousel .lp-editor-phone-card.is-stack-3 {
  filter: brightness(.34) saturate(.76);
  transform: translate(116%, -50%) scale(.88);
  z-index: 1;
}

.lp-editor-carousel .lp-editor-phone-card.is-active {
  filter: none;
  transform: translate(0, -50%) scale(1);
  cursor: default;
  z-index: 4;
}

.lp-editor-carousel .lp-editor-series .lp-inline-phone {
  width: min(100%, 222px);
}

.lp-editor-carousel .lp-editor-phone-card:not(.is-active) .lp-inline-phone {
  pointer-events: none;
}

.lp-editor-carousel-nav {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.lp-editor-carousel-arrow,
.lp-editor-carousel-tabs button {
  border: 0;
  background: transparent;
  color: #757f84;
  cursor: pointer;
}

.lp-editor-carousel-arrow {
  width: 42px;
  height: 38px;
  border: 1px solid var(--line-strong);
  font-size: 18px;
  transition: border-color 160ms ease, color 160ms ease;
}

.lp-editor-carousel-arrow:hover,
.lp-editor-carousel-arrow:focus-visible {
  border-color: var(--lp-editor);
  color: var(--lp-editor);
  outline: 0;
}

.lp-editor-carousel-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}

.lp-editor-carousel-tabs button {
  position: relative;
  min-height: 38px;
  padding: 8px 6px;
  border: 1px solid transparent;
  font-size: 10px;
  line-height: 1.4;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.lp-editor-carousel-tabs button::after {
  content: none;
}

.lp-editor-carousel-tabs button.is-active {
  border-color: rgba(131, 201, 237, .52);
  background: rgba(131, 201, 237, .09);
  color: var(--lp-editor);
}

.lp-editor-carousel-tabs button:focus-visible {
  color: var(--text);
  outline: 1px solid rgba(131, 201, 237, .56);
  outline-offset: -2px;
}

.lp-growth-story {
  margin: 38px 0 0 50px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(131, 201, 237, .48);
  background: #10151a;
}

.lp-growth-story header {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.lp-growth-story header h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(20px, 2.3vw, 31px);
  font-weight: 500;
  line-height: 1.4;
}

.lp-growth-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  padding: 1px;
  background: rgba(131, 201, 237, .26);
  list-style: none;
}

.lp-growth-timeline li {
  min-height: 180px;
  padding: 18px;
  background: #0d1115;
}

.lp-growth-timeline time {
  color: var(--lp-editor);
  font-size: 10px;
}

.lp-growth-timeline strong {
  display: block;
  margin: 28px 0 9px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.lp-growth-timeline p {
  margin: 0;
  color: #969da1;
  font-size: 10px;
  line-height: 1.75;
}

.lp-growth-loop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
  gap: 6px;
  margin-top: 18px;
  align-items: center;
}

.lp-growth-loop span {
  color: #aab7be;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.lp-growth-loop i {
  background: rgba(131, 201, 237, .38);
}

.lp-growth-loop i::after {
  border-color: var(--lp-editor);
}

.lp-editor-series figure {
  margin: 0;
  border: 0;
  background: transparent;
}

.lp-year-feature {
  margin: 0;
  border: 1px solid var(--line-strong);
  background: var(--bg);
}

.lp-editor-series figure.lp-editor-phone-card {
  display: grid;
  justify-items: center;
  padding: 0;
  background: transparent;
}

.lp-editor-series .lp-inline-phone {
  position: relative;
  top: auto;
  left: auto;
  width: min(100%, 232px);
  transform: none;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  cursor: default;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
}

.lp-editor-series .lp-inline-phone:hover {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.58);
}

.lp-editor-series figcaption {
  display: none;
}

.lp-year-feature figcaption {
  padding: 10px 12px;
  border-top: 1px solid var(--line-strong);
  color: #bdbdbd;
  font-size: 10px;
}

.lp-year-feature {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  max-width: 760px;
  margin-top: 28px;
}

.lp-year-feature video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}

.lp-year-feature figcaption {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 0;
  border-left: 1px solid var(--line-strong);
}

.lp-year-feature figcaption strong {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.3;
}

.lp-year-feature figcaption p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.lp-video-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 270px));
  gap: 18px;
  margin-left: 50px;
  border: 0;
  background: transparent;
}

.lp-video-pair figure,
.lp-gallery-grid figure {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line-strong);
}

.lp-video-pair video,
.lp-gallery-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  object-fit: contain;
}

.lp-video-pair figcaption,
.lp-gallery-grid figcaption {
  padding: 10px 11px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.lp-results-section {
  background: #0e0e0e;
}

.lp-results-section .lp-result-grid strong,
.lp-results-section .lp-chart-grid header strong {
  color: var(--lp-editor);
}

.lp-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-result-grid article {
  min-height: 160px;
  padding: 17px;
  background: var(--bg);
}

.lp-result-grid article > span {
  display: block;
  min-height: 34px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.lp-result-grid strong {
  margin: 20px 0 9px;
  font-size: clamp(22px, 2.5vw, 36px);
}

.lp-result-grid small {
  color: #777;
  font-size: 8px;
  line-height: 1.45;
}

.lp-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line-strong);
}

.lp-results-charts {
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(220px, .75fr));
  border-right: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.lp-results-charts > article {
  min-height: 380px;
}

.lp-chart-grid > article {
  min-height: 320px;
  padding: clamp(22px, 3vw, 36px);
  background: var(--bg);
}

.lp-chart-grid header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.lp-chart-grid header span {
  color: var(--muted);
  font-size: 9px;
}

.lp-chart-grid header strong {
  color: var(--lp-accent);
  font-size: 16px;
  font-weight: 500;
}

.lp-growth-chart > header,
.lp-growth-chart > .lp-chart-note {
  width: min(100%, 720px);
  margin-right: auto;
  margin-left: auto;
}

.lp-growth-chart .lp-columns {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.lp-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 76px);
  height: 250px;
  margin-top: 28px;
  padding: 22px clamp(24px, 4vw, 52px) 0;
  align-items: end;
  border-bottom: 1px solid var(--line-strong);
  background:
    linear-gradient(to bottom, transparent calc(25% - .5px), rgba(255, 255, 255, .055) 25%, transparent calc(25% + .5px)),
    linear-gradient(to bottom, transparent calc(50% - .5px), rgba(255, 255, 255, .055) 50%, transparent calc(50% + .5px)),
    linear-gradient(to bottom, transparent calc(75% - .5px), rgba(255, 255, 255, .055) 75%, transparent calc(75% + .5px));
}

.lp-columns div {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.lp-columns b {
  display: block;
  margin-bottom: 9px;
  color: var(--lp-editor);
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1;
}

.lp-columns i {
  display: block;
  width: min(100%, 74px);
  min-height: 10px;
  height: var(--height);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #9bddff 0%, var(--lp-editor) 100%);
  box-shadow: 0 0 24px rgba(131, 201, 237, .12);
}

.lp-columns span {
  display: block;
  min-height: 34px;
  padding-top: 9px;
  color: #9a9a9a;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.lp-compare-chart {
  display: flex;
  flex-direction: column;
}

.lp-compare-bars {
  display: grid;
  gap: 34px;
  margin: auto 0;
}

.lp-compare-bars > div {
  display: grid;
  gap: 10px;
}

.lp-compare-bars span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: #8f989d;
  font-size: 10px;
  line-height: 1.5;
}

.lp-compare-bars span b {
  color: #b8c4ca;
  font-size: 13px;
  font-weight: 500;
}

.lp-compare-bars i {
  display: block;
  height: 9px;
  overflow: hidden;
  background: #20282c;
}

.lp-compare-bars em {
  display: block;
  width: var(--width);
  height: 100%;
  background: #526b78;
}

.lp-compare-bars .is-after em {
  background: linear-gradient(90deg, var(--lp-editor), #a6e0ff);
}

.lp-compare-chart .lp-chart-note {
  margin-top: 24px;
}

.lp-retention-bars {
  display: flex;
  height: 250px;
  padding-top: 55px;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
}

.lp-retention-bars > div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
}

.lp-retention-bars span,
.lp-retention-bars strong {
  font-size: 9px;
}

.lp-retention-bars span {
  color: var(--muted);
}

.lp-retention-bars strong {
  font-weight: 500;
  text-align: right;
}

.lp-retention-bars i {
  display: block;
  height: 8px;
  background: #232323;
}

.lp-retention-bars b {
  display: block;
  width: var(--width);
  height: 100%;
  background: var(--lp-editor);
}

.lp-chart-note {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: #747b7f;
  font-size: 8px;
  line-height: 1.65;
}

.lp-cohort-proof {
  display: grid;
  grid-template-columns: minmax(150px, .55fr) minmax(150px, .55fr) minmax(260px, 1.2fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line-strong);
}

.lp-cohort-proof > div,
.lp-cohort-proof > p {
  margin: 0;
  padding: 18px;
  background: var(--bg);
}

.lp-cohort-proof strong {
  display: block;
  color: var(--lp-editor);
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 500;
  line-height: 1;
}

.lp-cohort-proof span {
  display: block;
  margin-top: 9px;
  color: #8c969b;
  font-size: 9px;
  line-height: 1.6;
}

.lp-cohort-proof > p {
  display: flex;
  align-items: center;
  color: #aeb4b7;
  font-size: 10px;
  line-height: 1.75;
}

.lp-appstore-card {
  display: flex;
  margin-top: 1px;
  padding: 24px;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(113, 203, 247, .58);
  background: linear-gradient(120deg, rgba(113, 203, 247, .13), rgba(17, 24, 31, .82) 58%, #111820);
}

.lp-appstore-card p {
  margin: 0 0 7px;
  color: var(--lp-editor);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.lp-appstore-card h3 {
  max-width: 760px;
  margin: 0 0 13px;
  color: var(--text);
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.lp-appstore-card span {
  display: block;
  max-width: 800px;
  color: #a8a8a8;
  font-size: 10px;
  line-height: 1.7;
}

.lp-appstore-rank {
  display: flex;
  min-width: 205px;
  flex: 0 0 auto;
  padding-left: 24px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  border-left: 1px solid rgba(113, 203, 247, .38);
  text-align: right;
}

.lp-appstore-rank span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.lp-appstore-rank strong {
  display: block;
  color: var(--lp-editor);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
  white-space: nowrap;
  word-break: keep-all;
}

.lp-appstore-rank small {
  color: #8ba7b5;
  font-size: 8px;
}

.lp-distribution-proof {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: var(--lp-panel);
}

.lp-distribution-proof > span {
  color: var(--lp-editor);
}

.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 230px));
  gap: 18px;
  border: 0;
  background: transparent;
}

.lp-results-lead {
  max-width: 980px;
}

.lp-results-lead span {
  display: block;
}

.lp-results-lead span + span {
  margin-top: 6px;
}

.lp-results-section > .lp-result-grid,
.lp-results-section > .lp-chart-grid,
.lp-results-section > .lp-appstore-card,
.lp-results-section > .lp-data-disclosure {
  width: calc(100% - var(--lp-content-indent));
  margin-left: var(--lp-content-indent);
  box-sizing: border-box;
}

.lp-experiment-lead {
  max-width: 820px;
}

.lp-experiment-lead span {
  display: block;
}

.lp-experiment-lead span + span {
  margin-top: 6px;
}

.lp-experiment-grid {
  grid-template-columns: repeat(4, minmax(160px, 220px));
  margin-left: 50px;
}

.lp-experiment-grid figure.lp-editor-phone-card {
  display: grid;
  justify-items: center;
  padding: 18px 12px 0;
  background: radial-gradient(circle at 50% 22%, rgba(131, 201, 237, .09), transparent 42%), #090909;
}

.lp-experiment-grid .lp-inline-phone {
  position: relative;
  top: auto;
  left: auto;
  width: min(100%, 232px);
  transform: none;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  cursor: default;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
}

.lp-experiment-grid .lp-inline-phone:hover {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.58);
}

.lp-experiment-grid figcaption {
  width: calc(100% + 24px);
  margin-top: 18px;
}

.lp-more-experiments {
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.lp-more-experiments summary {
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #c8c8c8;
  list-style: none;
}

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

.lp-more-experiments summary::after {
  content: "+";
  margin-left: auto;
  padding-left: 18px;
  color: var(--lp-accent);
}

.lp-more-experiments[open] summary::after {
  content: "−";
}

.lp-more-experiments summary small {
  color: var(--muted);
  font-size: 9px;
}

.lp-gallery-secondary {
  grid-template-columns: repeat(3, minmax(180px, 230px));
  padding: 18px;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.lp-reflection {
  border-bottom: 1px solid var(--line-strong);
}

.lp-reflection .lp-section-title > span {
  color: #d0d0d0;
}

.lp-reflection .lp-section-title h2 {
  max-width: none;
  font-size: clamp(26px, 3vw, 44px);
}

.lp-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 30px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.lp-method-grid article {
  min-height: 190px;
  padding: 18px;
  background: var(--lp-panel);
}

.lp-method-grid span {
  color: var(--lp-accent);
  font-size: 9px;
}

.lp-method-grid strong {
  display: block;
  margin: 30px 0 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.lp-method-grid p {
  margin: 0;
  color: #929292;
  font-size: 10px;
  line-height: 1.75;
}

.lp-review-grid article {
  min-height: 360px;
  padding: clamp(20px, 3vw, 34px);
  background: var(--bg);
}

.lp-review-grid article.is-music {
  border-top: 2px solid var(--lp-music);
}

.lp-review-grid article.is-editor {
  border-top: 2px solid var(--lp-editor);
}

.lp-review-grid > article > span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .08em;
}

.lp-review-grid h3 {
  max-width: none;
  min-height: 2.5em;
  margin: 28px 0 38px;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.25;
}

.lp-no-break {
  display: inline;
  white-space: nowrap;
  word-break: keep-all;
}

.lp-review-grid p {
  color: #aaa;
  font-size: 12px;
  line-height: 1.8;
}

.lp-review-grid p:first-of-type {
  min-height: 5.4em;
}

.lp-review-grid p strong {
  color: var(--text);
  font-weight: 500;
}

.lp-platform-risk {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  margin-top: 1px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: var(--lp-panel);
}

.lp-platform-risk p {
  max-width: 980px;
  margin: 0;
  color: #aaa;
  font-size: 11px;
  line-height: 1.8;
}

.lp-experiment-criteria {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 20px 50px;
  background: var(--line-strong);
}

.lp-experiment-criteria span {
  padding: 12px 14px;
  background: var(--lp-panel);
  color: #b4b4b4;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.lp-experiment-criteria span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--lp-editor);
}

.lp-experiment-conclusion {
  width: calc(100% - var(--lp-content-indent));
  max-width: none;
  margin: 32px 0 0 var(--lp-content-indent);
  padding: 24px;
  box-sizing: border-box;
  border-left: 2px solid var(--lp-editor);
  background: var(--lp-panel);
}

.lp-experiment-conclusion > span {
  color: var(--lp-editor);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .08em;
}

.lp-experiment-conclusion strong {
  display: block;
  margin: 14px 0 12px;
  color: var(--text);
  font-size: clamp(18px, 2.1vw, 29px);
  font-weight: 500;
  line-height: 1.45;
}

.lp-experiment-conclusion p {
  margin: 0;
  color: #999;
  font-size: 11px;
  line-height: 1.8;
}

.lp-experiment-disclosure {
  margin: 24px 0 0 var(--lp-content-indent);
  border: 1px solid var(--line-strong);
  background: #0d0d0d;
}

.lp-experiment-disclosure > summary {
  display: flex;
  min-height: 58px;
  padding: 14px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #c9c9c9;
  cursor: pointer;
  list-style: none;
}

.lp-experiment-disclosure > summary::-webkit-details-marker {
  display: none;
}

.lp-experiment-disclosure > summary span {
  color: var(--lp-editor);
  font-size: 11px;
  line-height: 1.5;
}

.lp-experiment-disclosure > summary small {
  color: #777;
  font-size: 9px;
  line-height: 1.5;
  text-align: right;
}

.lp-experiment-disclosure > summary small::after {
  content: "＋";
  margin-left: 10px;
  color: var(--lp-editor);
}

.lp-experiment-disclosure[open] > summary small::after {
  content: "－";
}

.lp-experiment-details {
  padding: 22px;
  border-top: 1px solid var(--line-strong);
}

.lp-experiment-details .lp-experiment-criteria,
.lp-experiment-details .lp-creative-tests,
.lp-experiment-details .lp-experiment-grid {
  margin-left: 0;
}

.lp-experiment-details .lp-experiment-criteria {
  margin-bottom: 18px;
}

.lp-experiment-details .lp-creative-tests {
  margin-bottom: 22px;
}

.lp-material-note {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 64px) 28px;
  border-top: 1px solid var(--line-strong);
  color: #737373;
  font-size: 9px;
  line-height: 1.75;
}

.lp-material-note span {
  color: #929292;
  letter-spacing: .08em;
}

.lp-material-note p {
  max-width: 920px;
  margin: 0;
}

.lp-patent {
  margin-top: 24px !important;
  padding: 16px;
  border: 1px solid var(--line-strong);
  color: var(--lp-accent);
}

.lp-patent span {
  display: inline-block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

/* Live Photo case study · content-led narrative rhythm */
.lp-hero-copy {
  padding-top: clamp(52px, 5vw, 76px);
  padding-bottom: clamp(42px, 4.5vw, 68px);
}

.lp-hero h1 {
  font-size: clamp(44px, 4vw, 68px);
}

.lp-hero h1 span {
  font-size: .82em;
}

.lp-hero-thesis {
  margin-top: 16px;
  color: var(--lp-accent);
  font-size: clamp(24px, 2.35vw, 36px);
}

.lp-hero-lead {
  margin-top: 16px;
  margin-bottom: 26px;
  line-height: 1.82;
}

.lp-track-map {
  margin-bottom: 16px;
}

.lp-meta-list {
  grid-template-columns: 1fr;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.lp-meta-list div {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.lp-meta-list div:nth-child(even) {
  padding-left: 0;
  border-left: 0;
}

.lp-meta-list div:first-child,
.lp-meta-list div:last-child {
  grid-column: auto;
}

.lp-meta-list div:last-child {
  padding-left: 0;
  border-left: 0;
}

.lp-meta-list dd {
  font-size: 12px;
  line-height: 1.65;
}

.lp-phone-island-hint {
  position: absolute;
  z-index: 6;
  top: 1.1%;
  left: 50%;
  display: none;
  width: 46%;
  min-width: 104px;
  max-width: 132px;
  height: 3.25%;
  min-height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #050505;
  color: #cfe995;
  font-size: clamp(7px, .68vw, 9px);
  line-height: 1;
  letter-spacing: .04em;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08), 0 5px 14px rgba(0, 0, 0, .3);
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.lp-phone-main .lp-phone-island-hint {
  display: flex;
}

.lp-phone-island-hint span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: 1px;
  box-shadow: 0 0 7px rgba(207, 233, 149, .6);
}

.lp-hero-phones.has-interacted .lp-phone-island-hint {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) scale(.92);
}

.lp-outcome-map {
  display: grid;
  gap: 1px;
  padding: clamp(30px, 4vw, 54px) var(--lp-page-gutter) 0;
  border-bottom: 0;
  background: #080808;
}

.lp-outcome-map > article {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  border-top: 2px solid currentColor;
  background: var(--line-strong);
  color: var(--lp-music);
}

.lp-outcome-map > article.is-editor {
  color: var(--lp-editor);
}

.lp-outcome-map > article:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.lp-outcome-map header,
.lp-outcome-metrics {
  background: var(--bg);
}

.lp-outcome-map header {
  display: block;
  min-height: 166px;
  padding: 22px 24px;
}

.lp-outcome-heading {
  min-height: 76px;
}

.lp-outcome-heading > span {
  color: currentColor;
  font-size: 9px;
  letter-spacing: .08em;
}

.lp-outcome-map h2 {
  margin: 20px 0 8px;
  color: currentColor;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.25;
}

.lp-outcome-map header p {
  margin: 26px 0 0;
  color: #969696;
  font-size: 10px;
  line-height: 1.65;
}

.lp-outcome-metrics {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
}

.lp-outcome-metrics > div {
  display: flex;
  min-width: 0;
  min-height: 166px;
  padding: 22px;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 1px solid var(--line-strong);
}

.lp-outcome-metrics strong {
  display: block;
  min-height: 76px;
  color: currentColor;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.045em;
  word-break: keep-all;
}

.lp-outcome-metrics span {
  display: block;
  max-width: 260px;
  margin: 26px 0 0;
  color: #888;
  font-size: 9px;
  line-height: 1.65;
}

.lp-outcome-metrics > div.is-proof strong {
  max-width: 210px;
  font-size: clamp(20px, 2.25vw, 34px);
  line-height: 1.15;
  letter-spacing: -.025em;
  white-space: normal;
}

.lp-section {
  padding-top: clamp(56px, 7vw, 100px);
  padding-bottom: clamp(56px, 7vw, 100px);
}

.lp-section-title {
  margin-bottom: clamp(38px, 5vw, 68px);
}

.lp-section-title h2 {
  max-width: none;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.16;
}

.lp-heading-node.lp-heading-node {
  display: inline;
  margin-right: .12em;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

#lp-opportunity {
  background: #0b0b0b;
}

#lp-mvp {
  background: #0e100b;
}

#lp-validation {
  background: #090909;
}

#lp-scale,
#lp-results,
#lp-gallery {
  background: #0b0f11;
}

.lp-opportunity-headline {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
  border-top: 0;
  border-bottom: 0;
}

.lp-opportunity-headline .lp-section-title {
  margin: 0;
  padding: clamp(28px, 3.4vw, 48px) clamp(26px, 3.2vw, 46px) clamp(30px, 3.6vw, 52px) 0;
  align-content: start;
}

.lp-opportunity-story {
  display: block;
  border-left: 2px solid var(--lp-music);
  background: transparent;
}

.lp-opportunity-story blockquote {
  display: block;
  height: 100%;
  margin: 0;
  padding: clamp(28px, 3.4vw, 48px) 0 clamp(30px, 3.6vw, 52px) clamp(26px, 3.2vw, 46px);
  background: var(--bg);
}

.lp-market-signals li > span,
.lp-strategy-thesis > span {
  color: var(--lp-music);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .08em;
}

.lp-market-signals p,
.lp-strategy-thesis p {
  margin: 0;
  color: #9c9c9c;
  font-size: 11px;
  line-height: 1.85;
}

.lp-opportunity-story blockquote > span {
  display: block;
  margin-bottom: 10px;
  color: var(--lp-music);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: .08em;
}

.lp-opportunity-story blockquote p {
  max-width: 980px;
  margin: 0;
  color: #d2d2d2;
  font-size: clamp(18px, 1.75vw, 26px);
  font-weight: 400;
  line-height: 1.5;
}

.lp-research-disclosure,
.lp-strategy-disclosure,
.lp-evidence-disclosure {
  margin-top: 14px;
}

.lp-research-disclosure {
  border: 0;
  background: #101010;
}

.lp-research-disclosure summary {
  padding-inline: 22px;
}

.lp-research-disclosure .lp-disclosure-body {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.lp-research-disclosure .lp-disclosure-body > p {
  max-width: 980px;
  margin-top: 0;
}

.lp-rich-disclosure summary {
  min-height: 74px;
  padding: 16px 20px;
}

.lp-rich-disclosure summary > span {
  display: grid;
  min-width: 0;
  flex: 1;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.lp-rich-disclosure summary > span b,
.lp-rich-disclosure summary > span em {
  font-style: normal;
}

.lp-rich-disclosure summary > span b {
  color: var(--lp-music);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .06em;
}

.lp-rich-disclosure summary > span em {
  color: #c8c8c8;
  font-size: 13px;
  line-height: 1.6;
}

.lp-rich-disclosure > .lp-disclosure-body {
  padding: 24px 20px 26px;
}

.lp-research-detail-grid,
.lp-evidence-grid {
  display: grid;
}

.lp-research-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: transparent;
}

.lp-evidence-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.lp-research-detail-grid article,
.lp-evidence-grid article {
  padding: 20px;
  background: #0b0b0b;
}

.lp-research-detail-grid article {
  border-right: 1px solid var(--line-strong);
}

.lp-research-detail-grid article:last-child {
  border-right: 0;
}

.lp-research-detail-grid article > span,
.lp-evidence-grid article > span {
  color: var(--lp-music);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .08em;
}

.lp-research-detail-grid strong {
  display: block;
  margin: 24px 0 10px;
  color: var(--text);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.4;
}

.lp-research-detail-grid p,
.lp-evidence-grid p {
  margin: 0;
  color: #a4a4a4;
  font-size: 13px;
  line-height: 1.8;
}

.lp-evidence-grid p {
  margin-top: 18px;
}

.lp-data-disclosure .lp-disclosure-boundary,
.lp-strategy-evidence .lp-disclosure-boundary {
  max-width: 1100px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #858585;
  font-size: 12px;
  line-height: 1.8;
}

.lp-market-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px 0 0;
  padding: 0;
  border-top: 0;
  border-bottom: 0;
  list-style: none;
}

.lp-market-signals li {
  min-height: 220px;
  padding: 24px 22px;
  border-right: 1px solid var(--line-strong);
}

.lp-market-signals li:last-child {
  border-right: 0;
}

.lp-market-signals strong {
  display: block;
  margin: 40px 0 14px;
  color: var(--text);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 500;
  line-height: 1.45;
}

.lp-strategy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
  gap: 1px;
  margin-top: 34px;
  border-top: 2px solid var(--lp-music);
  border-bottom: 0;
  background: var(--line-strong);
}

.lp-strategy-thesis {
  display: block;
  margin: 0;
  padding: 28px 30px;
  border: 0;
  background: var(--bg);
}

.lp-strategy-thesis strong {
  display: block;
  max-width: 540px;
  margin-top: 18px;
  color: var(--text);
  font-size: clamp(22px, 2.25vw, 32px);
  font-weight: 500;
  line-height: 1.4;
}

.lp-strategy-evidence {
  padding: 28px 30px;
  background: var(--bg);
}

.lp-strategy-evidence > header {
  display: block;
}

.lp-strategy-evidence > header span {
  display: block;
  color: var(--lp-music);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .08em;
}

.lp-strategy-evidence > header strong {
  display: block;
  max-width: 760px;
  margin-top: 14px;
  color: #a9a9a9;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

.lp-strategy-evidence .lp-evidence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.lp-opportunity-note {
  margin-top: 18px;
}

.lp-section-lead,
.lp-prose-wide,
.lp-prose-wide p,
.lp-validation-note p,
.lp-prototype-copy p,
.lp-strategy-thesis p {
  max-width: none;
}

.lp-timeline.is-condensed {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-timeline.is-condensed li {
  min-height: 160px;
  padding-right: clamp(22px, 2.5vw, 38px);
}

.lp-timeline.is-condensed time {
  margin-bottom: 10px;
  font-size: 12px;
}

.lp-timeline.is-condensed span {
  display: block;
  max-width: 360px;
  font-size: 12px;
  line-height: 1.72;
}

.lp-section-lead,
.lp-prose-wide,
#lp-opportunity > .lp-research-disclosure,
#lp-opportunity > .lp-market-signals,
#lp-opportunity > .lp-strategy-layout,
#lp-opportunity > .lp-timeline,
#lp-mvp > .lp-decision-grid,
#lp-mvp > .lp-music-experience,
#lp-validation > .lp-validation-layout,
#lp-validation > .lp-validation-data-note,
#lp-validation > .lp-decision-chain,
#lp-validation > .lp-achievement-block,
#lp-scale > .lp-editor-mechanism,
#lp-scale > .lp-editor-showcase,
#lp-scale > .lp-growth-story,
#lp-reflection > .lp-review-grid {
  width: calc(100% - var(--lp-content-indent));
  margin-left: var(--lp-content-indent);
  box-sizing: border-box;
}

.lp-decision-grid {
  gap: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
}

.lp-decision-grid article {
  min-height: 208px;
  padding: 24px;
  border-right: 1px solid var(--line-strong);
  background: transparent;
}

.lp-decision-grid article:last-child {
  border-right: 0;
}

.lp-decision-grid article.is-selected {
  border-top: 2px solid var(--lp-music);
  background: rgba(185, 215, 125, .055);
  color: var(--text);
}

.lp-decision-grid .is-selected span,
.lp-decision-grid .is-selected p {
  color: var(--lp-music);
}

.lp-decision-grid h3 {
  margin-top: 44px;
}

.lp-validation-note {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-left: 0;
  background: transparent;
}

.lp-validation-note p {
  width: 100%;
}

.lp-achievement-grid article.lp-reward-card {
  align-items: start;
}

.lp-reward-card img {
  max-width: 220px;
  align-self: start;
}

.lp-editor-mechanism {
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  padding: clamp(24px, 3vw, 40px);
  align-items: start;
}

.lp-editor-mechanism h3 {
  font-size: clamp(22px, 2.5vw, 36px);
}

.lp-mechanism-points {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.lp-mechanism-points > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  align-items: start;
  border-bottom: 1px solid var(--line-strong);
}

.lp-mechanism-points > div > span {
  padding-top: 2px;
  color: var(--lp-editor);
  font-size: 9px;
  line-height: 1.55;
  letter-spacing: .08em;
}

.lp-mechanism-points p {
  margin: 0;
  color: #b6b6b6;
  font-size: 12px;
  line-height: 1.72;
}

.lp-showcase-heading h3,
.lp-growth-story header h3 {
  max-width: none;
}

.lp-review-grid h3 {
  line-height: 1.32;
}

@media (max-width: 1180px) {
  .lp-hero {
    grid-template-columns: minmax(330px, 0.92fr) minmax(360px, 1.08fr);
  }

  .lp-hero-copy {
    padding-inline: 38px;
  }

  .lp-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-result-grid article {
    min-height: 145px;
  }

  .lp-results-charts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-results-charts .lp-growth-chart {
    grid-column: 1 / -1;
  }

  .lp-strategy-evidence .lp-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.media-expand {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(10, 10, 10, .72);
  color: #fff;
  cursor: pointer;
}

.media-expand::before,
.media-expand::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
}

.media-expand::before {
  top: 8px;
  right: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.media-expand::after {
  bottom: 8px;
  left: 8px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.media-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, .94);
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox-stage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: pan-x pan-y;
}

.media-lightbox-stage img,
.media-lightbox-stage video {
  display: block;
  max-width: calc(100vw - 150px);
  max-height: calc(100vh - 72px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.media-lightbox-stage img {
  cursor: zoom-in;
}

.media-lightbox-stage.is-zoomed {
  display: block;
  overflow: auto;
  padding: 24px;
  box-sizing: border-box;
}

.media-lightbox-stage.is-zoomed img {
  max-width: none;
  max-height: none;
  margin: 0 auto;
  cursor: zoom-out;
}

.media-lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 44px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(10, 10, 10, .62);
  color: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.media-lightbox-nav::before {
  content: "";
  position: absolute;
  top: 22px;
  width: 17px;
  height: 17px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.media-lightbox-prev {
  left: 18px;
}

.media-lightbox-prev::before {
  left: 16px;
  transform: rotate(-45deg);
}

.media-lightbox-next {
  right: 18px;
}

.media-lightbox-next::before {
  right: 16px;
  transform: rotate(135deg);
}

.media-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(10, 10, 10, .72);
  color: transparent;
  cursor: pointer;
}

.media-lightbox-close::before,
.media-lightbox-close::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 9px;
  width: 18px;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

.media-lightbox-close::after {
  transform: rotate(-45deg);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .media-lightbox {
    padding: 18px;
  }

  .media-lightbox-stage img,
  .media-lightbox-stage video {
    max-width: calc(100vw - 44px);
    max-height: calc(100vh - 52px);
  }

  .media-lightbox-nav {
    width: 36px;
    height: 54px;
  }

  .media-lightbox-prev {
    left: 8px;
  }

  .media-lightbox-next {
    right: 8px;
  }
}

.side-copy section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.side-copy section:last-child {
  border-bottom: 0;
}

.side-copy p {
  margin: 0 0 10px;
  line-height: 1.55;
}

.side-copy .intro {
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.48;
}

.side-copy .intro-detail {
  margin-top: 14px;
  color: #bdbdbd;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.meta-block h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}

.meta-block p {
  margin-bottom: 4px;
  color: var(--muted);
}

.resume-block {
  color: var(--muted);
}

.resume-item {
  margin: 0 0 22px;
}

.resume-item:last-child {
  margin-bottom: 0;
}

#resume .resume-item + .resume-item {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#resume .resume-item:nth-of-type(2) {
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
}

.resume-title,
.resume-role,
.resume-desc {
  display: block;
}

.resume-title {
  color: #cfcfcf;
  font-weight: 500;
}

.resume-role {
  margin-top: 2px;
  color: #8f8f8f;
}

.resume-desc {
  margin-top: 4px;
  color: #9f9f9f;
}

.contact-block p {
  color: var(--muted);
}

.detail {
  padding: var(--pad);
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--muted);
}

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

.detail-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr);
  gap: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-strong);
}

.detail-intro h1 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.detail-intro p {
  margin: 3px 0 0;
  color: var(--muted);
}

.detail-intro dl {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr;
  gap: 18px;
  margin: 0;
}

.detail-intro dt {
  color: var(--soft);
}

.detail-intro dd {
  margin: 4px 0 0;
  color: var(--text);
}

.detail-description {
  max-width: 680px;
  margin: 18px 0 34px;
  color: #cfcfcf;
}

.detail-description p {
  margin: 0 0 1em;
}

.detail-description p:last-child {
  margin-bottom: 0;
}

.project-copy {
  display: block;
  max-width: 43rem;
  margin-top: 22px;
  margin-bottom: 32px;
  padding: 2px 0 2px 18px;
  border-left: 1px solid rgba(242, 242, 242, 0.26);
}

.project-copy::before {
  content: none;
}

.project-copy p {
  max-width: 40rem;
  margin: 0;
  padding: 0;
  border-top: 0;
  color: #bdbdbd;
  font-size: clamp(0.96rem, 0.92rem + 0.12vw, 1.02rem);
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: 0.005em;
}

.project-copy p + p:not(.project-copy-lead) {
  margin-top: 0.72em;
}

.project-copy .project-copy-lead {
  max-width: 39rem;
  margin-bottom: 0.86em;
  padding: 0;
  border-top: 0;
  color: #e8e8e8;
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.08rem);
  font-weight: 600;
  line-height: 1.66;
  letter-spacing: 0;
}

.project-copy .project-method {
  margin: 0.18em 0 1.06em;
  color: #8a8a8a;
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0;
}

.project-copy .project-award {
  margin-top: 1.15em;
  color: #777;
  font-size: 0.76rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.interactive-stage {
  margin: 0 0 30px;
}

.featured-video-stage {
  margin: 0 0 30px;
}

.interactive-frame {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 520px;
  border: 1px solid var(--line-strong);
  background: #000;
}

.interactive-frame.portrait-interactive-frame {
  width: min(100%, 540px);
  height: auto;
  min-height: 0;
  aspect-ratio: 9 / 16;
}

.featured-video {
  display: block;
  width: 100%;
  max-height: min(76vh, 780px);
  border: 1px solid var(--line-strong);
  background: #000;
}

.interaction-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.detail-pages {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-pages.dynamic-r2-pages {
  min-height: 96px;
}

.detail-page {
  margin: 0;
  background: #151515;
}

.detail-page img,
.detail-page video {
  width: 100%;
  height: auto;
}

.cover-page {
  margin-bottom: 12px;
}

.video-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.video-block {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  background: #151515;
}

.video-block img,
.video-block video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-block span {
  display: block;
  padding: 9px 0 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox img,
.lightbox video {
  max-width: min(1180px, 94vw);
  max-height: 82vh;
}

.lightbox-close {
  position: fixed;
  top: 14px;
  right: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  :root {
    --side: auto;
    --pad: 12px;
  }

  .site-shell {
    display: block;
  }

  .portfolio-browser {
    display: block;
  }

  .portfolio-browser.showing-live-photo .main-column {
    display: block;
  }

  .main-column {
    border-right: 0;
  }

  .top-header {
    grid-template-columns: 1fr 100px;
  }

  .mail {
    display: none;
  }

  .category-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-row::-webkit-scrollbar {
    display: none;
  }

  .category-row,
  .top-header {
    position: static;
  }

  .project-meta,
  .detail-intro,
  .detail-intro dl,
  .pane-intro,
  .video-section {
    grid-template-columns: 1fr;
  }

  .compact-archive .project-row {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: start;
    min-height: 92px;
    border-right: 0;
  }

  .project-row.with-right-line {
    border-right: 0;
  }

  .project-row.span-tall-half {
    grid-row: auto;
  }

  .compact-archive .project-media,
  .compact-archive .project-meta {
    width: 100%;
  }

  .compact-archive .project-media.live-photo-cover {
    display: block;
  }

  .compact-archive .project-media.live-photo-cover > video:not(:first-child),
  .compact-archive .project-media.live-photo-cover > img:not(:first-child) {
    display: none;
  }

  .compact-archive .live-photo-project-row .live-photo-cover-meta {
    position: static;
    inset: auto;
    display: flex;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 7px 0 0 12px;
    overflow: visible;
    align-items: flex-start;
    clip: auto;
    border: 0;
    background: transparent;
    white-space: normal;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .live-photo-cover-meta .project-kicker,
  .live-photo-cover-meta .project-result {
    display: none;
  }

  .live-photo-cover-meta h2 {
    font-size: 16px;
    line-height: 1.18;
  }

  .side-info {
    position: static;
    height: auto;
    border-top: 1px solid var(--line-strong);
  }

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

  .live-photo-case {
    --lp-page-gutter: 24px;
    --lp-content-indent: 0px;
    min-height: 100vh;
  }

  .lp-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lp-hero-copy {
    padding: 64px 24px 40px;
  }

  .lp-hero h1 {
    font-size: clamp(40px, 10vw, 62px);
    line-height: 1.1;
  }

  .lp-outcome-map > article,
  .lp-opportunity-headline,
  .lp-opportunity-story,
  .lp-strategy-layout {
    grid-template-columns: 1fr;
  }

  .lp-opportunity-headline .lp-section-title {
    padding-right: 0;
  }

  .lp-opportunity-story {
    border-top: 2px solid var(--lp-music);
    border-left: 0;
  }

  .lp-opportunity-story blockquote {
    padding-left: 0;
  }

  .lp-research-detail-grid {
    grid-template-columns: 1fr;
  }

  .lp-research-detail-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .lp-research-detail-grid article:last-child {
    border-bottom: 0;
  }

  .lp-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-outcome-map header {
    min-height: 166px;
    border-bottom: 1px solid var(--line-strong);
  }

  .lp-outcome-metrics > div {
    min-height: 166px;
  }

  .lp-market-signals li {
    min-height: 200px;
  }

  .lp-hero-thesis {
    margin-top: 20px;
    font-size: clamp(20px, 5.5vw, 28px);
    line-height: 1.45;
  }

  .lp-hero-lead {
    margin-top: 16px;
    line-height: 1.85;
  }

  .lp-hero-phones {
    min-height: 540px;
  }

  .lp-phone {
    width: min(44vw, 285px);
  }

  .lp-phone-main {
    width: min(44vw, 285px);
  }

  .lp-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-snapshot div:nth-child(2) {
    border-right: 0;
  }

  .lp-snapshot div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-strong);
  }

  .lp-section {
    padding: 44px var(--lp-page-gutter);
  }

  .lp-section-title h2 {
    font-size: clamp(28px, 7vw, 46px);
    line-height: 1.22;
  }

  .lp-section-lead,
  .lp-prose-wide,
  .lp-growth-chain,
  .lp-creative-tests,
  .lp-editor-mechanism,
  .lp-growth-story,
  .lp-experiment-criteria,
  .lp-experiment-conclusion,
  .lp-experiment-disclosure,
  .lp-video-pair,
  .lp-music-experience,
  .lp-project-questions,
  .lp-editor-showcase,
  .lp-experiment-grid,
  .lp-tutorial-card {
    margin-left: 0;
  }

  .lp-experiment-conclusion {
    width: 100%;
  }

  .lp-section-lead {
    width: 100%;
  }

  .lp-results-section > .lp-result-grid,
  .lp-results-section > .lp-chart-grid,
  .lp-results-section > .lp-appstore-card,
  .lp-results-section > .lp-data-disclosure {
    width: 100%;
    margin-left: 0;
  }

  .lp-decision-chain,
  .lp-growth-loop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .lp-decision-chain i,
  .lp-growth-loop i {
    display: none;
  }

  .lp-prototype-block {
    grid-template-columns: 1fr;
  }

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

  .lp-growth-chain {
    grid-template-columns: 1fr;
    gap: 1px;
    border: 1px solid var(--line-strong);
    background: var(--line-strong);
  }

  .lp-growth-chain span {
    border: 0;
    background: var(--bg);
  }

  .lp-growth-chain i {
    display: none;
  }

  .lp-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-timeline.is-condensed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-experiment-grid,
  .lp-editor-series {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-copy {
    max-width: 100%;
    margin-top: 18px;
    padding-left: 14px;
  }

  .interactive-frame {
    height: 62svh;
    min-height: 400px;
  }
}

@media (max-width: 620px) {
  .live-photo-case {
    --lp-page-gutter: 18px;
  }

  .lp-hero h1 span {
    display: block;
    font-size: clamp(31px, 9vw, 42px);
    white-space: nowrap;
  }

  .lp-hero-phones {
    min-height: 440px;
  }

  .lp-meta-list {
    grid-template-columns: 1fr;
  }

  .lp-meta-list div,
  .lp-meta-list div:nth-child(even),
  .lp-meta-list div:first-child,
  .lp-meta-list div:last-child {
    grid-column: auto;
    padding: 12px 0;
    border-left: 0;
  }

  .lp-outcome-map {
    padding: 32px var(--lp-page-gutter);
    padding-bottom: 0;
  }

  .lp-outcome-map header {
    min-height: 0;
  }

  .lp-outcome-heading {
    min-height: 0;
  }

  .lp-outcome-metrics {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-outcome-metrics > div {
    min-height: 128px;
    border-bottom: 1px solid var(--line-strong);
  }

  .lp-outcome-map header p,
  .lp-outcome-metrics span {
    margin-top: 18px;
  }

  .lp-outcome-metrics strong {
    min-height: 0;
  }

  .lp-outcome-metrics > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .lp-outcome-metrics strong {
    font-size: clamp(25px, 8vw, 34px);
  }

  .lp-market-signals {
    grid-template-columns: 1fr;
  }

  .lp-market-signals li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .lp-market-signals li:last-child {
    border-bottom: 0;
  }

  .lp-opportunity-story blockquote p {
    margin-top: 0;
  }

  .lp-strategy-thesis {
    padding-block: 22px;
  }

  .lp-strategy-evidence {
    padding: 22px;
  }

  .lp-strategy-evidence .lp-evidence-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .lp-rich-disclosure summary > span {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .lp-rich-disclosure summary {
    align-items: flex-start;
  }

  .lp-rich-disclosure summary small {
    padding-top: 2px;
  }

  .lp-meta-list div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .lp-meta-list div:first-child dd {
    white-space: normal;
  }

  .lp-track-map,
  .lp-achievement-grid {
    grid-template-columns: 1fr;
  }

  .lp-achievement-grid article.lp-reward-card {
    grid-template-columns: 1fr;
  }

  .lp-review-grid h3,
  .lp-review-grid p:first-of-type {
    min-height: 0;
  }

  .lp-material-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lp-achievement-block > header {
    display: block;
  }

  .lp-achievement-block > header p {
    margin-top: 7px;
  }

  .lp-phone {
    width: 47vw;
    border-radius: 18px;
  }

  .lp-phone-main {
    width: 47vw;
  }

  .lp-two-column,
  .lp-opportunity-intro,
  .lp-objective-grid,
  .lp-decision-grid,
  .lp-mvp-scope,
  .lp-music-experience,
  .lp-editor-mechanism,
  .lp-growth-story header,
  .lp-growth-timeline,
  .lp-cohort-proof,
  .lp-platform-risk,
  .lp-video-pair,
  .lp-chart-grid,
  .lp-gallery-secondary,
  .lp-review-grid,
  .lp-project-questions,
  .lp-showcase-heading,
  .lp-year-feature,
  .lp-tutorial-card {
    grid-template-columns: 1fr;
  }

  .lp-editor-showcase {
    grid-template-columns: 1fr;
  }

  .lp-showcase-heading h3 {
    margin-top: 24px;
  }

  .lp-validation-note,
  .lp-validation-data-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lp-growth-timeline li {
    min-height: 0;
  }

  .lp-method-grid,
  .lp-experiment-criteria {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-music-experience {
    max-width: 330px;
    margin-inline: auto;
  }

  .lp-prototype-block {
    padding: 18px;
  }

  .lp-creative-tests {
    display: block;
  }

  .lp-creative-tests ul {
    margin-top: 12px;
  }

  .lp-video-pair {
    justify-items: center;
  }

  .lp-video-pair figure {
    width: min(100%, 280px);
  }

  .lp-feature-video figcaption {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .lp-opportunity-evidence,
  .lp-editor-series,
  .lp-experiment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-opportunity-evidence article {
    min-height: 170px;
  }

  .lp-year-feature figcaption {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .lp-tutorial-card {
    max-width: 300px;
    margin-inline: auto;
  }

  .lp-tutorial-card figcaption {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .lp-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-timeline.is-condensed {
    grid-template-columns: 1fr;
  }

  .lp-phone-island-hint {
    min-width: 92px;
    max-width: 112px;
    font-size: 7px;
  }

  .lp-editor-carousel {
    padding: 18px 14px;
  }

  .lp-editor-carousel .lp-editor-series {
    min-height: 540px;
  }

  .lp-editor-carousel .lp-editor-series .lp-inline-phone {
    width: min(100%, 238px);
  }

  .lp-editor-carousel .lp-editor-phone-card.is-stack-1 {
    transform: translate(32%, -50%) scale(.96);
  }

  .lp-editor-carousel .lp-editor-phone-card.is-stack-2 {
    transform: translate(62%, -50%) scale(.92);
  }

  .lp-editor-carousel .lp-editor-phone-card,
  .lp-editor-carousel .lp-editor-phone-card.is-stack-3 {
    transform: translate(92%, -50%) scale(.88);
  }

  .lp-editor-carousel .lp-editor-phone-card.is-active {
    transform: translate(0, -50%) scale(1);
  }

  .lp-editor-carousel-nav {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .lp-editor-carousel-arrow {
    width: 36px;
  }

  .lp-editor-carousel-tabs button {
    padding-inline: 3px;
    font-size: 9px;
  }

  .lp-columns {
    gap: 16px;
    height: 220px;
    padding-inline: 14px;
  }

  .lp-columns i {
    width: min(100%, 54px);
  }

  .lp-evidence-grid {
    grid-template-columns: 1fr;
  }

  .lp-timeline li {
    min-height: 105px;
  }

  .lp-timeline.is-condensed li {
    min-height: 0;
    padding-bottom: 18px;
  }

  .lp-cohort-compact {
    grid-template-columns: 1fr;
  }

  .lp-experiment-disclosure > summary {
    align-items: flex-start;
  }

  .lp-experiment-details {
    padding: 16px;
  }

  .lp-result-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-result-grid article {
    min-height: 150px;
  }

  .lp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .lp-gallery-grid figure:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .lp-appstore-card {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-distribution-proof {
    grid-template-columns: 1fr;
  }

  .lp-appstore-rank {
    min-width: 0;
    flex: none;
    padding: 16px 0 0;
    flex-direction: row;
    align-items: flex-end;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
    text-align: left;
  }

  .lp-appstore-rank strong {
    font-size: clamp(34px, 12vw, 52px);
  }
}

/* Mobile portfolio browser
   Keep the desktop's image-first, title-free character while using the phone
   viewport as a compact editorial gallery rather than a shrunken archive row. */
@media (max-width: 620px) {
  :root {
    --top: 48px;
    --pad: 14px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .top-header {
    position: sticky;
    top: 0;
    z-index: 50;
    grid-template-columns: minmax(0, 1fr) auto;
    height: var(--top);
    background: rgba(11, 11, 11, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .top-header > * {
    padding-inline: 16px;
  }

  .language {
    min-width: 112px;
    justify-content: center;
  }

  .category-row {
    position: sticky;
    top: var(--top);
    z-index: 49;
    min-height: 47px;
    padding: 0 16px;
    gap: 16px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x proximity;
    background: rgba(11, 11, 11, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .category-row button {
    min-height: 46px;
    font-size: 10px;
    letter-spacing: -0.01em;
    scroll-snap-align: start;
  }

  .portfolio-browser.showing-live-photo .project-pane.has-selection {
    padding-top: calc(var(--top) + 47px);
  }

  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px 0 0;
    background: var(--line-strong);
  }

  .compact-archive .project-row {
    display: flex;
    grid-column: span 1;
    min-height: 0;
    padding: 0;
    border: 0;
    background: var(--bg);
  }

  .compact-archive .project-row.span-full {
    grid-column: 1 / -1;
  }

  .compact-archive .project-row.span-half,
  .compact-archive .project-row.span-third,
  .compact-archive .project-row.span-tall-half,
  .compact-archive .project-row.span-stack-half {
    grid-column: span 1;
  }

  .compact-archive .project-row.active,
  .compact-archive .project-row:hover {
    background: var(--bg);
  }

  .compact-archive .project-row:active {
    opacity: 0.78;
  }

  .compact-archive .project-meta {
    display: none;
    width: 1px;
  }

  .compact-archive .project-media {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .compact-archive .span-full .project-media {
    aspect-ratio: 16 / 9;
  }

  .compact-archive .project-media.vertical-media {
    aspect-ratio: 3 / 4;
  }

  .compact-archive .project-media.tall-media,
  .compact-archive .project-media.portrait-video-media {
    aspect-ratio: 9 / 16;
  }

  .compact-archive .project-media.square-media {
    aspect-ratio: 1;
  }

  .project-row:hover .project-media img,
  .project-row:hover .project-media video {
    transform: none;
    opacity: 1;
  }

  .cover-sound-toggle {
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
  }

  .video-template-note {
    grid-column: 1 / -1;
    padding: 14px 16px;
    background: var(--bg);
  }

  .lp-outcome-map {
    row-gap: 32px;
  }

  .lp-decision-grid {
    border: 1px solid var(--line-strong);
  }

  .lp-decision-grid article,
  .lp-decision-grid article:last-child {
    border-right: 0;
  }

  .lp-decision-grid article {
    border-bottom: 1px solid var(--line-strong);
  }

  .lp-decision-grid article:last-child {
    border-bottom: 0;
  }

  .lp-reward-card img {
    width: min(100%, 260px);
    max-width: 260px;
    margin-top: 18px;
    justify-self: start;
  }

  .lp-timeline.is-condensed {
    display: flex;
    padding-left: 18px;
    flex-direction: column;
  }

  .lp-timeline.is-condensed li {
    min-height: 0;
    padding: 0 0 34px 20px;
    border-top: 0;
    border-left: 1px solid var(--line-strong);
  }

  .lp-timeline.is-condensed li:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
  }

  .lp-timeline.is-condensed li::before {
    top: 2px;
    left: -4px;
  }

  .lp-timeline.is-condensed li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: -4px;
    width: 7px;
    height: 7px;
    border-right: 1px solid #777;
    border-bottom: 1px solid #777;
    transform: rotate(45deg);
  }

  .lp-decision-chain {
    grid-template-columns: minmax(0, 280px);
    gap: 0;
    width: 100%;
    margin: 24px auto 0;
    justify-content: center;
  }

  .lp-decision-chain span {
    min-height: 48px;
    padding: 11px 14px;
  }

  .lp-decision-chain i {
    display: block;
    width: 1px;
    height: 22px;
    justify-self: center;
  }

  .lp-decision-chain i::after {
    top: auto;
    right: -3px;
    bottom: 2px;
    width: 6px;
    height: 6px;
    border-top: 0;
    border-right: 1px solid #777;
    border-bottom: 1px solid #777;
    transform: rotate(45deg);
  }

  #lp-mvp > .lp-music-experience {
    width: 100%;
    max-width: 300px;
    margin-right: 0;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .project-pane {
    display: block;
    position: static;
    height: auto;
    border-top: 1px solid var(--line-strong);
  }

  .project-pane:not(.has-selection) .side-tabs {
    position: static;
  }

  .project-pane.has-selection {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: block;
    width: 100%;
    height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    background: var(--bg);
    -webkit-overflow-scrolling: touch;
  }

  .portfolio-browser.showing-live-photo .project-pane.has-selection {
    position: static;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  body:has(.portfolio-browser:not(.showing-live-photo) .project-pane.has-selection) {
    overflow: hidden;
  }

  .pane-detail {
    min-height: 100%;
    padding: 14px;
    padding-top: max(14px, env(safe-area-inset-top));
  }

  .pane-close {
    top: max(12px, env(safe-area-inset-top));
    width: 44px;
    height: 44px;
    margin-bottom: -44px;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .live-photo-case {
    min-height: 100%;
  }

  .portfolio-browser.showing-live-photo .live-photo-case > .pane-close {
    display: none;
  }
}
