:root {
  --ink: #0c1c2b;
  --ink-soft: #183044;
  --blue: #587f90;
  --blue-light: #d9e5e8;
  --blue-pale: #eef4f5;
  --copper: #a95331;
  --copper-bright: #c9774b;
  --paper: #f7f6f1;
  --white: #fff;
  --text: #243641;
  --muted: #63727a;
  --line: #d7dcd9;
  --max: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

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

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--copper);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .98;
}

h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.06;
}

h3 {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.35;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.brand {
  display: grid;
  grid-template-columns: 43px auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  width: max-content;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  grid-row: 1 / 3;
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-mark circle {
  fill: var(--copper);
  stroke: none;
}

.brand-name {
  align-self: end;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: .075em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-descriptor {
  align-self: start;
  opacity: .65;
  font-size: .63rem;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: .82rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav > a:not(.nav-cta) {
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 0;
  border-bottom: 1px solid var(--copper);
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 190px 0 105px;
  background:
    radial-gradient(circle at 86% 25%, rgba(95, 139, 156, .18), transparent 27%),
    linear-gradient(135deg, #091824 0%, #102a3d 100%);
  color: rgba(255, 255, 255, .75);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -150px;
  bottom: -320px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(390px, .84fr);
  gap: 70px;
  align-items: center;
}

.hero h1 {
  color: var(--white);
}

.hero .eyebrow,
.assessment-section .eyebrow {
  color: var(--copper-bright);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 38px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover {
  background: #8f4127;
}

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

.text-link {
  color: var(--white);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 8px;
  color: var(--copper);
}

.hero-note {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: .78rem;
}

.signal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(13, 32, 47, .64);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(8px);
}

.signal-header,
.signal-footer {
  display: flex;
  justify-content: space-between;
  padding: 19px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .55);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-key {
  display: flex;
  gap: 8px;
  align-items: center;
}

.signal-key i {
  width: 9px;
  height: 9px;
  background: var(--copper-bright);
}

.signal-chart {
  padding: 12px 6px 0;
}

.chart-grid path {
  fill: none;
  stroke: rgba(255, 255, 255, .08);
  stroke-width: 1;
}

.chart-area {
  fill: url(#area);
}

.chart-line {
  fill: none;
  stroke: #87adbb;
  stroke-width: 4;
}

.chart-points circle {
  fill: var(--copper-bright);
  stroke: var(--ink);
  stroke-width: 4;
}

.opportunity-band {
  fill: none;
  stroke: rgba(201, 119, 75, .25);
  stroke-dasharray: 5 6;
}

.chart-labels {
  fill: rgba(255, 255, 255, .36);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .08em;
}

.signal-footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 0;
  font-size: .66rem;
  line-height: 1.6;
  text-transform: none;
}

.signal-footer b {
  color: rgba(255, 255, 255, .84);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
}

.split-heading > div h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-card {
  min-height: 250px;
  padding: 32px 34px;
}

.fit-card + .fit-card {
  border-left: 1px solid var(--line);
}

.card-number {
  display: block;
  margin-bottom: 68px;
  color: var(--copper);
  font-size: .72rem;
  font-weight: 800;
}

.fit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.questions-section {
  background: var(--blue-pale);
}

.questions-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 120px;
}

.questions-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.questions-intro p:last-child {
  max-width: 390px;
  color: var(--muted);
}

.question-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid #c9d7da;
}

.question-row:last-child {
  border-bottom: 1px solid #c9d7da;
}

.question-row span {
  color: var(--copper);
  font-size: .7rem;
  font-weight: 800;
}

.question-row p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.3;
}

.assessment-section {
  background: var(--ink);
  color: rgba(255, 255, 255, .67);
}

.assessment-section h2 {
  color: var(--white);
}

.assessment-section .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .57);
}

.coverage-panel {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  border: 1px solid rgba(255, 255, 255, .14);
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  min-height: 116px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.coverage-list li:nth-child(2n) {
  border-right: 0;
}

.coverage-list li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.coverage-list span {
  display: block;
  color: rgba(255, 255, 255, .83);
  font-size: .9rem;
  font-weight: 650;
}

.coverage-list p {
  max-width: 260px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: .73rem;
  line-height: 1.5;
}

.coverage-list i {
  padding-top: 3px;
  color: rgba(255, 255, 255, .27);
  font-size: .65rem;
  font-style: normal;
}

.coverage-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 450px;
  padding: 40px;
  border-left: 1px solid rgba(255, 255, 255, .14);
  background: var(--ink-soft);
}

.mini-chart {
  display: flex;
  flex: 1;
  gap: 8px;
  align-items: flex-end;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.mini-chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, rgba(102, 151, 168, .2), rgba(102, 151, 168, .7));
}

.aside-label {
  margin-bottom: 12px;
  color: var(--copper-bright);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.aside-quote {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.3;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.deliverables-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
}

.deliverables-grid svg {
  width: 44px;
  margin-bottom: 50px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.deliverables-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.process-section {
  padding-top: 30px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 290px;
  padding: 32px 24px;
  border-bottom: 1px solid var(--line);
}

.process-list li + li {
  border-left: 1px solid var(--line);
}

.process-list li > span {
  display: block;
  margin-bottom: 85px;
  color: var(--copper);
  font-size: .68rem;
  font-weight: 800;
}

.process-list h3 {
  font-size: 1rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.boundaries-section {
  background: #e7edeb;
}

.boundaries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #cbd5d2;
}

.boundary {
  padding: 60px;
  background: var(--paper);
}

.boundary-not {
  background: #dde6e4;
}

.boundary h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.boundary ul {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.boundary li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-top: 1px solid rgba(12, 28, 43, .13);
  font-size: .9rem;
}

.boundary li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  content: "";
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.founder-graphic {
  position: relative;
  min-height: 500px;
  background: var(--blue-pale);
  overflow: hidden;
}

.founder-initial {
  position: absolute;
  top: 43%;
  left: 50%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 13rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.founder-graphic svg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.founder-graphic circle {
  fill: var(--copper);
  stroke: none;
}

.about-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 1rem;
}

.founder-placeholder {
  margin: 34px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--copper);
  background: #efeee8;
}

.founder-placeholder p {
  margin: 0;
}

.founder-placeholder p + p {
  margin-top: 6px;
  color: var(--muted);
  font-size: .88rem;
}

.about-note {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.cta-section {
  padding: 100px 0;
  background: var(--copper);
  color: rgba(255, 255, 255, .94);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  align-items: center;
}

.cta-section .eyebrow {
  color: rgba(255, 255, 255, .9);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  max-width: 660px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.email-link {
  margin-top: 24px;
  color: var(--white);
  font-size: .82rem;
}

.booking-placeholder {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .69rem;
}

.booking-placeholder span {
  font-weight: 800;
}

.disclaimer {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: var(--ink);
}

.disclaimer p {
  max-width: 960px;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: .72rem;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--ink);
  color: rgba(255, 255, 255, .62);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 70px;
}

.brand-footer {
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-contact a {
  color: var(--white);
  font-size: .85rem;
}

.footer-nav {
  display: grid;
  gap: 10px;
  font-size: .82rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: .65rem;
}

.page-header {
  padding: 180px 0 80px;
  background: var(--ink);
  color: rgba(255, 255, 255, .65);
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.page-header p {
  max-width: 660px;
}

.page-content {
  padding: 90px 0 120px;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 60px 0 18px;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 750;
  letter-spacing: -.01em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: #4f616b;
}

.prose ul {
  padding-left: 20px;
}

.prose .notice {
  margin: 36px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--copper);
  background: var(--blue-pale);
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
}

.error-inner {
  text-align: center;
}

.error-code {
  margin-bottom: 20px;
  color: var(--copper-bright);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.error-page h1 {
  color: var(--white);
}

.error-page p {
  max-width: 520px;
  margin: 0 auto 30px;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 20px;
  }

  .hero-grid,
  .questions-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero {
    padding-bottom: 90px;
  }

  .signal-card {
    max-width: 680px;
  }

  .questions-grid {
    gap: 55px;
  }

  .questions-intro {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(5) {
    border-left: 0;
  }

  .process-list li > span {
    margin-bottom: 45px;
  }

  .founder-graphic {
    max-width: 620px;
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 80px 0;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 30;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 0;
    background: transparent;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 90px 24px 40px;
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 2rem;
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    font-family: var(--sans);
    font-size: .9rem;
  }

  .hero {
    min-height: 0;
    padding: 145px 0 75px;
  }

  .hero-grid {
    display: block;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .signal-card {
    margin-top: 65px;
  }

  .signal-chart {
    min-height: 250px;
  }

  .split-heading,
  .coverage-panel,
  .boundaries-grid,
  .cta-inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .cta-inner {
    gap: 28px;
  }

  .fit-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .fit-card {
    min-height: 0;
  }

  .fit-card + .fit-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-list li,
  .coverage-list li:nth-child(2n),
  .coverage-list li:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .coverage-list li:last-child {
    border-bottom: 0;
  }

  .coverage-list p {
    max-width: 290px;
  }

  .coverage-aside {
    min-height: 390px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .deliverables-grid article {
    padding: 28px;
  }

  .deliverables-grid svg {
    margin-bottom: 32px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    min-height: 0;
    padding: 28px 0;
  }

  .process-list li + li,
  .process-list li:nth-child(3),
  .process-list li:nth-child(5) {
    border-left: 0;
  }

  .process-list li > span {
    margin: 3px 0 0;
  }

  .boundary {
    padding: 40px 28px;
  }

  .about-grid {
    gap: 55px;
  }

  .founder-graphic {
    min-height: 330px;
  }

  .founder-initial {
    font-size: 10rem;
  }

  .cta-section {
    padding: 80px 0;
  }

  .footer-main {
    gap: 38px;
    padding-bottom: 50px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-header {
    padding: 140px 0 65px;
  }
}

@media (max-width: 420px) {
  .brand {
    grid-template-columns: 36px auto;
    column-gap: 9px;
  }

  .brand-mark {
    width: 35px;
  }

  .brand-name {
    font-size: .9rem;
  }

  .brand-descriptor {
    font-size: .55rem;
  }

  .signal-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .coverage-aside {
    padding: 28px;
  }
}

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