:root {
  --ivory: #f5f0e4;
  --paper: #fffaf0;
  --ink: #183234;
  --ink-soft: #445d5c;
  --deep: #0f282a;
  --river: #476866;
  --mist: #dbe1d6;
  --gold: #c59b53;
  --clay: #a96747;
  --line: rgba(24, 50, 52, .16);
  --shadow: 0 22px 60px rgba(18, 42, 43, .12);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  transform: translateY(-150%);
  padding: .65rem 1rem;
  color: white;
  background: var(--deep);
  border-radius: 100px;
}
.skip-link:focus { transform: translateY(0); }
.skip-link:not(:focus) { clip-path: inset(50%); pointer-events: none; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 1.7rem 2rem;
  color: var(--paper);
}
.brand {
  display: flex;
  gap: .8rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.brand-name { font-size: .78rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.brand-mark {
  position: relative;
  display: inline-grid;
  width: 25px;
  height: 28px;
  place-items: end center;
  border: 1px solid rgba(255,255,255,.7);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}
.brand-mark span { width: 9px; height: 18px; background: linear-gradient(145deg, var(--gold), #fff4bf); border-radius: 10px 10px 0 0; }
.private-label { display: flex; gap: .45rem; align-items: center; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .82; }
.private-label span { color: var(--gold); font-size: .6rem; }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  overflow: hidden;
  align-items: center;
  padding: 8rem max(2rem, calc((100vw - 1120px) / 2)) 6rem;
  color: var(--paper);
  background:
    linear-gradient(104deg, rgba(8,28,30,.99) 0%, rgba(14,38,40,.97) 47%, rgba(18,47,48,.7) 100%),
    var(--deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent, black);
}
.hero-light {
  position: absolute;
  width: 66vw;
  height: 130%;
  top: -12%;
  right: -35%;
  background: linear-gradient(105deg, rgba(255,240,183,0), rgba(255,236,172,.45));
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 0 100%);
  filter: blur(3px);
  opacity: .75;
}
.hero-light::after {
  content: "";
  position: absolute;
  inset: 12% 12% 12% 46%;
  border: 1px solid rgba(255,245,199,.35);
  box-shadow: 0 0 70px rgba(255,230,145,.22);
}
.hero-copy { position: relative; z-index: 1; max-width: 770px; }
.eyebrow { margin: 0 0 1rem; color: var(--gold); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.8vw, 6.1rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}
.hero h1 em { color: #e5d4a3; font-weight: 400; }
.hero-intro { max-width: 620px; margin: 2rem 0 2.2rem; color: rgba(255,250,240,.8); font-size: clamp(1rem, 2vw, 1.16rem); }
.quiet-note { display: inline-block; margin: 1.25rem 0 0 1.25rem; color: rgba(255,255,255,.54); font-size: .8rem; }
.hero-principle {
  position: absolute;
  z-index: 1;
  right: max(2rem, calc((100vw - 1120px) / 2));
  bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-principle i { width: 28px; height: 1px; background: rgba(255,255,255,.25); }

.primary-button, .text-button, .behaviour-card, .situation-card, .possibility-card, .restart-button {
  border: 0;
  cursor: pointer;
}
.primary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .8rem 1.25rem;
  color: var(--deep);
  background: var(--gold);
  border-radius: 3px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.primary-button:hover { transform: translateY(-2px); background: #d2ac69; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.primary-button:focus-visible, .text-button:focus-visible, .behaviour-card:focus-visible, .situation-card:focus-visible, .possibility-card:focus-visible, textarea:focus-visible, .dialog-close:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.primary-button:disabled { cursor: not-allowed; opacity: .38; transform: none; box-shadow: none; }

.explorer-shell {
  max-width: 1120px;
  min-height: 680px;
  margin: -1.8rem auto 0;
  position: relative;
  z-index: 2;
  padding: clamp(1.4rem, 4vw, 3.5rem);
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: var(--shadow);
}
.explorer-header { display: flex; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.explorer-header h2, .boundary h2, .insight-dialog h2 { max-width: 750px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 400; line-height: 1.08; }
.progress-wrap { min-width: 130px; padding-top: .3rem; color: var(--ink-soft); font-size: .76rem; text-align: right; }
.progress-track { width: 130px; height: 2px; margin-top: .55rem; overflow: hidden; background: var(--mist); }
.progress-track span { display: block; width: 25%; height: 100%; background: var(--gold); transition: width .4s ease; }
.explorer-content { padding: 2.4rem 0; }
.stage-intro { max-width: 700px; margin: 0 0 1.8rem; color: var(--ink-soft); }
.behaviour-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.behaviour-card {
  position: relative;
  min-height: 170px;
  padding: 1.6rem;
  overflow: hidden;
  color: var(--ink);
  background: #f5f1e7;
  border: 1px solid transparent;
  text-align: left;
  transition: border .2s, transform .2s, background .2s;
}
.behaviour-card::after { content: ""; position: absolute; top: 0; right: 0; width: 90px; height: 100%; opacity: 0; background: linear-gradient(105deg, transparent, rgba(197,155,83,.18)); transition: opacity .25s; }
.behaviour-card:hover { transform: translateY(-2px); border-color: rgba(197,155,83,.55); background: #faf6ed; }
.behaviour-card:hover::after { opacity: 1; }
.behaviour-card.selected { border-color: var(--river); background: #eef0e9; box-shadow: inset 4px 0 var(--river); }
.card-number { color: var(--gold); font-size: .7rem; letter-spacing: .12em; }
.behaviour-card strong { display: block; margin: .65rem 0 .25rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.behaviour-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

.situation-list { display: grid; gap: .7rem; }
.situation-card {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: .8rem;
  align-items: start;
  width: 100%;
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  text-align: left;
  transition: background .2s, border .2s;
}
.situation-card:hover { background: #f7f3e9; border-color: rgba(71,104,102,.45); }
.situation-card.selected { background: #edf0e8; border-color: var(--river); }
.check-mark { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid var(--river); border-radius: 50%; color: white; font-size: .75rem; }
.situation-card.selected .check-mark { background: var(--river); }
.selection-note { margin: 1rem 0 0; color: var(--ink-soft); font-size: .82rem; }

.possibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.possibility-card {
  min-height: 200px;
  padding: 1.25rem;
  color: var(--paper);
  background: var(--deep);
  border: 1px solid transparent;
  text-align: left;
  transition: transform .2s, background .2s;
}
.possibility-card:hover { transform: translateY(-2px); background: #17393a; }
.possibility-card.revealed { color: var(--ink); background: #eef0e9; border-color: rgba(71,104,102,.4); }
.possibility-card .reveal-label { color: var(--gold); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.possibility-card strong { display: block; margin: .7rem 0; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1.15; }
.possibility-card p { margin: 0; color: var(--ink-soft); font-size: .82rem; }
.possibility-card:not(.revealed) p { display: none; }
.possibility-card:not(.revealed) strong { color: rgba(255,255,255,.85); }
.none-answer { margin: 1.3rem 0 0; padding-left: 1rem; color: var(--ink-soft); border-left: 2px solid var(--gold); font-size: .85rem; }

.reflection-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; }
.question-list { display: grid; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.question-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.55rem); line-height: 1.3; }
.notes-panel { padding: 1.3rem; background: #edf0e9; }
.notes-panel label { display: block; margin-bottom: .65rem; font-weight: 600; }
.notes-panel textarea { width: 100%; min-height: 145px; resize: vertical; padding: .9rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 2px; }
.notes-panel small { display: block; margin-top: .6rem; color: var(--ink-soft); }
.insight-route { margin-top: 1rem; padding: 1.3rem; color: var(--paper); background: var(--deep); }
.insight-route .eyebrow { margin-bottom: .5rem; }
.insight-route h3 { margin: 0 0 .4rem; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.insight-route p { margin: 0 0 1rem; color: rgba(255,255,255,.7); font-size: .82rem; }
.insight-route .primary-button { width: 100%; }
.restart-button { padding: .2rem 0; color: var(--ink-soft); background: transparent; text-decoration: underline; text-underline-offset: 4px; }
.closing-line { margin: 2rem 0 0; color: var(--ink-soft); font-family: var(--serif); font-size: 1.3rem; }
.explorer-footer { display: flex; justify-content: space-between; align-items: center; min-height: 54px; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.text-button { padding: .6rem 0; background: transparent; font-weight: 600; }

.boundary { display: grid; grid-template-columns: 60px 1fr; gap: 1.4rem; max-width: 940px; margin: 6rem auto; padding: 0 2rem; }
.boundary-symbol { display: grid; width: 46px; height: 46px; place-items: center; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; font-family: var(--serif); font-size: 1.4rem; }
.boundary h2 { max-width: 650px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.boundary p:last-child { max-width: 760px; color: var(--ink-soft); }
.site-footer { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem max(2rem, calc((100vw - 1120px) / 2)); color: rgba(255,255,255,.66); background: var(--deep); font-size: .78rem; }

.insight-dialog { max-width: 520px; padding: 2.3rem; color: var(--ink); background: var(--paper); border: 0; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.insight-dialog::backdrop { background: rgba(8,25,26,.76); backdrop-filter: blur(4px); }
.dialog-close { position: absolute; top: .8rem; right: .9rem; border: 0; background: transparent; cursor: pointer; font-size: 1.5rem; }
.insight-dialog h2 { font-size: 2.3rem; }
.insight-dialog > p:not(.eyebrow) { color: var(--ink-soft); }
.prototype-route { margin: 1.2rem 0; padding: 1rem; background: #edf0e9; border-left: 3px solid var(--gold); }
.prototype-route span { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.prototype-route p { margin: .3rem 0 0; color: var(--ink-soft); font-size: .82rem; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }

/* Expanded journeys retain the original ivory, river and light palette. */
a { color: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid #99702f; outline-offset: 4px; }
h2:focus { outline: none; }
.header-right { display: flex; align-items: center; gap: 1.4rem; }
.support-link { font-size: .75rem; text-underline-offset: 4px; }
.hero-light { right: -24%; opacity: .85; }
.hero .quiet-note { color: #c1c9bc; }
.hero-principle { color: #b5c1b8; }
.explorer-shell { scroll-margin-top: 22px; }
.explorer-shell .eyebrow, .boundary .eyebrow, .insight-dialog .eyebrow { color: #825d28; }
.path-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.15rem; color: var(--ink-soft); font-size: .78rem; min-height: 58px; }
.path-bar .text-button { font-size: .78rem; text-decoration: underline; text-underline-offset: 3px; flex-shrink: 0; }
.explorer-content { padding-top: 1.4rem; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.filter, .choice { min-height: 44px; border: 1px solid #aeb8aa; border-radius: 24px; background: transparent; padding: .5rem 1rem; font-size: .8rem; cursor: pointer; }
.filter.active, .choice.active { background: var(--deep); color: var(--paper); border-color: var(--deep); }
.filter:hover, .choice:hover { box-shadow: inset 0 0 0 1px var(--river); }
.behaviour-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: .85rem; }
.behaviour-card { min-height: 195px; padding: 1.5rem; }
.card-number { display: block; color: #825d28; }
.card-arrow { float: right; font-size: 1.2rem; line-height: 1; color: var(--river); }
.behaviour-title { display: block; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: 1.2; margin: .8rem 0 .6rem; }
.card-caption { display: block; font-size: .85rem; color: var(--ink-soft); }
.card-meta { display: block; font-size: .68rem; color: var(--ink-soft); margin-top: 1rem; letter-spacing: .03em; }
.scene-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.scene-tab { min-width: 0; border: 1px solid var(--line); padding: 1.4rem; text-align: left; background: #f5f1e7; cursor: pointer; }
.scene-tab > span { display: block; font-size: .84rem; }
.scene-tab .eyebrow { font-size: .63rem; margin-bottom: .8rem; }
.scene-tab strong { display: block; font: 400 1.5rem/1.15 var(--serif); margin-bottom: .75rem; }
.scene-tab.selected { background: #edf0e8; border-color: var(--river); box-shadow: inset 3px 0 var(--river); }
.scene-tab:hover { border-color: var(--river); }
.scene-hint { font: italic 1.15rem/1.5 var(--serif); margin: 2.5rem 0 1rem; color: var(--ink-soft); max-width: 640px; }
.story { max-width: 740px; margin: 2.6rem auto 1.6rem; padding: 2rem 2.5rem 1.3rem; background: #f7f3e9; border-top: 2px solid var(--gold); }
.story p:not(.eyebrow) { font-size: 1.08rem; line-height: 1.85; margin-bottom: 1.25rem; }
.story-end { display: block; text-align: center; color: #825d28; }
.recognition { border: 0; padding: 1rem 0 0; margin: 0; }
.recognition legend { font-weight: 500; padding: 0; }
.recognition legend span, .notes-panel label span { font-size: .75rem; font-weight: 400; color: var(--ink-soft); }
.recognition-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.microcopy { font-size: .74rem; color: var(--ink-soft); }
.tension-panel { position: relative; overflow: hidden; padding: clamp(1.6rem,5vw,3.4rem); color: var(--paper); background: linear-gradient(108deg,#102c2d 40%,#435047 100%); }
.tension-panel .eyebrow { color: #d7b677; }
.tension-panel blockquote { position: relative; z-index: 1; font: 400 clamp(1.65rem,3.8vw,2.6rem)/1.3 var(--serif); max-width: 760px; margin: 1.5rem 0; }
.tension-panel > p { position: relative; max-width: 530px; font-size: .86rem; color: #d2d8ce; }
.light-line { position: absolute; top: -30%; right: -8%; width: 35%; height: 165%; background: linear-gradient(90deg,transparent,#e4ce9466); transform: rotate(22deg); }
.tension-note { margin: 1.7rem 0; }
.scene-recap { padding: .8rem 0; border-top: 1px solid var(--line); max-width: 760px; color: var(--ink-soft); }
.scene-recap summary { cursor: pointer; padding: .4rem 0; min-height: 44px; font-size: .84rem; }
.scene-recap p { font-size: .9rem; }
.context-label { margin: 0 0 1.3rem; font-size: .78rem; color: var(--ink-soft); }
.possibility-grid { grid-template-columns: repeat(2,minmax(0,1fr)); align-items: stretch; }
.possibility-card { min-height: 145px; padding: 0; cursor: default; }
.possibility-card:last-child { grid-column: 1/-1; min-height: auto; }
.possibility-card > button { display: block; width: 100%; min-height: 145px; text-align: left; background: none; color: inherit; border: 0; padding: 1.4rem; cursor: pointer; }
.possibility-card:last-child > button { min-height: 105px; }
.possibility-card button:focus-visible { outline-offset: -5px; outline-color: #c59b53; }
.possibility-card .reveal-label { display: flex; justify-content: space-between; gap: 1rem; }
.possibility-card .reveal-label span { font-size: 1rem; }
.possibility-card.revealed .reveal-label { color: #825d28; }
.possibility-card strong { font-size: 1.4rem; line-height: 1.25; margin-bottom: 0; }
.possibility-card > p { padding: 0 1.4rem 1.5rem; font-size: .9rem; line-height: 1.65; }
.question-list li { display: flex; align-items: baseline; gap: 1rem; padding: 1.35rem 0; }
.question-number { font: 400 .65rem var(--sans); letter-spacing: .08em; color: #825d28; }
.reflection-layout > * { min-width: 0; }
.closing-space { display: flex; align-items: center; gap: 1.4rem; margin: 2.3rem 0 1.3rem; }
.closing-line { margin: 0; font-size: 1.25rem; }
.open-door { display: block; width: 38px; height: 60px; flex-shrink: 0; background: linear-gradient(105deg,#f8ecc4,#c9aa65); border: 3px solid #244244; border-bottom: 0; transform: skewY(-8deg); box-shadow: 13px 9px 0 #dcdcc9; }
.notes-panel textarea { font-size: 16px; }
.notes-panel small { font-size: .73rem; }
.note-actions { display: flex; justify-content: space-between; gap: 1rem; }
.note-actions .text-button { font-size: .73rem; min-height: 44px; text-decoration: underline; text-underline-offset: 3px; }
.text-button:disabled { opacity: .45; cursor: default; }
.insight-route .eyebrow { color: #dfbd82; }
.insight-route p { color: #d1d9d0; font-size: .86rem; }
.preview-label { display: block; margin-top: .7rem; font-size: .65rem; color: #c8d2c7; }
.explorer-footer { gap: 1rem; }
.explorer-footer > .primary-button:only-child, .explorer-footer > .primary-button { margin-left: auto; }
.boundary { scroll-margin-top: 30px; }
.boundary p { color: var(--ink-soft); }
.insight-dialog { width: calc(100% - 2rem); max-height: calc(100dvh - 2rem); overflow-y: auto; }
.dialog-subtitle { font-family: var(--serif); font-size: 1.3rem; line-height: 1.3; }
.dialog-close { display: grid; place-items: center; min-width: 44px; min-height: 44px; top: .3rem; right: .3rem; }
.noscript-note { max-width: 720px; padding: 2rem; margin: auto; }

@media (max-width: 760px) {
  .site-header { padding: 1.15rem; }
  .brand-name { max-width: 130px; font-size: .65rem; line-height: 1.25; }
  .private-label { font-size: .6rem; }
  .hero { min-height: 700px; padding: 7rem 1.2rem 5rem; align-items: center; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  .hero-intro { font-size: .97rem; }
  .quiet-note { display: block; margin: .9rem 0 0; }
  .hero-principle { right: 1.2rem; left: 1.2rem; justify-content: center; gap: .45rem; }
  .hero-principle i { width: 13px; }
  .explorer-shell { min-height: 720px; margin: -1.1rem .65rem 0; padding: 1.25rem; }
  .explorer-header { display: block; padding-bottom: 1.4rem; }
  .progress-wrap { display: flex; width: 100%; align-items: center; gap: .7rem; padding-top: 1.2rem; text-align: left; }
  .progress-track { flex: 1; width: auto; margin: 0; }
  .explorer-content { padding: 1.5rem 0; }
  .behaviour-grid { grid-template-columns: 1fr; }
  .behaviour-card { min-height: 130px; padding: 1.2rem; }
  .possibility-grid { display: grid; grid-template-columns: 1fr; gap: .65rem; }
  .possibility-card { min-width: 0; min-height: 0; }
  .possibility-card > button { min-height: 115px; }
  .reflection-layout { grid-template-columns: 1fr; }
  .explorer-footer { position: sticky; bottom: 0; margin: 0 -1.25rem -1.25rem; padding: .9rem 1.25rem; background: rgba(255,250,240,.96); backdrop-filter: blur(8px); }
  .boundary { grid-template-columns: 1fr; margin: 4rem auto; }
  .site-footer { flex-direction: column; padding: 1.6rem 1.2rem; }
  .site-footer p { margin: 0; }
  .insight-dialog { width: calc(100% - 1.5rem); padding: 1.6rem; }
  .header-right { flex-direction: column-reverse; align-items: flex-end; gap: .3rem; }
  .support-link { font-size: .62rem; }
  .hero { min-height: 680px; }
  .hero h1 { font-size: clamp(2.6rem,11.6vw,4.1rem); }
  .hero-light { right: -10%; opacity: .7; width: 85vw; }
  .filter { font-size: .72rem; padding: .45rem .8rem; }
  .scene-tabs { grid-template-columns: 1fr; gap: .65rem; }
  .scene-tab { padding: 1.1rem; }
  .scene-tab .eyebrow { margin-bottom: .4rem; }
  .scene-tab strong { font-size: 1.35rem; margin-bottom: .45rem; }
  .story { padding: 1.3rem; margin-top: 1.5rem; }
  .story p:not(.eyebrow) { font-size: 1rem; line-height: 1.8; }
  .choice { font-size: .74rem; }
  .path-bar { font-size: .7rem; }
  .explorer-footer .primary-button { font-size: .8rem; padding: .8rem 1rem; }
  .explorer-footer .text-button { min-height: 44px; font-size: .8rem; }
  .behaviour-card { min-height: 170px; }
  .boundary { padding: 0 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
