:root {
  color-scheme: dark;
  --ink: #f7f9ff;
  --muted: #aab6d0;
  --deep: #070a14;
  --navy: #0c1226;
  --panel: rgba(17, 25, 51, .76);
  --panel-solid: #111933;
  --line: rgba(174, 202, 255, .16);
  --cyan: #42e8ff;
  --blue: #55b8ff;
  --violet: #b38cff;
  --lime: #b5f5d2;
  --warning: #ffd78a;
  --max: 1180px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 9%, rgba(66, 232, 255, .10), transparent 28rem),
    radial-gradient(circle at 90% 34%, rgba(179, 140, 255, .10), transparent 32rem),
    var(--deep);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
  pointer-events: none;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--cyan); text-underline-offset: .2em; }
a:hover { color: #b7f7ff; }
p, ul, ol { margin-top: 0; }
strong { color: #fff; }
code, kbd {
  border: 1px solid var(--line);
  border-radius: .45rem;
  background: rgba(255,255,255,.06);
  padding: .12rem .4rem;
  color: #d9faff;
  font: .92em ui-monospace, SFMono-Regular, Consolas, monospace;
}
pre {
  margin: 1.25rem 0 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #080d1c;
  padding: 1.15rem 1.3rem;
}
pre code { border: 0; background: none; padding: 0; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: .7rem;
  background: var(--cyan);
  padding: .7rem 1rem;
  color: #07101f;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 20, .84);
  backdrop-filter: blur(18px) saturate(135%);
}
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { flex: 0 0 auto; }
.brand img { width: 214px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: .25rem; }
.desktop-nav a, .more-nav summary {
  border-radius: .65rem;
  padding: .58rem .78rem;
  color: #cbd4e8;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"], .more-nav summary:hover {
  color: #fff;
  background: rgba(85, 184, 255, .10);
}
.more-nav { position: relative; }
.more-nav summary { cursor: pointer; list-style: none; }
.more-nav summary::-webkit-details-marker { display: none; }
.more-nav summary::after { content: "⌄"; margin-left: .4rem; color: var(--cyan); }
.more-menu {
  position: absolute;
  top: calc(100% + .7rem);
  right: 0;
  display: grid;
  width: 210px;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #0d142b;
  padding: .5rem;
  box-shadow: var(--shadow);
}
.more-menu a { padding: .68rem .75rem; }
.mobile-nav { display: none; }

.alpha-bar {
  border-bottom: 1px solid rgba(255, 215, 138, .22);
  background: rgba(255, 193, 76, .07);
  color: #f6e4bb;
  font-size: .89rem;
}
.alpha-bar .shell { padding-block: .65rem; }
.alpha-dot {
  display: inline-block;
  width: .55rem;
  height: .55rem;
  margin-right: .55rem;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 .3rem rgba(255, 215, 138, .12);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .32;
  pointer-events: none;
}
.hero::before {
  top: 4rem;
  right: -13rem;
  border: 1px solid rgba(66, 232, 255, .45);
  box-shadow: inset 0 0 8rem rgba(66,232,255,.09), 0 0 9rem rgba(85,184,255,.09);
  animation: drift 12s ease-in-out infinite alternate;
}
.hero::after {
  bottom: -18rem;
  left: -12rem;
  border: 1px solid rgba(179, 140, 255, .42);
  box-shadow: inset 0 0 9rem rgba(179,140,255,.12);
  animation: drift 15s ease-in-out infinite alternate-reverse;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}
.eyebrow {
  margin-bottom: 1rem;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  color: #fff;
  line-height: 1.04;
  text-wrap: balance;
}
h1 {
  max-width: 850px;
  font-size: clamp(3.3rem, 7.5vw, 7rem);
  letter-spacing: -.065em;
}
h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.25rem);
  letter-spacing: -.045em;
}
h3 { font-size: 1.25rem; letter-spacing: -.02em; }
.hero-lead {
  max-width: 720px;
  margin: 1.55rem 0 2rem;
  color: #c7d1e5;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.62;
}
.canonical-summary {
  max-width: 720px;
  margin: 1.35rem 0 -.7rem;
  color: #d7e5f7;
  font-size: .94rem;
  font-weight: 720;
  line-height: 1.55;
}
.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, var(--cyan), var(--blue) 45%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
}
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: .8rem;
  padding: .78rem 1rem;
  color: #eef7ff;
  background: rgba(255,255,255,.035);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button::after { content: "↗"; font-size: .9em; }
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(66,232,255,.55);
  color: #fff;
  background: rgba(66,232,255,.09);
}
.button.primary {
  border-color: transparent;
  color: #07101f;
  background: linear-gradient(110deg, #75efff, #7bbfff);
  box-shadow: 0 12px 38px rgba(66,232,255,.16);
}
.button.primary:hover { color: #07101f; background: linear-gradient(110deg, #a6f6ff, #a8d5ff); }
.button.internal::after { content: "→"; }

.hero-mark-wrap {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}
.hero-mark-wrap::before, .hero-mark-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-mark-wrap::before {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(66,232,255,.18);
  background:
    conic-gradient(from 40deg, transparent, rgba(66,232,255,.12), transparent 28%, rgba(179,140,255,.12), transparent 68%);
  animation: spin 24s linear infinite;
}
.hero-mark-wrap::after {
  width: 72%;
  aspect-ratio: 1;
  border: 1px dashed rgba(179,140,255,.24);
  animation: spin 18s linear infinite reverse;
}
.hero-mark {
  position: relative;
  z-index: 2;
  width: min(62%, 260px);
}
.status-card {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  z-index: 3;
  width: min(290px, 72%);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(12,18,38,.9);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.status-card span { display: block; color: var(--muted); font-size: .77rem; letter-spacing: .09em; text-transform: uppercase; }
.status-card strong { display: block; margin-top: .2rem; font-size: 1rem; }
.status-card p { margin: .35rem 0 0; color: var(--muted); font-size: .84rem; }

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(14, 21, 44, .82);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-strip a {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-right: 1px solid var(--line);
  padding: 1.2rem;
  color: #edf6ff;
  font-size: .9rem;
  font-weight: 780;
  text-decoration: none;
}
.trust-strip a:last-child { border-right: 0; }
.trust-strip a::before {
  content: "✓";
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #061122;
  background: var(--cyan);
  font-size: .72rem;
}
.trust-strip a:hover { color: var(--cyan); background: rgba(66,232,255,.04); }

.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-tight { padding: 4rem 0; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.kicker {
  margin-bottom: .85rem;
  color: var(--violet);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: linear-gradient(145deg, rgba(20,31,63,.82), rgba(12,18,38,.82));
  padding: 1.5rem;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(66,232,255,.08);
  filter: blur(1rem);
}
.card:hover { transform: translateY(-4px); border-color: rgba(66,232,255,.35); }
.card .number {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 2rem;
  place-items: center;
  border: 1px solid rgba(66,232,255,.24);
  border-radius: .58rem;
  color: var(--cyan);
  background: rgba(66,232,255,.06);
  font-size: .75rem;
  font-weight: 850;
}
.card p { margin: .75rem 0 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}
.visual-panel {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(66,232,255,.16), transparent 13rem),
    linear-gradient(145deg, rgba(24,35,71,.9), rgba(9,14,30,.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-panel .window {
  position: absolute;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  background: rgba(8,13,28,.9);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow: hidden;
}
.visual-panel .window:first-child { inset: 11% 17% 20% 8%; }
.visual-panel .window:last-child { inset: 34% 5% 8% 38%; background: rgba(21,30,59,.94); }
.window-bar {
  height: 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.window-bar::before {
  content: "●  ●  ●";
  margin-left: .8rem;
  color: rgba(255,255,255,.28);
  font-size: .55rem;
  line-height: 36px;
  letter-spacing: .25rem;
}
.window-content { padding: 1.25rem; }
.window-line {
  height: .55rem;
  margin-bottom: .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.window-line.accent { width: 62%; background: linear-gradient(90deg, var(--cyan), var(--violet)); }
.window-line.short { width: 48%; }
.window-line.medium { width: 76%; }
.profile-chip {
  display: inline-block;
  margin-top: .7rem;
  border: 1px solid rgba(66,232,255,.24);
  border-radius: 999px;
  padding: .35rem .7rem;
  color: var(--cyan);
  background: rgba(66,232,255,.07);
  font-size: .72rem;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: steps;
}
.step {
  counter-increment: steps;
  border-top: 1px solid var(--line);
  padding: 1.5rem 1rem 0 0;
}
.step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 2.2rem;
  color: var(--cyan);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.step p { margin: .65rem 0 0; color: var(--muted); }

.profile-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.profile {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.25rem;
  background: #121a35;
}
.profile:nth-child(2) { color-scheme: light; background: #f0f3fb; }
.profile:nth-child(2) h3 { color: #0c1226; }
.profile:nth-child(2) p { color: #44506a; }
.profile:nth-child(3) { background: linear-gradient(145deg, #352f56, #c8d9d7); }
.profile:nth-child(4) { background: linear-gradient(135deg, #10182f 0 44%, #42e8ff 44% 64%, #b38cff 64%); }
.profile p { margin: .55rem 0 0; color: var(--muted); font-size: .88rem; }

.note {
  border-left: 3px solid var(--violet);
  background: rgba(179,140,255,.07);
  padding: 1rem 1.2rem;
  color: #d2c7ee;
}
.note.warning { border-color: var(--warning); background: rgba(255,215,138,.06); color: #f0dfbb; }

.brand-specimen {
  margin-top: 1.5rem;
  border-radius: 1.1rem;
  background: #f7f9ff;
  padding: clamp(1.5rem, 5vw, 3rem);
}
.brand-specimen img { width: min(100%, 410px); }

.dark-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(66,232,255,.05), transparent 34%, rgba(179,140,255,.06)),
    #0a0f20;
}
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li {
  position: relative;
  margin-bottom: .75rem;
  padding-left: 1.5rem;
  color: #c5cfe3;
}
.list-clean li::before { content: "—"; position: absolute; left: 0; color: var(--cyan); }

.cta {
  position: relative;
  border: 1px solid rgba(66,232,255,.24);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(66,232,255,.15), transparent 18rem),
    radial-gradient(circle at 12% 100%, rgba(179,140,255,.12), transparent 20rem),
    #10172f;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
}
.cta h2 { max-width: 780px; }
.cta p { max-width: 650px; margin: 1rem 0 1.8rem; color: var(--muted); }

.page-hero { padding: 6.5rem 0 4rem; }
.page-hero h1 { font-size: clamp(3rem, 6.5vw, 6rem); }
.page-hero p { max-width: 760px; margin: 1.4rem 0 0; color: var(--muted); font-size: 1.18rem; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 4rem;
}
.prose { max-width: 790px; }
.prose > section {
  padding: 3.4rem 0;
  border-top: 1px solid var(--line);
}
.prose > section:first-child { border-top: 0; padding-top: 0; }
.prose h2 { font-size: clamp(1.8rem, 3.4vw, 2.9rem); }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose li { color: #b7c2d8; }
.prose h2 + p, .prose h3 + p { margin-top: 1rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .55rem; }
.side-nav {
  position: sticky;
  top: 105px;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(15,22,45,.72);
  padding: 1rem;
}
.side-nav strong { display: block; padding: .45rem .65rem .7rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.side-nav a {
  display: block;
  border-radius: .55rem;
  padding: .48rem .65rem;
  color: var(--muted);
  font-size: .88rem;
  text-decoration: none;
}
.side-nav a:hover { color: #fff; background: rgba(66,232,255,.06); }

.release-card {
  border: 1px solid rgba(255,215,138,.24);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(255,215,138,.06), rgba(17,25,51,.8));
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.release-card .release-status {
  display: inline-block;
  border: 1px solid rgba(255,215,138,.3);
  border-radius: 999px;
  padding: .35rem .65rem;
  color: var(--warning);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.release-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.release-meta div { border-top: 1px solid var(--line); padding-top: .75rem; }
.release-meta span { display: block; color: var(--muted); font-size: .75rem; }
.release-meta strong { display: block; margin-top: .15rem; }

.faq-list { display: grid; gap: .8rem; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(17,25,51,.62);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  color: #f6f8ff;
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--cyan); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; border-top: 1px solid var(--line); padding: 1.15rem 1.25rem; color: var(--muted); }

.architecture {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: .75rem;
  margin: 2rem 0;
}
.architecture .node {
  min-height: 115px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(17,25,51,.72);
  padding: 1rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 800;
}
.architecture .arrow { color: var(--cyan); text-align: center; }

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
  background: #080c1a;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
}
.footer-brand img { width: 220px; }
.footer-brand p { max-width: 320px; margin: 1rem 0 0; color: var(--muted); font-size: .9rem; }
.footer-group strong { display: block; margin-bottom: .8rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-group a { display: block; margin-top: .5rem; color: var(--muted); font-size: .9rem; text-decoration: none; }
.footer-group a:hover { color: var(--cyan); }
.footer-legal {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  color: #8390aa;
  font-size: .78rem;
}
.footer-legal p { margin-bottom: .4rem; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drift { to { transform: translate3d(-2rem, 1.5rem, 0) scale(1.04); } }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary {
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: .65rem;
    padding: .52rem .75rem;
    font-weight: 800;
    list-style: none;
  }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-menu {
    position: absolute;
    right: 0;
    top: calc(100% + .7rem);
    width: min(280px, calc(100vw - 40px));
    display: grid;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: #0d142b;
    padding: .65rem;
    box-shadow: var(--shadow);
  }
  .mobile-menu a { border-radius: .55rem; padding: .65rem .7rem; color: #d5dcef; text-decoration: none; }
  .mobile-menu a:hover, .mobile-menu a[aria-current="page"] { background: rgba(66,232,255,.07); color: #fff; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 5rem; }
  .hero-mark-wrap { min-height: 380px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip a:nth-child(2) { border-right: 0; }
  .trust-strip a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .profile-row { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .side-nav { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .architecture { grid-template-columns: 1fr; }
  .architecture .arrow { transform: rotate(90deg); }
}

@media (max-width: 620px) {
  .shell { width: min(var(--max), calc(100% - 28px)); }
  .brand img { width: 185px; }
  .hero { min-height: auto; padding: 4.5rem 0; }
  .hero-mark-wrap { min-height: 320px; }
  .status-card { right: auto; left: 0; }
  .feature-grid, .steps, .release-meta { grid-template-columns: 1fr; }
  .profile-row { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip a { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip a:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

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