:root {
  color-scheme: light;
  --paper: #f3efe6;
  --paper-soft: #fbf7ee;
  --paper-deep: #e1d8c8;
  --ink: #2f3438;
  --ink-soft: #62645f;
  --line: rgba(47, 52, 56, 0.2);
  --line-strong: rgba(47, 52, 56, 0.42);
  --blue: #2f86bd;
  --copper: #bd7b42;
  --teal: #2e847b;
  --dark: #101313;
  --white: #fffdf7;
  --max: 1320px;
  --header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(47, 52, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 52, 56, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(47, 52, 56, 0.14);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  height: var(--header);
  padding: 0 32px;
  color: var(--ink);
  background: rgba(243, 239, 230, 0.86);
  border-bottom: 1px solid rgba(47, 52, 56, 0.14);
  backdrop-filter: blur(16px);
}

.brand,
.nav-action,
nav a {
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 0.98rem;
}

.brand-mark {
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  inset: 5px;
  border-top: 2px solid var(--blue);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.brand-mark::after {
  top: 4px;
  left: 11px;
  width: 2px;
  height: 15px;
  background: var(--copper);
  transform: rotate(38deg);
}

nav {
  display: flex;
  justify-self: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.82rem;
}

.nav-action {
  justify-self: end;
  font-size: 0.82rem;
}

main {
  background: transparent;
}

section {
  scroll-margin-top: calc(var(--header) + 18px);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.claim-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 38px) 32px 34px;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--paper-soft);
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, 0.98) 0%, rgba(246, 241, 230, 0.88) 26%, rgba(246, 241, 230, 0.25) 62%, rgba(246, 241, 230, 0.1) 100%),
    linear-gradient(0deg, rgba(246, 241, 230, 0.92) 0%, rgba(246, 241, 230, 0) 35%),
    linear-gradient(rgba(47, 52, 56, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 52, 56, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 38px 38px, 38px 38px;
  pointer-events: none;
}

.hero-copy {
  width: min(640px, 100%);
  max-width: 100%;
  padding-bottom: clamp(118px, 16vh, 184px);
}

.hero-copy h1 {
  margin: 0;
  line-height: 0.96;
}

.hero-copy h1 span:first-child {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(3.8rem, 8vw, 9rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-copy h1 span:last-child {
  display: block;
  max-width: 620px;
  font-size: clamp(1.65rem, 2.45vw, 3.15rem);
  line-height: 1.02;
}

.hero-copy p:not(.claim-label) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button::after {
  content: " ->";
  margin-left: 8px;
}

.button.primary {
  background: var(--ink);
  color: var(--paper-soft);
}

.button.secondary {
  background: rgba(251, 247, 238, 0.48);
  color: var(--ink);
}

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

.hero-boundary {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  line-height: 1.28;
  text-transform: uppercase;
}

.hero-boundary span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-right: 1px solid var(--line);
}

.hero-boundary span:last-child {
  border-right: 0;
}

.evidence-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 32px 72px;
  gap: 0;
}

.evidence-band div {
  min-height: 164px;
  padding: 20px 22px;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 238, 0.58);
}

.evidence-band div:last-child {
  border-right: 0;
}

.evidence-band strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.7vw, 1.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.evidence-band span {
  color: var(--ink-soft);
  line-height: 1.5;
}

.problem-section,
.technology-section,
.prototype-section,
.patent-section,
.markets-section,
.pilot-section,
.team-section,
.contact-section {
  padding: 100px 32px;
  overflow-x: clip;
}

.section-kicker,
.problem-grid,
.cycle-shell,
.status-rail,
.patent-rows,
.markets-heading,
.market-list,
.pilot-grid,
.advisor-list,
.contact-section {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-kicker {
  margin-bottom: 54px;
}

.section-kicker h2,
.markets-heading h2,
.contact-copy h2 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 6.8rem);
  line-height: 0.92;
}

.section-kicker p:not(.claim-label),
.validation-copy p,
.contact-copy p {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.6;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.problem-grid article {
  min-height: 280px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-grid article:last-child {
  border-right: 0;
}

.problem-grid span,
.market-list span {
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.problem-grid h3 {
  max-width: 260px;
  margin: 34px 0 18px;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  line-height: 1;
}

.problem-grid p {
  color: var(--ink-soft);
  line-height: 1.58;
}

.technology-section {
  background: var(--dark);
  color: var(--white);
}

.technology-section .section-kicker h2,
.technology-section .section-kicker p:not(.claim-label),
.technology-section h3,
.technology-section .cycle-node,
.technology-section dd,
.technology-section dt,
.technology-section .warning {
  color: var(--white);
}

.technology-section .section-kicker p:not(.claim-label),
.technology-section .warning {
  color: rgba(255, 253, 247, 0.72);
}

.cycle-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(360px, 0.84fr);
  grid-template-areas:
    "map diagram"
    "map panel";
  gap: 28px 42px;
  align-items: start;
}

.cycle-map {
  grid-area: map;
  border-top: 1px solid rgba(255, 253, 247, 0.3);
}

.cycle-node {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.14);
  background: transparent;
  color: rgba(255, 253, 247, 0.6) !important;
  cursor: pointer;
  font-size: clamp(0.98rem, 1.5vw, 1.25rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.cycle-node span {
  color: var(--copper);
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 900;
}

.cycle-node.active,
.cycle-node:hover {
  color: var(--white) !important;
  transform: translateX(4px);
}

.cycle-node.active::after {
  position: absolute;
  right: 0;
  width: 38px;
  height: 1px;
  background: var(--blue);
  content: "";
}

.cycle-diagram {
  grid-area: diagram;
  min-width: 0;
  padding: 16px 0 0;
}

.cycle-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border-top: 1px solid rgba(255, 253, 247, 0.3);
  border-bottom: 1px solid rgba(255, 253, 247, 0.16);
  background: rgba(255, 253, 247, 0.04);
}

.telemetry-panel {
  grid-area: panel;
  min-width: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 247, 0.3);
}

.telemetry-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 5rem);
  line-height: 0.92;
}

.telemetry-panel p:not(.claim-label) {
  color: rgba(255, 253, 247, 0.72);
  line-height: 1.58;
}

.telemetry-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.telemetry-panel dl div {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 253, 247, 0.16);
}

dt {
  color: rgba(255, 253, 247, 0.58) !important;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  font-family: "Courier New", monospace;
  font-size: 0.92rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.validation-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(420px, 0.62fr);
  gap: 56px;
  align-items: start;
  padding: 108px 32px;
  background: var(--paper-deep);
}

.validation-copy,
.proof-board,
.proof-outcomes {
  max-width: var(--max);
}

.validation-copy {
  max-width: 560px;
}

.validation-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 6rem);
  line-height: 0.94;
}

.validation-copy p:not(.claim-label) {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.58;
}

.proof-board {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.proof-board div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.proof-board span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.proof-board strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2.3rem);
  font-weight: 500;
  line-height: 1.02;
}

.proof-board p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.proof-outcomes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.proof-outcomes span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 238, 0.3);
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.24;
  text-transform: uppercase;
}

.proof-outcomes span:nth-child(3n) {
  border-right: 0;
}

.prototype-section,
.pilot-section,
.contact-section {
  background: var(--paper-soft);
}

.status-rail,
.patent-rows,
.pilot-grid {
  border-top: 1px solid var(--line-strong);
}

.status-rail div,
.patent-rows div,
.pilot-grid div {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.status-rail span,
.patent-rows span,
.pilot-grid span,
.advisor-list span {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.status-rail p,
.patent-rows p,
.pilot-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.patent-section,
.team-section {
  background: var(--paper);
}

.markets-section {
  color: var(--paper-soft);
  background: var(--ink);
}

.markets-heading {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 253, 247, 0.22);
}

.markets-heading h2 {
  color: var(--paper-soft);
}

.market-list {
  padding: 0;
  list-style: none;
}

.market-list li {
  display: grid;
  grid-template-columns: 64px minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.16);
}

.market-list strong {
  color: var(--paper-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.market-list p {
  margin: 0;
  color: rgba(255, 253, 247, 0.68);
  line-height: 1.56;
}

.advisor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.advisor-list span {
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advisor-list span:nth-child(3n) {
  border-right: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(520px, 0.58fr);
  gap: 56px;
  align-items: start;
}

.loi-form {
  min-width: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(243, 239, 230, 0.54);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 118px;
  padding: 12px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(47, 52, 56, 0.46);
}

.form-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: rgba(255, 253, 247, 0.7);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper-soft);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav,
  .nav-action {
    display: none;
  }

  .site-header::after {
    width: 30px;
    height: 17px;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    box-shadow: inset 0 7px 0 0 var(--paper);
    content: "";
  }

  .hero {
    min-height: 86svh;
  }

  .evidence-band,
  .problem-grid,
  .cycle-shell,
  .validation-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .cycle-shell {
    grid-template-areas:
      "diagram"
      "map"
      "panel";
  }

  .cycle-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 253, 247, 0.14);
  }

  .cycle-node {
    border-right: 1px solid rgba(255, 253, 247, 0.14);
  }

  .cycle-node:nth-child(2n) {
    border-right: 0;
  }

  .validation-section {
    gap: 34px;
  }

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

  .proof-outcomes span:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .proof-outcomes span:nth-child(2n) {
    border-right: 0;
  }

  .market-list li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .market-list p {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --header: 66px;
  }

  .site-header,
  .hero,
  .problem-section,
  .technology-section,
  .validation-section,
  .prototype-section,
  .patent-section,
  .markets-section,
  .pilot-section,
  .team-section,
  .contact-section,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header {
    height: var(--header);
  }

  .brand {
    font-size: 0.86rem;
  }

  .hero {
    min-height: 88svh;
    padding-top: calc(var(--header) + 22px);
    padding-bottom: 28px;
  }

  .hero-video {
    object-position: 60% center;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(246, 241, 230, 1) 0%, rgba(246, 241, 230, 0.92) 36%, rgba(246, 241, 230, 0.32) 100%),
      linear-gradient(rgba(47, 52, 56, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(47, 52, 56, 0.035) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
  }

  .hero-copy {
    padding-bottom: 150px;
  }

  .hero-copy h1 span:first-child {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-copy h1 span:last-child {
    font-size: clamp(1.35rem, 8vw, 2.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-boundary {
    right: 20px;
    bottom: 18px;
    left: 20px;
    grid-template-columns: 1fr;
  }

  .hero-boundary span {
    min-height: 28px;
    padding: 6px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-boundary span:last-child {
    border-bottom: 0;
  }

  .evidence-band {
    grid-template-columns: 1fr;
    padding: 40px 20px 58px;
  }

  .evidence-band div {
    border-right: 0;
  }

  .problem-section,
  .technology-section,
  .validation-section,
  .prototype-section,
  .patent-section,
  .markets-section,
  .pilot-section,
  .team-section,
  .contact-section {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .section-kicker h2,
  .markets-heading h2,
  .contact-copy h2,
  .validation-copy h2 {
    font-size: clamp(2.08rem, 12vw, 4rem);
    line-height: 0.94;
  }

  .problem-grid,
  .cycle-map,
  .telemetry-panel dl,
  .proof-board div,
  .proof-outcomes,
  .form-grid,
  .advisor-list,
  .status-rail div,
  .patent-rows div,
  .pilot-grid div {
    grid-template-columns: 1fr;
  }

  .problem-grid article {
    min-height: 220px;
    border-right: 0;
  }

  .cycle-node,
  .cycle-node:nth-child(2n) {
    border-right: 0;
  }

  .cycle-node.active,
  .cycle-node:hover {
    transform: none;
  }

  .cycle-node.active::after {
    width: 26px;
  }

  .proof-board div {
    row-gap: 8px;
  }

  .proof-board span {
    grid-row: auto;
  }

  .proof-board strong,
  .proof-board p {
    grid-column: auto;
  }

  .proof-outcomes span,
  .proof-outcomes span:nth-child(3n),
  .proof-outcomes span:nth-child(2n),
  .advisor-list span,
  .advisor-list span:nth-child(3n) {
    border-right: 0;
  }

  .market-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .market-list p {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }
}

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

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