:root {
  --ink: #f2f0e9;
  --muted: #aab3bc;
  --dim: #747f89;
  --ground: #0a0d10;
  --panel: #12171c;
  --panel-raised: #182027;
  --panel-deep: #0e1216;
  --line: #303942;
  --line-strong: #47535f;
  --route: #3c82f6;
  --route-deep: #17488e;
  --ok: #50d477;
  --warn: #ffbd2e;
  --warn-ink: #211805;
  --fault: #f05b4f;
  --focus: #8eb8ff;
  --shadow: 0 10px 28px rgba(0, 0, 0, .28);
  --radius: 8px;
  --rail: 5.25rem;
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-label: "Aptos Narrow", "Roboto Condensed", "Arial Narrow", sans-serif;
  color-scheme: dark;
  font-family: var(--font-body);
  background: var(--ground);
  color: var(--ink);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--ground); scroll-behavior: smooth; }

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(53, 76, 96, .22), transparent 42rem),
    var(--ground);
  color: var(--ink);
  accent-color: var(--route);
}

button, input, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

::selection { background: var(--route); color: #fff; }
* { scrollbar-color: var(--line-strong) var(--panel-deep); scrollbar-width: thin; }
::-webkit-scrollbar { width: .7rem; height: .7rem; }
::-webkit-scrollbar-track { background: var(--panel-deep); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border: 2px solid var(--panel-deep); }

[hidden] { display: none !important; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.auth-shell { min-height: 100vh; display: grid; place-items: center; padding: clamp(1rem, 5vw, 4rem); }
.auth-panel {
  width: min(34rem, 100%);
  padding: clamp(1.35rem, 5vw, 2.5rem);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(145deg, var(--panel-raised), var(--panel-deep));
  box-shadow: var(--shadow);
}
.brand-lockup { display: flex; align-items: center; gap: 1rem; }
.brand-mark { width: 2.5rem; height: 2.5rem; color: var(--route); }
.brand-lockup h1 { margin: 0; font: 700 clamp(1.4rem, 5vw, 2rem)/1.08 var(--font-label); letter-spacing: -.02em; }
.brand-lockup p { margin: .35rem 0 0; color: var(--muted); }
.auth-route { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: .65rem; margin: 2.5rem 0; color: var(--muted); font: 700 .72rem/1 var(--font-label); letter-spacing: .08em; }
.auth-route i { height: 2px; background: var(--route); position: relative; }
.auth-route i::after { content: ""; position: absolute; right: 0; top: -.2rem; width: .45rem; height: .45rem; border: 2px solid var(--route); border-radius: 50%; background: var(--panel); }
.auth-panel h2 { margin: 0 0 .55rem; font: 700 1.25rem/1.2 var(--font-label); }
.auth-panel p { color: var(--muted); line-height: 1.55; }
.setup-fields { display: grid; gap: .55rem; margin: 1.5rem 0; }
.setup-fields label { margin-top: .5rem; color: var(--muted); font: 700 .78rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .06em; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #0c1115;
  color: var(--ink);
  caret-color: var(--route);
}
input { min-height: 2.8rem; padding: .7rem .8rem; }
textarea { min-height: 4.4rem; padding: .85rem 1rem; resize: vertical; line-height: 1.45; }
input::placeholder, textarea::placeholder { color: #7e8993; opacity: 1; }
.auth-panel .switch-primary { width: 100%; margin-top: 1.25rem; }
.auth-note { margin: 1.25rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .85rem; }

.switch, .icon-switch, .rack-tab {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--panel-raised);
  cursor: pointer;
  transition: background-color 160ms ease-out, border-color 160ms ease-out, box-shadow 160ms ease-out, transform 160ms ease-out;
}
.switch { min-height: 3rem; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .75rem 1rem; font-weight: 700; }
.switch:hover, .icon-switch:hover, .rack-tab:hover { border-color: #647482; background: #202a32; }
.switch:active, .icon-switch:active { transform: translateY(1px); }
.switch:disabled { cursor: wait; opacity: .55; }
.switch-primary { border-color: #3378e5; background: #1f61c7; color: #fff; box-shadow: 0 8px 18px rgba(22, 78, 164, .24); }
.switch-primary:hover { border-color: #6ca1f7; background: #286ed7; }
.switch-dark { background: #151b20; }
.switch-amber { border-color: #ffc24a; background: var(--warn); color: var(--warn-ink); box-shadow: 0 8px 18px rgba(163, 112, 0, .24); }
.switch-amber:hover { background: #ffca55; border-color: #ffe09b; }
.text-action { padding: .65rem 0; border: 0; background: none; color: var(--muted); text-decoration: underline; text-underline-offset: .25em; cursor: pointer; }
.inline-error { padding: .8rem; border: 1px solid rgba(240, 91, 79, .55); border-radius: 6px; background: rgba(240, 91, 79, .09); color: #ffaaa2 !important; }

.control-shell { min-height: 100vh; padding-top: 4rem; padding-left: var(--rail); }
.identity-rail {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto 0;
  height: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(11, 15, 18, .96);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
}
.compact-brand { display: flex; align-items: center; gap: .65rem; color: var(--ink); text-decoration: none; font: 700 1rem/1 var(--font-label); letter-spacing: -.01em; }
.compact-brand svg { color: var(--route); }
.rail-statuses { margin-left: auto; display: flex; align-items: center; gap: .65rem; }
.rail-chip { min-height: 2.1rem; display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .7rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .78rem; }
.owner-chip svg { display: none; }
.signal { display: inline-block; width: .55rem; height: .55rem; flex: 0 0 auto; border: 2px solid currentColor; border-radius: 50%; }
.signal-ok { color: var(--ok); background: var(--ok); }
.signal-warn { color: var(--warn); background: var(--warn); }
.signal-fault { color: var(--fault); background: var(--fault); }
.signal-idle { color: var(--dim); background: transparent; }
.icon-switch { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; padding: 0; }

.rack-nav {
  position: fixed;
  z-index: 15;
  inset: 4rem auto 0 0;
  width: var(--rail);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .65rem;
  border-right: 1px solid var(--line-strong);
  background: var(--panel-deep);
}
.rack-tab { min-height: 4.2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem; padding: .5rem .25rem; color: var(--muted); font: 700 .68rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .04em; }
.rack-tab svg { width: 1.3rem; height: 1.3rem; }
.rack-tab.active { border-color: var(--route); background: #14243a; color: #9bc0ff; box-shadow: inset 3px 0 0 var(--route); }

.workspace { width: min(100%, 92rem); margin: 0 auto; padding: clamp(.75rem, 2vw, 1.5rem); }
.job-bay, .ledger, .command-bay, .inventory-list > article, .security-layout > section {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.job-bay { overflow: hidden; }
.bay-header { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1rem; min-height: 5.6rem; padding: 1rem 1.15rem; border-bottom: 1px solid var(--line-strong); background: var(--panel-raised); }
.job-controls { display: flex; justify-content: flex-end; gap: .5rem; padding: .6rem .8rem; border-bottom: 1px solid var(--line); background: var(--panel-deep); }
.bay-label { padding: .4rem .55rem; border: 1px solid var(--line-strong); border-radius: 4px; color: var(--muted); font: 700 .72rem/1 var(--font-label); letter-spacing: .08em; }
.bay-header h1 { margin: 0; overflow: hidden; text-overflow: ellipsis; font: 700 clamp(1.2rem, 3vw, 1.8rem)/1.1 var(--font-label); letter-spacing: -.02em; }
.bay-header p { margin: .35rem 0 0; color: var(--muted); font-size: .85rem; }
.status-plate { min-width: 5.4rem; padding: .55rem .65rem; border: 1px solid currentColor; border-radius: 4px; text-align: center; font: 700 .72rem/1 var(--font-label); letter-spacing: .07em; }
.status-running { color: #8bb8ff; background: rgba(60, 130, 246, .1); }
.status-succeeded { color: var(--ok); background: rgba(80, 212, 119, .08); }
.status-failed { color: #ff9a91; background: rgba(240, 91, 79, .1); }
.status-idle { color: var(--muted); }

.route-stage { position: relative; isolation: isolate; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); min-height: 18rem; }
.route-lines { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.route-column { min-width: 0; padding: 1rem; border-right: 1px solid var(--line); }
.route-column:last-child { border-right: 0; }
.route-column h2 { display: flex; align-items: center; gap: .45rem; margin: 0 0 1.25rem; color: var(--muted); font: 700 .72rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .07em; }
.route-column h2 svg { width: 1rem; height: 1rem; }
.patch-node { position: relative; min-height: 6rem; display: flex; flex-direction: column; justify-content: center; gap: .35rem; padding: .85rem; border: 1px solid var(--line-strong); border-radius: 6px; background: #0f1418; }
.patch-node::after { content: ""; position: absolute; top: 50%; right: -.43rem; width: .62rem; height: .62rem; transform: translateY(-50%); border: 2px solid var(--route); border-radius: 50%; background: var(--panel); }
.route-column:last-child .patch-node::after { right: auto; left: -.43rem; }
.patch-node.empty { color: var(--dim); border-style: dashed; }
.patch-node strong { font: 700 1rem/1.2 var(--font-label); }
.patch-node small { color: var(--muted); line-height: 1.35; }
.patch-node .node-status { display: flex; align-items: center; gap: .4rem; margin-top: .3rem; color: var(--ok); font: 700 .68rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .04em; }
.route-legend { display: flex; flex-wrap: wrap; gap: 1.1rem; padding: .75rem 1rem; border-top: 1px solid var(--line); background: var(--panel-deep); color: var(--muted); font: 700 .68rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .05em; }
.route-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.route-key { width: 1.6rem; height: 2px; background: var(--dim); }
.route-key.routed { background: var(--route); }

.approval-gate { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1rem; margin-top: 1rem; padding: .9rem; border: 1px solid #ffca55; border-radius: var(--radius); background: #2a2009; box-shadow: 0 10px 26px rgba(92, 60, 0, .24); }
.approval-symbol { width: 3.5rem; height: 3.5rem; display: grid; place-items: center; border: 1px solid #8c6507; border-radius: 6px; background: #171204; color: var(--warn); }
.approval-symbol svg { width: 1.65rem; height: 1.65rem; }
.approval-copy > span { color: var(--warn); font: 700 .66rem/1 var(--font-label); letter-spacing: .09em; }
.approval-copy h2 { margin: .25rem 0; color: #ffe3a0; font: 700 1.3rem/1.1 var(--font-label); }
.approval-copy p { margin: 0; color: #e0c98c; font-size: .85rem; }
.approval-actions { display: flex; gap: .6rem; }

.ledger, .command-bay { margin-top: 1rem; overflow: hidden; }
.command-bay { position: sticky; z-index: 12; bottom: 1rem; }
.section-header { min-height: 4.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1rem; border-bottom: 1px solid var(--line); }
.section-header.compact { border-bottom: 0; }
.section-header h2 { margin: 0; font: 700 1rem/1.1 var(--font-label); text-transform: uppercase; letter-spacing: .035em; }
.section-header p { margin: .3rem 0 0; color: var(--muted); font-size: .78rem; }
.counter, .policy-mark { color: var(--muted); font: 700 .68rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .06em; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .78rem; font-variant-numeric: tabular-nums; }
th, td { padding: .72rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); background: var(--panel-deep); font: 700 .68rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .06em; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255, 255, 255, .025); }
.empty-cell { padding: 2rem; color: var(--dim); text-align: center; }
.event-type { color: #8eb8ff; font-weight: 700; }
.event-fault { color: #ff9b93; }
.event-ok { color: var(--ok); }
.command-bay form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .75rem; padding: 0 1rem 1rem; }
.command-bay .switch { min-width: 9rem; }
.command-bay .inline-error { margin: 0 1rem 1rem; }

.page-header { padding: clamp(1rem, 3vw, 2.5rem) 0 1.5rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem; }
.page-header h1 { margin: 0; font: 700 clamp(1.8rem, 5vw, 3rem)/1 var(--font-label); letter-spacing: -.03em; }
.page-header p { max-width: 65ch; margin: .65rem 0 0; color: var(--muted); }
.inventory-list { display: grid; gap: .75rem; }
.inventory-list > article { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem; align-items: center; padding: 1rem; }
.inventory-icon { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 6px; color: #9bc0ff; background: var(--panel-deep); }
.inventory-main h2, .inventory-main h3 { margin: 0; font: 700 1rem/1.2 var(--font-label); }
.inventory-main p { margin: .35rem 0 0; color: var(--muted); font-size: .82rem; line-height: 1.4; overflow-wrap: anywhere; }
.inventory-meta { color: var(--muted); text-align: right; font: 700 .7rem/1.4 var(--font-label); text-transform: uppercase; letter-spacing: .04em; }
.inventory-side { display: grid; justify-items: end; gap: .65rem; }
.mini-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .35rem; }
.mini-switch { min-height: 2.25rem; display: inline-flex; align-items: center; justify-content: center; gap: .35rem; padding: .42rem .6rem; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--panel-deep); color: var(--muted); cursor: pointer; font: 700 .68rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .04em; }
.mini-switch:hover { border-color: #647482; color: var(--ink); background: #202a32; }
.mini-switch svg { width: .95rem; height: .95rem; }
.mini-switch.danger { color: #ff9b93; }
.mini-switch:disabled { opacity: .42; cursor: not-allowed; }
.empty-state { padding: 2rem !important; display: block !important; color: var(--muted); text-align: center; }
.inline-search { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: .75rem; align-items: center; margin-bottom: 1rem; padding: .8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.inline-search label { color: var(--muted); font: 700 .72rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .05em; }
.security-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.security-layout > section { padding: 1rem; }
.security-layout h2 { margin: 0 0 1rem; font: 700 1.1rem/1 var(--font-label); text-transform: uppercase; }
.compact-list > article { box-shadow: none; }
.security-layout .switch { margin-top: 1rem; }
#logout-action { margin-top: 2rem; }

dialog { width: min(30rem, calc(100% - 2rem)); padding: 0; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--panel-raised); color: var(--ink); box-shadow: 0 24px 70px rgba(0, 0, 0, .65); }
dialog::backdrop { background: rgba(3, 5, 7, .78); backdrop-filter: blur(3px); }
#dialog-form { display: grid; gap: .85rem; padding: 1.25rem; }
.dialog-kicker { color: var(--route); font: 700 .68rem/1 var(--font-label); letter-spacing: .09em; }
#dialog-form h2 { margin: 0; font: 700 1.4rem/1.1 var(--font-label); }
#dialog-form p { margin: 0; color: var(--muted); line-height: 1.5; }
#dialog-input-label { color: var(--muted); font: 700 .72rem/1 var(--font-label); text-transform: uppercase; letter-spacing: .05em; }
.dialog-actions { display: flex; justify-content: flex-end; gap: .6rem; margin-top: .35rem; }

.route-path { fill: none; stroke: var(--route); stroke-width: 2.5; stroke-linecap: round; filter: drop-shadow(0 3px 5px rgba(38, 104, 207, .2)); stroke-dasharray: 1; stroke-dashoffset: 1; animation: establish-route 650ms cubic-bezier(.16, 1, .3, 1) forwards; }
@keyframes establish-route { to { stroke-dashoffset: 0; } }

@media (max-width: 760px) {
  :root { --rail: 0rem; }
  .control-shell { padding: 3.75rem 0 calc(10rem + env(safe-area-inset-bottom)); }
  .identity-rail { height: 3.75rem; gap: .45rem; padding: 0 .65rem; }
  .compact-brand { gap: .45rem; }
  .compact-brand span { max-width: 5.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .rail-statuses { gap: .4rem; min-width: 0; }
  .rail-chip { min-width: 0; }
  .rail-chip:not(.owner-chip) span { max-width: 5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .owner-chip { width: 2.4rem; justify-content: center; padding: .35rem; color: var(--ok); }
  .owner-chip i, .owner-chip span { display: none; }
  .owner-chip svg { display: block; width: 1rem; height: 1rem; }
  .rack-nav { inset: auto 0 0; width: auto; height: 4.6rem; flex-direction: row; justify-content: space-around; gap: .25rem; padding: .35rem max(.35rem, env(safe-area-inset-right)) calc(.35rem + env(safe-area-inset-bottom)) max(.35rem, env(safe-area-inset-left)); border-top: 1px solid var(--line-strong); border-right: 0; }
  .rack-tab { min-width: 3.5rem; min-height: 3.65rem; flex: 1; }
  .rack-tab.active { box-shadow: inset 0 3px 0 var(--route); }
  .workspace { padding: .65rem; }
  .bay-header { grid-template-columns: 1fr auto; gap: .65rem; min-height: auto; padding: .85rem; }
  .bay-label { grid-column: 1 / -1; width: fit-content; }
  .bay-header p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .job-controls { justify-content: stretch; }
  .job-controls .mini-switch { flex: 1; }
  .route-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: auto; }
  .route-lines, .patch-node::after { display: none; }
  .patch-node:not(.empty) { box-shadow: inset 3px 0 0 var(--route); }
  .route-column { min-height: 9.8rem; border-bottom: 1px solid var(--line); }
  .route-column:nth-child(2) { border-right: 0; }
  .route-column:nth-last-child(-n+2) { border-bottom: 0; }
  .patch-node { min-height: 5.4rem; padding: .7rem; }
  .route-column:nth-child(2) .patch-node::after, .route-column:nth-child(3) .patch-node::after { right: auto; left: -.43rem; }
  .approval-gate { grid-template-columns: auto 1fr; padding: .75rem; }
  .approval-actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.35fr; }
  .approval-actions .switch { min-width: 0; }
  .table-scroll { overflow: visible; }
  table, thead, tbody, tr, th, td { display: block; }
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  tbody tr { display: grid; grid-template-columns: 5.3rem 1fr auto; gap: .25rem .6rem; padding: .75rem; border-bottom: 1px solid var(--line); }
  tbody td { padding: 0; border: 0; }
  tbody td:nth-child(1) { grid-row: 1 / 3; color: var(--dim); font-variant-numeric: tabular-nums; }
  tbody td:nth-child(2) { font-weight: 700; }
  tbody td:nth-child(3) { color: var(--muted); }
  tbody td:nth-child(4) { grid-column: 2 / -1; color: var(--muted); overflow-wrap: anywhere; }
  tbody td:nth-child(5) { grid-column: 3; grid-row: 1; }
  .empty-cell { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .command-bay { position: fixed; z-index: 14; right: .65rem; bottom: calc(4.6rem + env(safe-area-inset-bottom)); left: .65rem; margin: 0; }
  .command-bay .section-header { display: none; }
  .command-bay form { grid-template-columns: minmax(0, 1fr) auto; gap: .5rem; padding: .5rem; }
  .command-bay textarea { min-height: 3rem; height: 3rem; }
  .command-bay .switch { width: auto; min-width: 6.5rem; }
  .command-bay .inline-error { margin: 0 .5rem .5rem; }
  .approval-pending .command-bay { display: none; }
  .policy-mark { display: none; }
  .inventory-list > article { grid-template-columns: auto minmax(0, 1fr); }
  .inventory-side { grid-column: 2; justify-items: start; width: 100%; }
  .inventory-meta { text-align: left; }
  .mini-actions { justify-content: flex-start; }
  .mini-switch { min-height: 2.75rem; }
  .inline-search { grid-template-columns: 1fr; }
  .security-layout { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .rail-chip { padding: .3rem .5rem; }
  .rail-chip span { max-width: 6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .route-column { padding: .75rem; }
  .route-column h2 { margin-bottom: .8rem; }
  .route-legend { gap: .7rem; }
  .approval-symbol { width: 3rem; height: 3rem; }
  .approval-copy h2 { font-size: 1.1rem; }
  .section-header { align-items: flex-start; }
}

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