:root {
  --ink: #07182d;
  --ink-soft: #17314d;
  --blue: #2667f5;
  --blue-bright: #4f8cff;
  --ice: #e8f0ff;
  --paper: #f6f8fb;
  --white: #ffffff;
  --muted: #6a7a8c;
  --line: rgba(7, 24, 45, 0.12);
  --green: #1f9d75;
  --amber: #d49432;
  --red: #c75d5d;
  --shadow: 0 28px 80px rgba(7, 24, 45, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fafc 0%, #f3f6fa 48%, #edf2f8 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.34;
  pointer-events: none;
}

.ambient-one {
  width: 420px;
  height: 420px;
  top: -190px;
  right: -120px;
  background: #9bbcff;
}

.ambient-two {
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: 0;
  background: #c3d9ff;
}

.site-header,
.site-footer,
.view {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 13px;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
}

.prototype-pill,
.status-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 13px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

#app {
  min-height: calc(100vh - 180px);
}

.view {
  display: none;
  animation: view-in 0.48s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.view.is-active {
  display: block;
}

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

.view-landing {
  padding: 82px 0 70px;
}

.hero {
  max-width: 990px;
}

.eyebrow,
.card-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
p {
  margin-top: 0;
}

.hero h1,
.intro-panel > h1,
.results-header h1,
.processing-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.046em;
}

.hero h1 {
  max-width: 970px;
  margin: 28px 0 26px;
  font-size: clamp(52px, 7.2vw, 88px);
  line-height: 0.98;
}

h1 em {
  color: var(--blue);
  font-weight: 400;
}

.hero-copy {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  padding: 0 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-button:focus-visible,
.choice:focus-visible,
.scale-option:focus-visible,
.record-button:focus-visible {
  outline: 3px solid rgba(38, 103, 245, 0.28);
  outline-offset: 3px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(7, 24, 45, 0.18);
}

.button-primary:hover:not(:disabled) {
  background: #0c2340;
  box-shadow: 0 18px 38px rgba(7, 24, 45, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: transparent;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-wide {
  width: 100%;
}

.time-note,
.save-note {
  color: var(--muted);
  font-size: 12px;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 96px;
}

.statement-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  padding: 28px;
}

.statement-card-accent {
  color: var(--white);
  background: var(--ink);
}

.card-number {
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
}

.statement-card h2 {
  margin: auto 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.statement-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.statement-card-accent p {
  color: #b9c7d8;
}

.view-intro {
  padding: 36px 0 90px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.intro-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 62px);
}

.text-button {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  padding: 0;
}

.back-button {
  margin-bottom: 42px;
}

.intro-panel > h1 {
  margin: 22px 0 44px;
  font-size: clamp(38px, 5.5vw, 58px);
  line-height: 1.05;
}

.instruction-grid {
  display: grid;
  gap: 10px;
}

.instruction {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 18px 0 8px;
}

.instruction > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.instruction strong {
  font-size: 14px;
}

.instruction p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 34px 0 20px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.view-assessment {
  padding: 28px 0 80px;
}

.assessment-shell {
  min-height: 660px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.assessment-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 34px 18px;
}

.progress-copy {
  display: flex;
  gap: 14px;
  font-size: 11px;
}

.progress-copy span {
  color: var(--muted);
}

.progress-track {
  height: 3px;
  background: #e8edf3;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: var(--blue);
  transition: width 0.45s ease;
}

.question-stage {
  width: min(760px, calc(100% - 48px));
  flex: 1;
  margin: 0 auto;
  padding: 64px 0 46px;
}

.question-kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.question-title {
  margin: 18px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 1.08;
}

.question-help {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.audio-prompt {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 17px;
  margin: 30px 0;
}

.audio-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.audio-prompt strong,
.audio-prompt small {
  display: block;
}

.audio-prompt strong {
  font-size: 13px;
}

.audio-prompt small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.choices {
  display: grid;
  gap: 10px;
}

.choice {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  padding: 15px 18px;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice:hover {
  border-color: rgba(38, 103, 245, 0.45);
  transform: translateX(3px);
}

.choice.is-selected {
  border-color: var(--blue);
  background: var(--ice);
}

.choice-index {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--muted);
  background: var(--paper);
  font-size: 11px;
  font-weight: 800;
}

.choice.is-selected .choice-index {
  color: var(--white);
  background: var(--blue);
}

.prompt-reveal {
  border: 1px dashed rgba(38, 103, 245, 0.38);
  border-radius: var(--radius-md);
  background: #f7faff;
  padding: 30px;
  text-align: center;
}

.prompt-reveal p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.prompt-text {
  margin: 6px 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.2;
}

.record-area {
  display: grid;
  place-items: center;
  gap: 12px;
  margin-top: 26px;
}

.record-button {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(7, 24, 45, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.record-button:hover {
  transform: scale(1.04);
}

.record-button.is-recording {
  background: #aa3f48;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(170, 63, 72, 0.24); }
  50% { box-shadow: 0 0 0 18px rgba(170, 63, 72, 0); }
}

.record-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: currentColor;
}

.record-button.is-recording .record-icon {
  border-radius: 4px;
}

.record-status {
  color: var(--muted);
  font-size: 12px;
}

.record-time {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 800;
}

.record-fallback {
  max-width: 500px;
  border-radius: var(--radius-sm);
  color: #72540e;
  background: #fff5d7;
  font-size: 12px;
  line-height: 1.5;
  padding: 12px 14px;
  text-align: center;
}

.scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.scale-option {
  min-height: 70px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}

.scale-option strong {
  font-size: 18px;
}

.scale-option small {
  color: var(--muted);
  font-size: 10px;
}

.scale-option.is-selected {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--ice);
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
}

.assessment-actions {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 15px 34px;
}

.view-processing {
  padding: 82px 0 100px;
}

.processing-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.processing-card .eyebrow {
  justify-content: center;
}

.processing-card h1 {
  margin: 26px 0 18px;
  font-size: clamp(42px, 6vw, 64px);
}

.processing-card > p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.orbit {
  width: 112px;
  height: 112px;
  position: relative;
  margin: 0 auto 42px;
  border: 1px solid rgba(38, 103, 245, 0.25);
  border-radius: 50%;
  animation: rotate 3s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(38, 103, 245, 0.18);
  border-radius: 50%;
  inset: 15px;
}

.orbit::after {
  inset: 34px;
  background: var(--blue);
  box-shadow: 0 0 36px rgba(38, 103, 245, 0.28);
}

.orbit span {
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: 50%;
  border-radius: 50%;
  background: var(--blue);
}

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

.processing-list {
  max-width: 440px;
  display: grid;
  gap: 10px;
  margin: 42px auto 0;
  text-align: left;
}

.processing-list span {
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  padding: 13px 34px 13px 0;
}

.processing-list span::after {
  content: "…";
  position: absolute;
  right: 4px;
  color: var(--blue);
}

.processing-list .is-done::after {
  content: "✓";
  color: var(--green);
}

.view-results {
  padding: 54px 0 90px;
}

.results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.results-header > div {
  max-width: 800px;
}

.results-header h1 {
  margin: 24px 0 0;
  font-size: clamp(44px, 6vw, 70px);
  line-height: 1.02;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 18px;
}

.map-card,
.finding-card,
.interpretation-card,
.next-card,
.dashboard-preview {
  border-radius: var(--radius-md);
}

.map-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px;
}

.map-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.map-card-heading small,
.finding-card > small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-card-heading h2 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.result-date {
  color: var(--muted);
  font-size: 11px;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.score {
  display: grid;
  place-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 10px;
  text-align: center;
}

.score-ring {
  --score: 50;
  --score-color: var(--amber);
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--score-color) calc(var(--score) * 1%), #e8edf3 0);
}

.score-ring::before {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  content: attr(data-score) "%";
  background: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.score strong {
  font-size: 12px;
}

.score small {
  min-height: 27px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 10px;
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-low { background: var(--red); }
.legend-mid { background: var(--amber); }
.legend-high { background: var(--green); }

.finding-card {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  padding: 32px;
}

.finding-card > small {
  color: #8296ad;
}

.finding-card h2 {
  margin: 38px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}

.finding-card > p {
  color: #b9c7d8;
  font-size: 13px;
  line-height: 1.68;
}

.time-result {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: auto;
  padding-top: 26px;
}

.time-result span {
  max-width: 100px;
  color: #8296ad;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.time-result strong {
  font-size: 28px;
}

.interpretation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.interpretation-card,
.next-card {
  min-height: 285px;
  padding: 34px;
}

.interpretation-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.next-card {
  color: var(--white);
  background: var(--blue);
}

.next-card .card-kicker {
  color: #c9dbff;
}

.interpretation-card h2,
.next-card h2 {
  max-width: 520px;
  margin: 40px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3.4vw, 38px);
  font-weight: 400;
  line-height: 1.14;
}

.interpretation-card p,
.next-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.next-card p {
  max-width: 520px;
  color: #d7e4ff;
}

.next-card .button {
  margin-top: 14px;
}

.dashboard-preview {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  margin-top: 18px;
  padding: 34px;
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.dashboard-heading h2 {
  max-width: 650px;
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.timeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  margin-top: 48px;
}

.timeline-line {
  height: 1px;
  background: var(--line);
}

.timeline-point {
  display: grid;
  gap: 5px;
}

.timeline-point span {
  color: var(--muted);
  font-size: 10px;
}

.timeline-point strong {
  font-size: 12px;
}

.timeline-point:not(.is-current) {
  opacity: 0.45;
}

.prototype-disclaimer {
  max-width: 800px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.site-footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.modal-backdrop {
  position: fixed;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 24, 45, 0.58);
  inset: 0;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.modal-backdrop.is-open {
  display: flex;
}

.modal {
  width: min(520px, 100%);
  position: relative;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 38px;
  animation: view-in 0.3s ease;
}

.modal-close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
  font-size: 23px;
}

.modal h2 {
  margin: 24px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
}

.modal p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.modal .button {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .landing-grid,
  .score-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statement-card:last-child {
    grid-column: 1 / -1;
  }

  .results-layout,
  .interpretation-grid {
    grid-template-columns: 1fr;
  }

  .finding-card {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer,
  .view {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 78px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .prototype-pill {
    display: none;
  }

  .view-landing {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.4vw, 64px);
  }

  .hero-actions,
  .results-header,
  .assessment-actions,
  .dashboard-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .results-header .button {
    width: 100%;
  }

  .landing-grid,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .statement-card:last-child {
    grid-column: auto;
  }

  .landing-grid {
    margin-top: 64px;
  }

  .statement-card {
    min-height: 220px;
  }

  .intro-panel {
    border-radius: 24px;
  }

  .assessment-topline {
    padding: 20px;
  }

  .question-stage {
    width: calc(100% - 40px);
    padding-top: 42px;
  }

  .assessment-actions {
    padding: 18px 20px;
  }

  .save-note {
    text-align: center;
  }

  .scale {
    grid-template-columns: repeat(5, minmax(48px, 1fr));
    gap: 6px;
  }

  .scale-option small {
    display: none;
  }

  .results-header h1 {
    font-size: 45px;
  }

  .map-card,
  .finding-card,
  .interpretation-card,
  .next-card,
  .dashboard-preview {
    padding: 24px;
  }

  .map-card-heading {
    flex-direction: column;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline-line {
    width: 1px;
    height: 20px;
    margin-left: 4px;
  }

  .site-footer {
    min-height: 74px;
  }
}

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