:root {
  color-scheme: dark;
  --bg: #0d1210;
  --bg-deep: #090c0b;
  --surface: #141a17;
  --surface-2: #19211d;
  --surface-3: #202a25;
  --paper: #e7ddc5;
  --paper-dim: #b9b09c;
  --sage: #95aa97;
  --sage-dark: #52685a;
  --signal: #ee6138;
  --signal-soft: #ff8c64;
  --acid: #d7df78;
  --private: #c9a86f;
  --private-soft: #ead6ad;
  --private-deep: #241b15;
  --line: rgba(231, 221, 197, 0.14);
  --line-strong: rgba(231, 221, 197, 0.28);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --display: "Avenir Next Condensed", "DIN Condensed", "Helvetica Neue", sans-serif;
  --body: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --ui: "Avenir Next", "Gill Sans", "Helvetica Neue", sans-serif;
  --mono: Menlo, Monaco, "Courier New", monospace;
  --rail: 284px;
  --content: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 6%, rgba(82, 104, 90, 0.2), transparent 34rem),
    radial-gradient(circle at 10% 72%, rgba(238, 97, 56, 0.07), transparent 31rem),
    var(--bg);
  color: var(--paper-dim);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(231, 221, 197, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 221, 197, 0.018) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

strong,
b,
h1,
h2,
h3 {
  color: var(--paper);
}

::selection {
  color: var(--bg-deep);
  background: var(--acid);
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--bg-deep);
  background: var(--acid);
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.rail {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-self: start;
  height: 100vh;
  padding: 28px 24px 22px;
  overflow-y: auto;
  background: rgba(9, 12, 11, 0.88);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.rail__top {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.monogram {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--paper);
  border: 1px solid var(--signal);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.05em;
}

.eyebrow,
.card-label,
.plan-label,
.section-index,
.hero__kicker,
.speaker-note__label {
  margin: 0;
  color: var(--signal-soft);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rail__date {
  margin: 4px 0 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.rail__nav {
  display: grid;
  gap: 2px;
  margin-top: 28px;
}

.rail__nav a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  color: #8f998f;
  border-left: 2px solid transparent;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.rail__nav a span {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: 10px;
}

.rail__nav a:hover,
.rail__nav a.is-active {
  color: var(--paper);
  border-left-color: var(--signal);
  background: linear-gradient(90deg, rgba(238, 97, 56, 0.09), transparent 85%);
}

.rail__nav a.is-active span {
  color: var(--signal-soft);
}

.rail__search {
  margin-top: auto;
  padding-top: 28px;
}

.rail__search label {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.search-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  min-height: 43px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 160ms ease;
}

.search-field:focus-within {
  border-bottom-color: var(--acid);
}

.search-field span {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 14px;
}

.search-field input {
  width: 100%;
  padding: 9px 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--ui);
  font-size: 14px;
}

.search-field input::placeholder {
  color: #59645c;
}

.rail__status {
  min-height: 32px;
  margin: 8px 0 0;
  color: #6f7c72;
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.45;
}

.rail__keys {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.rail__keys p {
  margin: 0;
  color: #59645c;
  font-family: var(--ui);
  font-size: 10px;
}

kbd {
  display: inline-grid;
  min-width: 19px;
  height: 19px;
  margin-right: 4px;
  place-items: center;
  color: var(--sage);
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 9px;
  box-shadow: 0 2px 0 rgba(231, 221, 197, 0.08);
}

main {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 52px 100px;
}

.hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: min(760px, 92vh);
  padding: 92px 0 65px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
}

.hero::after {
  position: absolute;
  right: -4%;
  bottom: 84px;
  z-index: -1;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(149, 170, 151, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(149, 170, 151, 0.025),
    0 0 0 96px rgba(149, 170, 151, 0.02);
}

.hero__signal {
  position: absolute;
  top: 58px;
  right: 0;
  display: flex;
  align-items: end;
  gap: 6px;
  height: 28px;
}

.hero__signal span {
  display: block;
  width: 3px;
  background: var(--signal);
  animation: signal 2.3s var(--ease) infinite alternate;
}

.hero__signal span:nth-child(1) { height: 20%; animation-delay: -1.2s; }
.hero__signal span:nth-child(2) { height: 72%; animation-delay: -0.6s; }
.hero__signal span:nth-child(3) { height: 100%; animation-delay: -1.8s; }
.hero__signal span:nth-child(4) { height: 48%; animation-delay: -0.2s; }
.hero__signal span:nth-child(5) { height: 24%; animation-delay: -1.4s; }

@keyframes signal {
  from { opacity: 0.3; transform: scaleY(0.55); transform-origin: bottom; }
  to { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

.hero__kicker {
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(74px, 10.5vw, 152px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-left: 0.18em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(231, 221, 197, 0.58);
}

.hero__lede {
  max-width: 740px;
  margin: 42px 0 0;
  color: var(--paper-dim);
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.42;
}

.hero__lede strong {
  color: var(--acid);
  font-weight: 400;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__facts div {
  padding: 15px 18px 18px 0;
  border-right: 1px solid var(--line);
}

.hero__facts div:not(:first-child) {
  padding-left: 18px;
}

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

.hero__facts span,
.hero__facts strong {
  display: block;
}

.hero__facts span {
  color: #68736b;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__facts strong {
  margin-top: 5px;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
}

.panel {
  padding: 94px 0 38px;
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 60px;
  max-width: none;
  align-items: end;
}

.section-head h2 {
  max-width: 820px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.section-head > p:not(.section-index),
.section-head--split > p {
  margin: 18px 0 0;
  color: #98a197;
  font-size: 18px;
  line-height: 1.6;
}

.section-head--split > p {
  padding-left: 22px;
  border-left: 1px solid var(--signal);
}

.brief-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.brief-card {
  min-height: 260px;
  padding: 28px;
  background: var(--surface);
  border-right: 1px solid var(--line);
}

.brief-card:last-child {
  border-right: 0;
}

.brief-card--signal {
  background:
    linear-gradient(145deg, rgba(238, 97, 56, 0.13), transparent 72%),
    var(--surface-2);
}

.brief-card h3 {
  margin: 40px 0 14px;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.brief-card p:last-child {
  margin-bottom: 0;
  color: #a9b0a7;
  line-height: 1.55;
}

.speaker-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 38px;
  margin-top: 32px;
  padding: 38px 42px;
  background: #d8cfb9;
  color: #232923;
}

.speaker-note__label {
  color: #a13f25;
}

.speaker-note blockquote {
  margin: 0;
  font-size: 21px;
  line-height: 1.55;
}

.live-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.live-strip div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 20px 24px 20px 0;
  border-right: 1px solid var(--line);
}

.live-strip div:not(:first-child) {
  padding-left: 24px;
}

.live-strip div:last-child {
  border-right: 0;
}

.live-strip span {
  color: var(--signal-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-strip p {
  margin: 0;
  color: #89938a;
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1.5;
}

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

.lecture-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 330px;
  padding: 29px;
  overflow: hidden;
  background: var(--surface);
  transition:
    background 220ms ease,
    transform 220ms var(--ease);
}

.lecture-card:hover {
  z-index: 2;
  background: var(--surface-2);
  transform: translateY(-3px);
}

.lecture-card__number {
  color: rgba(231, 221, 197, 0.2);
  font-family: var(--display);
  font-size: 54px;
  font-weight: 800;
  line-height: 0.9;
}

.lecture-card__content {
  display: flex;
  flex-direction: column;
}

.confidence {
  align-self: flex-start;
  margin: 1px 0 23px;
  padding: 4px 7px;
  color: var(--sage);
  border: 1px solid var(--sage-dark);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lecture-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.06;
  text-transform: uppercase;
}

.lecture-card p {
  margin: 0 0 12px;
  color: #909a91;
  line-height: 1.5;
}

.lecture-card__listen {
  margin-top: auto !important;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--paper-dim) !important;
  font-size: 15px;
}

.lecture-card__listen span,
.lecture-card__pivot span {
  display: block;
  margin-bottom: 5px;
  color: var(--signal-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lecture-card__pivot {
  margin: 14px 0 0;
  padding: 14px 0 0 16px;
  color: var(--paper);
  border-top: 1px dashed var(--line-strong);
  border-left: 2px solid var(--signal);
  font-size: 17px;
  line-height: 1.45;
}

.track-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -8px 0 26px;
}

.track-filter {
  padding: 8px 12px;
  color: #7c877e;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background 150ms ease;
}

.track-filter:hover,
.track-filter.is-active {
  color: var(--bg-deep);
  background: var(--acid);
  border-color: var(--acid);
}

.intervention-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.intervention-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 27px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(149, 170, 151, 0.035), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
  transition:
    border-color 180ms ease,
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.intervention-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 2px;
  content: "";
  background: var(--sage-dark);
}

.intervention-card[data-priority="A"]::before {
  background: var(--signal);
}

.intervention-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.intervention-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.intervention-card__phase {
  color: #718077;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.intervention-card__priority {
  display: grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--paper);
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 10px;
}

.intervention-card[data-priority="A"] .intervention-card__priority {
  color: var(--signal-soft);
  border-color: var(--signal);
}

.intervention-card h3 {
  margin: 24px 0 8px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.intervention-card__trigger {
  margin: 0 0 20px;
  color: var(--sage);
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.45;
}

.intervention-card__thesis {
  margin: 0 0 18px;
  color: #8e988f;
  font-size: 15px;
  line-height: 1.5;
}

.intervention-card blockquote {
  margin: auto 0 0;
  padding: 18px 0 0 19px;
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--signal);
  font-size: 18px;
  line-height: 1.48;
}

.intervention-card details {
  margin-top: 19px;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
}

.intervention-card summary {
  color: var(--acid);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.intervention-card summary::-webkit-details-marker {
  display: none;
}

.intervention-card summary::before {
  margin-right: 7px;
  content: "+";
  font-family: var(--mono);
}

.intervention-card details[open] summary::before {
  content: "−";
}

.intervention-card details p {
  margin: 11px 0 0;
  color: #aab1a9;
  font-size: 15px;
  line-height: 1.5;
}

.intervention-card__note {
  margin-top: 13px !important;
  color: #69746c !important;
  font-family: var(--ui);
  font-size: 11px !important;
}

.empty-state {
  padding: 70px 20px;
  text-align: center;
  border: 1px dashed var(--line-strong);
}

.empty-state p {
  margin: 0 0 16px;
  color: var(--paper);
  font-size: 20px;
}

.empty-state button {
  color: var(--acid);
  background: transparent;
  border: 0;
  font-family: var(--ui);
  font-size: 13px;
  cursor: pointer;
}

.rehearsal {
  position: relative;
}

.progress {
  min-width: 220px;
  font-family: var(--ui);
}

.progress > span {
  display: block;
  color: var(--paper);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 750;
  line-height: 1;
}

.progress__track {
  height: 3px;
  margin: 10px 0 7px;
  overflow: hidden;
  background: var(--surface-3);
}

.progress__track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--signal);
  transition: width 320ms var(--ease);
}

.progress small {
  color: #6c786f;
  font-size: 10px;
}

.rehearsal-card {
  position: relative;
  max-width: 900px;
  min-height: 520px;
  padding: 42px 48px;
  background:
    linear-gradient(135deg, rgba(238, 97, 56, 0.08), transparent 45%),
    var(--surface-2);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.rehearsal-card::after {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  content: "";
  border-top: 1px solid var(--signal);
  border-right: 1px solid var(--signal);
}

.rehearsal-card__meta {
  display: flex;
  gap: 15px;
  margin-bottom: 38px;
  color: var(--sage);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rehearsal-card__meta span + span {
  padding-left: 15px;
  border-left: 1px solid var(--line-strong);
}

.rehearsal-card__trigger {
  max-width: 680px;
  margin: 8px 0 25px;
  color: #9da59e;
  font-size: 18px;
}

.rehearsal-card h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.96;
  text-transform: uppercase;
}

.rehearsal-card__answer {
  margin-top: 32px;
  animation: reveal 280ms var(--ease) both;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.rehearsal-card__thesis {
  max-width: 720px;
  color: var(--sage);
  font-family: var(--ui);
  font-size: 14px;
}

.rehearsal-card blockquote {
  max-width: 760px;
  margin: 20px 0 0;
  padding: 22px 0 22px 25px;
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--signal);
  font-size: 23px;
  line-height: 1.45;
}

.follow-up {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  margin-top: 18px;
}

.follow-up span {
  color: var(--signal-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.follow-up p {
  margin: 0;
  color: #a9b0a9;
  font-size: 16px;
}

.rehearsal-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.button {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 150ms ease,
    background 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.button:hover {
  color: var(--bg-deep);
  background: var(--paper);
  border-color: var(--paper);
  transform: translateY(-1px);
}

.button--signal {
  color: var(--bg-deep);
  background: var(--signal);
  border-color: var(--signal);
}

.button--signal:hover {
  background: var(--signal-soft);
  border-color: var(--signal-soft);
}

.button--print {
  margin-top: 28px;
  color: var(--acid);
  border-color: var(--acid);
}

.button.is-mastered {
  color: var(--bg-deep);
  background: var(--acid);
  border-color: var(--acid);
}

.microcopy {
  margin: 18px 0 0;
  color: #626e65;
  font-family: var(--ui);
  font-size: 11px;
}

.room-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1px;
  padding: 1px;
  background: var(--line-strong);
}

.stage-plan,
.audience-plan {
  min-height: 390px;
  padding: 30px;
  background: var(--surface);
}

.stage-plan {
  display: flex;
  flex-direction: column;
}

.stage-plan__chairs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
  align-items: center;
  margin: auto 0;
}

.stage-plan__chairs div {
  text-align: center;
}

.stage-plan__chairs i {
  display: block;
  width: 72px;
  height: 62px;
  margin: 0 auto 13px;
  border: 2px solid var(--paper-dim);
  border-top-width: 9px;
  transform: perspective(90px) rotateX(-7deg);
}

.stage-plan__chairs span {
  color: var(--paper);
  font-family: var(--ui);
  font-size: 12px;
}

.stage-plan__chairs b {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 400;
}

.stage-plan__note {
  margin: 0;
  color: #6d796f;
  font-family: var(--ui);
  font-size: 11px;
  text-align: center;
}

.audience-plan {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience-plan .plan-label {
  margin-bottom: 42px;
}

.audience-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 20px;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: clamp(13px, 1.5vw, 18px);
  text-align: center;
}

.audience-row span:first-child {
  transform: rotate(2.5deg);
}

.audience-row span:last-child {
  transform: rotate(-2.5deg);
}

.audience-row--shift {
  transform: translateX(7px);
}

.aisle-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  max-width: 280px;
  margin: 5px auto 0;
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: 8px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.timeline div {
  position: relative;
  padding: 21px 17px;
  border-right: 1px solid var(--line);
}

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

.timeline div::before {
  position: absolute;
  top: -4px;
  left: 16px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--signal);
  border-radius: 50%;
}

.timeline time,
.timeline strong,
.timeline span {
  display: block;
}

.timeline time {
  color: var(--signal-soft);
  font-family: var(--mono);
  font-size: 9px;
}

.timeline strong {
  margin: 6px 0 2px;
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

.timeline span {
  color: #6e7970;
  font-family: var(--ui);
  font-size: 10px;
}

.room-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.room-rules article {
  padding-top: 19px;
  border-top: 2px solid var(--sage-dark);
}

.room-rules article > span {
  color: var(--signal-soft);
  font-family: var(--mono);
  font-size: 9px;
}

.room-rules h3 {
  margin: 18px 0 8px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
}

.room-rules p {
  margin: 0;
  color: #858f86;
  font-size: 15px;
}

.dinner {
  position: relative;
  margin-top: 84px;
  padding: 72px 54px 58px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(201, 168, 111, 0.08), transparent 38%),
    #100f0d;
  border: 1px solid rgba(201, 168, 111, 0.34);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.dinner::before,
.dinner::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.dinner::before {
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--private);
}

.dinner::after {
  top: 27px;
  right: 27px;
  width: 92px;
  height: 92px;
  border-top: 1px solid rgba(201, 168, 111, 0.28);
  border-right: 1px solid rgba(201, 168, 111, 0.28);
}

.dinner__mast {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(201, 168, 111, 0.24);
}

.dinner__seal {
  display: grid;
  width: 92px;
  height: 92px;
  padding: 12px;
  align-content: space-between;
  color: var(--private-soft);
  border: 1px solid var(--private);
  font-family: var(--mono);
  text-transform: uppercase;
}

.dinner__seal span {
  font-size: 32px;
  line-height: 1;
}

.dinner__seal b {
  color: var(--private);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.dinner .section-index,
.dinner__label {
  color: var(--private);
}

.dinner__mast h2 {
  margin: 11px 0 0;
  color: var(--private-soft);
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 94px);
  font-weight: 750;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.dinner__lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: #aaa092;
  font-size: 19px;
  line-height: 1.55;
}

.dinner__launch {
  min-width: 190px;
  color: var(--private-soft);
  border-color: var(--private);
}

.dinner__launch:hover {
  color: var(--private-deep);
  background: var(--private-soft);
  border-color: var(--private-soft);
}

.dinner__label {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dinner__opening {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.5fr) minmax(180px, 0.7fr);
  gap: 30px;
  align-items: start;
  margin-top: 38px;
  padding: 31px 0;
  border-top: 1px solid rgba(201, 168, 111, 0.16);
  border-bottom: 1px solid rgba(201, 168, 111, 0.16);
}

.dinner__opening blockquote,
.dinner__close blockquote {
  margin: 0;
  color: var(--private-soft);
  font-size: 19px;
  line-height: 1.55;
}

.dinner__opening > p:last-child {
  margin: 0;
  color: #766f65;
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.55;
}

.dinner__timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 38px;
  border-top: 1px solid rgba(201, 168, 111, 0.3);
  border-bottom: 1px solid rgba(201, 168, 111, 0.3);
}

.dinner__timeline article {
  position: relative;
  min-height: 142px;
  padding: 22px 16px 18px;
  border-right: 1px solid rgba(201, 168, 111, 0.13);
}

.dinner__timeline article:last-child {
  border-right: 0;
}

.dinner__timeline article::before {
  position: absolute;
  top: -5px;
  left: 15px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--private);
  transform: rotate(45deg);
}

.dinner__timeline time,
.dinner__timeline strong,
.dinner__timeline span {
  display: block;
}

.dinner__timeline time {
  color: var(--private);
  font-family: var(--mono);
  font-size: 9px;
}

.dinner__timeline strong {
  margin-top: 16px;
  color: var(--private-soft);
  font-family: var(--display);
  font-size: 19px;
  text-transform: uppercase;
}

.dinner__timeline span {
  margin-top: 5px;
  color: #776f64;
  font-family: var(--ui);
  font-size: 10px;
  line-height: 1.45;
}

.dinner__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(201, 168, 111, 0.2);
  border: 1px solid rgba(201, 168, 111, 0.2);
}

.dinner__rapport,
.dinner__set {
  padding: 34px;
  background: #14120f;
}

.dinner__columns header {
  min-height: 164px;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(201, 168, 111, 0.17);
}

.dinner__columns h3 {
  margin: 13px 0 10px;
  color: var(--private-soft);
  font-family: var(--display);
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.dinner__columns header > p:last-child {
  margin: 0;
  color: #81786c;
  font-size: 14px;
}

.dinner__columns ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dinner__rapport li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 168, 111, 0.12);
}

.dinner__rapport li > span,
.dinner__set li > span {
  color: #695a42;
  font-family: var(--mono);
  font-size: 10px;
}

.dinner__rapport li.is-primary > span {
  color: var(--private);
}

.dinner__rapport li.is-primary > span::after {
  display: block;
  margin-top: 7px;
  color: var(--private);
  content: "◆";
  font-size: 7px;
}

.dinner__rapport li p {
  margin: 0;
  color: #c5baaa;
  font-size: 16px;
  line-height: 1.52;
}

.dinner__bridge {
  margin: 27px 0 0;
  padding: 19px 21px;
  color: var(--private-soft);
  background: var(--private-deep);
  border-left: 2px solid var(--private);
  font-size: 16px;
}

.dinner__set li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 168, 111, 0.12);
}

.dinner__set li strong {
  display: block;
  color: #d4c8b7;
  font-family: var(--ui);
  font-size: 13px;
}

.dinner__set li p {
  margin: 4px 0 0;
  color: #766e63;
  font-size: 13px;
  line-height: 1.45;
}

.dinner__set li.is-hard {
  margin: 0 -14px;
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(238, 97, 56, 0.05);
  border-left: 2px solid var(--signal);
}

.dinner__set li.is-hard > span {
  color: var(--signal-soft);
}

.dinner__signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: rgba(201, 168, 111, 0.18);
}

.dinner__signals > div {
  min-height: 154px;
  padding: 25px;
  background: #12110f;
}

.dinner__signals strong,
.dinner__signals span {
  display: block;
}

.dinner__signals strong {
  margin-top: 18px;
  color: var(--private-soft);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.dinner__signals span {
  margin-top: 6px;
  color: #70685e;
  font-size: 13px;
}

.dinner__close {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  margin-top: 38px;
  padding: 31px;
  background: var(--private-deep);
  border: 1px solid rgba(201, 168, 111, 0.28);
}

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

.document-list a {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    color 150ms ease,
    background 150ms ease,
    padding 220ms var(--ease);
}

.document-list a:hover {
  padding: 0 16px;
  color: var(--acid);
  background: rgba(215, 223, 120, 0.035);
}

.document-list a > span {
  color: var(--signal-soft);
  font-family: var(--mono);
  font-size: 10px;
}

.document-list strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.document-list small {
  color: #6c776e;
  font-family: var(--ui);
  font-size: 11px;
  text-align: right;
}

.print-card {
  display: none;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 420px;
  padding: 14px 18px;
  color: var(--bg-deep);
  background: var(--acid);
  font-family: var(--ui);
  font-size: 13px;
}

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

[hidden] {
  display: none !important;
}

.section-reveal {
  animation: section-in 700ms var(--ease) both;
}

.section-reveal:nth-of-type(2) { animation-delay: 70ms; }
.section-reveal:nth-of-type(3) { animation-delay: 120ms; }

@keyframes section-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1040px) {
  :root { --rail: 228px; }

  main { padding-right: 34px; padding-left: 34px; }
  .rail { padding-right: 17px; padding-left: 17px; }
  .rail__keys { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(68px, 10vw, 110px); }
  .brief-grid { grid-template-columns: 1fr; }
  .brief-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .brief-card:last-child { border-bottom: 0; }
  .brief-card h3 { margin-top: 25px; }
  .room-layout { grid-template-columns: 1fr; }
  .dinner { padding-right: 38px; padding-left: 38px; }
  .dinner__mast { grid-template-columns: 76px minmax(0, 1fr); }
  .dinner__seal { width: 76px; height: 76px; }
  .dinner__launch { grid-column: 2; justify-self: start; }
  .dinner__opening { grid-template-columns: 130px 1fr; }
  .dinner__opening > p:last-child { grid-column: 2; }
  .dinner__timeline { grid-template-columns: repeat(3, 1fr); }
  .dinner__timeline article:nth-child(3n) { border-right: 0; }
  .dinner__timeline article:nth-child(-n + 3) { border-bottom: 1px solid rgba(201, 168, 111, 0.13); }
  .dinner__columns { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  :root { --rail: 0px; }

  .shell { display: block; }
  .rail {
    position: sticky;
    z-index: 40;
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .rail__top { grid-template-columns: 38px 1fr; padding: 0; border: 0; }
  .monogram { width: 38px; height: 38px; }
  .rail__top .eyebrow { display: none; }
  .rail__date { margin: 0; font-size: 15px; }
  .rail__nav {
    display: flex;
    justify-content: end;
    gap: 0;
    margin: 0;
    overflow-x: auto;
  }
  .rail__nav a { display: block; padding: 9px; border-left: 0; border-bottom: 2px solid transparent; font-size: 0; }
  .rail__nav a span { font-size: 10px; }
  .rail__nav a:hover,
  .rail__nav a.is-active { border-bottom-color: var(--signal); background: transparent; }
  .rail__search,
  .rail__keys { display: none; }

  main { padding: 0 20px 70px; }
  .hero { min-height: 620px; padding: 90px 0 45px; }
  .hero h1 { font-size: clamp(58px, 17vw, 98px); line-height: 0.84; }
  .hero__lede { margin-top: 30px; font-size: 20px; }
  .hero__facts { grid-template-columns: 1fr 1fr; }
  .hero__facts div:nth-child(2) { border-right: 0; }
  .hero__facts div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .hero__facts div:nth-child(3) { padding-left: 0; }

  .panel { padding-top: 70px; }
  .section-head--split { grid-template-columns: 1fr; gap: 12px; }
  .section-head--split > p { padding-left: 15px; }
  .section-head h2 { font-size: clamp(38px, 12vw, 58px); }
  .speaker-note { grid-template-columns: 1fr; gap: 18px; padding: 28px; }
  .speaker-note blockquote { font-size: 18px; }
  .live-strip { grid-template-columns: 1fr; }
  .live-strip div,
  .live-strip div:not(:first-child) { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .live-strip div:last-child { border-bottom: 0; }
  .lecture-grid,
  .intervention-grid { grid-template-columns: 1fr; }
  .lecture-card { grid-template-columns: 54px 1fr; padding: 22px; }
  .intervention-card { min-height: 0; padding: 23px; }
  .rehearsal-card { min-height: 0; padding: 30px 24px; }
  .rehearsal-card::after { width: 36px; height: 36px; }
  .rehearsal-card blockquote { font-size: 19px; }
  .follow-up { grid-template-columns: 1fr; gap: 4px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline div:nth-child(2n) { border-right: 0; }
  .timeline div { border-bottom: 1px solid var(--line); }
  .room-rules { grid-template-columns: 1fr; }
  .dinner { margin-top: 64px; padding: 52px 24px 34px; }
  .dinner::after { width: 62px; height: 62px; }
  .dinner__mast { grid-template-columns: 1fr; gap: 22px; }
  .dinner__seal { width: 72px; height: 72px; }
  .dinner__seal span { font-size: 25px; }
  .dinner__mast h2 { font-size: clamp(52px, 16vw, 76px); }
  .dinner__launch { grid-column: 1; width: 100%; }
  .dinner__opening { grid-template-columns: 1fr; gap: 18px; }
  .dinner__opening > p:last-child { grid-column: 1; }
  .dinner__timeline { grid-template-columns: 1fr 1fr; }
  .dinner__timeline article:nth-child(3n) { border-right: 1px solid rgba(201, 168, 111, 0.13); }
  .dinner__timeline article:nth-child(2n) { border-right: 0; }
  .dinner__timeline article:nth-child(-n + 4) { border-bottom: 1px solid rgba(201, 168, 111, 0.13); }
  .dinner__rapport,
  .dinner__set { padding: 27px 22px; }
  .dinner__columns header { min-height: 0; }
  .dinner__signals { grid-template-columns: 1fr; }
  .dinner__signals > div { min-height: 0; }
  .dinner__close { grid-template-columns: 1fr; gap: 18px; padding: 25px; }
  .document-list a { grid-template-columns: 35px 1fr; }
  .document-list small { display: none; }
}

@media (max-width: 500px) {
  .hero h1 { letter-spacing: -0.055em; }
  .hero h1 span { margin-left: 0; }
  .hero__facts { grid-template-columns: 1fr; }
  .hero__facts div,
  .hero__facts div:not(:first-child),
  .hero__facts div:nth-child(3) { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero__facts div:last-child { border-bottom: 0; }
  .lecture-card { grid-template-columns: 1fr; gap: 15px; }
  .lecture-card__number { font-size: 38px; }
  .stage-plan,
  .audience-plan { min-height: 320px; padding: 22px 15px; }
  .audience-row { gap: 8px; font-size: 11px; }
  .stage-plan__chairs i { width: 54px; height: 48px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline div { border-right: 0; }
  .dinner__timeline { grid-template-columns: 1fr; }
  .dinner__timeline article,
  .dinner__timeline article:nth-child(3n) { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(201, 168, 111, 0.13); }
  .dinner__timeline article:last-child { border-bottom: 0; }
  .dinner__rapport li { grid-template-columns: 30px 1fr; }
  .dinner__rapport li p { font-size: 15px; }
  .rehearsal-card__actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 14mm;
  }

  :root { color-scheme: light; }

  body {
    background: white;
    color: #191d19;
    font-size: 11pt;
  }

  body::before,
  .shell,
  .skip-link,
  .noscript {
    display: none !important;
  }

  .print-card {
    display: block;
    color: #191d19;
    font-family: "Iowan Old Style", Palatino, Georgia, serif;
  }

  .print-card header {
    padding-bottom: 8mm;
    border-bottom: 2px solid #191d19;
  }

  .print-card header p {
    margin: 0 0 2mm;
    font-family: Menlo, monospace;
    font-size: 8pt;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .print-card h1 {
    margin: 0 0 3mm;
    color: #191d19;
    font-family: "Avenir Next Condensed", sans-serif;
    font-size: 34pt;
    line-height: 0.95;
    text-transform: uppercase;
  }

  .print-card header strong {
    color: #a9361a;
    font-size: 12pt;
  }

  .print-card ol {
    margin: 10mm 0;
    padding-left: 9mm;
  }

  .print-card li {
    margin: 0 0 6mm;
    padding-left: 3mm;
    font-size: 13pt;
    line-height: 1.4;
  }

  .print-card b {
    color: #191d19;
  }

  .print-card footer {
    padding-top: 5mm;
    border-top: 1px solid #777;
    font-family: Menlo, monospace;
    font-size: 9pt;
  }
}
