:root {
  --clinical-slate: #011b40;
  --referral-blue: #017cfd;
  --amber: #f5a623;
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-soft: #eef5ff;
  --fg: #0d213a;
  --muted: #61738a;
  --subtle: #8ca0b6;
  --border: #dce6f0;
  --positive: #2fa67d;
  --critical: #b75b45;
  --shadow: 0 28px 80px rgba(1, 27, 64, 0.14);
  --font-display: Manrope, "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button {
  font: inherit;
}

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--referral-blue) 58%, white);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--clinical-slate);
  color: white;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.story {
  height: 520vh;
  position: relative;
  background: var(--clinical-slate);
}

.pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(1, 124, 253, 0.25), transparent 24rem),
    linear-gradient(180deg, #011b40 0%, #061f43 100%);
}

.workflow-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: calc(0.25 + var(--progress, 0) * 0.75);
  transition: opacity 450ms ease;
}

.workflow-bg.is-hidden {
  opacity: 0;
}

.workflow-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

.decision-map {
  position: absolute;
  top: 6vh;
  bottom: 7vh;
  left: 50%;
  width: 85vw;
  transform: translateX(-50%);
  opacity: 0.76;
  filter: drop-shadow(0 0 26px rgba(1, 124, 253, 0.18));
}

.decision-graphic {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.decision-line {
  fill: none;
  stroke: rgba(1, 124, 253, 0.48);
  stroke-dasharray: 3 4;
  stroke-linecap: round;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
  animation: decisionLinePulse 5.8s ease-in-out infinite;
}

.decision-node,
.source-node {
  fill: rgba(1, 27, 64, 0.56);
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  animation: decisionGlow 7.2s ease-in-out infinite;
}

.system-node {
  fill: rgba(255, 255, 255, 0.08);
}

.decision-node-main {
  fill: rgba(1, 124, 253, 0.15);
  stroke: rgba(1, 124, 253, 0.5);
  animation-delay: 1600ms;
}

.decision-core {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.source-mark {
  fill: none;
  stroke: rgba(255, 255, 255, 0.38);
  stroke-linecap: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.system-mark,
.hub-mark,
.status-mark {
  fill: none;
  stroke: rgba(255, 255, 255, 0.46);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.patient-system-avatar,
.patient-system-chip {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.patient-system-mark {
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-linecap: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.hub-mark {
  stroke: rgba(255, 255, 255, 0.42);
}

.hub-dot,
.status-dot {
  fill: rgba(255, 255, 255, 0.48);
}

.status-mark {
  stroke: rgba(255, 255, 255, 0.52);
}

.source-b {
  animation-delay: 500ms;
}

.source-c {
  animation-delay: 1000ms;
}

.source-d {
  animation-delay: 1500ms;
}

.system-a {
  animation-delay: 1800ms;
}

.system-b {
  animation-delay: 2200ms;
}

.system-c {
  animation-delay: 2600ms;
}

.route-a-node {
  animation-delay: 3200ms;
}

.route-b-node {
  animation-delay: 3600ms;
}

.route-c-node {
  animation-delay: 4000ms;
}

.decision-packet {
  fill: white;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 8px rgba(1, 124, 253, 0.55));
  opacity: 0.52;
}

.decision-query {
  fill: #f5a623 !important;
  filter: drop-shadow(0 0 7px rgba(245, 166, 35, 0.58));
  opacity: 0.62;
}

.decision-graphic .packet-system-a,
.decision-graphic .packet-system-b,
.decision-graphic .packet-system-c {
  fill: #f5a623 !important;
  filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.58));
  opacity: 0.68;
}

.decision-graphic .packet-route-a {
  fill: #39d98a !important;
  filter: drop-shadow(0 0 8px rgba(57, 217, 138, 0.58));
  opacity: 0.76;
}

.decision-graphic .packet-route-b {
  fill: #4aa3ff !important;
  filter: drop-shadow(0 0 8px rgba(74, 163, 255, 0.58));
  opacity: 0.76;
}

.decision-graphic .packet-route-c {
  fill: #ff6b5a !important;
  filter: drop-shadow(0 0 8px rgba(255, 107, 90, 0.58));
  opacity: 0.76;
}

.stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 450ms ease, transform 450ms ease;
  pointer-events: none;
}

.stage.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.stage-logo {
  opacity: 1;
  transform: none;
}

.stage-logo.is-hidden {
  opacity: 0;
  transform: translateY(-28px) scale(0.96);
}

.logo {
  width: min(620px, 78vw);
  filter: brightness(0) invert(1);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 44px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
}

.scroll-cue path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.stage-title {
  color: white;
  text-align: center;
}

.stage-title > * {
  max-width: 980px;
}

.eyebrow,
.meta {
  margin: 0 0 14px;
  color: var(--referral-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(48px, 7.4vw, 116px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.stage-title p:last-child {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 24px);
}

.cta-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  border-radius: 999px;
  background: var(--clinical-slate);
  color: white;
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.cta-link:hover {
  background: color-mix(in srgb, var(--clinical-slate) 82%, var(--referral-blue));
  transform: translateY(-1px);
}

.operating-model {
  width: min(1180px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: white;
}

.model-copy h2 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.model-copy p:last-child {
  max-width: 66ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.8vw, 21px);
}

.model-panel {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.model-panel::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 42px;
  width: 2px;
  background: linear-gradient(180deg, var(--referral-blue), rgba(1, 124, 253, 0.08));
}

.model-panel article {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 18px 18px 18px 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(1, 27, 64, 0.55);
}

.model-panel span {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--referral-blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.model-panel strong {
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.model-panel p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.stage-value {
  align-content: center;
  justify-items: center;
  background: var(--bg);
  color: var(--fg);
  text-align: center;
}

.stage-value > h2 {
  max-width: 920px;
  font-size: clamp(40px, 6vw, 86px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.value-grid {
  width: min(1120px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
  text-align: left;
}

.value-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
}

.value-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--clinical-slate);
  font-size: 12px;
  font-weight: 700;
}

.value-grid h3 {
  color: var(--clinical-slate);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.value-grid p {
  color: var(--muted);
}

.product-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 24px;
  background:
    linear-gradient(rgba(1, 27, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 27, 64, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 64px 64px;
}

.proof-head {
  width: min(860px, 100%);
  margin: 0 auto 38px;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.proof-head h2 {
  max-width: 760px;
  color: var(--clinical-slate);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.proof-head > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.proof-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.58fr);
  align-items: start;
  gap: 18px;
}

.platform-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: 0 20px 54px rgba(1, 27, 64, 0.08);
}

.card-copy {
  padding: 26px 28px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.card-copy h3 {
  max-width: 700px;
  color: var(--clinical-slate);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.card-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin-top: 12px;
  color: var(--muted);
}

.app-window {
  margin: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f8fbff;
  box-shadow: inset 0 1px 0 white;
  overflow: hidden;
}

.window-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  background: white;
}

.window-top strong,
.window-top span {
  display: block;
}

.window-top strong {
  color: var(--clinical-slate);
  font-size: 18px;
  line-height: 1.1;
}

.window-top span {
  color: var(--muted);
  font-size: 12px;
}

.window-pill {
  width: fit-content;
  border-radius: 999px;
  background: #edf8f2;
  color: #2f8f62;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.triage-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 180px;
  min-height: 500px;
}

.referral-list,
.summary-pane,
.document-pane {
  min-width: 0;
  padding: 14px;
}

.referral-list,
.document-pane {
  background: #f3f7fb;
}

.referral-list {
  display: grid;
  align-content: start;
  gap: 10px;
  border-right: 1px solid var(--border);
}

.search-line {
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.referral-row {
  display: grid;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
}

.referral-row.active {
  border-color: color-mix(in srgb, var(--referral-blue) 42%, var(--border));
  background: #eef6ff;
}

.referral-row strong {
  color: var(--clinical-slate);
  font-size: 13px;
  line-height: 1.12;
}

.referral-row span,
.referral-row small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.summary-pane {
  border-right: 1px solid var(--border);
  background: #fbfdff;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: #eef3f8;
  padding: 4px;
}

.tabs span {
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.tabs span:first-child {
  background: white;
  color: var(--clinical-slate);
  box-shadow: 0 2px 8px rgba(1, 27, 64, 0.08);
}

.summary-box,
.ai-box {
  display: grid;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
}

.summary-box small {
  color: var(--referral-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-box strong {
  color: var(--clinical-slate);
  font-size: 17px;
  line-height: 1.18;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chips span {
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--referral-blue);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
}

.ai-box {
  margin-top: 12px;
  border-color: color-mix(in srgb, var(--positive) 28%, var(--border));
  background: #effbf4;
}

.ai-box strong {
  color: var(--clinical-slate);
}

.ai-box p {
  color: var(--muted);
  font-size: 12px;
}

.document-pane {
  display: grid;
  align-content: start;
  gap: 12px;
}

.doc-header {
  color: var(--clinical-slate);
  font-size: 12px;
  font-weight: 700;
}

.document {
  min-height: 360px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  background: white;
  box-shadow: 0 0 0 1px var(--border);
}

.document span {
  height: 13px;
  background: #eed6df;
}

.document span:nth-child(2),
.document span:nth-child(4) {
  width: 82%;
  background: #d8dee6;
}

.document span:nth-child(3) {
  width: 62%;
  background: #d8dee6;
}

.proof-points {
  display: grid;
  gap: 14px;
}

.proof-points article {
  min-height: 0;
  display: grid;
  align-content: start;
  grid-template-columns: 34px 1fr;
  gap: 8px 14px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  box-shadow: 0 14px 36px rgba(1, 27, 64, 0.05);
}

.proof-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--referral-blue);
  font-size: 12px;
  font-weight: 700;
}

.proof-points h3 {
  color: var(--clinical-slate);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.proof-points p {
  grid-column: 2;
  color: var(--muted);
}

.cta {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: 88px 24px 28px;
  background: white;
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.cta h2 {
  color: var(--clinical-slate);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.cta p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

footer {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--subtle);
  font-size: 13px;
}

footer img {
  width: 150px;
}

@keyframes decisionGlow {
  0%,
  100% {
    stroke: rgba(255, 255, 255, 0.18);
    filter: drop-shadow(0 0 0 rgba(1, 124, 253, 0));
  }

  42% {
    stroke: rgba(1, 124, 253, 0.58);
    filter: drop-shadow(0 0 6px rgba(1, 124, 253, 0.4));
  }

  58% {
    stroke: rgba(47, 166, 125, 0.46);
  }
}

@keyframes decisionLinePulse {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.42;
  }

  50% {
    stroke-dashoffset: -14;
    opacity: 0.82;
  }
}

@keyframes cue {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

@media (max-width: 980px) {
  .pin {
    min-height: 760px;
  }

  .operating-model {
    width: min(760px, calc(100vw - 40px));
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-head,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .triage-layout {
    grid-template-columns: 1fr;
  }

  .referral-list,
  .summary-pane {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .document {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .story {
    height: auto;
  }

  .pin {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: var(--clinical-slate);
  }

  .workflow-bg {
    display: none;
  }

  .stage {
    position: relative;
    min-height: auto;
    padding: 72px 18px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .stage-logo {
    min-height: 76vh;
  }

  .stage-title,
  .stage-system,
  .stage-value {
    background: var(--bg);
    color: var(--fg);
  }

  .stage-title {
    text-align: left;
  }

  .stage-title p:last-child {
    color: var(--muted);
  }

  .stage-title h1 {
    color: var(--clinical-slate);
    font-size: clamp(44px, 14vw, 72px);
  }

  .logo {
    filter: brightness(0) invert(1);
  }

  .scroll-cue {
    display: none;
  }

  .operating-model {
    width: 100%;
    color: var(--fg);
  }

  .model-copy h2 {
    color: var(--clinical-slate);
    font-size: clamp(40px, 13vw, 64px);
  }

  .model-copy p:last-child {
    color: var(--muted);
  }

  .model-panel {
    border-color: var(--border);
    background: white;
    box-shadow: var(--shadow);
    backdrop-filter: none;
  }

  .model-panel article {
    border-color: var(--border);
    background: #f8fbff;
  }

  .model-panel strong {
    color: var(--clinical-slate);
  }

  .model-panel p {
    color: var(--muted);
  }

  .stage-value {
    text-align: left;
    justify-items: start;
  }

  .stage-value > h2 {
    font-size: clamp(40px, 13vw, 64px);
  }

  .value-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .product-proof {
    padding: 72px 18px;
  }

  .proof-head {
    gap: 16px;
    margin-bottom: 22px;
  }

  .proof-head h2 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .proof-head > p:last-child {
    font-size: 16px;
  }

  .proof-grid {
    gap: 14px;
  }

  .platform-card {
    border-radius: 14px;
  }

  .card-copy {
    padding: 22px 18px 0;
  }

  .card-copy h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .app-window {
    margin: 18px;
  }

  .proof-points article {
    padding: 18px;
  }

  .proof-points h3 {
    font-size: 21px;
  }

  .window-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .triage-layout {
    min-height: 0;
  }

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

  .cta {
    min-height: 86vh;
    padding-inline: 18px;
  }

  footer {
    position: static;
    width: 100%;
    margin-top: 72px;
    flex-direction: column;
    text-align: center;
  }
}

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

  .decision-packet,
  .decision-query {
    display: none;
  }
}
