:root {
  --bg: #050505;
  --panel: #0c0b09;
  --text: #f3ead8;
  --app-text: #d6deed;
  --muted: rgba(243, 234, 216, 0.68);
  --app-muted: #737d94;
  --faint: rgba(243, 234, 216, 0.18);
  --accent: #d8ad66;
  --blue: #4569ff;
  --blue-soft: rgba(69, 105, 255, 0.18);
  --line: #1d242f;
  --font-ui: "Futura Now Text", "FuturaNowText", "Proxima Nova", "ProximaNovaA", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 22% 0%, rgba(102, 77, 36, 0.18), transparent 36rem), var(--bg);
}

.is-embedded-wall,
.is-embedded-wall body {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #000;
}

.is-embedded-wall body {
  display: block;
}

html.is-embedded-wall body.is-dna-page {
  height: auto;
  min-height: 100%;
  overflow: auto;
}

main {
  width: min(1440px, calc(100% - clamp(20px, 4.6vw, 76px)));
  margin: 0 auto;
}

.wall-modebar {
  display: flex;
  justify-content: flex-start;
  padding: 22px 0 20px;
}

.is-locked-view .wall-modebar {
  display: none;
}

.view-controls {
  display: flex;
  position: relative;
  align-items: center;
  gap: 28px;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.control {
  appearance: none;
  border: 0;
  border-radius: 0;
  position: relative;
  padding: 0 0 2px;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.control.is-active {
  color: var(--app-text);
}

.control:hover,
.control:focus-visible {
  color: var(--app-text);
}

.control:focus-visible {
  outline: 0;
  text-shadow: 0 0 18px rgba(69, 105, 255, 0.52);
}

.nav-underline {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 2px;
  width: var(--nav-underline-width, 0);
  background: var(--blue);
  box-shadow: 0 0 20px var(--blue-soft);
  transform: translateX(var(--nav-underline-left, 0));
  transition:
    transform .48s cubic-bezier(.19, 1, .22, 1),
    width .48s cubic-bezier(.19, 1, .22, 1);
  pointer-events: none;
}

.nav-state.is-measuring .nav-underline {
  transition: none;
}

main {
  padding: 0 0 44px;
}

.is-embedded-wall main {
  width: 100%;
  height: 100vh;
  max-width: none;
  padding: 0;
}

html.is-embedded-wall body.is-dna-page main {
  height: auto;
  min-height: 100vh;
  overflow: visible;
}

.intro {
  position: relative;
  max-width: 1440px;
  margin: 0 auto 22px;
}

html.is-embedded-wall body .wall-modebar,
html.is-embedded-wall body .wall-modebar *,
html.is-embedded-wall body .intro,
html.is-embedded-wall body .intro *,
html.is-embedded-wall body #page-title {
  display: none !important;
}

.intro h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 4vw, 68px);
  line-height: 0.92;
  letter-spacing: 0;
}

.wall-shell {
  width: 100%;
  min-width: min(100%, 330px);
  margin: 0 auto;
}

.is-embedded-wall .wall-shell {
  width: 100%;
  height: 100%;
  min-width: 0;
  background: #000;
}

html.is-embedded-wall body.is-dna-page .wall-shell {
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.shot-wall {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #000;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.is-embedded-wall .shot-wall {
  height: 100%;
  aspect-ratio: auto;
  box-shadow: none;
  background: #000;
}

html.is-embedded-wall body.is-dna-page .shot-wall {
  height: auto;
  min-height: 100vh;
  overflow: visible;
}

.is-embedded-wall .shot-tile:hover img {
  transform: none;
}

.shot-wall.is-dna-mode {
  aspect-ratio: auto;
  display: block;
  overflow: visible;
  background: #0c0b09;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.shot-tile {
  position: absolute;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #050505;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.shot-wall.is-dna-mode .shot-tile {
  display: none;
}

.shot-tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  z-index: 8;
}

.shot-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 180ms ease, transform 220ms ease;
}

.shot-tile:hover img,
.shot-tile.is-active img {
  filter: brightness(0.82) saturate(0.94) contrast(0.98);
}

.shot-wall.is-dna-mode .shot-tile img {
  filter: brightness(0.58) saturate(0.78) contrast(0.94);
}

.shot-tile:hover img {
  transform: scale(1.015);
}

.shot-wall.is-dna-mode .shot-tile:hover img {
  transform: none;
}

.dna-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(12px, 1.35vw, 22px);
  background:
    radial-gradient(ellipse at 18% 78%, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.22) 34%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.36));
  backdrop-filter: none;
  opacity: 0;
  transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.shot-tile:hover .dna-overlay,
.shot-tile.is-active .dna-overlay {
  opacity: 1;
}

.shot-wall.is-dna-mode .dna-overlay {
  display: none;
}

.dna-frame {
  display: none;
}

.dna-top {
  position: relative;
  z-index: 1;
  width: min(84%, 430px);
  padding-left: clamp(9px, 0.9vw, 14px);
  border-left: 1px solid rgba(216, 173, 102, 0.48);
  transform: translateY(8px);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.shot-tile:hover .dna-top,
.shot-tile.is-active .dna-top {
  transform: translateY(0);
}

.dna-id {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: clamp(13px, 1.45vw, 26px);
  line-height: 1;
  font-weight: 800;
}

.dna-credit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(10px, 1vw, 18px);
  row-gap: clamp(6px, 0.65vw, 10px);
}

.dna-credit-main,
.dna-credit-line {
  display: grid;
  gap: 2px;
}

.dna-credit-main {
  grid-column: 1 / -1;
}

.dna-credit span,
.dna-credit strong {
  margin: 0;
}

.dna-credit span {
  color: rgba(216, 173, 102, 0.88);
  font-size: clamp(7px, 0.5vw, 9px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dna-credit strong {
  color: rgba(255, 250, 237, 0.98);
  font-size: clamp(8px, 0.68vw, 12px);
  line-height: 1.08;
  font-weight: 720;
}

.dna-credit-main strong {
  font-size: clamp(16px, 1.55vw, 28px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.dna-list {
  display: grid;
  gap: 3px;
  max-width: 520px;
}

.dna-row {
  color: rgba(255, 250, 237, 0.98);
  font-size: clamp(8px, 0.68vw, 13px);
  line-height: 1.08;
  font-weight: 680;
}

.dna-row span {
  color: rgba(216, 173, 102, 0.9);
  margin-right: 0.34em;
}

.dna-tonal {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 4px;
  margin-top: 8px;
}

.dna-tonal .dna-row {
  color: rgba(243, 234, 216, 0.88);
  font-size: clamp(7px, 0.58vw, 10px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.dna-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3px;
  margin-top: clamp(8px, 0.9vw, 14px);
  padding-left: clamp(10px, 1vw, 16px);
}

.swatch {
  width: clamp(9px, 0.85vw, 15px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.aggregate-dna {
  display: none;
}

.shot-wall.is-dna-mode .aggregate-dna {
  display: block;
  padding: 0 clamp(24px, 5vw, 72px) clamp(24px, 5vw, 72px);
  background: #0c0b09;
  color: var(--text);
}

.aggregate-head {
  max-width: 980px;
  padding-bottom: clamp(18px, 2.6vw, 30px);
  border-bottom: 1px solid rgba(243, 234, 216, 0.14);
}

body.is-dna-page .aggregate-head > p,
body.is-dna-page .aggregate-head > h2 {
  display: none;
}

.aggregate-head p,
.aggregate-head h2,
.aggregate-head span {
  margin: 0;
}

.aggregate-head p {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aggregate-head h2 {
  margin-top: 12px;
  color: rgba(255, 250, 237, 0.98);
  font-size: clamp(34px, 5vw, 78px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
}

.aggregate-head span {
  display: block;
  max-width: 560px;
  margin-top: 0;
  color: rgba(243, 234, 216, 0.68);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.35;
}

.aggregate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.copy-json,
.json-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(243, 234, 216, 0.18);
  background: rgba(216, 173, 102, 0.14);
  color: rgba(255, 250, 237, 0.94);
  font: 800 11px/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.copy-json {
  cursor: pointer;
}

.json-link {
  background: transparent;
  color: rgba(243, 234, 216, 0.76);
}

.copy-json:hover,
.json-link:hover {
  border-color: rgba(216, 173, 102, 0.46);
  color: rgba(255, 250, 237, 1);
}

.budget-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1060px;
  margin-top: clamp(24px, 4vw, 44px);
  background: rgba(243, 234, 216, 0.12);
}

.budget-strip div {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(255, 250, 237, 0.045);
}

.budget-strip span,
.budget-strip strong {
  display: block;
}

.budget-strip span {
  color: rgba(216, 173, 102, 0.88);
  font-size: 10px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.budget-strip strong {
  margin-top: 8px;
  color: rgba(255, 250, 237, 0.92);
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.2;
  font-weight: 760;
}

.prompt-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1060px;
  margin: clamp(24px, 4vw, 52px) 0 0;
  background: rgba(243, 234, 216, 0.12);
}

.prompt-block {
  position: relative;
  padding: clamp(20px, 3vw, 38px);
  background: #0c0b09;
}

.prompt-blocks {
  border-bottom: 1px solid rgba(243, 234, 216, 0.14);
}

.prompt-block h3,
.aggregate-row h3,
.adapter-section > h3,
.avoid-section h3 {
  margin: 0 0 10px;
  color: rgba(216, 173, 102, 0.92);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prompt-block p {
  margin: 0;
  color: rgba(255, 250, 237, 0.86);
  font-size: clamp(15px, 1.28vw, 19px);
  line-height: 1.36;
  font-weight: 390;
}

.aggregate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(18px, 3vw, 34px);
  background: rgba(243, 234, 216, 0.12);
}

.aggregate-row {
  position: relative;
  padding: clamp(18px, 2.6vw, 32px);
  background: #0c0b09;
}

.aggregate-row p {
  margin: 0;
  color: rgba(255, 250, 237, 0.82);
  font-size: clamp(14px, 1.14vw, 16px);
  line-height: 1.42;
  font-weight: 380;
}

.adapter-section,
.avoid-section {
  margin-top: clamp(22px, 3vw, 38px);
}

.adapter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(243, 234, 216, 0.12);
}

.adapter-row {
  position: relative;
  padding: clamp(16px, 2.3vw, 26px);
  background: #0c0b09;
}

.copy-card-action {
  position: absolute;
  right: clamp(12px, 1.4vw, 18px);
  top: clamp(12px, 1.4vw, 18px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(214, 222, 237, 0.62);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-3px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.copy-card:hover .copy-card-action,
.copy-card:focus-within .copy-card-action,
.copy-card.is-copied .copy-card-action {
  opacity: 1;
  transform: translateY(0);
}

.copy-card-action:hover,
.copy-card-action:focus-visible {
  color: rgba(255, 250, 237, 0.96);
  outline: 0;
}

.copy-card-action:disabled {
  cursor: default;
}

.copy-card-action.is-copied {
  color: rgba(104, 213, 162, 0.92);
}

.copy-card-action.is-copy-failed {
  color: rgba(255, 177, 118, 0.92);
}

.copy-icon {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.copy-icon::before,
.copy-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.copy-icon::before {
  left: 2px;
  top: 2px;
  opacity: 0.74;
}

.copy-icon::after {
  left: 7px;
  top: 7px;
  background: #0c0b09;
}

.adapter-row h4 {
  margin: 0 0 8px;
  color: rgba(255, 250, 237, 0.95);
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
}

.adapter-row p,
.avoid-section p {
  margin: 0;
  color: rgba(255, 250, 237, 0.78);
  font-size: clamp(13px, 1.08vw, 15px);
  line-height: 1.42;
  font-weight: 380;
}

.avoid-section {
  position: relative;
  max-width: 980px;
  padding-top: clamp(18px, 2.5vw, 28px);
  border-top: 1px solid rgba(243, 234, 216, 0.14);
}

.load-error {
  display: grid;
  place-items: center;
  min-height: 60vh;
  color: var(--muted);
  text-align: center;
}

.mobile-detail {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.94);
  color: var(--text);
  touch-action: pan-y;
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 360ms;
}

.mobile-detail.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 0ms;
}

.mobile-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
  font: 400 28px/1 Inter, ui-sans-serif, system-ui, sans-serif;
  cursor: pointer;
}

.mobile-detail-inner {
  position: absolute;
  inset: 0;
  overflow: auto;
}

.mobile-hero {
  position: relative;
  min-height: 100svh;
  display: block;
  background: #000;
  overflow: hidden;
}

.mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.36;
  filter: brightness(0.58) saturate(0.9) contrast(0.96);
}

.mobile-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 36svh;
  object-fit: contain;
  object-position: center top;
  background: #000;
  filter: brightness(0.96) saturate(0.98) contrast(1);
}

.mobile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 24% 58%, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.24) 34%, rgba(0, 0, 0, 0.06) 66%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.14) 42%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.mobile-dna {
  position: relative;
  z-index: 1;
  padding: 22px 22px 28px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-detail.is-open .mobile-dna {
  opacity: 1;
  transform: translateY(0);
}

.detail-dna {
  color: var(--text);
}

.detail-kicker {
  margin-bottom: 10px;
  color: rgba(216, 173, 102, 0.86);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-dna h2 {
  margin: 0;
  color: rgba(255, 250, 237, 0.98);
  font-size: clamp(38px, 4.5vw, 74px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-credits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 42px);
  margin: 24px 0 0;
  padding-top: 22px;
  padding-bottom: 0;
  border-top: 1px solid rgba(243, 234, 216, 0.14);
  border-bottom: 1px solid rgba(243, 234, 216, 0.16);
}

.detail-credits p {
  margin: 0;
  color: rgba(255, 250, 237, 0.94);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.15;
  font-weight: 780;
}

.detail-credits span {
  display: block;
  margin-bottom: 7px;
  color: rgba(216, 173, 102, 0.86);
  font-size: 10px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-dna .dna-id {
  font-size: 30px;
  margin-bottom: 20px;
}

.mobile-dna .dna-list {
  gap: 8px;
}

.mobile-dna .dna-row {
  font-size: 15px;
  line-height: 1.16;
  font-weight: 720;
}

.mobile-dna .dna-tonal {
  gap: 8px;
  margin-top: 18px;
}

.mobile-dna .dna-tonal .dna-row {
  color: rgba(255, 250, 237, 0.98);
  font-size: 15px;
  line-height: 1.16;
  font-weight: 720;
}

.mobile-dna .dna-bottom {
  margin-top: 24px;
}

.mobile-dna .swatch {
  width: 28px;
}

@media (min-width: 761px) {
  .mobile-detail {
    background: rgba(0, 0, 0, 0.96);
  }

  .mobile-close {
    top: calc(clamp(34px, 5vw, 76px) + 10px);
    right: calc((100vw - min(1180px, 92vw)) / 2 + 10px);
    width: 32px;
    height: 32px;
    font-size: 26px;
  }

  .mobile-hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(26px, 3.2vw, 46px);
    padding: clamp(34px, 5vw, 76px);
  }

  .mobile-bg {
    opacity: 0.18;
    filter: brightness(0.52) saturate(0.82) contrast(0.96);
  }

  .mobile-frame {
    width: 100%;
    height: auto;
    max-width: min(1180px, 92vw);
    max-height: min(66svh, 760px);
    object-fit: contain;
    object-position: center;
    background: transparent;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  }

  .mobile-hero::after {
    background:
      radial-gradient(ellipse at 50% 18%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 54%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.54));
  }

  .mobile-dna {
    padding: 0;
    width: min(1180px, 92vw);
    max-width: none;
  }

  .detail-dna {
    display: grid;
    grid-template-columns: minmax(250px, 0.55fr) minmax(460px, 1fr);
    column-gap: clamp(34px, 5vw, 88px);
    row-gap: 18px;
    align-items: start;
    padding-bottom: clamp(18px, 3vw, 44px);
  }

  .detail-kicker,
  .detail-dna h2,
  .detail-credits {
    grid-column: 1;
  }

  .detail-dna .dna-list,
  .detail-dna .dna-tonal,
  .detail-dna .dna-bottom {
    grid-column: 2;
  }

  .detail-dna .dna-list {
    grid-row: 1 / span 2;
  }

  .detail-dna .dna-list {
    gap: 10px;
    max-width: none;
  }

  .detail-dna .dna-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 14px;
    align-items: baseline;
    font-size: clamp(14px, 0.98vw, 18px);
    line-height: 1.22;
    font-weight: 620;
  }

  .detail-dna .dna-row span {
    margin-right: 0;
    font-size: clamp(12px, 0.86vw, 16px);
    font-weight: 850;
    letter-spacing: 0.02em;
  }

  .detail-dna .dna-tonal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(243, 234, 216, 0.12);
    gap: 9px 18px;
  }

  .detail-dna .dna-tonal .dna-row {
    display: block;
    font-size: clamp(12px, 0.82vw, 14px);
    font-weight: 700;
  }

  .detail-dna .dna-tonal .dna-row span {
    margin-right: 0.38em;
    font-size: inherit;
    letter-spacing: 0.02em;
  }

  .detail-dna .dna-bottom {
    margin-top: 10px;
    padding-left: 0;
  }

  .detail-dna .swatch {
    width: 22px;
  }
}

@media (max-width: 760px) {
  main {
    width: calc(100% - 28px);
  }

  .wall-modebar {
    padding: 18px 0 18px;
  }

  .view-controls {
    width: 100%;
    gap: clamp(18px, 7vw, 32px);
    overflow-x: auto;
    padding: 0 0 4px;
    scrollbar-width: none;
  }

  .view-controls::-webkit-scrollbar {
    display: none;
  }

  .control {
    font-size: 10px;
  }

  main {
    padding: 18px 0 30px;
  }

  .intro {
    align-items: start;
    padding: 0 14px;
    margin-bottom: 16px;
  }

  .intro p {
    display: none;
  }

  .wall-shell {
    width: 100%;
    max-width: none;
  }

  .shot-wall {
    box-shadow: none;
  }

  .shot-wall.is-dna-mode {
    background: #0c0b09;
  }

  .shot-tile:hover img,
  .shot-tile.is-active img {
    filter: brightness(0.72) saturate(0.92) contrast(0.98);
  }

  .shot-tile:hover .dna-overlay,
  .shot-tile.is-active .dna-overlay {
    opacity: 0;
  }

  .shot-wall.is-dna-mode .aggregate-dna {
    padding: 22px 18px 34px;
  }

  .aggregate-head {
    padding-bottom: 22px;
  }

  .aggregate-head h2 {
    font-size: 38px;
  }

  .aggregate-head span {
    font-size: 14px;
  }

  .prompt-blocks {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .budget-strip {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .budget-strip div {
    padding: 16px 0;
  }

  .prompt-block {
    padding: 18px 0 54px;
  }

  .prompt-block p {
    font-size: 16px;
    line-height: 1.32;
    font-weight: 500;
  }

  .copy-card-action {
    top: auto;
    right: 0;
    bottom: 16px;
    width: 36px;
    height: 36px;
    opacity: 1;
    transform: none;
    color: rgba(214, 222, 237, 0.7);
  }

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

  .aggregate-row,
  .adapter-row {
    padding: 18px 0 54px;
  }

  .avoid-section {
    padding-bottom: 54px;
  }

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

  .mobile-detail {
    background: rgba(0, 0, 0, 0.96);
  }

  .mobile-close {
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .mobile-hero {
    min-height: 100svh;
    overflow: auto;
  }

  .mobile-bg {
    opacity: 0;
    filter: brightness(0.4) saturate(0.75) contrast(0.95);
  }

  .mobile-frame {
    max-height: 34svh;
    width: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .mobile-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.36) 34%, rgba(0, 0, 0, 0.76));
  }

  .mobile-dna {
    padding: 24px 22px 42px;
    background: #000;
  }

  .detail-kicker {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .detail-dna h2 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.92;
  }

  .detail-credits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0 0;
    padding: 18px 0 20px;
  }

  .detail-credits p {
    font-size: 15px;
    line-height: 1.18;
    font-weight: 720;
  }

  .detail-credits span {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .mobile-dna .dna-list {
    gap: 11px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(243, 234, 216, 0.14);
  }

  .mobile-dna .dna-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 10px;
    align-items: baseline;
    font-size: 14px;
    line-height: 1.22;
    font-weight: 560;
  }

  .mobile-dna .dna-row span {
    margin-right: 0;
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
  }

  .mobile-dna .dna-tonal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(243, 234, 216, 0.14);
  }

  .mobile-dna .dna-tonal .dna-row {
    display: block;
    font-size: 12px;
    line-height: 1.14;
    font-weight: 620;
  }

  .mobile-dna .dna-tonal .dna-row span {
    margin-right: 0.36em;
    font-size: inherit;
  }

  .mobile-dna .dna-bottom {
    margin-top: 22px;
    padding-left: 0;
  }

  .mobile-dna .swatch {
    width: 24px;
  }
}
