:root {
  --ink: #110d14;
  --ink-soft: #19131c;
  --paper: #251c24;
  --paper-raised: #2d222a;
  --paper-warm: #33251f;
  --text: #f7f0e7;
  --muted: #c9bbb2;
  --quiet: #998a84;
  --gold: #d8ac70;
  --gold-light: #f1d39b;
  --clay: #b86451;
  --wine: #6d2838;
  --profile-accent: #d8ac70;
  --line: rgba(242, 216, 174, 0.17);
  --line-strong: rgba(242, 216, 174, 0.34);
  --shadow: 0 30px 90px rgba(2, 0, 4, 0.55);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 280px;
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 280px;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(109, 40, 56, 0.34), transparent 34rem),
    radial-gradient(circle at 94% 78%, rgba(134, 82, 49, 0.18), transparent 30rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 90%);
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

button {
  border: 0;
  font: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--gold-light);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient::before,
.ambient::after {
  position: absolute;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(216, 172, 112, 0.06);
  border-radius: 50%;
  content: "";
}

.ambient::before {
  top: -31rem;
  right: -13rem;
  box-shadow: 0 0 0 7rem rgba(216, 172, 112, 0.012), 0 0 0 14rem rgba(216, 172, 112, 0.009);
}

.ambient::after {
  bottom: -34rem;
  left: -23rem;
}

.ambient-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 16px rgba(241, 211, 155, 0.8);
  opacity: 0.5;
}

.star-one { top: 13%; left: 8%; }
.star-two { top: 21%; right: 13%; }
.star-three { right: 8%; bottom: 12%; }

.app-shell {
  display: grid;
  width: min(100%, 560px);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding:
    max(14px, env(safe-area-inset-top))
    max(12px, env(safe-area-inset-right))
    max(14px, env(safe-area-inset-bottom))
    max(12px, env(safe-area-inset-left));
  place-items: center;
}

.dossier {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 38%),
    linear-gradient(180deg, rgba(42, 31, 40, 0.985), rgba(27, 20, 27, 0.99));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.dossier::before {
  position: absolute;
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(242, 216, 174, 0.075);
  border-radius: 3px;
  content: "";
  pointer-events: none;
}

.dossier::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle at top right, rgba(216, 172, 112, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.dossier-edge {
  display: none;
}

.screen {
  position: relative;
  width: 100%;
  padding: clamp(28px, 8%, 44px) clamp(20px, 6%, 32px);
}

.screen.is-active {
  animation: screen-in 480ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

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

.folio {
  margin: 0 0 clamp(34px, 8%, 48px);
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.eyebrow,
.data-label {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(2.55rem, 12vw, 3.75rem);
  line-height: 0.98;
}

h2 {
  max-width: 17ch;
  font-size: clamp(2.15rem, 9vw, 3.3rem);
  line-height: 1.03;
}

h3 {
  font-size: clamp(2rem, 7vw, 3.35rem);
  line-height: 1.05;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2.5vw, 1.17rem);
  line-height: 1.75;
}

.intro-layout {
  display: grid;
  gap: 36px;
}

.case-note {
  display: grid;
  gap: 7px;
  margin-top: 32px;
  padding: 16px 0 2px 18px;
  border-left: 2px solid var(--clay);
}

.case-note-label {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-note p,
.protocol-card p {
  margin: 0;
  color: var(--muted);
}

.protocol-card {
  position: relative;
  align-self: end;
  padding: 26px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(216, 172, 112, 0.09), transparent 48%),
    rgba(255, 255, 255, 0.025);
}

.identity-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font: 500 1rem/1.3 var(--sans);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.form-field input:hover {
  border-color: var(--line-strong);
}

.form-field input:focus {
  border-color: var(--gold-light);
  background: rgba(216, 172, 112, 0.06);
  box-shadow: 0 0 0 3px rgba(216, 172, 112, 0.12);
}

.form-error {
  margin: -4px 0 0;
  padding: 11px 13px;
  border-left: 2px solid var(--clay);
  color: #efb4a7;
  background: rgba(184, 100, 81, 0.08);
  font-size: 0.84rem;
}

.identity-form .button {
  margin-top: 4px;
}

.denied-screen {
  min-height: min(650px, calc(100svh - 28px));
}

.denied-stamp {
  display: inline-flex;
  margin: 4px 0 30px;
  padding: 9px 12px;
  border: 2px solid rgba(218, 129, 105, 0.62);
  color: rgba(235, 145, 122, 0.8);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  transform: rotate(-4deg);
}

.protocol-card::before {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(242, 216, 174, 0.07);
  content: "";
  pointer-events: none;
}

.seal {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  margin: -62px 0 22px auto;
  border: 1px solid rgba(241, 211, 155, 0.44);
  border-radius: 50%;
  color: var(--gold-light);
  background: radial-gradient(circle, #763646, #4c1f2c 72%);
  box-shadow: 0 10px 24px rgba(8, 2, 6, 0.42), inset 0 0 0 5px rgba(255, 255, 255, 0.025);
  place-items: center;
  transform: rotate(7deg);
}

.seal-mark {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.seal-ring {
  position: absolute;
  inset: 10px;
  border: 1px dotted rgba(241, 211, 155, 0.42);
  border-radius: 50%;
}

.protocol-title,
.prescription-title {
  color: var(--text) !important;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2;
}

.protocol-card > p:not(.protocol-title, .microcopy) {
  margin-top: 10px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.3;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.button-primary {
  margin-top: 24px;
  color: #201416;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 9px 26px rgba(42, 22, 8, 0.22);
}

.button-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.button-primary span {
  font-size: 1.25em;
  font-weight: 500;
}

.microcopy {
  margin-top: 12px !important;
  color: var(--quiet) !important;
  font-size: 0.78rem;
  text-align: center;
}

.quiz-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 16px;
}

.quiz-header .eyebrow {
  grid-column: 1;
  grid-row: 2;
}

.step-label {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.text-button {
  display: inline-flex;
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin: -10px 0 20px -10px;
  padding: 8px 10px;
  color: var(--muted);
  background: transparent;
  font-size: 0.9rem;
}

.text-button:hover:not(:disabled) {
  color: var(--text);
}

.text-button:disabled {
  opacity: 0.35;
}

.progress-track {
  height: 3px;
  margin: 18px 0 clamp(34px, 8%, 48px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress-value {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--clay), var(--gold-light));
  box-shadow: 0 0 12px rgba(216, 172, 112, 0.4);
  transition: width 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.question-card {
  position: relative;
  min-height: 420px;
}

.question-card.is-entering {
  animation: question-in 340ms ease both;
}

@keyframes question-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.question-number {
  position: absolute;
  top: -38px;
  right: 0;
  z-index: -1;
  color: rgba(241, 211, 155, 0.055);
  font-family: var(--serif);
  font-size: clamp(6rem, 22vw, 10rem);
  line-height: 1;
}

.question-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.02);
  font-size: 1.35rem;
  place-items: center;
}

.question-hint {
  margin: 15px 0 0;
  color: var(--quiet);
  font-size: 0.9rem;
}

.answers {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.answer {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  line-height: 1.4;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.answer-letter {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(242, 216, 174, 0.24);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.84rem;
  place-items: center;
}

.answer:hover:not(:disabled),
.answer.is-selected {
  border-color: rgba(241, 211, 155, 0.52);
  background: rgba(216, 172, 112, 0.08);
  transform: translateX(3px);
}

.answer:disabled:not(.is-selected) {
  opacity: 0.48;
}

.processing-screen {
  min-height: min(680px, calc(100svh - 28px));
  text-align: center;
}

.processing-screen .folio,
.processing-screen .eyebrow,
.processing-screen h2 {
  margin-right: auto;
  margin-left: auto;
}

.processing-screen h2 {
  margin-top: 18px;
}

.analysis-device {
  position: relative;
  display: grid;
  width: 134px;
  height: 134px;
  margin: 48px auto 36px;
  place-items: center;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 172, 112, 0.28);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 16px rgba(241, 211, 155, 0.7);
  content: "";
}

.orbit-one { animation: orbit 3.4s linear infinite; }
.orbit-two { inset: 18px; animation: orbit 2.5s linear infinite reverse; }

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.analysis-core {
  display: grid;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--gold-light);
  background: radial-gradient(circle, rgba(109, 40, 56, 0.95), rgba(63, 26, 37, 0.9));
  box-shadow: 0 0 28px rgba(109, 40, 56, 0.45);
  place-items: center;
}

.processing-status {
  min-height: 1.7em;
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.processing-ledger {
  display: grid;
  gap: 7px;
  max-width: 430px;
  margin: 22px auto 0;
  padding: 0;
  color: var(--quiet);
  font-size: 0.84rem;
  list-style: none;
}

.processing-ledger li {
  animation: ledger-in 260ms ease both;
}

@keyframes ledger-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.result-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.result-badge {
  display: inline-flex;
  margin: 13px 0 0;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--profile-accent);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.2;
}

.case-stamp {
  flex: 0 0 auto;
  margin-top: 5px;
  padding: 8px 10px;
  border: 2px solid rgba(184, 100, 81, 0.48);
  color: rgba(218, 129, 105, 0.68);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  transform: rotate(6deg);
}

.result-copy {
  margin-top: 20px;
}

.result-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.affinity-card,
.signals-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.024);
}

.affinity-value {
  margin: 10px 0 13px;
  color: var(--profile-accent);
  font-family: var(--serif);
  font-size: clamp(3.25rem, 14vw, 5rem);
  line-height: 1;
}

.affinity-value small {
  font-size: 0.38em;
}

.meter {
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--clay), var(--profile-accent));
  transition: width 1100ms 220ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.affinity-note {
  margin: 12px 0 0;
  color: var(--quiet);
  font-size: 0.76rem;
  line-height: 1.4;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 7px 10px;
  border: 1px solid rgba(242, 216, 174, 0.15);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.79rem;
  line-height: 1.3;
}

.prescription-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(216, 172, 112, 0.23);
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(216, 172, 112, 0.08), transparent);
}

.prescription-index {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
}

.prescription-callout p {
  margin: 0;
}

.prescription-callout div > p:last-child {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.reveal-screen .eyebrow {
  margin-bottom: 16px;
}

.reveal-intro {
  max-width: 57ch;
  margin: 20px 0 0;
  color: var(--muted);
}

.book-card {
  display: grid;
  gap: 26px;
  align-items: center;
  margin-top: 38px;
  padding: clamp(20px, 5vw, 34px);
  border: 1px solid rgba(216, 172, 112, 0.27);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.018);
}

.book-stage {
  display: grid;
  width: min(220px, 68vw);
  aspect-ratio: 2 / 3;
  place-items: center;
  margin-inline: auto;
}

.book-cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.book-copy .data-label {
  display: block;
  margin-bottom: 10px;
}

.book-author {
  margin: 8px 0 18px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.book-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-note {
  position: relative;
  margin: 24px 0 0;
  padding: 24px 26px 22px;
  border-left: 2px solid var(--clay);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 4.6vw, 1.45rem);
}

.final-note > span {
  position: absolute;
  top: -15px;
  right: 16px;
  color: rgba(216, 172, 112, 0.14);
  font-size: 5rem;
  line-height: 1;
}

.final-note p {
  margin: 0;
}

.final-note footer {
  margin-top: 10px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: normal;
}

.reading-list {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.reading-list-heading h3 {
  max-width: 12ch;
  margin-top: 12px;
  font-size: clamp(1.9rem, 8vw, 2.65rem);
}

.reading-list-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.recommendation-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: recommendation;
}

.recommendation-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 17px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(100deg, rgba(216, 172, 112, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.018);
}

.recommendation-rank {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: grid;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 0.66rem;
  place-items: center;
}

.recommendation-cover {
  position: relative;
  width: 58px;
  aspect-ratio: 2 / 3;
}

.recommendation-cover img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(242, 216, 174, 0.18);
  border-radius: 2px 5px 5px 2px;
  object-fit: cover;
  box-shadow: 5px 7px 14px rgba(0, 0, 0, 0.28);
}

.recommendation-copy {
  min-width: 0;
}

.recommendation-copy h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.2;
}

.recommendation-author {
  margin: 4px 0 0;
  color: var(--gold-light);
  font-size: 0.78rem;
}

.recommendation-reason {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.recommendation-match {
  display: grid;
  min-width: 48px;
  color: var(--profile-accent);
  line-height: 1;
  text-align: right;
}

.recommendation-match strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
}

.recommendation-match span {
  margin-top: 5px;
  color: var(--quiet);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

button:focus-visible,
a:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

#confetti {
  position: fixed;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

noscript {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  padding: 14px;
  border: 1px solid #c78b65;
  color: var(--text);
  background: #2b1e1c;
  text-align: center;
}

@media (min-width: 720px) {
  .app-shell {
    padding: 32px;
  }
}

@media (max-width: 430px) {
  .screen {
    padding-right: 18px;
    padding-left: 18px;
  }

  .folio {
    letter-spacing: 0.1em;
  }

  .protocol-card {
    margin-top: 20px;
  }

  .answer {
    padding-right: 13px;
    padding-left: 13px;
  }

  .case-stamp {
    display: none;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .app-shell {
    place-items: start center;
  }

  .folio {
    margin-bottom: 28px;
  }

  .processing-screen {
    min-height: auto;
  }
}

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

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