:root {
  color-scheme: dark;
  --ink: #eaf4f5;
  --muted: #9fb0b5;
  --dim: #72868d;
  --page: #071116;
  --surface: #0d1a20;
  --surface-2: #12252b;
  --line: #263940;
  --cyan: #39dce3;
  --cyan-dark: #092e34;
  --amber: #ffbd55;
  --amber-dark: #34230c;
  --white: #ffffff;
  --header-height: 68px;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

code {
  color: #d9f5f6;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.92em;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: #061015;
  transform: translateY(-150%);
  border-radius: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(7, 17, 22, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.site-nav {
  width: min(calc(100% - 48px), var(--page-width));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 750;
  font-size: 18px;
}

.brand img {
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #c0d0d4;
}

.nav-links > a:not(.button):hover,
.nav-links > a:not(.button):focus-visible {
  color: var(--white);
}

.button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.button:focus-visible,
.icon-button:focus-visible,
.mode-switch button:focus-visible,
.deploy-tabs button:focus-visible,
.guide-nav a:focus-visible,
.guide-reference-list a:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(57, 220, 227, 0.38);
  outline-offset: 3px;
}

.button svg,
.icon-button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-small {
  min-height: 38px;
  padding-inline: 14px;
}

.button-primary {
  background: var(--cyan);
  color: #031114;
  box-shadow: 0 9px 30px rgba(57, 220, 227, 0.18);
}

.button-primary:hover {
  background: #73e9ed;
}

.button-secondary,
.button-quiet {
  background: rgba(11, 25, 30, 0.76);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--cyan);
  background: rgba(16, 39, 44, 0.92);
}

.icon-button {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 650px;
  height: min(82vh, 780px);
  margin-top: var(--header-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(3, 11, 15, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 74px;
  line-height: 0.98;
  font-weight: 850;
  color: var(--white);
  text-shadow: 0 4px 32px #000000;
}

.hero-lead {
  max-width: 630px;
  margin: 24px 0 0;
  color: #dbe7e9;
  font-size: 21px;
  line-height: 1.45;
  text-shadow: 0 2px 18px #000000;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-width: 190px;
  padding: 4px 28px 4px 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts li:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--white);
  font-size: 16px;
}

.hero-facts span {
  color: #aabdc2;
  margin-top: 3px;
  font-size: 13px;
}

.overview-band {
  padding: 52px 0;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: end;
}

.overview-layout h2,
.section-heading h2,
.deploy-copy h2,
.project-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 780;
}

.overview-layout > p {
  margin: 0;
  color: #b5c5c9;
  font-size: 17px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.compact-heading {
  max-width: none;
}

.mode-switch,
.deploy-tabs {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: #071216;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mode-switch {
  margin-bottom: 24px;
}

.mode-switch button,
.deploy-tabs button {
  min-height: 38px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.mode-switch button[aria-selected="true"],
.deploy-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px #32505a;
}

.architecture-panel {
  padding: 38px;
  background: #09161b;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.architecture-flow {
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(110px, 0.65fr) minmax(150px, 1fr) minmax(110px, 0.65fr) minmax(150px, 1fr);
  align-items: center;
  gap: 16px;
}

.flow-node {
  min-height: 150px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid #2b4149;
  border-radius: 8px;
}

.flow-node svg {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--cyan);
}

.slave-node svg {
  color: var(--amber);
}

.flow-node strong,
.flow-node span {
  display: block;
}

.flow-node strong {
  color: var(--white);
  font-size: 17px;
}

.flow-node span {
  margin-top: 4px;
  color: var(--dim);
  font-size: 13px;
}

.flow-link {
  min-width: 0;
  color: var(--dim);
  text-align: center;
}

.flow-link span {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
}

.flow-link svg {
  width: 100%;
  height: 24px;
  color: var(--cyan);
}

.flow-link.data-link svg {
  color: var(--amber);
}

.mode-note {
  margin: 26px 0 0;
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #b8c7ca;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.mode-note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--amber);
  margin-top: 2px;
}

.capabilities-section {
  background: #0a151a;
  border-block: 1px solid var(--line);
}

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

.capability-card {
  min-height: 230px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capability-card > svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}

.capability-card:nth-child(2n) > svg {
  color: var(--amber);
}

.capability-card h3 {
  margin: 24px 0 10px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.25;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.deploy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 76px;
  align-items: center;
}

.deploy-copy > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
}

.security-note {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.security-note > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--amber);
}

.security-note strong,
.security-note span {
  display: block;
}

.security-note strong {
  color: var(--white);
}

.security-note span {
  margin-top: 4px;
  color: var(--dim);
  font-size: 14px;
}

.deploy-tool {
  min-width: 0;
}

.deploy-tabs {
  margin-bottom: 12px;
}

.deploy-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.deploy-tabs svg {
  width: 16px;
  height: 16px;
}

.code-window {
  min-width: 0;
  background: #03090c;
  border: 1px solid #2a3c43;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.code-toolbar {
  min-height: 50px;
  padding: 0 10px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #94a8ad;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.copy-button {
  width: 34px;
  height: 34px;
  border-color: transparent;
}

.copy-button:hover {
  color: var(--cyan);
  background: var(--surface-2);
}

.code-window pre {
  min-height: 304px;
  margin: 0;
  padding: 25px;
  overflow: auto;
  color: #d4e5e7;
  font: 14px/1.75 "Cascadia Code", Consolas, monospace;
  white-space: pre;
}

.docs-section {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.docs-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.docs-heading > div {
  max-width: 760px;
}

.docs-heading > div > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.docs-wiki-button {
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-weight: 700;
  white-space: nowrap;
}

.guide-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.guide-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-left: 18px;
  border-left: 1px solid #38505a;
}

.guide-nav strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.guide-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.guide-nav a:hover {
  color: var(--cyan);
}

.guide-nav svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.guide-content {
  min-width: 0;
}

.guide-section {
  padding: 54px 0;
  border-top: 1px solid #38505a;
}

.guide-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.guide-section:last-child {
  padding-bottom: 0;
}

.guide-number {
  margin: 0 0 9px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-section:nth-child(2n) .guide-number {
  color: var(--amber);
}

.guide-section h3 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  line-height: 1.2;
}

.guide-section h4 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.3;
}

.guide-lead {
  max-width: 760px;
  margin: 15px 0 0;
  color: #bdcdd0;
  font-size: 16px;
}

.guide-code {
  margin-top: 24px;
  box-shadow: none;
}

.guide-code pre {
  min-height: 0;
  padding: 22px 24px;
  font-size: 13px;
  line-height: 1.7;
}

.compact-code {
  margin-top: 18px;
}

.compact-code .code-toolbar {
  min-height: 46px;
}

.guide-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 30px;
}

.guide-subsection {
  min-width: 0;
  padding-left: 18px;
  border-left: 2px solid rgba(57, 220, 227, 0.52);
}

.guide-subsection:nth-child(2n) {
  border-left-color: rgba(255, 189, 85, 0.6);
}

.guide-subsection p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-subsection p + p {
  margin-top: 12px;
}

.guide-facts {
  margin-top: 28px;
  border-top: 1px solid #38505a;
}

.guide-facts > div {
  min-height: 76px;
  padding: 16px 4px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: baseline;
  gap: 22px;
  border-bottom: 1px solid #38505a;
}

.guide-facts strong {
  color: var(--white);
  font-size: 14px;
}

.guide-facts span {
  color: var(--muted);
  font-size: 14px;
}

.guide-note {
  margin-top: 26px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 13px;
  background: #0b1c22;
  border-left: 3px solid var(--cyan);
}

.guide-note.critical-note {
  background: #211a0e;
  border-left-color: var(--amber);
}

.guide-note svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--cyan);
}

.guide-note.critical-note svg {
  color: var(--amber);
}

.guide-note p {
  margin: 0;
  color: #bdcdd0;
  font-size: 14px;
}

.guide-note strong {
  color: var(--white);
}

.guide-more {
  margin: 22px 0 0;
}

.guide-more a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 750;
}

.guide-more svg {
  width: 16px;
  height: 16px;
}

.config-list {
  margin: 0;
}

.config-list > div {
  padding: 9px 0;
  border-bottom: 1px solid rgba(56, 80, 90, 0.65);
}

.config-list > div:first-child {
  padding-top: 0;
}

.config-list dt,
.config-list dd {
  margin: 0;
}

.config-list dd {
  margin-top: 3px;
  color: var(--dim);
  font-size: 13px;
}

.guide-reference-list {
  margin-top: 30px;
  border-top: 1px solid #38505a;
}

.guide-reference-list a {
  min-height: 78px;
  padding: 15px 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #38505a;
}

.guide-reference-list a:hover {
  background: rgba(57, 220, 227, 0.04);
}

.guide-reference-list strong,
.guide-reference-list small {
  display: block;
}

.guide-reference-list strong {
  color: var(--white);
  font-size: 15px;
}

.guide-reference-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.guide-reference-list svg {
  width: 18px;
  height: 18px;
  color: var(--dim);
}

.project-cta {
  padding: 82px 0;
  background: #0b1b20;
  border-bottom: 1px solid var(--line);
}

.cta-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.project-cta h2 {
  font-size: 34px;
}

.project-cta p:not(.section-kicker) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 34px 0;
  background: #050c0f;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-layout p {
  margin: 0;
  color: var(--dim);
  font-size: 13px;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .page-width,
  .site-nav {
    width: min(calc(100% - 36px), var(--page-width));
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100vh - var(--header-height));
    padding: 24px 18px 32px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow: auto;
    background: #071116;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.button) {
    min-height: 46px;
    padding: 11px 8px;
  }

  .nav-links .button {
    margin-top: 10px;
  }

  .hero {
    min-height: 610px;
    height: 76vh;
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero-shade {
    background: rgba(3, 11, 15, 0.48);
  }

  .hero h1 {
    font-size: 62px;
  }

  .overview-layout,
  .deploy-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .guide-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .guide-nav {
    position: static;
    padding: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px 18px;
    border-left: 0;
    border-bottom: 1px solid #38505a;
  }

  .guide-nav strong {
    grid-column: 1 / -1;
  }

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

  .architecture-flow {
    grid-template-columns: 1fr 50px 1fr 50px 1fr;
    gap: 8px;
  }

  .flow-link span {
    display: none;
  }

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

  .footer-layout p {
    display: none;
  }
}

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

  .page-width,
  .site-nav {
    width: min(calc(100% - 28px), var(--page-width));
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 570px;
    height: 78vh;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background: rgba(2, 9, 12, 0.6);
  }

  .hero-content {
    padding-block: 54px 42px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    max-width: 520px;
    font-size: 18px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-facts {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
  }

  .hero-facts li {
    min-width: 0;
    margin-right: 0;
    padding-right: 12px;
  }

  .hero-facts li:nth-child(2) {
    padding-left: 16px;
    border-right: 0;
  }

  .hero-facts li:last-child {
    grid-column: 1 / -1;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .overview-band {
    padding: 44px 0;
  }

  .overview-layout {
    gap: 22px;
  }

  .overview-layout h2,
  .section-heading h2,
  .deploy-copy h2,
  .project-cta h2 {
    font-size: 32px;
  }

  .section {
    padding: 76px 0;
  }

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

  .mode-switch,
  .deploy-tabs {
    width: 100%;
  }

  .mode-switch button,
  .deploy-tabs button {
    flex: 1 1 0;
    padding-inline: 8px;
  }

  .architecture-panel {
    padding: 22px 18px;
  }

  .architecture-flow {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-node {
    min-height: 118px;
  }

  .flow-link {
    height: 28px;
  }

  .flow-link svg {
    width: 28px;
    transform: rotate(90deg);
  }

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

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

  .deploy-layout {
    gap: 34px;
  }

  .deploy-tabs button {
    font-size: 13px;
  }

  .deploy-tabs svg {
    display: none;
  }

  .code-window pre {
    min-height: 330px;
    padding: 20px;
    font-size: 12px;
  }

  .docs-heading {
    display: block;
  }

  .docs-heading .docs-wiki-button {
    margin-top: 22px;
  }

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

  .guide-section {
    padding: 44px 0;
  }

  .guide-section h3 {
    font-size: 24px;
  }

  .guide-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .guide-facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .guide-code pre {
    min-height: 0;
    padding: 19px;
    font-size: 12px;
  }

  .cta-layout {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-links {
    justify-self: start;
  }
}

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

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