/* Canonical /practice: the /field grammar in a commercial, playable sequence. */

html { background: var(--paper); color-scheme: light; }

body.practice-v2-page {
  --field-player-height: 64px;
  --editorial: Georgia, 'Times New Roman', serif;
  --oxide: #98513b;
  --practice-progress: 0;
  min-width: 320px;
  padding-bottom: calc(var(--field-player-height) + env(safe-area-inset-bottom));
  background: var(--paper);
  color: var(--ink);
}

.practice-v2-page main { overflow: clip; }
.practice-v2-page button,
.practice-v2-page input { color: inherit; font: inherit; }
.practice-v2-page em { color: var(--blue); font-style: normal; font-weight: 400; }
.practice-v2-page h1,
.practice-v2-page h2 { font-family: var(--mono); font-weight: 400; }
.practice-v2-page code { font: inherit; }

.practice-v2-mast { position: absolute; }

.pv2-section {
  position: relative;
  min-height: 720px;
  padding: 112px 20px 88px;
  border-bottom: 1px solid var(--ink);
}

.pv2-index,
.pv2-section-index {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--dim);
}

.pv2-index span:first-child,
.pv2-section-index span:first-child { color: var(--blue); }

.pv2-index span:first-child::after,
.pv2-section-index span:first-child::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-left: 18px;
  vertical-align: middle;
  background: currentColor;
  opacity: .6;
}

.pv2-section-index {
  position: absolute;
  top: 42px;
  left: 20px;
}

.pv2-motion [data-reveal] {
  opacity: 0;
  filter: blur(2.5px);
  transform: translateY(6px);
  transition: opacity 620ms cubic-bezier(0, 0, .2, 1),
    filter 720ms cubic-bezier(0, 0, .2, 1),
    transform 720ms cubic-bezier(0, 0, .2, 1);
}

.pv2-motion [data-reveal].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* 01 / HEAR */

.pv2-hero {
  position: relative;
  min-height: max(720px, calc(100svh - var(--field-player-height)));
  padding: 86px 20px 90px;
  border-bottom: 1px solid var(--ink);
  isolation: isolate;
}

.pv2-register {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 76px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-size: 7px;
}

.pv2-hero__copy { position: relative; z-index: 4; max-width: 720px; }
.pv2-hero .pv2-index { margin-bottom: 34px; }

.pv2-hero h1 {
  max-width: 780px;
  line-height: 1;
}

.pv2-hero-line {
  width: max-content;
  max-width: 100%;
  display: block;
  white-space: nowrap;
}

.pv2-hero-line--recognition,
.pv2-hero-line--proposition {
  font-family: var(--mono);
  font-size: clamp(21px, 6.55vw, 44px);
  line-height: 1.02;
  letter-spacing: -.075em;
}

.pv2-hero-line--beat,
.pv2-hero-line--field {
  font-family: var(--editorial);
  font-size: clamp(42px, 11.3vw, 80px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.055em;
}

.pv2-hero-line--beat { margin-top: .04em; }
.pv2-hero-line--proposition { margin-top: .38em; }
.pv2-hero-line--field { margin-top: .02em; }

@keyframes pv2-hero-resolve {
  from { opacity: 0; filter: blur(2px); }
  to { opacity: 1; filter: blur(0); }
}

.pv2-hero [data-hero-reveal] {
  animation: pv2-hero-resolve 520ms cubic-bezier(0, 0, .2, 1) both;
}

.pv2-hero [data-hero-reveal='index'] { animation-delay: 60ms; }
.pv2-hero [data-hero-reveal='recognition'] { animation-delay: 140ms; }
.pv2-hero [data-hero-reveal='proposition'] { animation-delay: 290ms; }
.pv2-hero [data-hero-reveal='support'] { animation-delay: 390ms; }
.pv2-hero [data-hero-reveal='player'] { animation-delay: 470ms; }

.pv2-listen {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 590px;
  min-height: 76px;
  margin-top: 44px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 1fr;
  grid-template-rows: 1fr auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.pv2-listen__play {
  grid-row: 1 / 3;
  border: 0;
  border-right: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.pv2-listen__play:hover,
.pv2-listen__play:focus-visible { background: var(--blue); }

.pv2-listen__identity {
  min-width: 0;
  padding: 13px 12px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pv2-listen__identity strong {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .13em;
}

.pv2-listen__identity > span { margin-top: 3px; color: var(--dim); font-size: 7px; }

.pv2-listen__line {
  align-self: center;
  height: 1px;
  margin: 0 12px;
  background: var(--rule);
  overflow: hidden;
}

.pv2-listen__line i {
  display: block;
  width: 38%;
  height: 1px;
  background: var(--blue);
  transform-origin: left;
  animation: pv2-listen-line 5.5s ease-in-out infinite alternate;
}

.pv2-listen__note {
  grid-column: 2 / 4;
  padding: 0 12px 8px;
  color: var(--dim);
  font-size: 7px;
}

@keyframes pv2-listen-line {
  from { transform: scaleX(.18); opacity: .35; }
  to { transform: scaleX(2.4); opacity: .9; }
}

.pv2-early-buy {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 590px;
  min-height: 48px;
  margin-top: 14px;
  padding: 10px 32px 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 16px;
  border: 1px solid var(--rule);
  color: var(--ink);
}

.pv2-early-buy > strong { font-weight: 400; }
.pv2-early-buy__price {
  min-height: 24px;
  padding-left: 16px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 7px;
  border-left: 1px solid rgba(47, 86, 181, .26);
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.pv2-early-buy__price > span { font-size: 13px; letter-spacing: .045em; }
.pv2-early-buy__price small { color: rgba(47, 86, 181, .72); font-size: 6px; letter-spacing: .16em; }
.pv2-early-buy__terms { grid-column: 1 / 3; color: var(--dim); font-size: 7px; }
.pv2-early-buy > b { position: absolute; right: 12px; top: 13px; color: var(--blue); font-weight: 400; }
.pv2-early-buy:hover,
.pv2-early-buy:focus-visible { border-color: var(--blue); }

.pv2-hero__signal {
  position: absolute;
  z-index: 1;
  right: -42%;
  bottom: 0;
  width: 105%;
  height: 42%;
  margin: 0;
  opacity: .78;
  pointer-events: none;
}

.pv2-hero__signal canvas { width: 100%; height: 100%; display: block; }

.pv2-hero__signal figcaption {
  position: absolute;
  right: 20px;
  bottom: 24px;
  display: flex;
  gap: 18px;
  color: var(--dim);
  font-size: 7px;
}

.pv2-hero__signal figcaption span:last-child { color: var(--blue); }

.pv2-threshold {
  position: absolute;
  z-index: 5;
  right: 12px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  writing-mode: vertical-rl;
}

.pv2-threshold i { width: 1px; height: 44px; background: var(--rule); }

/* 02 / SHAPE */

.pv2-shape { padding-inline: 0; background: var(--paper-blue); }
.pv2-shape .pv2-section-index { left: 20px; }
.pv2-shape__heading { padding: 0 20px; }

.pv2-shape h2,
.pv2-category h2,
.pv2-starting h2,
.pv2-studio__copy h2,
.pv2-depth h2 {
  margin-top: 18px;
  font-size: clamp(35px, 9.7vw, 67px);
  line-height: 1.03;
  letter-spacing: -.06em;
}

.pv2-shape__instrument {
  margin-top: 54px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(242, 239, 231, .12);
  box-shadow: inset 0 1px rgba(255, 255, 255, .36),
    inset 0 -1px rgba(47, 86, 181, .05),
    0 10px 28px rgba(32, 39, 99, .025);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

.pv2-shape__field {
  position: relative;
  height: 258px;
  overflow: hidden;
  background: rgba(242, 238, 230, .2);
  box-shadow: inset 0 1px rgba(255, 255, 255, .36);
}

.pv2-shape__field::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(47, 86, 181, .12);
}

.pv2-shape__field canvas { width: 100%; height: 100%; display: block; }

.pv2-shape__readout {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-size: 7px;
}

.pv2-shape__readout span:last-child { color: var(--blue); }

.pv2-controls {
  display: grid;
  background: rgba(242, 239, 231, .19);
  box-shadow: inset 1px 0 rgba(255, 255, 255, .34),
    inset 0 1px rgba(255, 255, 255, .3),
    inset 0 -1px rgba(47, 86, 181, .035);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.pv2-control {
  position: relative;
  min-height: 106px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-content: center;
  gap: 15px 12px;
  border-top: 1px solid var(--rule);
}

.pv2-controls .pv2-control:first-child { border-top-color: var(--ink); }

.pv2-control__head {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 9px;
  letter-spacing: .16em;
}

.pv2-control__head strong { font-weight: 400; }

.pv2-control__head small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dim);
  font-size: 7px;
  letter-spacing: .12em;
}

.pv2-control__head i { width: 26px; height: 1px; background: var(--rule); }

.pv2-control input[type='range'] {
  width: 100%;
  height: 20px;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.pv2-control input[type='range']::-webkit-slider-runnable-track { height: 1px; background: var(--ink); }
.pv2-control input[type='range']::-moz-range-track { height: 1px; background: var(--ink); }
.pv2-control input[type='range']::-webkit-slider-thumb {
  width: 19px; height: 19px; margin-top: -9px; appearance: none; border: 1px solid var(--blue); background: var(--paper-blue);
}
.pv2-control input[type='range']::-moz-range-thumb {
  width: 19px; height: 19px; border: 1px solid var(--blue); border-radius: 0; background: var(--paper-blue);
}

.pv2-control output { color: var(--blue); font-size: 13px; font-variant-numeric: tabular-nums; text-align: right; }
.pv2-duration { min-height: 118px; }

.pv2-duration__choices {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pv2-duration__choices button {
  height: 36px;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
}

.pv2-duration__choices button + button { border-left: 0; }
.pv2-duration__choices button[aria-pressed='true'] { border-color: var(--ink); background: var(--ink); color: var(--paper-blue); }

.pv2-shape__play {
  height: 34px;
  margin: 10px 20px 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 7px;
  letter-spacing: .18em;
  text-align: left;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pv2-shape__play::before {
  content: '';
  width: 5px;
  height: 5px;
  margin-right: 12px;
  border: 1px solid var(--blue);
  background: transparent;
  transition: background 160ms ease;
}

.pv2-shape__play::after {
  content: 'READY';
  margin-left: auto;
  color: var(--dim);
  font-size: 6px;
  letter-spacing: .15em;
}

.pv2-shape__play:hover,
.pv2-shape__play:focus-visible { border-color: var(--blue); background: rgba(47, 86, 181, .055); }
body[data-field-audio-state='engaged'] .pv2-shape__play { border-color: var(--blue); color: var(--blue); }
body[data-field-audio-state='engaged'] .pv2-shape__play::before { background: var(--blue); }
body[data-field-audio-state='engaged'] .pv2-shape__play::after { content: 'LIVE'; color: var(--blue); }

.pv2-shape__truth { padding: 10px 20px 16px; color: var(--dim); font-size: 7px; text-align: left; }

/* 03 / STUDIO */

.pv2-studio-stage {
  position: relative;
  padding-top: 78px;
  border-bottom: 1px solid rgba(242, 238, 230, .18);
  background: var(--ink);
  color: var(--paper);
}

.pv2-studio-stage .pv2-section-index {
  z-index: 4;
  top: 30px;
  color: rgba(242, 238, 230, .56);
}

.pv2-studio-stage .pv2-section-index span:first-child { color: var(--blue); }

/* 04 / CATEGORY */

.pv2-category { min-height: 780px; background: var(--paper); }
.pv2-category__statement { margin-top: 32px; }
.pv2-category__statement h2 { max-width: 10ch; }

.pv2-method {
  position: relative;
  margin-top: 74px;
  padding-top: 0;
  background: rgba(242, 239, 231, .18);
  box-shadow: inset 0 1px rgba(255, 255, 255, .36),
    inset 0 -1px rgba(47, 86, 181, .04),
    0 12px 32px rgba(32, 39, 99, .018);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
  counter-reset: method-stage;
}

.pv2-method__claim {
  min-height: 43px;
  padding: 0 0 0 14px;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  color: var(--blue);
}

.pv2-method__claim::before {
  content: '';
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid var(--blue);
  background: transparent;
  transition: background 220ms ease 420ms;
}

.pv2-method__claim::after {
  content: '';
  width: 42px;
  height: 1px;
  border-right: 6px solid var(--blue);
  background: var(--rule);
}

.pv2-method.is-revealed .pv2-method__claim::before { background: var(--blue); }

.pv2-method__mechanism {
  max-width: 48ch;
  margin-top: 0;
  padding: 28px 0 30px 18px;
  border-left: 1px solid rgba(47, 86, 181, .28);
  font-size: 15px;
  line-height: 1.7;
}

.pv2-ledger { margin-top: 0; border-top: 1px solid var(--rule); }
.pv2-ledger > div {
  min-height: 49px;
  display: grid;
  grid-template-columns: 28px 104px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rule);
  counter-increment: method-stage;
}
.pv2-ledger > div::before { content: counter(method-stage, decimal-leading-zero); color: var(--blue); }
.pv2-ledger dt { color: var(--dim); }
.pv2-ledger dd { color: var(--ink); }

.pv2-motion .pv2-method [data-method-stage] {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 480ms cubic-bezier(0, 0, .2, 1),
    transform 560ms cubic-bezier(0, 0, .2, 1);
}
.pv2-motion .pv2-method.is-revealed [data-method-stage] { opacity: 1; transform: translateY(0); }
.pv2-motion .pv2-method.is-revealed [data-method-stage='claim'] { transition-delay: 80ms; }
.pv2-motion .pv2-method.is-revealed [data-method-stage='mechanism'] { transition-delay: 170ms; }
.pv2-motion .pv2-method.is-revealed [data-method-stage='descriptors'] { transition-delay: 270ms; }

/* 05 / STARTING FIELDS */

.pv2-starting { padding-inline: 0; background: var(--paper-deep); }
.pv2-starting .pv2-section-index { left: 20px; }
.pv2-starting__heading { padding-inline: 20px; }
.pv2-starting__heading h2 { max-width: 12ch; }
.pv2-starting__heading > p:last-child { max-width: 40ch; margin-top: 20px; color: var(--dim); font-size: 13px; }
.pv2-starting__list { margin-top: 58px; border-top: 1px solid var(--ink); }

.pv2-starting__field {
  position: relative;
  width: 100%;
  min-height: 128px;
  padding: 19px 64px 19px 20px;
  display: grid;
  gap: 6px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.pv2-starting__field > span { color: var(--blue); }
.pv2-starting__field strong { font-size: 22px; font-weight: 400; letter-spacing: -.02em; }
.pv2-starting__field small { color: var(--dim); font-size: 8px; letter-spacing: .13em; }
.pv2-starting__field b { position: absolute; right: 20px; bottom: 21px; font-weight: 400; }
.pv2-starting__field:hover,
.pv2-starting__field:focus-visible,
.pv2-starting__field[aria-current='true'] { background: var(--ink); color: var(--paper); }
.pv2-starting__field:hover > span,
.pv2-starting__field:focus-visible > span,
.pv2-starting__field[aria-current='true'] > span,
.pv2-starting__field:hover b,
.pv2-starting__field:focus-visible b,
.pv2-starting__field[aria-current='true'] b { color: var(--blue); }
.pv2-starting__field:hover small,
.pv2-starting__field:focus-visible small,
.pv2-starting__field[aria-current='true'] small { color: var(--rule); }

/* 06 / IDENTITY */

.pv2-mirror {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-blue);
}

.pv2-mirror__copy h2 {
  max-width: 15ch;
  margin-top: 18px;
  font-size: clamp(34px, 9vw, 68px);
  line-height: 1.05;
  letter-spacing: -.06em;
}

.pv2-mirror__copy h2 em { display: block; margin-top: .14em; }

.pv2-practices {
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 10px;
  color: var(--dim);
  line-height: 1.7;
}

.pv2-practices i { width: 20px; height: 1px; background: var(--blue); opacity: .55; }
.pv2-practices span:first-child,
.pv2-practices span:last-child { color: var(--ink); }

/* 07 / OWNERSHIP */

.pv2-ownership { min-height: 1180px; padding-inline: 0; background: var(--paper); }
.pv2-ownership .pv2-section-index { left: 20px; }

.pv2-verbs {
  padding: 28px 20px 82px;
  display: flex;
  flex-direction: column;
  font-size: clamp(43px, 13.2vw, 108px);
  line-height: .92;
  letter-spacing: -.075em;
}

.pv2-verbs span:nth-child(even) { color: var(--blue); }
.pv2-verbs span:nth-child(2) { margin-left: .6em; }
.pv2-verbs span:nth-child(3) { margin-left: .12em; }
.pv2-verbs span:nth-child(4) { margin-left: .38em; }

.pv2-studio {
  position: relative;
  padding: 0 0 48px;
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.pv2-studio__image {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 0 0 20px;
  overflow: hidden;
  border-left: 1px solid rgba(242, 238, 230, .22);
  border-bottom: 1px solid rgba(242, 238, 230, .22);
}

.pv2-studio__image img {
  width: 142%;
  max-width: none;
  height: auto;
  transform: translateX(-26%);
  filter: saturate(.8) contrast(1.06);
}

.pv2-studio__image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 12px;
  background: rgba(23, 23, 26, .92);
  color: rgba(242, 238, 230, .62);
  font-size: 7px;
}

.pv2-studio__copy { padding: 58px 20px 12px; }
.pv2-studio__copy h2 { max-width: 12ch; }
.pv2-studio__copy > p:last-child { max-width: 44ch; margin-top: 22px; color: rgba(242, 238, 230, .65); font-size: 12px; }

.pv2-soma-object {
  position: relative;
  min-height: 78px;
  margin-top: 48px;
  padding: 14px 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  border: 1px solid rgba(242, 238, 230, .36);
  color: rgba(242, 238, 230, .62);
  font-size: 7px;
}

.pv2-soma-object span:first-child { color: var(--paper); }
.pv2-soma-object i {
  grid-column: 1 / 3;
  height: 1px;
  background: rgba(242, 238, 230, .18);
}
.pv2-soma-object b { grid-column: 2; color: var(--blue); font-weight: 400; }

/* 08 / ACQUIRE */

.pv2-acquire {
  position: relative;
  min-height: 820px;
  padding: 102px 20px 86px;
  display: grid;
  align-content: space-between;
  gap: 54px;
  background: var(--blue);
  color: var(--paper);
  isolation: isolate;
}

.pv2-acquire::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 61%;
  width: 1px;
  background: rgba(242, 238, 230, .18);
}

.pv2-acquire__register {
  position: absolute;
  top: 34px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  color: rgba(242, 238, 230, .58);
  font-size: 7px;
}

.pv2-acquire__name > p:first-child {
  color: rgba(242, 238, 230, .56);
  letter-spacing: .26em;
}

.pv2-acquire__name h2 {
  margin-top: -5px;
  font-size: clamp(74px, 25vw, 188px);
  line-height: .9;
  letter-spacing: -.085em;
}

.pv2-acquire__name > p:last-child {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .13em;
}

.pv2-acquire__price {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.pv2-acquire__price strong {
  font-size: clamp(62px, 19vw, 126px);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.08em;
}

.pv2-acquire__price span { color: rgba(242, 238, 230, .62); font-size: 7px; line-height: 1.7; }

.pv2-acquire__includes { border-top: 1px solid rgba(242, 238, 230, .34); }
.pv2-acquire__includes > div {
  min-height: 42px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(242, 238, 230, .24);
}
.pv2-acquire__includes dt { color: rgba(242, 238, 230, .48); }
.pv2-acquire__includes dd { color: var(--paper); }

.pv2-buy {
  position: relative;
  min-height: 66px;
  padding: 0 52px 0 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .14em;
  cursor: pointer;
}

.pv2-buy[aria-disabled='true'] { cursor: not-allowed; opacity: .72; }
.pv2-buy span { color: var(--blue); }
.pv2-buy b { position: absolute; right: 18px; font-size: 18px; font-weight: 400; }
.pv2-buy:not([aria-disabled='true']):hover,
.pv2-buy:not([aria-disabled='true']):focus-visible { background: var(--ink); color: var(--paper); }
.pv2-acquire__action > p { margin-top: 13px; color: rgba(242, 238, 230, .6); font-size: 7px; }
.pv2-checkout-status { display: block; min-height: 14px; margin-top: 8px; color: var(--paper); font-size: 7px; }

/* 08 / DEPTH */

.pv2-depth { min-height: 690px; padding-inline: 0; background: var(--paper-blue); }
.pv2-depth .pv2-section-index { left: 20px; }
.pv2-depth__heading { padding-inline: 20px; }
.pv2-depth__links { margin-top: 64px; border-top: 1px solid var(--ink); }

.pv2-depth__links a {
  position: relative;
  min-height: 70px;
  padding: 0 46px 0 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.pv2-depth__links a span { color: var(--blue); }
.pv2-depth__links a strong { font-weight: 400; }
.pv2-depth__links a b { position: absolute; right: 20px; color: var(--blue); font-size: 14px; font-weight: 400; }
.pv2-depth__links a:hover,
.pv2-depth__links a:focus-visible { background: var(--ink); color: var(--paper-blue); }

.pv2-foot { background: var(--paper); }

/* /field transport behavior, scoped to the parallel page. */

.pv2-transport { grid-template-columns: 78px minmax(0, 1fr) 58px; grid-template-rows: 1fr 7px; }
.pv2-transport .field-persistent__toggle { grid-row: 1 / 3; }
.pv2-transport .field-persistent__identity { grid-row: 1; border-right: 0 !important; }
.pv2-transport .field-persistent__line { grid-column: 2 / 4; grid-row: 2; align-self: start; margin: 0 12px; }
.pv2-transport .field-persistent__state { display: none; }
.pv2-transport .field-persistent__time { grid-column: 3; grid-row: 1; border-left: 1px solid var(--player-plate); }
.pv2-transport .field-persistent__time span:last-child { display: none; }
.pv2-transport__buy {
  display: none;
  min-width: 0;
  padding: 0 12px;
  grid-row: 1;
  flex-direction: column;
  justify-content: center;
}
.pv2-transport__buy span { color: var(--player-ash); font-size: 7px; }
.pv2-transport__buy strong { color: var(--player-ivory); font-size: 10px; font-weight: 400; letter-spacing: .14em; }
.pv2-transport__buy small { color: var(--player-live); font-size: 7px; letter-spacing: .12em; }
.pv2-transport.is-commercial .field-persistent__identity { display: none; }
.pv2-transport.is-commercial .pv2-transport__buy { display: flex; }


/* Hierarchy refinement: clearer guidance without changing the /field grammar. */

.pv2-hero__guide {
  max-width: 45ch;
  margin-top: 20px;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.6;
}

.pv2-hero__audience {
  max-width: 590px;
  margin-top: 11px;
  color: var(--dim);
  font-size: 7px;
  line-height: 1.8;
  letter-spacing: .11em;
}

.pv2-listen {
  margin-top: 28px;
  grid-template-columns: 150px minmax(0, 1fr) 1fr;
}

.pv2-listen__play {
  position: relative;
  padding: 0 12px 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 23, 26, .035);
  color: var(--ink);
  letter-spacing: .1em;
}

.pv2-listen__play::before {
  content: '▶';
  position: absolute;
  left: 12px;
  color: var(--blue);
  font-size: 8px;
  line-height: 1;
}

.pv2-listen__play:hover,
.pv2-listen__play:focus-visible,
.pv2-listen__play[aria-pressed='true'] {
  background: var(--ink);
  color: var(--paper);
}

.pv2-listen__play[aria-pressed='true']::before { content: 'Ⅱ'; }

.pv2-entry-actions {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 590px;
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.pv2-open-player {
  min-height: 46px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.pv2-open-player b {
  color: var(--blue);
  font-size: 14px;
  font-weight: 400;
}

.pv2-open-player:hover,
.pv2-open-player:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.pv2-early-buy {
  min-height: 58px;
  margin-top: 0;
}
.pv2-early-buy > strong { font-size: 9px; letter-spacing: .08em; }
.pv2-early-buy__price > span { font-size: 13px; letter-spacing: .045em; }
.pv2-early-buy__terms { font-size: 7.5px; }

.pv2-professional {
  padding: 68px 20px 74px;
  border-top: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
}

.pv2-professional__heading h2 {
  max-width: 14ch;
  margin-top: 15px;
  font-size: clamp(31px, 8.5vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.055em;
}

.pv2-professional__flow {
  margin-top: 38px;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.pv2-professional__flow li {
  min-height: 86px;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-content: center;
  gap: 5px 10px;
  border-bottom: 1px solid var(--rule);
}

.pv2-professional__flow span { grid-row: 1 / 3; color: var(--blue); }
.pv2-professional__flow strong { font-size: 10px; font-weight: 400; letter-spacing: .12em; }
.pv2-professional__flow small { color: var(--dim); font-size: 11px; line-height: 1.55; }

.pv2-acquire__name > p:last-child { font-size: 13px; }
.pv2-acquire__includes dd { font-size: 10px; letter-spacing: .11em; }
@media (min-width: 760px) {
  .pv2-entry-actions { grid-template-columns: 160px minmax(0, 1fr); }
  .pv2-professional {
    padding: 88px 6.25vw 94px;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
    gap: 8vw;
  }
  .pv2-professional__flow { margin-top: 0; }
  .pv2-professional__flow li { min-height: 96px; }
  .pv2-section { min-height: 900px; padding: 150px 6.25vw 120px; }
  .pv2-section-index { top: 64px; left: 6.25vw; }
  .pv2-hero { min-height: max(720px, calc(100svh - var(--field-player-height))); padding: 150px 6.25vw 100px; }
  .pv2-register { top: 34px; left: 13.2vw; right: 30vw; font-size: 8px; }
  .pv2-hero__copy { width: 66%; max-width: 900px; }
  .pv2-hero h1 { max-width: 20ch; font-size: clamp(48px, 4.25vw, 64px); }
  .pv2-listen { margin-top: 38px; grid-template-columns: 168px minmax(0, 220px) 1fr; }
  .pv2-early-buy { grid-template-columns: minmax(0, 1fr) auto minmax(160px, auto); column-gap: 18px; }
  .pv2-early-buy__terms {
    grid-column: auto;
    padding-left: 18px;
    border-left: 1px solid rgba(23, 23, 26, .16);
  }
  .pv2-hero__signal { top: 14%; right: -6%; bottom: auto; width: 59%; height: 72%; opacity: .95; }
  .pv2-threshold { right: 4vw; bottom: 50px; }

  .pv2-shape { padding-inline: 6.25vw; }
  .pv2-shape .pv2-section-index { left: 6.25vw; }
  .pv2-shape__heading { width: 54%; padding: 0; }
  .pv2-shape__instrument {
    min-height: 470px;
    margin-top: 60px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
    border: 1px solid var(--ink);
  }
  .pv2-shape__field { height: auto; min-height: 470px; border-right: 1px solid var(--ink); }
  .pv2-controls { align-content: center; }
  .pv2-controls .pv2-control:first-child { border-top: 0; }
  .pv2-control { min-height: 98px; }
  .pv2-shape__play { margin-top: 10px; }

  .pv2-category { display: grid; grid-template-columns: 1.15fr .85fr; align-content: center; gap: 9vw; }
  .pv2-category__statement { margin: 0; }
  .pv2-method { margin: 0; align-self: center; }

  .pv2-starting { padding-inline: 6.25vw; }
  .pv2-starting .pv2-section-index { left: 6.25vw; }
  .pv2-starting__heading { width: 50%; padding: 0; }
  .pv2-starting__list { margin-left: 33%; }
  .pv2-starting__field { min-height: 132px; padding-inline: 24px 90px; }

  .pv2-mirror { min-height: 850px; padding-left: 22vw; }
  .pv2-mirror__copy h2 { max-width: 17ch; }
  .pv2-practices { max-width: 850px; }

  .pv2-ownership { padding-inline: 0; }
  .pv2-ownership .pv2-section-index { left: 6.25vw; }
  .pv2-verbs { padding: 30px 6.25vw 120px; }
  .pv2-verbs span:nth-child(2) { margin-left: 22vw; }
  .pv2-verbs span:nth-child(3) { margin-left: 6vw; }
  .pv2-verbs span:nth-child(4) { margin-left: 31vw; }
  .pv2-verbs span:nth-child(5) { margin-left: 15vw; }
  .pv2-studio { min-height: 720px; padding: 0; display: grid; grid-template-columns: 62% 38%; align-items: center; }
  .pv2-studio__image { width: 100%; height: 610px; margin: 0; border: 0; overflow: hidden; }
  .pv2-studio__image img { width: auto; max-width: none; height: 100%; transform: translateX(0); }
  .pv2-studio__copy { position: relative; z-index: 2; padding: 64px 5vw 64px 3vw; }

  .pv2-acquire {
    min-height: 900px;
    padding: 130px 6.25vw 100px;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: auto auto 1fr;
    align-content: center;
    gap: 70px 8vw;
  }
  .pv2-acquire__register { top: 50px; left: 6.25vw; right: 6.25vw; }
  .pv2-acquire__name { grid-column: 1; }
  .pv2-acquire__price { grid-column: 2; grid-row: 1; align-self: end; }
  .pv2-acquire__includes { grid-column: 1; grid-row: 2; }
  .pv2-acquire__action { grid-column: 2; grid-row: 2; align-self: end; }
  .pv2-acquire__name h2 { font-size: clamp(112px, 14.5vw, 210px); }
  .pv2-acquire__price strong { font-size: clamp(78px, 8.2vw, 118px); }

  .pv2-depth { padding-inline: 6.25vw; display: grid; grid-template-columns: .9fr 1.1fr; align-content: center; gap: 9vw; }
  .pv2-depth .pv2-section-index { left: 6.25vw; }
  .pv2-depth__heading { padding: 0; }
  .pv2-depth__links { margin: 0; }

  .pv2-transport { grid-template-columns: 112px 250px minmax(100px, 1fr) 96px 106px; grid-template-rows: 1fr; }
  .pv2-transport .field-persistent__toggle,
  .pv2-transport .field-persistent__identity,
  .pv2-transport__buy,
  .pv2-transport .field-persistent__line,
  .pv2-transport .field-persistent__state,
  .pv2-transport .field-persistent__time { grid-row: 1; }
  .pv2-transport .field-persistent__toggle { grid-column: 1; }
  .pv2-transport .field-persistent__identity,
  .pv2-transport__buy { grid-column: 2; border-right: 1px solid var(--player-plate) !important; }
  .pv2-transport .field-persistent__line { grid-column: 3; align-self: center; margin: 0 24px; }
  .pv2-transport .field-persistent__state { grid-column: 4; display: grid; }
  .pv2-transport .field-persistent__time { grid-column: 5; }
  .pv2-transport .field-persistent__time span:last-child { display: inline; }
}

@media (min-width: 1180px) {
  .pv2-hero__copy { margin-left: 12vw; }
  .pv2-shape__heading { margin-left: 8vw; }
  .pv2-category { padding-inline: 10vw; }
  .pv2-starting__heading { margin-left: 8vw; }
  .pv2-depth { padding-inline: 10vw; }
}

@media (max-width: 430px) {
  .pv2-foot nav {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 12px;
  }
  .pv2-foot nav a { min-width: 0; }
  .practice-v2-mast { min-height: 64px; padding: 16px 20px; }
  .practice-v2-mast .house-nav a { padding-inline: 8px; }
  .pv2-register span:last-child { display: none; }
  .pv2-listen__line { display: none; }
  .pv2-listen { grid-template-columns: 150px minmax(0, 1fr); }
  .pv2-listen__note { grid-column: 2; }
  .pv2-early-buy { padding-right: 12px; font-size: 7px; }
  .pv2-early-buy b { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pv2-motion [data-reveal] { opacity: 1; filter: none; transform: none; transition: none; }
  .pv2-motion .pv2-method [data-method-stage] { opacity: 1; transform: none; transition: none; }
  .pv2-listen__line i { animation: none; }
}

/* Living Field: one stateful Canvas 2D organism behind the semantic interface. */

.pv2-living-field {
  --cyan: #b7c8ee;
  --indigo: #202763;
  --violet: #4a2f78;
  --accent: #2f56b5;
  --field-heat: #4a2f78;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  transform-origin: 0 0;
  transition: opacity 420ms cubic-bezier(0, 0, .2, 1);
  contain: strict;
}

.pv2-living-field.is-migrating {
  transition:
    opacity 420ms cubic-bezier(0, 0, .2, 1),
    transform 820ms cubic-bezier(.2, 0, 0, 1),
    width 820ms cubic-bezier(.2, 0, 0, 1),
    height 820ms cubic-bezier(.2, 0, 0, 1);
}

.pv2-living-field.is-visible { opacity: .88; }
.pv2-living-field[data-state='play'] { opacity: 1; }
.pv2-living-field canvas,
.pv2-living-field__fallback,
.pv2-living-field__fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.pv2-living-field canvas { opacity: 0; transition: opacity 500ms cubic-bezier(0, 0, .2, 1); }
.pv2-living-field__fallback { opacity: .7; transition: opacity 500ms cubic-bezier(0, 0, .2, 1); }
.pv2-living-field__fallback img { max-width: none; object-fit: cover; }
.pv2-field-ready .pv2-living-field canvas { opacity: 1; }
.pv2-field-ready .pv2-living-field__fallback { opacity: 0; }
.pv2-living-field[data-quality='static'] canvas { opacity: 0; }
.pv2-living-field[data-quality='static'] .pv2-living-field__fallback { opacity: .7; }

.pv2-field-portal { width: 100%; height: 100%; }
.pv2-hero { isolation: auto; }
.pv2-hero__signal {
  right: -32%;
  top: 18%;
  bottom: auto;
  width: 110%;
  height: 64%;
  opacity: 1;
}
.pv2-hero__signal figcaption,
.pv2-shape__readout { z-index: 4; }

.pv2-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.practice-v2-mast .pv2-wordmark {
  width: 74px;
  height: 36px;
  padding: 6px 7px;
  border: 1px solid var(--rule);
}

.practice-v2-mast .pv2-wordmark img {
  width: 100%;
  height: auto;
}

.pv2-state-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dim);
  font-size: 7px;
}

.pv2-state-indicator i {
  width: 7px;
  height: 7px;
  display: block;
  border: 1px solid var(--ink);
  background: transparent;
}

.pv2-state-indicator b { font-weight: 400; }
.pv2-state-indicator[data-state='ready'] i { background: var(--ink); }
.pv2-state-indicator[data-state='active'] { color: var(--blue); }
.pv2-state-indicator[data-state='active'] i { border-color: var(--blue); background: var(--blue); }

@media (min-width: 760px) {
  .pv2-living-field.is-visible { opacity: .92; }
  .pv2-hero__signal { top: 8%; right: -4%; width: 64%; height: 80%; }
  .practice-v2-mast .pv2-wordmark { width: 86px; height: 42px; padding: 7px 8px; }
}

@media (max-width: 430px) {
  .practice-v2-mast .pv2-wordmark { width: 68px; height: 33px; padding: 6px; }
  .pv2-brand-lockup { gap: 9px; }
  .pv2-state-indicator b { display: none; }
  .pv2-state-indicator i { width: 6px; height: 6px; }
  .pv2-register { top: 66px; left: 20px; }
  .pv2-hero { padding-top: 104px; }
  .pv2-hero__signal { top: 17%; right: -37%; width: 116%; height: 66%; }
}

@media (prefers-reduced-motion: reduce) {
  .pv2-living-field,
  .pv2-living-field.is-migrating,
  .pv2-living-field canvas,
  .pv2-living-field__fallback { transition: none; }
}

.pv2-state-indicator i { border-radius: 50%; }

@media (min-width: 760px) {
  .pv2-register { left: 23vw; }
  .pv2-hero__signal figcaption { right: calc(4% + 38px); }
}

@media (max-width: 430px) {
  .pv2-hero__signal figcaption { right: calc(37% + 28px); }
}

@media (max-width: 390px) {
  .pv2-entry-actions { margin-top: 10px; gap: 4px; }
}

/* Surgical editorial pass: hierarchy and commands, never Field morphology. */

.pv2-hero__guide { margin-top: 16px; }
.pv2-hero__audience { margin-top: 8px; }

.pv2-listen {
  min-height: 84px;
  margin-top: 24px;
  grid-template-columns: 126px minmax(0, 1fr) 1fr;
}

.practice-v2-page .pv2-listen__play {
  position: relative;
  padding: 0 14px 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  letter-spacing: .14em;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pv2-listen__play::before {
  content: '▶';
  position: absolute;
  left: 16px;
  color: var(--paper);
  font-size: 10px;
  line-height: 1;
}

.pv2-listen__play:hover,
.pv2-listen__play:focus-visible,
.pv2-listen__play[aria-pressed='true'] {
  background: var(--ink);
  color: var(--paper);
  box-shadow: inset 3px 0 var(--blue);
}

.pv2-listen__play:hover::before,
.pv2-listen__play:focus-visible::before,
.pv2-listen__play[aria-pressed='true']::before { color: var(--blue); }
.pv2-listen__play[aria-pressed='true']::before { content: 'Ⅱ'; }

.pv2-listen__identity { padding: 12px 14px 7px; }
.pv2-listen__identity strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: .08em;
}
.pv2-listen__identity > span { margin-top: 6px; font-size: 6.5px; letter-spacing: .11em; }

.pv2-listen__line { background: rgba(23, 23, 26, .16); }
.pv2-listen__line i {
  width: 100%;
  animation: none;
  transform: scaleX(var(--practice-progress));
  transition: transform 160ms linear;
}

body[data-field-audio-state='engaged'] .pv2-listen { border-bottom-color: var(--blue); }
body[data-field-audio-state='engaged'] .pv2-listen__line { background: rgba(47, 86, 181, .16); }

.pv2-listen__note {
  color: rgba(116, 113, 107, .78);
  font-size: 6.5px;
  letter-spacing: .1em;
}

.pv2-entry-actions { margin-top: 10px; }
.pv2-early-buy { min-height: 52px; }
.pv2-shape__play { margin-top: 14px; }

@media (min-width: 760px) {
  .pv2-hero h1 { max-width: 780px; }
  .pv2-listen {
    margin-top: 28px;
    grid-template-columns: 142px minmax(0, 240px) 1fr;
  }
  .pv2-studio-stage { min-height: 720px; padding-top: 0; }
  .pv2-studio-stage .pv2-section-index { top: 44px; left: 6.25vw; }
}

@media (max-width: 430px) {
  .pv2-listen {
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-rows: 1fr auto auto;
  }
  .pv2-listen__play { grid-row: 1 / 4; }
  .pv2-listen__identity { grid-column: 2; grid-row: 1; }
  .pv2-listen__line {
    grid-column: 2;
    grid-row: 2;
    display: block;
    margin: 0 14px 6px;
  }
  .pv2-listen__note { grid-column: 2; grid-row: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .pv2-hero [data-hero-reveal] {
    animation: none;
    opacity: 1;
    filter: none;
  }
}

/* Final sound-object refinement: one line system, no filled play slab. */

.pv2-hero-line--field {
  font-size: clamp(44px, 11.8vw, 84px);
}

.pv2-listen {
  min-height: 76px;
  grid-template-columns: 100px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  column-gap: 0;
  border: 1px solid rgba(23, 23, 26, .38);
  background: rgba(242, 239, 231, .48);
  box-shadow: inset 0 1px rgba(255, 255, 255, .42),
    inset 0 -1px rgba(47, 86, 181, .045);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

.pv2-listen::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 9px;
  width: 3px;
  height: 3px;
  background: var(--oxide);
  opacity: .78;
  pointer-events: none;
}

.practice-v2-page .pv2-listen__play {
  grid-column: 1;
  grid-row: 1 / 3;
  min-width: 0;
  padding: 0 0 0 54px;
  justify-content: flex-start;
  border-right: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-size: 8px;
  letter-spacing: .13em;
}

.pv2-listen__play::before {
  content: '';
  position: absolute;
  left: 14px;
  width: 25px;
  height: 25px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: rgba(242, 239, 231, .38);
  transition: border-color 160ms ease, background 160ms ease;
}

.pv2-listen__play::after {
  content: '▶';
  position: absolute;
  left: 23px;
  color: var(--ink);
  font-size: 8px;
  line-height: 1;
  transition: color 160ms ease;
}

.practice-v2-page .pv2-listen__play:hover,
.practice-v2-page .pv2-listen__play:focus-visible,
.practice-v2-page .pv2-listen__play[aria-pressed='true'] {
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}

.pv2-listen__play:hover::before,
.pv2-listen__play:focus-visible::before,
.pv2-listen__play[aria-pressed='true']::before {
  content: '';
  border-color: var(--blue);
  background: rgba(47, 86, 181, .055);
}

.pv2-listen__play:hover::after,
.pv2-listen__play:focus-visible::after,
.pv2-listen__play[aria-pressed='true']::after { color: var(--blue); }
.pv2-listen__play[aria-pressed='true']::after { content: 'Ⅱ'; left: 22px; }

.pv2-listen__identity {
  grid-column: 2;
  grid-row: 1;
  padding: 11px 14px 6px;
}

.pv2-listen__identity strong { font-size: 19px; }
.pv2-listen__identity > span {
  margin-top: 7px;
  font-size: 6.25px;
  letter-spacing: .08em;
}

.pv2-listen__line {
  grid-column: 2;
  grid-row: 2;
  display: block;
  margin: 0 14px 11px;
  background: rgba(23, 23, 26, .2);
}

body[data-field-audio-state='engaged'] .pv2-listen {
  border-color: rgba(47, 86, 181, .72);
}

.pv2-entry-actions {
  display: block;
  margin-top: 9px;
}

@media (min-width: 760px) {
  .pv2-listen {
    grid-template-columns: 112px minmax(0, 220px) 1fr;
    grid-template-rows: 1fr;
  }

  .practice-v2-page .pv2-listen__play {
    grid-column: 1;
    grid-row: 1;
  }

  .pv2-listen__identity {
    grid-column: 2;
    grid-row: 1;
    padding-block: 10px;
  }

  .pv2-listen__line {
    grid-column: 3;
    grid-row: 1;
    margin: 0 0 0 16px;
  }
}

/* Material depth pass: restrained optical hierarchy on instrument surfaces only. */

.pv2-hero-line--recognition { color: rgba(23, 23, 26, .76); }
.pv2-hero-line--proposition { color: rgba(23, 23, 26, .9); }
.pv2-hero-line--field { color: var(--blue); }

.pv2-listen {
  background: rgba(242, 239, 231, .5);
  border-color: rgba(32, 39, 99, .34);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .72),
    inset 1px 0 rgba(255, 255, 255, .42),
    inset 0 -1px rgba(47, 86, 181, .08),
    0 10px 30px rgba(32, 39, 99, .035);
}

.pv2-listen::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(207, 221, 251, .34);
  clip-path: polygon(0 0, 100% 0, 100% 1px, 0 1px, 0 100%, 1px 100%, 1px 0);
  pointer-events: none;
}

.pv2-listen > * { position: relative; z-index: 1; }
.pv2-listen__play::before {
  border-color: rgba(23, 23, 26, .78);
  background: rgba(242, 239, 231, .58);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .76),
    inset 0 -2px 5px rgba(32, 39, 99, .1),
    0 2px 8px rgba(32, 39, 99, .08);
}

.pv2-early-buy {
  background: rgba(242, 239, 231, .34);
  border-color: rgba(23, 23, 26, .22);
  box-shadow: inset 0 1px rgba(255, 255, 255, .58), inset 0 -1px rgba(47, 86, 181, .045);
}

.pv2-early-buy__price {
  position: relative;
  background: rgba(183, 200, 238, .11);
  box-shadow: inset 1px 0 rgba(255, 255, 255, .55), 0 0 18px rgba(47, 86, 181, .045);
}

.pv2-living-field::before,
.pv2-living-field::after {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.pv2-living-field::before {
  top: -10%;
  right: auto;
  bottom: auto;
  left: 45%;
  width: 1px;
  height: 120%;
  background: rgba(255, 255, 255, .26);
  box-shadow: 14px 0 30px rgba(207, 221, 251, .12);
  transform: rotate(12deg);
  transform-origin: center;
  mix-blend-mode: screen;
  opacity: .72;
}

.pv2-living-field::after {
  inset: 12% 9%;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-right: 1px solid rgba(32, 39, 99, .09);
  opacity: .72;
}

.pv2-shape__instrument {
  background: rgba(242, 239, 231, .15);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .58),
    inset 1px 0 rgba(255, 255, 255, .34),
    inset 0 -1px rgba(47, 86, 181, .07),
    0 18px 44px rgba(32, 39, 99, .035);
}

.pv2-shape__field::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: -8%;
  right: auto;
  bottom: auto;
  left: 54%;
  width: 1px;
  height: 116%;
  background: rgba(255, 255, 255, .2);
  box-shadow: 10px 0 24px rgba(207, 221, 251, .08);
  transform: rotate(10deg);
  pointer-events: none;
}

.pv2-controls {
  background: rgba(242, 239, 231, .19);
}

.pv2-shape__play {
  box-shadow: inset 0 1px rgba(255, 255, 255, .42), inset 0 -1px rgba(47, 86, 181, .055);
}

@supports ((-webkit-backdrop-filter: blur(3px)) or (backdrop-filter: blur(3px))) {
  .pv2-listen { -webkit-backdrop-filter: blur(3px) saturate(108%); backdrop-filter: blur(3px) saturate(108%); }
  .pv2-early-buy { -webkit-backdrop-filter: blur(1.5px); backdrop-filter: blur(1.5px); }
  .pv2-shape__instrument { -webkit-backdrop-filter: blur(2px) saturate(106%); backdrop-filter: blur(2px) saturate(106%); }
}

@media (prefers-reduced-transparency: reduce) {
  .pv2-listen,
  .pv2-early-buy,
  .pv2-shape__instrument,
  .pv2-controls { -webkit-backdrop-filter: none; backdrop-filter: none; }
}
/* Semantic-weight pass: recognition and ownership anchors. */

.pv2-hero__guide { max-width: 58ch; color: rgba(23, 23, 26, .78); }
.pv2-hero__audience {
  margin-top: 6px;
  color: rgba(23, 23, 26, .74);
  font-size: clamp(8px, .62vw, 10px);
  line-height: 1.65;
  letter-spacing: .095em;
}

.pv2-practices {
  max-width: 920px;
  margin-top: 44px;
  gap: 14px 12px;
  color: var(--ink);
  font-size: clamp(9px, .72vw, 11px);
  line-height: 1.55;
  letter-spacing: .095em;
}
.pv2-practices span { color: var(--ink); }
.pv2-practices i { width: 24px; opacity: .72; }

.pv2-depth__heading h2 { max-width: 15ch; }
.pv2-depth__heading h2 em {
  display: block;
  max-width: 34ch;
  margin-top: .42em;
  color: rgba(23, 23, 26, .72);
  font-family: var(--mono);
  font-size: .42em;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.pv2-foot {
  min-height: 272px;
  padding: 48px 6.25vw 44px;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 42px 54px;
  border-top: 1px solid var(--ink);
}

.pv2-foot__identity { display: flex; align-items: flex-start; gap: 24px; }
.pv2-foot__identity .foot-mark { flex: 0 0 96px; width: 96px; }
.pv2-foot__identity > div { padding-top: 5px; display: grid; gap: 7px; }
.pv2-foot__identity strong { color: var(--ink); font-weight: 400; letter-spacing: .13em; }
.pv2-foot__identity span,
.pv2-foot__identity > div > a { width: max-content; color: var(--dim); letter-spacing: .11em; }
.pv2-foot__identity > div > a:hover,
.pv2-foot__identity > div > a:focus-visible { color: var(--blue); }
.pv2-foot nav { align-self: start; gap: 8px; }
.pv2-foot__copyright {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--dim);
  letter-spacing: .12em;
}

@media (max-width: 760px) {
  .pv2-practices { margin-top: 38px; gap: 11px 9px; }
  .pv2-practices i { width: 14px; }
  .pv2-depth__heading h2 { max-width: 12ch; }
  .pv2-depth__heading h2 em { max-width: 28ch; font-size: .46em; }
  .pv2-foot {
    min-height: 330px;
    padding: 40px 20px 44px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 28px;
  }
  .pv2-foot__identity { flex-direction: column; gap: 16px; }
  .pv2-foot nav { width: auto; display: flex; flex-wrap: wrap; gap: 6px; }
  .pv2-foot__copyright { grid-column: 1; }
}