:root {
  --paper: #f4efe7;
  --paper-deep: #e8ddd0;
  --paper-light: #fbf8f2;
  --ink: #18231e;
  --ink-soft: #59635d;
  --moss: #10382f;
  --moss-deep: #09251f;
  --moss-light: #2f5c4e;
  --coral: #df8060;
  --coral-display: #c15e42;
  --coral-ink: #a0432f;
  --sage: #a9c4b5;
  --line: rgba(24, 35, 30, 0.16);
  --white-line: rgba(244, 239, 231, 0.22);
  --focus-ring: var(--coral-ink);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

main section[id] {
  scroll-margin-top: 90px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 7%, rgba(223, 128, 96, 0.09), transparent 28rem),
    radial-gradient(circle at 92% 31%, rgba(169, 196, 181, 0.14), transparent 34rem),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

p,
dd,
li {
  text-wrap: pretty;
}

body::before {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  opacity: 0.065;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection {
  background: var(--coral-ink);
  color: var(--paper);
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
}

h1,
h2 {
  text-wrap: balance;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  width: min(calc(100% - 64px), 1380px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
}

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

.site-header {
  --page-progress: 0;
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 231, 0.89);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  pointer-events: none;
  transform: scaleX(var(--page-progress));
  transform-origin: left center;
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.brand small {
  color: var(--coral-ink);
  font-size: 9px;
  letter-spacing: 0.06em;
  vertical-align: top;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.7vw, 42px);
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="location"] {
  color: var(--coral-ink);
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.site-nav a:not(.nav-cta)[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 12px 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.site-nav .nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.site-nav .nav-cta[aria-current="location"] {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--moss-deep);
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 11px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(223, 128, 96, 0.13);
}

.eyebrow-light {
  color: var(--coral);
}

em {
  color: var(--coral-display);
  font-style: italic;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:active {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  background: var(--moss);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--coral-ink);
}

.button-light {
  width: 100%;
  background: var(--paper);
  color: var(--moss);
}

.button-light:hover {
  background: var(--coral-ink);
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--coral-ink);
  color: var(--coral-ink);
}

.hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(108deg, rgba(244, 239, 231, 0.92), rgba(244, 239, 231, 0.72)),
    radial-gradient(circle at 92% 50%, rgba(169, 196, 181, 0.24), transparent 42rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -11%;
  width: 67%;
  height: 77%;
  border: 1px solid rgba(16, 56, 47, 0.17);
  border-radius: 50%;
  content: "";
  transform: rotate(-22deg);
}

.hero-shell {
  display: grid;
  min-height: calc(100svh - 82px);
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(56px, 8vw, 134px);
  padding-block: clamp(76px, 9vw, 138px) clamp(80px, 10vw, 132px);
}

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

.hero h1 {
  max-width: 700px;
  margin: 27px 0 31px;
  font-family: var(--serif);
  font-size: clamp(62px, 8.7vw, 132px);
  letter-spacing: -0.068em;
  line-height: 0.84;
}

.hero-lede {
  max-width: 500px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
  margin-top: 36px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 50px;
}

.hero-proof div {
  display: grid;
  gap: 1px;
}

.hero-proof div + div {
  position: relative;
  padding-left: 28px;
}

.hero-proof div + div::before {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero-proof dt {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-proof dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-reel {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 0.9;
  justify-self: end;
}

.hero-reel-orbit {
  position: absolute;
  border: 1px solid rgba(16, 56, 47, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.hero-reel-orbit-one {
  inset: -7% 0 8% -10%;
  transform: rotate(43deg);
}

.hero-reel-orbit-two {
  inset: 9% -7% -7% 15%;
  border-color: rgba(223, 128, 96, 0.44);
  transform: rotate(-37deg);
}

.hero-reel-meta,
.hero-reel-foot {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--moss);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-reel-meta {
  top: 5%;
  right: 2%;
  left: 1%;
}

.hero-reel-meta span:last-child {
  color: var(--coral-ink);
}

.hero-reel-meta i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(223, 128, 96, 0.14);
}

.hero-frame {
  position: absolute;
  z-index: 1;
  inset: 10% 6% 10% 3%;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 231, 0.67);
  background: var(--moss);
  box-shadow: 25px 28px 0 rgba(16, 56, 47, 0.12);
  transform: rotate(-3.2deg);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 500ms ease;
}

.hero-frame:hover {
  box-shadow: 15px 18px 0 rgba(16, 56, 47, 0.1);
  transform: rotate(-1deg) translateY(-6px);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(0.78) contrast(1.06);
}

.hero-frame-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 37, 31, 0.1), rgba(9, 37, 31, 0.72));
  mix-blend-mode: multiply;
}

.hero-reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border: 1px solid rgba(244, 239, 231, 0.73);
  border-radius: 50%;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 32px;
  transform: translate(-50%, -50%);
}

.hero-frame-copy {
  position: absolute;
  right: 24px;
  bottom: 25px;
  left: 24px;
  display: grid;
  gap: 13px;
  color: var(--paper);
}

.hero-frame-copy span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-frame-copy strong {
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.84;
}

.hero-frame-copy em {
  color: var(--paper);
}

.hero-reel-foot {
  right: 1%;
  bottom: 5%;
  left: -1%;
  color: var(--ink-soft);
}

.hero-scrub {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.hero-scrub i {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink-soft);
}

.hero-scrub i:nth-child(3) {
  width: 36px;
  background: var(--coral);
}

.hero-note-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-note-row p {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
}

.hero-note-row p + p {
  border-left: 1px solid var(--line);
}

.hero-note-row span {
  color: var(--coral-ink);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.13em;
}

[data-chapter] {
  --chapter-progress: 0;
  view-timeline-name: --chapter;
  view-timeline-axis: block;
}

.section-index {
  position: sticky;
  z-index: 3;
  top: 116px;
  display: flex;
  min-width: 110px;
  flex-direction: column;
  gap: 13px;
  align-self: start;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.index-line {
  position: relative;
  display: block;
  width: 1px;
  height: 74px;
  margin-left: 3px;
  overflow: hidden;
  background: var(--line);
}

.index-line::after {
  position: absolute;
  inset: 0;
  background: var(--coral);
  content: "";
  transform: scaleY(var(--chapter-progress));
  transform-origin: top center;
}

.section-index-light {
  color: rgba(244, 239, 231, 0.58);
}

.section-index-light .index-line {
  background: var(--white-line);
}

.manifesto-section,
.guest-section,
.questions-section {
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: clamp(42px, 8vw, 150px);
  padding-block: clamp(110px, 15vw, 220px);
}

.manifesto-section {
  min-height: 165svh;
}

.manifesto-content {
  position: sticky;
  top: clamp(132px, 17vh, 188px);
  align-self: start;
  max-width: 1120px;
}

.manifesto-content h2,
.guest-intro h2,
.packs-heading h2,
.process-heading h2,
.questions-content h2 {
  max-width: 1020px;
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 99px);
  letter-spacing: -0.062em;
  line-height: 0.88;
}

.manifesto-content h2 {
  margin-top: 27px;
}

.manifesto-bottom {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(220px, 360px);
  gap: 50px;
  align-items: end;
  margin-top: 49px;
}

.manifesto-bottom > p:first-child {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
}

.perspective-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.perspective-ledger > div {
  min-width: 0;
  padding: 24px 28px 26px 0;
}

.perspective-ledger > div + div {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: 28px;
}

.perspective-ledger span {
  color: var(--coral-ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.perspective-ledger p {
  max-width: 410px;
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.quiet-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.quiet-note span {
  color: var(--coral-ink);
  font-size: 18px;
}

.contact-note span {
  color: var(--coral);
  font-size: 18px;
}

.viewer-section {
  position: relative;
  overflow: clip;
  background: #0b2922;
  color: var(--paper);
}

.viewer-section::before {
  position: absolute;
  top: -28%;
  right: -10%;
  width: min(920px, 72vw);
  height: min(920px, 72vw);
  border: 1px solid rgba(169, 196, 181, 0.14);
  border-radius: 50%;
  content: "";
  transform: rotate(32deg);
}

.viewer-section::after {
  position: absolute;
  right: 8%;
  bottom: 5%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(223, 128, 96, 0.28);
  border-radius: 50%;
  content: "";
  opacity: 0.72;
}

.viewer-shell {
  position: relative;
  z-index: 1;
  display: block;
  width: min(calc(100% - 40px), 1500px);
  padding-block: clamp(110px, 14vw, 205px);
}

.viewer-heading,
.viewer-layout {
  grid-column: auto;
}

.viewer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 58px;
}

.viewer-heading h2 {
  max-width: 850px;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 90px);
  letter-spacing: -0.06em;
  line-height: 0.87;
}

.viewer-heading h2 em,
.process-heading h2 em {
  color: var(--coral);
}

.viewer-heading-note {
  display: grid;
  max-width: 270px;
  gap: 11px;
  padding-bottom: 4px;
}

.viewer-heading-note > span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.viewer-heading-note p {
  color: rgba(244, 239, 231, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.viewer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(27px, 3.2vw, 48px);
  align-items: start;
  min-width: 0;
}

.viewer-stage {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1.85;
  border: 1px solid rgba(244, 239, 231, 0.3);
  background: var(--moss-deep);
  box-shadow: 17px 19px 0 rgba(4, 20, 16, 0.28);
  isolation: isolate;
  transform-origin: center top;
}

.viewer-stage-topbar {
  position: absolute;
  z-index: 4;
  top: 17px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 239, 231, 0.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.viewer-360-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--coral);
}

.viewer-360-badge i,
.viewer-stage-readout i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(223, 128, 96, 0.16);
}

.viewer-poster {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--moss-deep);
}

.viewer-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.74) contrast(1.04);
}

#viewer-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: grab;
  outline: 0;
  opacity: 0;
  touch-action: none;
  transition: opacity 260ms ease;
}

.viewer-stage.viewer-ready #viewer-canvas {
  opacity: 1;
}

.viewer-stage:not(.has-viewed) #viewer-canvas {
  opacity: 0;
}

.viewer-stage.has-viewed .viewer-poster {
  opacity: 0;
}

#viewer-canvas:active {
  cursor: grabbing;
}

.viewer-video {
  position: absolute;
  z-index: -1;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.viewer-stage.no-webgl {
  display: grid;
  align-items: center;
  background: #071d18;
}

.viewer-stage.no-webgl #viewer-canvas,
.viewer-stage.no-webgl .viewer-poster,
.viewer-stage.no-webgl .viewer-vignette,
.viewer-stage.no-webgl .viewer-focus-ring {
  display: none;
}

.viewer-stage.no-webgl .viewer-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: 1;
  pointer-events: auto;
}

.viewer-vignette {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(3, 16, 13, 0.63) 100%);
}

.viewer-focus-ring {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(244, 239, 231, 0.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.viewer-focus-ring::before,
.viewer-focus-ring::after {
  position: absolute;
  background: rgba(244, 239, 231, 0.66);
  content: "";
}

.viewer-focus-ring::before {
  width: 1px;
  height: 104px;
}

.viewer-focus-ring::after {
  width: 104px;
  height: 1px;
}

.viewer-focus-ring span {
  z-index: 1;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 27px;
}

.viewer-stage-play {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 9px 17px 9px 10px;
  border: 1px solid rgba(244, 239, 231, 0.7);
  border-radius: 999px;
  background: rgba(9, 37, 31, 0.74);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, border-color 180ms ease, opacity 220ms ease, transform 220ms ease;
}

.viewer-stage-play:hover,
.viewer-stage-play:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--moss-deep);
  transform: translate(-50%, -50%) scale(1.03);
}

.viewer-stage-play-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--moss-deep);
  font-size: 9px;
  text-indent: 2px;
}

.viewer-stage.is-playing .viewer-stage-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.viewer-stage.is-playing .viewer-focus-ring,
.viewer-stage.is-playing .viewer-stage-hint {
  opacity: 0;
}

.viewer-stage-hint {
  position: absolute;
  z-index: 4;
  bottom: 80px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 11px;
  border: 1px solid rgba(244, 239, 231, 0.22);
  border-radius: 999px;
  background: rgba(9, 37, 31, 0.54);
  color: rgba(244, 239, 231, 0.74);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 220ms ease;
}

.viewer-stage-hint span {
  color: var(--coral);
  font-size: 15px;
  line-height: 0.5;
}

.viewer-stage-readout {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 74px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 239, 231, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  pointer-events: none;
}

.viewer-stage-readout > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
}

.viewer-stage-readout > span:first-child i {
  color: var(--coral);
}

.viewer-playerbar {
  position: absolute;
  z-index: 5;
  right: 11px;
  bottom: 11px;
  left: 11px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px 34px;
  gap: 8px;
  align-items: center;
  min-height: 50px;
  padding: 7px;
  border: 1px solid rgba(244, 239, 231, 0.25);
  background: rgba(5, 23, 19, 0.76);
  backdrop-filter: blur(10px);
}

.viewer-control {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(244, 239, 231, 0.25);
  background: transparent;
  color: var(--paper);
  font-size: 15px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.viewer-control:hover,
.viewer-control:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--moss-deep);
  transform: translateY(-1px);
}

.viewer-control-play {
  background: var(--paper);
  color: var(--moss-deep);
  font-size: 10px;
  text-indent: 2px;
}

.viewer-progress-wrap {
  min-width: 0;
}

.viewer-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: rgba(244, 239, 231, 0.58);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.viewer-progress-meta span:first-child {
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.viewer-progress-meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#viewer-progress {
  display: block;
  width: 100%;
  height: 4px;
  margin: 0;
  border-radius: 999px;
  outline: 0;
  background: linear-gradient(90deg, var(--coral) var(--progress, 0%), rgba(244, 239, 231, 0.22) var(--progress, 0%));
  cursor: pointer;
  appearance: none;
}

#viewer-progress::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid var(--moss-deep);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--paper);
  appearance: none;
}

#viewer-progress::-moz-range-thumb {
  width: 8px;
  height: 8px;
  border: 2px solid var(--moss-deep);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--paper);
}

#viewer-progress:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 7px;
}

#viewer-canvas:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: -4px;
}

.viewer-stage:fullscreen {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  border: 0;
}

.viewer-stage:fullscreen .viewer-playerbar {
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.viewer-rail {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.5fr) minmax(220px, 0.48fr);
  gap: 0 clamp(24px, 4vw, 68px);
  min-width: 0;
  padding-top: 3px;
}

.viewer-rail-intro {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.viewer-counter {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.viewer-counter span {
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.viewer-counter i {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--coral);
}

.viewer-rail-intro h3 {
  margin-top: 25px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(35px, 3.1vw, 51px);
  letter-spacing: -0.045em;
  line-height: 0.91;
  text-wrap: balance;
}

.viewer-rail-intro > p:not(.viewer-counter) {
  margin-top: 20px;
  color: rgba(244, 239, 231, 0.66);
  font-size: 13px;
  line-height: 1.6;
}

.viewer-scene-heading {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 31px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--white-line);
  color: rgba(244, 239, 231, 0.46);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.scene-tabs {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--white-line);
}

.scene-tab {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 17px;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--white-line);
  background: transparent;
  color: rgba(244, 239, 231, 0.57);
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease, padding 180ms ease;
}

.scene-tab:last-child {
  border-bottom: 0;
}

.scene-tab:hover,
.scene-tab:focus-visible,
.scene-tab.is-active {
  padding-inline: 9px;
  background: rgba(244, 239, 231, 0.07);
  color: var(--paper);
}

.scene-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(244, 239, 231, 0.2);
  background: var(--moss-deep);
  transition: border-color 180ms ease, transform 180ms ease;
}

.scene-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
  transition: filter 180ms ease, transform 260ms ease;
}

.scene-tab:hover .scene-thumb,
.scene-tab.is-active .scene-thumb {
  border-color: var(--coral);
  transform: translateY(-1px);
}

.scene-tab:hover .scene-thumb img,
.scene-tab.is-active .scene-thumb img {
  filter: saturate(1);
  transform: scale(1.06);
}

.scene-tab-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.scene-tab-meta {
  display: flex;
  justify-content: space-between;
  gap: 9px;
  color: var(--coral);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.scene-tab-meta span:last-child {
  color: rgba(244, 239, 231, 0.4);
  font-variant-numeric: tabular-nums;
}

.scene-tab strong {
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
}

.scene-tab small {
  overflow: hidden;
  color: rgba(244, 239, 231, 0.42);
  font-size: 10px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scene-tab-arrow {
  align-self: center;
  color: var(--coral);
  font-size: 18px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scene-tab:hover .scene-tab-arrow,
.scene-tab:focus-visible .scene-tab-arrow,
.scene-tab.is-active .scene-tab-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.viewer-rail-tip {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: start;
  align-self: end;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid var(--white-line);
  color: rgba(244, 239, 231, 0.55);
}

.viewer-rail-tip-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(223, 128, 96, 0.62);
  border-radius: 50%;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 12px;
}

.viewer-rail-tip p {
  font-size: 11px;
  line-height: 1.5;
}

.viewer-rail-tip strong {
  color: var(--paper);
  font-weight: 600;
}

.guest-content,
.packs-heading,
.pack-image,
.pack-list,
.process-content,
.questions-content {
  grid-column: 2;
}

.guest-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(55px, 10vw, 170px);
  align-items: start;
}

.guest-intro {
  position: sticky;
  top: clamp(126px, 15vh, 170px);
  align-self: start;
}

.guest-intro h2 {
  margin-top: 27px;
}

.guest-intro > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 42px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 31px;
}

.micro-proof span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.guest-flow {
  align-self: start;
  border-top: 1px solid var(--line);
}

.guest-flow li {
  display: grid;
  min-height: min(34vh, 350px);
  grid-template-columns: 34px 1fr 20px;
  gap: 12px;
  align-content: center;
  align-items: start;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.guest-flow li > span {
  color: var(--coral-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.guest-flow strong {
  display: block;
  font-size: 13px;
}

.guest-flow p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.guest-flow b {
  justify-self: end;
  color: var(--coral-ink);
  font-size: 19px;
  font-weight: 400;
}

.packs-section {
  overflow: clip;
  background: var(--paper-deep);
}

.packs-shell {
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: 0 clamp(42px, 8vw, 150px);
  padding-block: clamp(110px, 14vw, 200px);
}

.packs-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 45px;
  align-items: end;
}

.packs-heading h2 {
  margin-top: 26px;
}

.packs-heading > p:last-child {
  max-width: 310px;
  padding-bottom: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.pack-image {
  position: sticky;
  top: 112px;
  grid-row: 3;
  width: 56%;
  height: min(67vh, 680px);
  align-self: start;
  margin-top: 88px;
  overflow: hidden;
}

.pack-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.87) contrast(1.04);
  transform-origin: center center;
}

.pack-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 19px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: var(--paper);
}

.pack-image figcaption span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.pack-image figcaption strong {
  max-width: 250px;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-align: right;
}

.pack-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(9, 37, 31, 0.72));
  content: "";
  pointer-events: none;
}

.pack-image figcaption {
  z-index: 1;
}

.pack-list {
  grid-row: 3;
  width: 38%;
  justify-self: end;
  margin-top: 88px;
  border-top: 1px solid var(--line);
}

.pack-row {
  display: grid;
  min-height: min(68vh, 690px);
  grid-template-columns: minmax(0, 1fr);
  gap: 25px;
  align-content: center;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.pack-row-label {
  display: grid;
  gap: 8px;
  color: var(--coral-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pack-row-label small {
  color: var(--ink-soft);
  font-size: 9px;
}

.pack-row-main h3 {
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 57px);
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.pack-row-main > p {
  max-width: 660px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.pack-row > .text-link {
  align-self: start;
  justify-self: start;
  white-space: nowrap;
}

.pack-row-vip .pack-row-label,
.pack-row-vip .pack-tags span:first-child {
  color: var(--moss);
}

.pack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pack-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
}

.viewer-section,
.process-section,
.contact-section,
.site-footer {
  --focus-ring: var(--coral);
}

.process-section,
.contact-section {
  background: var(--moss);
  color: var(--paper);
}

.contact-section {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.contact-section::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: 7%;
  width: min(760px, 64vw);
  aspect-ratio: 1;
  border: 1px solid rgba(223, 128, 96, 0.24);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-38%, 8%) rotate(-18deg);
}

.process-shell {
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: 0 clamp(42px, 8vw, 150px);
  padding-block: clamp(110px, 14vw, 205px);
}

.process-content {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(410px, 0.72fr);
  gap: clamp(58px, 8vw, 135px);
  align-items: start;
  min-width: 0;
}

.process-heading {
  position: sticky;
  top: clamp(126px, 15vh, 170px);
  max-width: 650px;
  padding-bottom: 0;
}

.process-heading h2 {
  margin-top: 26px;
  color: var(--paper);
}

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

.process-row {
  display: grid;
  min-height: min(43vh, 440px);
  grid-template-columns: 45px minmax(0, 1fr) 26px;
  gap: 18px;
  align-content: center;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--white-line);
  transition: padding-inline 220ms ease, background-color 220ms ease;
}

.process-label {
  grid-column: 2;
}

.process-row p {
  grid-column: 2 / -1;
}

.process-arrow {
  grid-column: 3;
  grid-row: 1;
}

.process-row:hover {
  padding-inline: 18px;
  background: rgba(244, 239, 231, 0.05);
}

.process-number {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-label h3 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 55px);
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.process-label span,
.process-row p {
  color: rgba(244, 239, 231, 0.62);
  font-size: 12px;
}

.process-label span {
  display: block;
  margin-top: 9px;
  letter-spacing: 0.04em;
}

.process-row p {
  max-width: 360px;
  line-height: 1.55;
}

.process-arrow {
  justify-self: end;
  color: var(--coral);
  font-size: 20px;
  transition: transform 220ms ease;
}

.process-row:hover .process-arrow {
  transform: translate(3px, -3px);
}

.questions-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.questions-content > div:first-child {
  position: sticky;
  top: clamp(126px, 15vh, 170px);
  align-self: start;
}

.questions-content h2 {
  margin-top: 27px;
}

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

details {
  min-height: clamp(112px, 15vh, 165px);
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 21px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary span:last-child {
  color: var(--coral-ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  transition: transform 180ms ease;
}

details[open] summary span:last-child {
  transform: rotate(45deg);
}

details p {
  max-width: 550px;
  padding: 0 34px 22px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.contact-shell {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 0.83fr 1fr;
  gap: clamp(55px, 12vw, 190px);
  align-items: center;
  padding-block: clamp(105px, 13vw, 190px);
}

.contact-copy {
  align-self: start;
}

.contact-copy h2 {
  max-width: 650px;
  margin-top: 29px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(62px, 7.1vw, 106px);
  letter-spacing: -0.066em;
  line-height: 0.85;
}

.contact-copy > p:not(.eyebrow):not(.contact-note) {
  max-width: 430px;
  margin-top: 38px;
  color: rgba(244, 239, 231, 0.72);
  font-size: 16px;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 33px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
}

.contact-form {
  align-self: end;
  padding-top: 23px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  margin-bottom: 27px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: rgba(244, 239, 231, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field label span {
  color: var(--coral);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 0 13px;
  border: 0;
  border-bottom: 1px solid var(--white-line);
  outline: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-size: 14px;
  resize: vertical;
  transition: border-color 180ms ease;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--coral) 50%), linear-gradient(135deg, var(--coral) 50%, transparent 50%);
  background-position: calc(100% - 6px) 19px, calc(100% - 1px) 19px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field select option {
  background: var(--moss);
  color: var(--paper);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 239, 231, 0.55);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
}

.field.is-prefilled select {
  border-color: var(--coral);
}

.form-privacy {
  max-width: 610px;
  margin-top: 17px;
  color: rgba(244, 239, 231, 0.55);
  font-size: 11px;
  line-height: 1.55;
}

.form-privacy a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(223, 128, 96, 0.72);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-privacy a:hover {
  color: var(--coral);
}

.form-status {
  min-height: 24px;
  margin-top: 17px;
  color: var(--paper);
  font-size: 12px;
}

.site-footer {
  background: var(--moss-deep);
  color: var(--paper);
}

.footer-inner {
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--white-line);
}

.footer-brand {
  color: var(--paper);
}

.footer-inner p {
  color: rgba(244, 239, 231, 0.64);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.footer-link {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-link:hover {
  color: var(--paper);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
}

.deerflow-signature {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(244, 239, 231, 0.28);
  border-radius: 50%;
  color: rgba(244, 239, 231, 0.48);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: border-color 180ms ease, color 180ms ease;
}

.deerflow-signature:hover {
  border-color: var(--coral);
  color: var(--coral);
}

@keyframes hero-copy-journey {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0.08;
    transform: translateY(-110px);
  }
}

@keyframes hero-reel-journey {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0.56;
    transform: translateY(80px) scale(1.075);
  }
}

@keyframes hero-notes-journey {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(34px);
  }
}

@keyframes chapter-copy-journey {
  0% {
    opacity: 0.12;
    transform: translateY(72px);
  }

  34%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0.3;
    transform: translateY(-48px);
  }
}

@keyframes chapter-heading-enter {
  from {
    opacity: 0.18;
    transform: translateY(62px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes viewer-stage-journey {
  0% {
    opacity: 0.35;
    transform: translateY(54px) scale(0.925);
  }

  38%,
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0.78;
    transform: translateY(-24px) scale(0.985);
  }
}

@keyframes scroll-focus {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(32px);
  }

  36%,
  68% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-breathe {
  0% {
    transform: translateY(-2.5%) scale(1.08);
  }

  50% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(2.5%) scale(1.055);
  }
}

@keyframes orbit-journey {
  from {
    transform: translateY(-8%) rotate(20deg);
  }

  to {
    transform: translateY(16%) rotate(74deg);
  }
}

@keyframes contact-copy-journey {
  from {
    opacity: 0.12;
    transform: translateX(-64px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contact-form-journey {
  from {
    opacity: 0.12;
    transform: translateX(64px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@supports (animation-timeline: view()) {
  .hero-copy {
    animation: hero-copy-journey linear both;
    animation-range: exit 0% exit 100%;
    animation-timeline: --chapter;
  }

  .hero-reel {
    animation: hero-reel-journey linear both;
    animation-range: exit 0% exit 100%;
    animation-timeline: --chapter;
    transform-origin: center center;
  }

  .hero-note-row {
    animation: hero-notes-journey linear both;
    animation-range: exit 0% exit 76%;
    animation-timeline: --chapter;
  }

  .manifesto-content {
    animation: chapter-copy-journey linear both;
    animation-range: entry 0% exit 100%;
    animation-timeline: --chapter;
  }

  .viewer-heading,
  .packs-heading,
  .guest-intro,
  .questions-content > div:first-child,
  .process-heading {
    animation: chapter-heading-enter linear both;
    animation-range: entry 0% cover 42%;
    animation-timeline: --chapter;
  }

  .viewer-stage {
    animation: viewer-stage-journey linear both;
    animation-range: entry 4% exit 82%;
    animation-timeline: --chapter;
  }

  .viewer-section::before,
  .contact-section::before {
    animation: orbit-journey linear both;
    animation-range: entry 0% exit 100%;
    animation-timeline: --chapter;
  }

  .guest-flow li,
  .pack-row,
  .process-row,
  .answer-list details {
    animation: scroll-focus linear both;
    animation-range: entry 0% exit 100%;
    animation-timeline: view(block);
  }

  .pack-image img {
    animation: image-breathe linear both;
    animation-range: entry 0% exit 100%;
    animation-timeline: --chapter;
  }

  .contact-copy {
    animation: contact-copy-journey linear both;
    animation-range: entry 0% cover 48%;
    animation-timeline: --chapter;
  }

  .contact-form {
    animation: contact-form-journey linear both;
    animation-range: entry 8% cover 52%;
    animation-timeline: --chapter;
  }
}

.js-enabled.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enabled.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] {
  transition-delay: 100ms;
}

[data-delay="2"] {
  transition-delay: 200ms;
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 5px;
}

summary:focus-visible {
  border-radius: 2px;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 17px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(58px, 8vw, 100px);
  }

  .viewer-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }

  .viewer-heading-note {
    max-width: 420px;
    padding-bottom: 0;
  }

  .viewer-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .viewer-rail {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .viewer-rail-intro,
  .viewer-scene-heading,
  .scene-tabs,
  .viewer-rail-tip {
    grid-column: auto;
    grid-row: auto;
  }

  .viewer-rail-tip {
    margin-top: 0;
  }

  .pack-image {
    position: relative;
    top: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
    margin-top: 74px;
    overflow: visible;
  }

  .pack-image img {
    height: auto;
    max-height: 620px;
  }

  .pack-list {
    grid-row: auto;
    width: 100%;
    justify-self: stretch;
    margin-top: 82px;
  }

  .pack-row {
    min-height: 0;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: clamp(25px, 5vw, 80px);
    align-content: initial;
    padding: 33px 0 37px;
  }

  .pack-row > .text-link {
    grid-column: 2;
    justify-self: start;
    margin-top: 11px;
  }

  .process-content {
    display: block;
  }

  .process-heading {
    position: relative;
    top: auto;
    max-width: 970px;
    padding-bottom: 76px;
  }

  .process-row {
    min-height: 0;
    grid-template-columns: 55px minmax(180px, 0.76fr) 1fr 28px;
    gap: 24px;
    align-content: initial;
    padding: 31px 0 35px;
  }

  .process-label,
  .process-row p,
  .process-arrow {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 44px), 650px);
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 21px;
    left: 21px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 10px 12px 0 rgba(16, 56, 47, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 13px;
  }

  .site-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero-shell {
    display: block;
    min-height: auto;
    padding-block: 77px 70px;
  }

  .hero h1 {
    max-width: 630px;
    font-size: clamp(61px, 15vw, 100px);
  }

  .hero-reel {
    width: min(100%, 580px);
    margin: 75px auto 15px;
  }

  .hero-note-row {
    grid-template-columns: 1fr;
  }

  .hero-note-row p {
    min-height: 55px;
    padding-inline: 0;
  }

  .hero-note-row p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .manifesto-section,
  .guest-section,
  .questions-section,
  .viewer-shell,
  .packs-shell,
  .process-shell {
    display: block;
    padding-block: 100px;
  }

  .section-index {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    margin-bottom: 47px;
  }

  .index-line {
    width: auto;
    height: 1px;
    margin: 0;
  }

  .index-line::after {
    transform: scaleX(var(--chapter-progress));
    transform-origin: left center;
  }

  .manifesto-section {
    min-height: 0;
  }

  .manifesto-content,
  .guest-intro,
  .questions-content > div:first-child {
    position: relative;
    top: auto;
  }

  .manifesto-content h2,
  .guest-intro h2,
  .packs-heading h2,
  .viewer-heading h2,
  .process-heading h2,
  .questions-content h2 {
    font-size: clamp(53px, 12.4vw, 82px);
  }

  .manifesto-bottom {
    display: block;
    margin-top: 37px;
  }

  .manifesto-bottom .quiet-note {
    margin-top: 28px;
  }

  .perspective-ledger {
    margin-top: 40px;
  }

  .viewer-heading,
  .viewer-layout,
  .guest-content,
  .packs-heading,
  .pack-image,
  .pack-list,
  .process-content,
  .questions-content {
    grid-column: auto;
  }

  .viewer-heading {
    display: block;
    padding-bottom: 51px;
  }

  .viewer-heading-note {
    margin-top: 26px;
  }

  .viewer-layout {
    display: block;
  }

  .viewer-stage {
    aspect-ratio: 1.4;
  }

  .viewer-rail {
    margin-top: 62px;
  }

  .scene-tabs {
    grid-template-columns: 1fr;
  }

  .guest-content {
    display: block;
  }

  .guest-intro > p:not(.eyebrow) {
    margin-top: 33px;
  }

  .guest-flow {
    margin-top: 57px;
  }

  .packs-heading {
    display: block;
  }

  .packs-heading > p:last-child {
    max-width: 520px;
    margin-top: 30px;
  }

  .pack-image {
    margin-top: 55px;
  }

  .pack-list {
    margin-top: 58px;
  }

  .process-heading {
    padding-bottom: 54px;
  }

  .process-row {
    grid-template-columns: 38px 1fr 20px;
    gap: 12px;
  }

  .process-row p {
    grid-column: 2 / -1;
    max-width: 470px;
    margin-top: -3px;
  }

  .process-row:hover {
    padding-inline: 0;
    background: transparent;
  }

  .questions-content {
    display: block;
  }

  .answer-list {
    margin-top: 54px;
  }

  .contact-shell {
    display: block;
    padding-block: 100px;
  }

  .contact-copy h2 {
    font-size: clamp(62px, 14.5vw, 97px);
  }

  .contact-form {
    margin-top: 70px;
  }
}

@media (max-width: 540px) {
  .site-shell,
  .header-inner {
    width: min(calc(100% - 30px), 650px);
  }

  .hero h1 {
    font-size: clamp(56px, 16.3vw, 78px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    display: grid;
    gap: 12px;
  }

  .hero-proof div + div {
    padding-top: 12px;
    padding-left: 0;
  }

  .hero-proof div + div::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 38px;
    height: 1px;
  }

  .hero-reel {
    aspect-ratio: 0.82;
  }

  .hero-frame {
    inset: 10% 4% 10% 1%;
  }

  .hero-frame-copy {
    right: 15px;
    bottom: 18px;
    left: 15px;
  }

  .hero-frame-copy strong {
    font-size: 32px;
  }

  .hero-reel-meta,
  .hero-reel-foot {
    font-size: 7px;
  }

  .hero-scrub {
    gap: 3px;
  }

  .hero-scrub i {
    width: 9px;
  }

  .hero-scrub i:nth-child(3) {
    width: 22px;
  }

  .manifesto-section,
  .guest-section,
  .questions-section,
  .viewer-shell,
  .packs-shell,
  .process-shell,
  .contact-shell {
    padding-block: 84px;
  }

  .manifesto-content h2,
  .guest-intro h2,
  .packs-heading h2,
  .viewer-heading h2,
  .process-heading h2,
  .questions-content h2 {
    font-size: clamp(49px, 14.1vw, 72px);
  }

  .viewer-stage {
    aspect-ratio: 1.02;
  }

  .viewer-stage-topbar,
  .viewer-stage-readout {
    right: 11px;
    left: 11px;
    font-size: 7px;
  }

  .viewer-stage-readout {
    bottom: 68px;
  }

  .viewer-focus-ring {
    width: 45px;
    height: 45px;
  }

  .viewer-focus-ring::before {
    height: 74px;
  }

  .viewer-focus-ring::after {
    width: 74px;
  }

  .viewer-stage-hint {
    bottom: 76px;
    font-size: 8px;
  }

  .viewer-playerbar {
    right: 8px;
    bottom: 8px;
    left: 8px;
    grid-template-columns: 32px minmax(0, 1fr) 32px 32px;
    gap: 5px;
    min-height: 46px;
    padding: 6px;
  }

  .viewer-control {
    width: 32px;
    height: 32px;
  }

  .viewer-progress-meta span:last-child {
    display: none;
  }

  .viewer-stage-play {
    max-width: calc(100% - 30px);
    padding-right: 13px;
    font-size: 8px;
  }

  .scene-tab {
    grid-template-columns: 70px minmax(0, 1fr) 14px;
    gap: 10px;
  }

  .pack-image figcaption {
    display: grid;
    align-items: start;
    gap: 9px;
  }

  .pack-image figcaption strong {
    max-width: 210px;
    text-align: left;
  }

  .pack-row {
    display: block;
  }

  .pack-row-main {
    margin-top: 21px;
  }

  .pack-row > .text-link {
    display: inline-flex;
    margin-top: 27px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .perspective-ledger {
    grid-template-columns: 1fr;
  }

  .perspective-ledger > div {
    padding: 20px 0 22px;
  }

  .perspective-ledger > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .footer-inner {
    min-height: 175px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 25px;
  }

  .footer-inner p {
    order: 3;
  }

  .footer-actions {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
