:root {
  --paper:#faf7f2;
  --white:#fffefd;
  --ink:#242821;
  --green:#254a3b;
  --green-dark:#193b2d;
  --muted:#6d7166;
  --gold:#a47a3c;
  --brand-amber:#c17f3a;
  --line:#d5cfc4;
  --highlight:#e2eadb;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'DM Sans',Arial,sans-serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:30px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,p,figure,blockquote {
  margin:0;
}
h1,h2,h3 {
  font-family:var(--serif);
  font-weight:400;
  line-height:1.08;
}
h1 {
  font-size:clamp(48px,5.2vw,80px);
  letter-spacing:-.035em;
}
h2 {
  font-size:clamp(40px,4.1vw,64px);
  letter-spacing:-.025em;
}
h3 {
  font-size:36px;
  letter-spacing:-.015em;
}
a {
  color:inherit;
  text-underline-offset:5px;
}
button,select {
  font:500 15px/1.4 var(--sans);
}
button,a,select {
  -webkit-tap-highlight-color:transparent;
}
button {
  color:inherit;
  cursor:pointer;
}
button:disabled {
  cursor:default;
}
button,select {
  border-radius:0;
}
button:focus-visible,a:focus-visible,select:focus-visible,[tabindex]:focus-visible {
  outline:3px solid var(--gold);
  outline-offset:5px;
}
button:hover,a:hover {
  text-decoration-color:var(--gold);
}
img {
  display:block;
  max-width:100%;
  object-fit:cover;
}
svg {
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0;
}
small,.micro {
  font-size:13px;
  line-height:1.65;
  color:var(--muted);
}
[hidden] {
  display:none!important;
}
.wrap {
  width:min(1392px,calc(100% - 96px));
  margin-inline:auto;
}
.section {
  padding-block:100px;
}
.section-number {
  display:block;
  font:500 12px/1.5 var(--sans);
  letter-spacing:.12em;
  color:var(--gold);
  margin-bottom:18px;
}
.section-intro {
  font-size:18px;
  color:var(--muted);
  margin-top:18px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  min-height:55px;
  padding:16px 25px;
  border:1px solid transparent;
  border-radius:3px;
  text-decoration:none;
  font:500 15px/1.4 var(--sans);
  transition:background .2s,color .2s,transform .2s;
}
.primary {
  background:var(--green);
  color:var(--paper);
}
.primary:hover {
  background:var(--green-dark);
  transform:translateY(-2px);
}
.outline {
  background:transparent;
  border-color:var(--gold);
  color:#89622c;
}
.outline:hover {
  background:#ede5d7;
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:15px;
  color:var(--green);
  font-size:14px;
  text-decoration:none;
  border-bottom:1px solid var(--line);
  padding-block:8px;
}
.text-link svg {
  width:20px;
}
.skip-link {
  position:fixed;
  top:-100px;
  left:16px;
  padding:12px;
  background:var(--green);
  color:white;
  z-index:50;
}
.skip-link:focus {
  top:12px;
}
.header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  padding:14px 3.2%;
  gap:32px;
  min-height:82px;
}
.wordmark {
  font:500 43px/1 var(--serif);
  letter-spacing:-1.7px;
  text-decoration:none;
  color:var(--green);
  white-space:nowrap;
}
.wordmark span {
  color:var(--brand-amber);
  font-weight:400;
}
.header nav {
  display:flex;
  gap:46px;
  margin-left:auto;
  align-items:center;
}
.header nav a {
  font-size:15px;
  text-decoration:none;
}
.header-home {
  margin-left:18px;
  padding:11px 20px;
  min-height:43px;
  font-size:14px;
  gap:20px;
}
.header-home svg {
  width:17px;
  height:17px;
}
.hero {
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:48px;
  padding-top:26px;
  padding-bottom:34px;
  align-items:center;
}
.hero-copy {
  padding:25px 0;
}
.hero h1 {
  white-space:nowrap;
}
.hero h1 em {
  font-weight:400;
  color:var(--green);
}
.hero-copy>p {
  max-width:490px;
  margin-top:30px;
  font-size:19px;
  line-height:1.75;
}
.hero .primary {
  margin-top:30px;
  padding:21px 31px;
  font-size:17px;
  gap:36px;
}
.hero small {
  display:block;
  margin-top:28px;
  font-size:13px;
}
.hero-image img {
  width:100%;
  height:clamp(450px,44vw,670px);
  border-radius:5px;
  object-position:center 55%;
}
.hero-image figcaption {
  font-size:12px;
  color:var(--muted);
  margin-top:9px;
}
.journey {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  padding:30px 0 32px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.journey a {
  display:flex;
  align-items:center;
  gap:24px;
  text-decoration:none;
  padding:5px 28px;
  border-right:1px solid var(--line);
}
.journey a:first-child {
  padding-left:0;
}
.journey a:last-child {
  border:0;
  padding-right:0;
}
.step-number {
  font:400 65px/1 var(--serif);
  color:var(--gold);
  letter-spacing:-2px;
}
.journey strong {
  display:block;
  font:400 30px/1.15 var(--serif);
}
.journey small {
  display:block;
  margin-top:8px;
  font-size:12px;
}
.journey svg {
  width:37px;
  height:37px;
  color:var(--gold);
  margin-left:auto;
  stroke-width:1;
}
.journey a:hover strong {
  color:var(--green);
}
.source-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12%;
  align-items:center;
  padding-inline:35px;
}
.source-intro>p {
  margin-top:22px;
  color:var(--muted);
  max-width:490px;
}
.source-intro .button {
  margin-top:28px;
}
.source-intro p.micro {
  margin-top:15px;
  font-size:12px;
  max-width:420px;
}
.import-status {
  color:var(--green);
  font-size:13px;
  margin-top:12px;
}
.import-status:empty {
  margin:0;
}
.import-status svg {
  width:16px;
  height:16px;
  vertical-align:middle;
  margin-right:5px;
}
.manuscript {
  background:var(--white);
  padding:40px 38px 30px;
  border:1px solid #e5e0d7;
  box-shadow:0 8px 28px #3d311109;
  font-family:var(--serif);
}
.manuscript h3 {
  font-size:43px;
  text-align:center;
}
.document-meta {
  display:flex;
  justify-content:space-between;
  font:500 10px/1.5 var(--sans);
  letter-spacing:.12em;
  color:var(--muted);
  margin-bottom:25px;
}
.gold-rule {
  width:32px;
  height:1px;
  background:var(--gold);
  margin:24px auto;
}
.manuscript p {
  font-size:21px;
  line-height:1.65;
  margin-top:18px;
}
.manuscript mark {
  background:transparent;
  transition:background 1s;
  color:inherit;
}
.source-open .manuscript mark,.source-evidence mark {
  background:var(--highlight);
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}
.manuscript footer {
  font:400 11px/1.7 var(--sans);
  color:var(--muted);
  margin-top:26px;
  border-top:1px solid var(--line);
  padding-top:15px;
}
.source-open .intro-manuscript {
  animation:document-open .8s both;
}
.context-section {
  background:#f5f2ec;
  border-block:1px solid #e8e2d8;
}
.context-workspace {
  display:grid;
  grid-template-columns:29% 42% 29%;
  align-items:start;
  margin-top:46px;
}
.source-evidence {
  padding:28px 28px 30px;
  min-height:410px;
}
.source-evidence h3 {
  font-size:37px;
}
.source-evidence .source-byline {
  font:400 16px/1.5 var(--serif);
  text-align:center;
  margin-top:9px;
}
.source-evidence blockquote {
  font:400 25px/1.65 var(--serif);
}
.source-evidence .source-label {
  font:400 11px/1.5 var(--sans);
  color:var(--muted);
  margin-top:26px;
}
.source-evidence a {
  display:inline-block;
  font-family:var(--sans);
  font-size:11px;
  margin-top:10px;
}
.map-column {
  padding:0 10px;
}
.context-map {
  position:relative;
  height:410px;
}
.map-lines {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  stroke:var(--line);
  stroke-width:1.2;
  overflow:visible;
}
.map-lines path {
  transition:stroke .3s;
}
.map-lines .selected {
  stroke:var(--green);
  stroke-width:1.8;
  stroke-dasharray:6 4;
  animation:flow 1.2s linear 3;
}
.map-center {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border:2px solid var(--green);
  border-radius:50%;
  background:var(--paper);
  width:126px;
  height:126px;
  display:grid;
  place-items:center;
  color:var(--green);
  font:500 26px/1.2 var(--serif);
  text-align:center;
}
.map-node {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  position:absolute;
  transform:translate(-50%,-50%);
  padding:10px 12px;
  min-height:44px;
  border:1px solid #a3a294;
  background:var(--paper);
  border-radius:30px;
  white-space:nowrap;
  font:500 19px/1.2 var(--serif);
  transition:background .2s,border .2s,box-shadow .2s;
}
.map-node svg {
  width:18px;
  height:18px;
  color:var(--green);
  stroke-width:1.3;
}
.map-node:hover {
  border-color:var(--green);
  box-shadow:0 3px 10px #254a3b12;
}
.map-node[aria-pressed=true] {
  background:var(--green);
  border-color:var(--green);
  color:var(--paper);
}
.map-node[aria-pressed=true] svg {
  color:var(--paper);
}
.node-wallace {
  left:24%;
  top:14.4%;
}
.node-redmond {
  left:76%;
  top:14.4%;
}
.node-garden {
  left:18%;
  top:50%;
}
.node-door {
  left:82%;
  top:50%;
}
.node-longing {
  left:22%;
  top:85%;
}
.node-memory {
  left:78%;
  top:85%;
}
.node-dot {
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--green);
}
.interpretation .node-dot {
  background:var(--gold);
}
.map-node[aria-pressed=true] .node-dot {
  background:var(--paper);
}
.map-legend {
  display:flex;
  justify-content:center;
  gap:22px;
  font-size:11px;
  color:var(--muted);
  margin-top:10px;
}
.map-legend span {
  display:flex;
  align-items:center;
  gap:7px;
}
.map-legend i {
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green);
}
.map-legend .gold {
  background:var(--gold);
}
.context-inspector {
  border-left:1px solid #c7c0b5;
  padding:25px 0 20px 30px;
  min-height:420px;
}
.context-art {
  margin-bottom:24px;
}
.context-art img {
  width:100%;
  height:auto;
  aspect-ratio:3/2;
  object-fit:cover;
  border-radius:2px;
  background:var(--green-dark);
}
.context-art figcaption {
  font-size:10px;
  line-height:1.6;
}
.context-inspector h3 {
  font-size:44px;
  margin:23px 0;
}
.context-details>p {
  font-size:16px;
  color:#555b51;
  line-height:1.85;
}
.carry {
  border-top:1px solid var(--line);
  margin:28px 0 18px;
  padding-top:19px;
}
.carry>span {
  font-size:12px;
  color:var(--muted);
}
.carry p {
  font-family:var(--serif);
  font-size:23px;
  line-height:1.45;
  margin-top:12px;
}
.context-inspector .micro {
  font-size:12px;
  color:var(--muted);
}
.context-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  margin-top:54px;
}
.context-bottom>div {
  max-width:600px;
}
.context-bottom h3 {
  font-size:34px;
}
.context-bottom p {
  font-size:14px;
  color:var(--muted);
  margin-top:12px;
}
.context-bottom .button {
  flex-shrink:0;
}
.output-tabs {
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid var(--line);
  margin-top:35px;
  margin-bottom:34px;
  overflow-x:auto;
  scrollbar-width:thin;
}
.output-tabs button {
  position:relative;
  flex-shrink:0;
  background:none;
  border:none;
  border-bottom:2px solid transparent;
  padding:18px 14px;
  font-size:15px;
  font-weight:400;
  min-height:57px;
  white-space:nowrap;
}
.output-tabs button:hover {
  color:var(--green);
  background:#254a3b05;
}
.output-tabs button[aria-selected=true] {
  border-bottom-color:var(--green);
  color:var(--green);
  font-weight:600;
}
.output-panel {
  display:grid;
  grid-template-columns:1.58fr 1fr;
  gap:44px;
  align-items:start;
  min-height:460px;
  animation:panel-in .3s ease-out;
}
.output-visual>img,.video-visual video {
  width:100%;
  height:440px;
  object-fit:cover;
  object-position:center 45%;
  border-radius:2px;
  background:var(--green-dark);
}
figcaption {
  color:var(--muted);
  font-size:12px;
  margin-top:10px;
}
.output-copy {
  padding:16px 0 0;
}
.output-copy .section-number {
  font-size:11px;
  margin-bottom:22px;
}
.output-copy h3 {
  font-size:40px;
  line-height:1.13;
  margin-bottom:22px;
}
.output-copy>p {
  font-size:17px;
  line-height:1.9;
}
.context-list {
  border-top:1px solid var(--line);
  margin:27px 0 0;
  padding-top:18px;
}
.context-list dt {
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
  margin-bottom:8px;
}
.context-list dd {
  margin:0;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
  color:#5a5f54;
  line-height:1.7;
}
.context-list b {
  font-weight:600;
  color:var(--ink);
}
.output-copy .feature-state {
  font-size:11px;
  color:var(--muted);
  line-height:1.7;
  margin-top:19px;
}
.feature-state:before {
  content:'';
  width:6px;
  height:6px;
  display:inline-block;
  margin-right:7px;
  margin-bottom:1px;
  background:var(--green);
  border-radius:50%;
}
.feature-state.experimental:before,.feature-state.future:before {
  background:var(--gold);
}
.output-copy .text-link {
  font-size:12px;
  margin-top:12px;
}
.illustrated-example {
  min-width:0;
}
.production-art {
  margin-bottom:20px;
}
.production-art img {
  width:100%;
  height:auto;
  aspect-ratio:3/2;
  object-fit:cover;
  border-radius:2px;
}
.production-art figcaption {
  font-size:11px;
}
.illustrated-example .translation-visual,
.illustrated-example .audio-visual {
  min-height:0;
}
.translation-visual {
  background:var(--white);
  border:1px solid var(--line);
  padding:28px 34px;
  min-height:440px;
}
.language-tools {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:34px;
}
.language-tools label {
  font-size:12px;
  color:var(--muted);
}
.language-tools select {
  background:var(--paper);
  border:1px solid var(--line);
  padding:11px 30px 11px 13px;
  color:var(--green);
  min-width:145px;
}
.translation-visual small {
  font-size:10px;
  letter-spacing:.1em;
}
.translation-visual p:not(.micro) {
  font:400 31px/1.4 var(--serif);
  margin-top:10px;
}
.translation-source {
  padding-bottom:26px;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}
.translation-target {
  padding:25px 0;
  color:var(--green);
}
.translation-visual .micro {
  font-size:11px;
  margin-top:15px;
}
.audio-visual {
  padding:40px;
  background:#eeede4;
  min-height:440px;
}
.audio-visual h3 {
  font-size:46px;
  color:var(--green);
  margin-bottom:23px;
}
.voice-options,.campaign-options {
  display:flex;
  gap:6px;
}
.voice-options button,.campaign-options button {
  background:transparent;
  border:1px solid #bbbcae;
  padding:10px 18px;
  font-size:12px;
}
.voice-options button[aria-pressed=true],.campaign-options button[aria-pressed=true] {
  background:var(--green);
  border-color:var(--green);
  color:var(--paper);
}
.audio-visual blockquote {
  font:400 23px/1.65 var(--serif);
  margin:26px 0;
}
.audio-visual audio {
  width:100%;
  height:45px;
  margin-bottom:12px;
}
.audio-visual .micro {
  font-size:11px;
}
.video-visual video {
  height:400px;
}
.shot-strip {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:20px;
  border-top:1px solid var(--line);
  gap:16px;
}
.shot-strip span {
  font-size:11px;
  color:var(--muted);
  padding-top:10px;
}
.shot-strip b {
  display:block;
  color:var(--green);
  font-weight:500;
}
.campaign-visual {
  border:1px solid var(--line);
  background:var(--white);
}
.campaign-art {
  aspect-ratio:3/2;
  overflow:hidden;
}
.campaign-art img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.campaign-text {
  padding:25px 32px;
}
.campaign-text small {
  font-size:10px;
  letter-spacing:.13em;
}
.campaign-text h3 {
  font-size:37px;
  margin:14px 0;
  color:var(--green);
}
.campaign-text p {
  font-size:14px;
  color:var(--muted);
  line-height:1.75;
}
.campaign-options {
  padding:0 32px 25px;
  flex-wrap:wrap;
}
.book-visual {
  background:#eeeadf;
  padding:30px;
  text-align:center;
}
.book-page {
  background:var(--white);
  width:min(340px,100%);
  padding:36px 33px 22px;
  margin:auto;
  box-shadow:0 8px 30px #3f342312;
  text-align:center;
  min-height:390px;
  border-left:4px solid #dad4c6;
}
.book-page>span:first-child {
  font-size:10px;
  letter-spacing:.17em;
}
.book-page h3 {
  font-size:40px;
  margin-top:20px;
}
.book-page p {
  font:400 20px/1.65 var(--serif);
  text-align:left;
  margin-top:24px;
}
.book-page .page-number {
  display:block;
  margin-top:24px;
  font:400 12px var(--serif);
}
.book-visual>.text-link {
  margin-top:20px;
  font-size:12px;
}
.world-scene {
  position:relative;
  overflow:hidden;
  background:var(--green-dark);
}
.world-scene img {
  width:100%;
  height:440px;
  object-fit:cover;
}
.hotspot {
  position:absolute;
  width:42px;
  height:42px;
  padding:0;
  display:grid;
  place-items:center;
  background:var(--paper);
  color:var(--green);
  border:2px solid var(--paper);
  border-radius:50%;
  font-size:15px;
  box-shadow:0 0 0 7px #faf7f22e;
  transition:box-shadow .2s,background .2s;
  transform:translate(-50%,-50%);
}
.hotspot:hover {
  box-shadow:0 0 0 12px #faf7f230;
}
.hotspot[aria-pressed=true] {
  background:var(--green);
  color:var(--paper);
}
.hotspot-path {
  left:57%;
  top:77%;
}
.hotspot-panthers {
  left:24%;
  top:80%;
}
.hotspot-light {
  left:63%;
  top:27%;
}
.hotspot-caption {
  padding-top:17px;
}
.hotspot-caption b {
  font-size:13px;
  font-weight:500;
  color:var(--green);
}
.hotspot-caption p {
  font-size:12px;
  color:var(--muted);
  margin-top:5px;
}
.future-band {
  background:var(--green);
  color:var(--paper);
  padding-block:44px;
}
.future-band>.wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.future-band h2 {
  font-size:46px;
}
.future-band p {
  color:#d5dfd4;
  font-size:13px;
  line-height:1.8;
}
.light-outline {
  border-color:#d1ab70;
  color:#e8c58d;
  background:none;
  white-space:nowrap;
}
.light-outline:hover {
  background:#ffffff0d;
}
.about-demo {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:12%;
  padding-block:70px;
}
.about-demo h2 {
  font-size:35px;
}
.about-demo h3 {
  font-size:28px;
}
.about-demo p {
  font-size:12px;
  color:var(--muted);
  line-height:1.9;
  margin-top:17px;
}
.about-demo a {
  display:inline-block;
  font-size:12px;
  color:var(--green);
  margin-top:15px;
}
.footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  padding-block:30px;
  border-top:1px solid var(--line);
}
.footer .wordmark {
  font-size:33px;
}
.footer p {
  font-size:12px;
  color:#555d50;
}
.footer p span {
  color:var(--muted);
  font-size:11px;
}
.footer>a:not(.wordmark) {
  font-size:12px;
}
.footer small {
  font-size:11px;
}
.noscript-note {
  padding:20px;
  border:1px solid var(--line);
  margin-top:20px;
  font-size:13px;
}
@keyframes document-open {
  from {
    transform:translateY(8px);
    box-shadow:0 0 0 2px #254a3b00;
  }
  50% {
    box-shadow:0 0 0 2px #254a3b30;
  }
  to {
    transform:translateY(0);
  }
}
@keyframes panel-in {
  from {
    opacity:.25;
    transform:translateY(5px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}
@keyframes flow {
  to {
    stroke-dashoffset:-20;
  }
}
@media(min-width:1600px) {
  .hero {
    gap:65px;
  }
  .hero h1 {
    font-size:80px;
  }
}
@media(max-width:1250px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .hero {
    gap:30px;
  }
  .hero h1 {
    font-size:5vw;
  }
  .hero-copy>p {
    font-size:17px;
  }
  .hero-image img {
    height:500px;
  }
  .journey a {
    gap:16px;
    padding-inline:20px;
  }
  .journey strong {
    font-size:26px;
  }
  .journey svg {
    display:none;
  }
  .context-workspace {
    grid-template-columns:28% 44% 28%;
  }
  .source-evidence {
    padding:25px 22px;
  }
  .source-evidence h3 {
    font-size:31px;
  }
  .source-evidence blockquote {
    font-size:22px;
  }
  .map-center {
    width:103px;
    height:103px;
    font-size:23px;
  }
  .map-node {
    font-size:15px;
    padding:9px;
    gap:5px;
  }
  .map-node svg {
    width:15px;
  }
  .map-node .node-dot {
    display:none;
  }
  .context-inspector {
    padding-left:23px;
  }
  .context-inspector h3 {
    font-size:36px;
  }
  .context-details>p {
    font-size:13px;
  }
  .carry p {
    font-size:21px;
  }
  .source-section {
    padding-inline:0;
    gap:7%;
  }
  .output-panel {
    gap:32px;
    grid-template-columns:1.3fr 1fr;
  }
  .output-copy h3 {
    font-size:35px;
  }
  .output-tabs button {
    padding-inline:10px;
    font-size:14px;
  }
  .future-band h2 {
    font-size:38px;
  }
}
@media(max-width:1000px) {
  .header {
    gap:15px;
  }
  .header nav {
    gap:23px;
  }
  .header-home {
    margin-left:0;
  }
  .hero-image img {
    height:465px;
  }
  .hero h1 {
    font-size:5vw;
  }
  .hero-copy>p {
    font-size:16px;
  }
  .hero .primary {
    font-size:15px;
    padding:18px 22px;
    gap:20px;
  }
  .hero small {
    font-size:11px;
  }
  .section {
    padding-block:75px;
  }
  .journey {
    padding-block:25px;
  }
  .journey a {
    gap:12px;
  }
  .step-number {
    font-size:52px;
  }
  .journey strong {
    font-size:24px;
  }
  .journey small {
    font-size:10px;
  }
  .context-workspace {
    grid-template-columns:38% 62%;
    row-gap:35px;
  }
  .context-inspector {
    grid-column:1/-1;
    min-height:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 40px;
    border-left:0;
    border-top:1px solid var(--line);
    padding:25px 0 0;
  }
  .context-art {
    margin-bottom:0;
  }
  .context-inspector h3 {
    margin:15px 0;
  }
  .context-inspector .carry {
    margin-top:20px;
  }
  .source-evidence {
    min-height:355px;
  }
  .context-map {
    height:355px;
  }
  .map-node {
    font-size:18px;
    padding:11px 14px;
  }
  .map-center {
    width:130px;
    height:130px;
    font-size:27px;
  }
  .context-bottom {
    align-items:flex-start;
  }
  .context-bottom .button {
    gap:12px;
    font-size:12px;
    padding-inline:18px;
  }
  .output-tabs {
    gap:4px;
  }
  .output-tabs button {
    font-size:12px;
    padding-inline:8px;
  }
  .output-panel {
    gap:26px;
    grid-template-columns:1.15fr 1fr;
  }
  .output-copy h3 {
    font-size:33px;
  }
  .output-copy>p {
    font-size:14px;
  }
  .output-visual>img {
    height:430px;
  }
  .translation-visual {
    padding:24px;
  }
  .translation-visual p:not(.micro) {
    font-size:28px;
  }
  .audio-visual {
    padding:28px;
  }
  .audio-visual h3 {
    font-size:38px;
  }
  .audio-visual blockquote {
    font-size:21px;
  }
  .campaign-text {
    padding:23px;
  }
  .campaign-options {
    padding-inline:23px;
  }
  .campaign-options button {
    padding-inline:12px;
  }
  .future-band>.wrap {
    flex-wrap:wrap;
  }
  .future-band h2 {
    font-size:42px;
  }
  .future-band .button {
    min-height:48px;
  }
  .about-demo {
    gap:7%;
  }
  .footer {
    flex-wrap:wrap;
  }
  .footer p {
    margin-right:auto;
  }
}
@media(max-width:760px) {
  html {
    scroll-padding-top:20px;
  }
  .wrap {
    width:calc(100% - 40px);
  }
  .header {
    min-height:75px;
    padding:15px 20px;
    flex-wrap:wrap;
    gap:14px;
  }
  .wordmark {
    font-size:33px;
  }
  .header-home {
    display:none;
  }
  .header nav {
    gap:17px;
  }
  .header nav a {
    font-size:11px;
  }
  .hero {
    grid-template-columns:1fr;
    padding-top:36px;
    gap:28px;
    padding-bottom:28px;
  }
  .hero-copy {
    padding:0;
  }
  .hero h1 {
    font-size:clamp(39px,7.7vw,60px);
    white-space:normal;
    letter-spacing:-.035em;
  }
  .hero-copy>p {
    font-size:16px;
    margin-top:21px;
    max-width:490px;
  }
  .hero .primary {
    margin-top:24px;
    padding:17px 21px;
    font-size:15px;
  }
  .hero small {
    margin-top:18px;
    font-size:11px;
  }
  .hero-image img {
    height:380px;
    object-position:center 57%;
  }
  .hero-image figcaption {
    font-size:10px;
  }
  .journey {
    padding:21px 0;
    gap:14px;
  }
  .journey a {
    display:block;
    padding:0 8px 0 0;
  }
  .journey strong {
    font-size:19px;
    margin-top:8px;
  }
  .journey small {
    display:none;
  }
  .step-number {
    font-size:39px;
    letter-spacing:-1px;
  }
  .section {
    padding-block:60px;
  }
  .section-number {
    font-size:10px;
    margin-bottom:15px;
  }
  h2 {
    font-size:40px;
  }
  .source-section {
    grid-template-columns:1fr;
    gap:34px;
  }
  .source-intro>p {
    font-size:15px;
    margin-top:18px;
  }
  .source-intro p.micro {
    max-width:100%;
  }
  .source-intro .button {
    margin-top:24px;
  }
  .intro-manuscript {
    padding:28px;
  }
  .manuscript p {
    font-size:21px;
  }
  .manuscript h3 {
    font-size:39px;
  }
  .document-meta {
    font-size:9px;
  }
  .section-intro {
    font-size:15px;
    margin-top:15px;
  }
  .context-workspace {
    grid-template-columns:1fr;
    margin-top:28px;
    gap:25px;
  }
  .source-evidence {
    min-height:0;
    order:2;
  }
  .source-evidence h3 {
    font-size:31px;
  }
  .source-evidence .gold-rule {
    margin:17px auto;
  }
  .source-evidence blockquote {
    font-size:23px;
  }
  .source-evidence .source-label {
    margin-top:17px;
  }
  .source-evidence .source-byline {
    font-size:15px;
  }
  .map-column {
    order:1;
    padding:0;
  }
  .context-map {
    height:330px;
    max-width:480px;
    margin:auto;
  }
  .map-center {
    width:100px;
    height:100px;
    font-size:23px;
  }
  .map-node {
    font-size:15px;
    padding:10px 12px;
    gap:7px;
  }
  .map-node svg {
    width:17px;
  }
  .node-wallace {
    left:25%;
  }
  .node-redmond {
    left:77%;
  }
  .node-garden {
    left:18%;
  }
  .node-door {
    left:82%;
  }
  .node-longing {
    left:23%;
  }
  .node-memory {
    left:78%;
  }
  .map-legend {
    font-size:10px;
    gap:20px;
    margin-top:4px;
  }
  .context-inspector {
    order:3;
    display:block;
    grid-column:auto;
    padding-top:22px;
  }
  .context-art {
    margin-bottom:24px;
  }
  .context-inspector h3 {
    font-size:38px;
  }
  .context-details>p {
    font-size:14px;
  }
  .context-inspector .carry {
    margin:20px 0 15px;
    padding-top:16px;
    border-top:1px solid var(--line);
  }
  .carry p {
    font-size:24px;
  }
  .context-bottom {
    margin-top:32px;
    flex-direction:column;
    gap:22px;
  }
  .context-bottom h3 {
    font-size:31px;
  }
  .context-bottom p {
    font-size:13px;
  }
  .context-bottom .button {
    font-size:14px;
    padding:16px 20px;
  }
  .output-tabs {
    margin:25px 0;
    gap:7px;
    scroll-padding-inline:12px;
  }
  .output-tabs button {
    font-size:14px;
    padding:14px 13px;
    min-height:53px;
  }
  .output-panel {
    grid-template-columns:1fr;
    gap:22px;
    min-height:0;
  }
  .output-visual>img {
    height:320px;
  }
  .output-copy {
    padding-top:0;
  }
  .output-copy .section-number {
    margin-bottom:14px;
  }
  .output-copy h3 {
    font-size:37px;
    margin-bottom:17px;
  }
  .output-copy>p {
    font-size:15px;
  }
  .context-list {
    margin-top:22px;
  }
  .context-list dd {
    font-size:12px;
  }
  .context-list dt {
    font-size:10px;
  }
  .output-copy .feature-state {
    font-size:12px;
  }
  .translation-visual {
    min-height:0;
    padding:25px;
  }
  .translation-visual p:not(.micro) {
    font-size:30px;
  }
  .language-tools {
    margin-bottom:27px;
  }
  .audio-visual {
    padding:27px;
    min-height:0;
  }
  .audio-visual blockquote {
    font-size:23px;
  }
  .audio-visual h3 {
    font-size:39px;
  }
  .video-visual video {
    height:290px;
  }
  .shot-strip {
    gap:12px;
  }
  .shot-strip span {
    font-size:10px;
  }
  .campaign-text h3 {
    font-size:36px;
  }
  .book-visual {
    padding:25px;
  }
  .world-scene img {
    height:320px;
  }
  .hotspot {
    width:38px;
    height:38px;
    font-size:13px;
  }
  .future-band {
    padding-block:34px;
  }
  .future-band>.wrap {
    display:block;
  }
  .future-band h2 {
    font-size:43px;
  }
  .future-band h2 br {
    display:none;
  }
  .future-band p {
    margin-top:18px;
    font-size:12px;
  }
  .future-band .button {
    margin-top:25px;
    font-size:13px;
    gap:20px;
    white-space:normal;
  }
  .about-demo {
    grid-template-columns:1fr;
    gap:30px;
    padding-block:44px;
  }
  .about-demo h2 {
    font-size:33px;
  }
  .about-demo h3 {
    font-size:28px;
  }
  .footer {
    gap:20px;
    padding-block:25px;
  }
  .footer .wordmark {
    font-size:31px;
  }
  .footer p {
    flex-basis:calc(100% - 145px);
    margin:0;
    font-size:10px;
  }
  .footer p span {
    font-size:10px;
  }
  .footer small {
    margin-left:auto;
  }
}
@media(max-width:360px) {
  .wrap {
    width:calc(100% - 32px);
  }
  .header {
    padding-inline:16px;
  }
  .header nav {
    gap:11px;
  }
  .header nav a {
    font-size:10px;
  }
  .wordmark {
    font-size:29px;
  }
  .hero h1 {
    font-size:37px;
  }
  .journey strong {
    font-size:17px;
  }
  .map-node {
    font-size:15px;
    padding:9px;
    gap:5px;
  }
  .map-node svg {
    display:none;
  }
  .map-center {
    width:90px;
    height:90px;
    font-size:21px;
  }
  .hero-image img {
    height:330px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    animation:none!important;
    transition:none!important;
  }
}
