:root {
  color-scheme: light;
  --paper: #f7f6f2;
  --surface: #ffffff;
  --surface-soft: #efeee8;
  --ink: #20231f;
  --muted: #686d67;
  --line: #d8dad3;
  --green: #173c31;
  --green-2: #285b49;
  --green-soft: #e2ebe4;
  --green-pale: #f0f4f0;
  --warm: #b59b6a;
  --danger: #7a3e35;
  --font-ui: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-editorial: Charter, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 24px 70px rgba(27, 39, 33, .10);
  --radius: 28px;
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(23, 60, 49, .045) .7px, transparent .7px);
  background-size: 11px 11px;
  content: "";
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

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

button {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 20;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--green);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: max(.75rem, env(safe-area-inset-top)) max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(216, 218, 211, .82);
  background: rgba(247, 246, 242, .91);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding-block: 5px;
  text-decoration: none;
}

.brand-word {
  color: var(--green);
  font-family: var(--font-editorial);
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1;
}

.brand img {
  width: 124px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2rem);
}

.site-header nav > a:not(.button) {
  color: #444a44;
  font-size: .84rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav > a:not(.button):hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .82rem 1.2rem;
  border: 1px solid var(--green);
  border-radius: 15px;
  background: var(--green);
  box-shadow: 0 11px 26px rgba(23, 60, 49, .17), inset 0 1px 0 rgba(255, 255, 255, .12);
  color: #fff;
  font-size: .86rem;
  font-weight: 720;
  letter-spacing: -.01em;
  text-align: center;
  text-decoration: none;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), background-color .28s ease, box-shadow .28s ease;
}

.button:hover {
  background: #214c3e;
  box-shadow: 0 15px 34px rgba(23, 60, 49, .2), inset 0 1px 0 rgba(255, 255, 255, .13);
  transform: translateY(-2px);
}

.button:active,
.icon-button:active,
.moment-button:active,
.time-chip:active,
.mobile-commission:active {
  transform: translateY(1px) scale(.985);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-small {
  min-height: 42px;
  padding: .62rem .92rem;
  border-radius: 13px;
  font-size: .78rem;
}

.hero {
  display: grid;
  min-height: min(850px, calc(100dvh - 74px));
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  padding-block: clamp(5rem, 10vw, 9rem);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--green-2);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 5px rgba(40, 91, 73, .10);
  animation: status-breathe 3s ease-in-out infinite;
}

@keyframes status-breathe {
  0%, 100% { transform: scale(.9); opacity: .72; }
  50% { transform: scale(1.06); opacity: 1; }
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
.answer-lead {
  font-family: var(--font-editorial);
  font-weight: 600;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.6rem);
  line-height: .82;
}

.hero h1 span {
  display: block;
  color: var(--green-2);
  font-size: .46em;
  font-style: italic;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.hero-subtitle {
  max-width: 650px;
  margin: 2rem 0 0;
  color: #4f554f;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  letter-spacing: -.018em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 2.2rem;
}

.text-link {
  color: var(--green);
  font-size: .86rem;
  font-weight: 720;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.hero-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.report-cover {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 420px);
  padding: 13px;
  border: 1px solid rgba(216, 218, 211, .86);
  border-radius: 26px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .92);
  text-decoration: none;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s ease;
}

.report-cover::before {
  content: none;
}

.report-cover:hover {
  box-shadow: 0 31px 84px rgba(27, 39, 33, .14);
  transform: translateY(-7px);
}

.report-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 17 / 22;
  border: 1px solid #ecece7;
  border-radius: 16px;
  object-fit: contain;
}

.cover-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .45rem .25rem;
  color: var(--green);
  font-size: .8rem;
  font-weight: 750;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(6rem, 11vw, 10rem);
  border-block: 1px solid var(--line);
}

.metrics > div {
  display: grid;
  min-height: 125px;
  align-content: center;
  padding: 1.4rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line);
}

.metrics > div:last-child {
  border-right: 0;
}

.metrics strong {
  color: var(--green);
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}

.metrics span {
  margin-top: .48rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.answer-section,
.path-section,
.interpretation,
.limitations {
  padding-bottom: clamp(6rem, 11vw, 10rem);
}

.section-intro {
  display: grid;
  max-width: 900px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-intro h2,
.commission h2,
.interpretation h2,
.watch-heading h1,
.watch-report-card h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: .98;
}

.section-intro > p:last-child:not(.eyebrow) {
  max-width: 700px;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.answer-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 24px 70px rgba(23, 60, 49, .17);
  color: #fff;
}

.answer-card::after {
  position: absolute;
  right: -9%;
  bottom: -45%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .018);
  content: "";
  pointer-events: none;
}

.answer-lead {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0;
  font-size: clamp(1.7rem, 3.8vw, 3.6rem);
  line-height: 1.08;
}

.answer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.4rem, 6vw, 5rem);
  border-block: 1px solid rgba(255, 255, 255, .17);
}

.answer-grid > div {
  display: grid;
  gap: .7rem;
  padding: 1.4rem 1.5rem 1.5rem 0;
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.answer-grid > div:not(:first-child) {
  padding-left: 1.5rem;
}

.answer-grid > div:last-child {
  border-right: 0;
}

.answer-grid span,
.path-label,
.player-kicker {
  color: #a9c3b6;
  font-family: var(--font-mono);
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.answer-grid strong {
  max-width: 30ch;
  font-size: .9rem;
  line-height: 1.5;
}

.path-grid {
  display: grid;
  grid-template-columns: .8fr 1.25fr .92fr;
  gap: 1rem;
  align-items: stretch;
}

.path-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}

.path-card:nth-child(1) {
  margin-top: 3.7rem;
}

.path-card:nth-child(3) {
  margin-top: 1.5rem;
}

.path-card-accent {
  border-color: var(--green);
  background: var(--green-pale);
  box-shadow: 0 22px 55px rgba(23, 60, 49, .09), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.path-number {
  align-self: flex-start;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--green-2);
  color: var(--green-2);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 750;
}

.path-label {
  margin: 3rem 0 .65rem;
  color: var(--green-2);
}

.path-card h3 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  letter-spacing: -.04em;
  line-height: 1.03;
}

.path-card p:not(.path-label) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.path-card a {
  margin-top: auto;
  padding-top: 1.8rem;
  color: var(--green);
  font-size: .79rem;
  font-weight: 750;
  text-decoration: none;
}

.watch-section {
  padding-block: clamp(5.5rem, 11vw, 9rem);
  background: #1c2d27;
  color: #f7f7f3;
}

.section-intro-light .eyebrow {
  color: #a6c5b7;
}

.section-intro-light > p:last-child:not(.eyebrow) {
  color: #b8c1bc;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(310px, .72fr);
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: start;
}

.player-card {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: #111d18;
  box-shadow: 0 30px 80px rgba(5, 13, 10, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0d1512;
}

.video-frame video {
  width: 100%;
  height: 100%;
  background: #0d1512;
  object-fit: contain;
}

.video-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 2rem;
  background: #101b17;
  color: #eef3ef;
  text-align: center;
  transition: opacity .28s ease, visibility .28s ease;
}

.video-state[hidden] {
  display: none;
}

.video-state-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.video-state-mark svg {
  width: 24px;
  height: 24px;
}

.video-state strong {
  font-size: 1rem;
}

.video-state > span:last-child {
  margin-top: .35rem;
  color: #aeb9b3;
  font-size: .78rem;
}

.player-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: start;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.player-kicker {
  color: #a6c5b7;
}

.player-meta h3 {
  margin: .45rem 0 0;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  line-height: 1.08;
}

.player-meta p {
  max-width: 60ch;
  margin: .75rem 0 0;
  color: #aeb9b3;
  font-size: .82rem;
}

.player-tools {
  display: flex;
  gap: .55rem;
}

.icon-button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: .48rem;
  padding: .62rem .78rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  color: #eef3ef;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.icon-button:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
}

.icon-button:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.icon-button svg {
  width: 16px;
  height: 16px;
}

.recording-list {
  display: grid;
  gap: .8rem;
}

.recording-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: border-color .25s ease, background-color .25s ease, transform .25s cubic-bezier(.16, 1, .3, 1);
}

.recording-card:hover,
.recording-card.is-active {
  border-color: rgba(166, 197, 183, .5);
  background: rgba(255, 255, 255, .075);
  transform: translateY(-2px);
}

.recording-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
  padding: 1rem;
}

.recording-id {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  color: #b7cbbf;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 720;
}

.recording-card-head h3 {
  margin: 0;
  font-size: .92rem;
  line-height: 1.15;
}

.recording-card-head p {
  margin: .22rem 0 0;
  color: #9da9a3;
  font-size: .69rem;
}

.recording-duration {
  color: #a6c5b7;
  font-family: var(--font-mono);
  font-size: .63rem;
}

.recording-summary {
  margin: 0;
  padding: 0 1rem .95rem;
  color: #b5beb9;
  font-size: .76rem;
  line-height: 1.5;
}

.time-list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .85rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.time-chip {
  min-height: 36px;
  padding: .5rem .65rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
  color: #d7e1db;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: .64rem;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.time-chip:hover,
.time-chip.is-active {
  border-color: #739b87;
  background: rgba(115, 155, 135, .18);
  color: #fff;
}

.recording-skeleton {
  display: grid;
  gap: .55rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
}

.recording-skeleton span {
  width: 68%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  background-size: 200% 100%;
  animation: skeleton-slide 1.7s ease-in-out infinite;
}

.recording-skeleton span:nth-child(2) { width: 43%; }
.recording-skeleton span:nth-child(3) { width: 88%; }

@keyframes skeleton-slide {
  to { background-position: -200% 0; }
}

.recording-error {
  padding: 1.3rem;
  border: 1px solid #92695f;
  border-radius: 20px;
  background: rgba(122, 62, 53, .18);
  color: #f2ded8;
}

.recording-error strong,
.recording-error span {
  display: block;
}

.recording-error span {
  margin-top: .35rem;
  font-size: .78rem;
}

.interpretation {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .6fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
  padding-top: clamp(6rem, 11vw, 10rem);
}

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

.interpretation-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
}

.interpretation-copy > p:nth-of-type(2) {
  margin-top: 2rem;
}

.report-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.report-card h3 {
  margin: .45rem 0 0;
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.report-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: .87rem;
}

.report-card .button {
  width: 100%;
  margin-top: 1rem;
}

.secondary-download {
  display: block;
  margin-top: 1rem;
  color: var(--green);
  font-size: .76rem;
  font-weight: 720;
  text-align: center;
}

.commission {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2rem;
  padding: clamp(2.2rem, 6vw, 5rem);
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 25px 70px rgba(23, 60, 49, .18);
  color: #fff;
}

.commission .eyebrow {
  color: #a9c7b8;
}

.commission h2 {
  max-width: 10ch;
}

.commission-copy > p:last-child {
  max-width: 690px;
  margin: 1.4rem 0 0;
  color: #cad8d1;
}

.commission-action {
  display: grid;
  gap: .8rem;
  justify-items: stretch;
}

.button-light {
  border-color: #eef2ee;
  background: #f5f6f2;
  box-shadow: 0 15px 35px rgba(4, 14, 10, .19), inset 0 1px 0 #fff;
  color: var(--green);
}

.button-light:hover {
  background: #fff;
}

.commission-action span {
  color: #adc1b7;
  font-size: .7rem;
  text-align: center;
}

.limitations {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.limitations p {
  max-width: 1050px;
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: 2rem 3rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer nav a {
  color: var(--muted);
  font-size: .7rem;
  text-decoration: none;
}

.mobile-commission {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Standalone timestamp player */
.watch-page {
  min-height: 100dvh;
  background: #1c2d27;
  color: #f5f6f2;
}

.watch-page::before {
  background-image: radial-gradient(rgba(255, 255, 255, .035) .7px, transparent .7px);
}

.watch-page .site-header {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(28, 45, 39, .92);
}

.watch-page .site-header nav > a:not(.button) {
  color: #cad5cf;
}

.watch-page .button {
  border-color: #eff3ef;
  background: #f5f6f2;
  color: var(--green);
}

.watch-page .brand img {
  filter: none;
}

.watch-page .brand-word {
  color: #f5f6f2;
}

.watch-main {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: 7rem;
}

.back-link {
  color: #afc1b8;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.watch-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin: clamp(2rem, 6vw, 5rem) 0 2rem;
}

.watch-heading .eyebrow {
  color: #a7c4b6;
}

.watch-heading h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.watch-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 1rem 0 0;
  color: #b7c2bd;
}

.watch-share {
  display: grid;
  gap: .65rem;
  justify-items: end;
}

.watch-share > span {
  color: #b7cfc2;
  font-family: var(--font-mono);
  font-size: .72rem;
}

.standalone-player {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: #111d18;
  box-shadow: 0 34px 90px rgba(5, 13, 10, .32), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.standalone-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.3rem 1.5rem;
}

.standalone-meta p {
  margin: .4rem 0 0;
  color: #aeb9b3;
  font-size: .76rem;
}

.standalone-meta .text-link {
  color: #c6d8cf;
}

.moment-section {
  padding-top: clamp(5rem, 10vw, 8rem);
}

.watch-page .section-intro .eyebrow {
  color: #a7c4b6;
}

.watch-page .section-intro h2 {
  max-width: 13ch;
}

.moment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.moment-button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .9rem;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  color: #eef3ef;
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.moment-button:hover,
.moment-button.is-active {
  border-color: rgba(166, 197, 183, .55);
  background: rgba(255, 255, 255, .08);
}

.moment-button time {
  color: #a9c6b8;
  font-family: var(--font-mono);
  font-size: .68rem;
}

.moment-button strong {
  font-size: .83rem;
  line-height: 1.3;
}

.moment-button svg {
  width: 16px;
  height: 16px;
  color: #a9c6b8;
}

.watch-report-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
  margin-top: clamp(5rem, 10vw, 8rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}

.watch-report-card .eyebrow {
  color: #a7c4b6;
}

.watch-report-card h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 980px) {
  .site-header nav > a:not(.button) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .62fr);
    gap: 3rem;
  }

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

  .player-card {
    position: static;
  }

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

  .interpretation {
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  :root {
    --radius: 24px;
    --shell: 100%;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 62px;
    padding-inline: 16px;
  }

  .site-header .brand img {
    width: 109px;
    height: auto;
  }

  .site-header nav {
    gap: .5rem;
  }

  .site-header .button {
    display: none;
  }

  .shell {
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.2rem;
    padding-top: 3rem;
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 6.3rem);
  }

  .hero-subtitle {
    margin-top: 1.45rem;
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
    margin-top: 1.7rem;
  }

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

  .text-link {
    justify-self: start;
  }

  .report-cover {
    width: min(90%, 400px);
    justify-self: center;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 5.5rem;
    padding-inline: 16px;
    border-block: 0;
  }

  .metrics > div {
    min-height: 108px;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .52);
  }

  .metrics > div:first-child {
    border-radius: 20px 0 0 0;
  }

  .metrics > div:nth-child(2) {
    border-radius: 0 20px 0 0;
  }

  .metrics > div:nth-child(3) {
    border-radius: 0 0 0 20px;
  }

  .metrics > div:last-child {
    border-right: 1px solid var(--line);
    border-radius: 0 0 20px 0;
  }

  .metrics strong {
    font-size: 2rem;
  }

  .answer-section,
  .path-section,
  .interpretation,
  .limitations {
    padding-bottom: 5.5rem;
  }

  .section-intro {
    margin-bottom: 1.8rem;
  }

  .section-intro h2,
  .commission h2,
  .interpretation h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .answer-card {
    width: 100%;
    padding: 1.6rem;
    border-radius: 0;
  }

  .answer-lead {
    font-size: 1.72rem;
  }

  .answer-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .answer-grid > div,
  .answer-grid > div:not(:first-child) {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
  }

  .answer-grid > div:last-child {
    border-bottom: 0;
  }

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

  .path-card,
  .path-card:nth-child(1),
  .path-card:nth-child(3) {
    min-height: 0;
    margin-top: 0;
  }

  .path-card {
    width: 100%;
    padding: 1.5rem;
  }

  .path-label {
    margin-top: 2rem;
  }

  .path-card a {
    margin-top: 1.5rem;
  }

  .watch-section {
    padding-block: 5rem;
  }

  .watch-layout {
    margin-inline: -16px;
  }

  .player-card {
    border-inline: 0;
    border-radius: 0;
  }

  .player-meta {
    grid-template-columns: 1fr;
    padding: 1.2rem 16px 1.4rem;
  }

  .player-tools {
    width: 100%;
  }

  .player-tools .icon-button {
    flex: 1;
  }

  .recording-list {
    grid-template-columns: 1fr;
    gap: .72rem;
    padding-inline: 16px;
  }

  .recording-card {
    width: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
  }

  .recording-card-head {
    padding: 1rem;
  }

  .recording-summary {
    font-size: .8rem;
  }

  .time-chip {
    min-height: 42px;
    padding: .65rem .72rem;
    font-size: .67rem;
  }

  .interpretation {
    grid-template-columns: 1fr;
    padding-top: 5.5rem;
  }

  .interpretation-copy h2 {
    max-width: none;
  }

  .report-card {
    width: 100%;
    padding: 1.5rem;
    border-radius: 24px;
  }

  .commission {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-inline: 16px;
    padding: 1.7rem;
  }

  .commission h2 {
    max-width: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .mobile-commission {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 12;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: .8rem 1rem .8rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(23, 60, 49, .95);
    box-shadow: 0 17px 45px rgba(16, 30, 24, .28), inset 0 1px 0 rgba(255, 255, 255, .15);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    color: #fff;
    font-size: .82rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform .2s ease;
  }

  .mobile-commission svg {
    width: 19px;
    height: 19px;
  }

  .watch-main {
    padding-top: 1.5rem;
  }

  .watch-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 2.5rem 0 1.4rem;
  }

  .watch-heading h1 {
    max-width: none;
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .watch-share {
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
  }

  .standalone-player {
    margin-inline: -16px;
    border-inline: 0;
    border-radius: 0;
  }

  .standalone-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-inline: 16px;
  }

  .moment-section {
    padding-top: 4.5rem;
  }

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

  .moment-button {
    width: 100%;
    min-height: 82px;
    border-radius: 20px;
  }

  .watch-report-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
    padding: 1.7rem;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 4rem;
  }

  .recording-duration {
    display: none;
  }

  .recording-card-head {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-commission,
  .watch-section,
  .commission {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
  }

  .hero {
    min-height: 0;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Evidence-first institutional treatment */
:root {
  --paper: #faf8f3;
  --surface: #fffdf8;
  --surface-soft: #f4f0e7;
  --ink: #14201d;
  --muted: #69736f;
  --line: #e6e0d5;
  --green: #0c2b24;
  --green-2: #17463b;
  --green-soft: #e6eee9;
  --green-pale: #f4f0e7;
  --warm: #b79a61;
  --font-ui: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-editorial: "Newsreader", Georgia, serif;
  --shadow: none;
  --radius: 4px;
}

body::before {
  content: none;
}

.site-header {
  min-height: 64px;
  background: rgba(250, 248, 243, .96);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button,
.button-small,
.icon-button,
.recording-card,
.time-chip,
.recording-skeleton,
.recording-error,
.moment-button,
.mobile-commission,
.report-card,
.commission,
.watch-report-card,
.player-card,
.standalone-player {
  border-radius: 4px;
  box-shadow: none;
}

.button {
  min-height: 46px;
  border-color: var(--green);
  background: var(--green);
  box-shadow: none;
  transition: background-color .16s ease, border-color .16s ease;
}

.button:hover {
  border-color: var(--green-2);
  background: var(--green-2);
  box-shadow: none;
  transform: none;
}

.button:active,
.icon-button:active,
.moment-button:active,
.time-chip:active,
.mobile-commission:active {
  transform: none;
}

.button-small {
  min-height: 40px;
}

.hero {
  min-height: 0;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .48fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
  padding-block: clamp(4rem, 8vw, 7rem);
}

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

.status-dot {
  width: 6px;
  height: 6px;
  box-shadow: none;
  animation: none;
}

.hero h1 {
  max-width: none;
  font-size: clamp(3.75rem, 7vw, 6.5rem);
  line-height: .94;
}

.hero h1 span {
  display: inline;
  color: var(--green-2);
  font-size: .58em;
  font-style: normal;
  letter-spacing: -.025em;
  line-height: inherit;
}

.record-matter {
  margin: .75rem 0 2rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .025em;
}

.record-question,
.record-opening-finding {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1.25rem;
  padding-block: 1.15rem;
  border-top: 1px solid var(--line);
}

.record-opening-finding {
  border-bottom: 1px solid var(--line);
}

.record-question > span,
.record-opening-finding > span {
  padding-top: .35rem;
  color: var(--green-2);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.record-question p,
.record-opening-finding p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-editorial);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.25;
}

.record-opening-finding p {
  font-size: clamp(1.16rem, 1.55vw, 1.4rem);
  line-height: 1.42;
}

.record-opening-limit {
  max-width: 70ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .83rem;
}

.record-opening-limit strong {
  color: var(--ink);
}

.hero-actions {
  margin-top: 1.75rem;
}

.report-cover {
  width: min(100%, 330px);
  padding: 8px;
  border-radius: 4px;
  background: var(--surface);
  box-shadow: none;
  transition: border-color .16s ease;
}

.report-cover:hover {
  border-color: var(--green-2);
  box-shadow: none;
  transform: none;
}

.report-cover img {
  border-radius: 2px;
}

.cover-action {
  padding: .8rem .25rem .15rem;
}

.metrics {
  margin-bottom: clamp(5rem, 8vw, 8rem);
}

.metrics > div {
  min-height: 108px;
}

.answer-card,
.path-card,
.path-card-accent {
  border-radius: 4px;
  box-shadow: none;
}

.answer-card::after {
  content: none;
}

.path-card {
  background: transparent;
}

.path-card-accent {
  background: var(--surface-soft);
}

.player-card,
.standalone-player,
.commission {
  box-shadow: none;
}

.report-card {
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-light,
.button-light:hover {
  border-color: var(--surface);
  background: var(--surface);
  box-shadow: none;
  color: var(--green);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .report-cover {
    justify-self: start;
    width: min(76vw, 290px);
  }
}

@media (max-width: 580px) {
  .record-question,
  .record-opening-finding {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .record-question > span,
  .record-opening-finding > span {
    padding-top: 0;
  }

  .mobile-commission {
    border-radius: 4px;
    box-shadow: none;
  }
}
